Tulip  4.8.0
Better Visualization Through Research
 All Classes Files Functions Variables Enumerations Enumerator Properties Groups Pages
NodeLinkDiagramComponentInteractor.h
1 /*
2  *
3  * This file is part of Tulip (www.tulip-software.org)
4  *
5  * Authors: David Auber and the Tulip development Team
6  * from LaBRI, University of Bordeaux
7  *
8  * Tulip is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation, either version 3
11  * of the License, or (at your option) any later version.
12  *
13  * Tulip is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  * See the GNU General Public License for more details.
17  *
18  */
19 #ifndef NODELINKDIAGRAMCOMPONENTINTERACTOR_H
20 #define NODELINKDIAGRAMCOMPONENTINTERACTOR_H
21 
22 #include <tulip/GLInteractor.h>
23 
24 class QLabel;
25 
26 namespace tlp {
27 
28 /** \brief Tulip interactor abstract class for NodeLinkDiagramComponent
29  *
30  */
32  : public GLInteractorComposite {
33  QLabel* _label;
34  unsigned int _priority;
35 
36 public :
37 
38  NodeLinkDiagramComponentInteractor(const QString &iconPath, const QString &text, unsigned int priority=0);
39 
41 
42  void setConfigurationWidgetText(const QString& text);
43 
44  virtual QWidget* configurationWidget() const;
45 
46  virtual unsigned int priority() const;
47 
48  void setPriority(const unsigned int p);
49 
50 };
51 }
52 
53 #endif // NODELINKDIAGRAMCOMPONENTINTERACTOR_H
The GLInteractorComposite class behaves like a InteractorComposite but is meant to store GLInteractor...
Definition: GLInteractor.h:67