ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
RgbDialog.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 // ##########################################################################
11 // # #
12 // # CLOUDVIEWER PLUGIN: ColorimetricSegmenter #
13 // # #
14 // # This program is free software; you can redistribute it and/or modify #
15 // # it under the terms of the GNU General Public License as published by #
16 // # the Free Software Foundation; version 2 of the License. #
17 // # #
18 // # This program is distributed in the hope that it will be useful, #
19 // # but WITHOUT ANY WARRANTY; without even the implied warranty of #
20 // # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
21 // # GNU General Public License for more details. #
22 // # #
23 // # COPYRIGHT: Tri-Thien TRUONG, Ronan COLLIER, Mathieu LETRONE #
24 // # #
25 // ##########################################################################
26 
27 #include <ecvPickingListener.h>
28 #include <ui_RgbDialog.h>
29 
30 // Qt
31 #include <QDialog>
32 
33 class ccPickingHub;
34 /*
35  Get the values of the RGB interface, and interactions
36 */
37 class RgbDialog : public QDialog,
38  public ccPickingListener,
39  public Ui::RgbDialog {
40  Q_OBJECT
41 public:
42  explicit RgbDialog(ccPickingHub* pickingHub, QWidget* parent = nullptr);
43 
45  virtual void onItemPicked(const PickedItem& pi);
46 
47 public slots:
48  void pickPoint_first(bool);
49  void pickPoint_second(bool);
50 
51 protected: // members
53  QWidget* m_pickingWin;
54 
57 };
#define slots
ccPickingHub * m_pickingHub
Picking hub.
Definition: RgbDialog.h:56
virtual void onItemPicked(const PickedItem &pi)
Inherited from ccPickingListener.
Definition: RgbDialog.cpp:92
void pickPoint_second(bool)
Definition: RgbDialog.cpp:70
RgbDialog(ccPickingHub *pickingHub, QWidget *parent=nullptr)
Definition: RgbDialog.cpp:20
void pickPoint_first(bool)
Definition: RgbDialog.cpp:48
QWidget * m_pickingWin
Picking window (if any)
Definition: RgbDialog.h:53
Point/triangle picking hub.
Definition: ecvPickingHub.h:29
Point/triangle picking listener interface.