Tulip 5.7.1
Large graphs analysis and drawing
Loading...
Searching...
No Matches
NodeLinkDiagramComponentInteractor.h
1/*
2 *
3 * This file is part of Tulip (https://tulip.labri.fr)
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
24class QLabel;
25
26namespace tlp {
27
28/** @brief Tulip interactor abstract class for NodeLinkDiagramComponent
29 *
30 */
32 QLabel *_label;
33 unsigned int _priority;
34
35public:
36 NodeLinkDiagramComponentInteractor(const QString &iconPath, const QString &text,
37 unsigned int priority = 0);
38
40
41 void setConfigurationWidgetText(const QString &text);
42
43 QLabel *configurationDocWidget() const override;
44
45 unsigned int priority() const override;
46};
47} // namespace tlp
48
49#endif // NODELINKDIAGRAMCOMPONENTINTERACTOR_H
The GLInteractorComposite class behaves like a InteractorComposite but is meant to store GLInteractor...
Definition: GLInteractor.h:73