summaryrefslogtreecommitdiff
path: root/src/gui/propertypalette.h
blob: 80f2d888158f8ef73ff12874b3d290cba4b484fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*!
  * Enables the user to edit properties of the graph, as well as the selected node/edge.
  */

#ifndef PROPERTYPALETTE_H
#define PROPERTYPALETTE_H

#include <QDockWidget>

namespace Ui {
class PropertyPalette;
}

class PropertyPalette : public QDockWidget
{
    Q_OBJECT

public:
    explicit PropertyPalette(QWidget *parent = 0);
    ~PropertyPalette();

protected:
    void closeEvent(QCloseEvent *event);
private:
    Ui::PropertyPalette *ui;
};

#endif // PROPERTYPALETTE_H