ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
ccMapDlg.h
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #pragma once
9 
10 // Qt
11 #include <ecvOverlayDialog.h>
12 
13 #include <QAction>
14 #include <QDialog>
15 #include <QList>
16 
17 // Local
18 #include <ui_mapDlg.h>
19 
20 #include "ccTrace.h"
21 
22 // class encapsulating the map-mode overlay dialog
23 class ccMapDlg : public ccOverlayDialog, public Ui::mapDlg {
24  Q_OBJECT
25 
26 public:
28  explicit ccMapDlg(QWidget *parent = 0);
29 
30  // menus
32 
33  // actions
34  QAction *m_create_geoObject; // create a normal GeoObject
35  QAction *m_create_geoObjectSS; // create a single surface GeoObject
36 };
QAction * m_create_geoObject
Definition: ccMapDlg.h:34
QAction * m_create_geoObjectSS
Definition: ccMapDlg.h:35
ccMapDlg(QWidget *parent=0)
Default constructor.
Definition: ccMapDlg.cpp:24
QMenu * m_createObject_menu
Definition: ccMapDlg.h:31
Generic overlay dialog interface.