summaryrefslogtreecommitdiff
path: root/src/gui/propertypalette.h
blob: 7910d70b81656ae3f54fce24bb603749e6671a88 (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