forked from H-uru/MoulKI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qtNodeEdit.h
53 lines (42 loc) · 997 Bytes
/
qtNodeEdit.h
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef QTNODEEDIT_H
#define QTNODEEDIT_H
#include <QWidget>
#include <QTableWidgetItem>
#include "qtVault.h"
namespace Ui {
class qtNodeEdit;
}
class plSDLMgr;
class plResManager;
class plStateDataRecord;
class qtNodeEdit : public QWidget {
Q_OBJECT
public:
qtNodeEdit(QWidget *parent = 0);
~qtNodeEdit();
void setNode(qtVaultNode* pn);
void setMgrs(plSDLMgr* sdl, plResManager* res);
qtVaultNode* getNode();
void update();
signals:
void isDirty(bool);
protected:
void changeEvent(QEvent *e);
private:
Ui::qtNodeEdit *ui;
qtVaultNode* node;
plSDLMgr* sdlmgr;
plResManager* resmgr;
bool titleEdited;
bool textEdited;
QString newTitle;
private slots:
void dataRowChanged(QTableWidgetItem* item);
void editNodeTitle(QString title);
void editNodeText();
void loadNodeImage();
void saveNodeImage();
void sdlChanged(plStateDataRecord* sdl);
void tabActivated(int tab);
};
#endif // QTNODEEDIT_H