Crossfire Server, Branches 1.12  R18729
CREFacePanel.h
Go to the documentation of this file.
1 #ifndef CLASS_CRE_FACE_PANEL_H
2 #define CLASS_CRE_FACE_PANEL_H
3 
4 #include <QObject>
5 #include <QtGui>
6 
7 extern "C" {
8 #include "global.h"
9 }
10 
11 class CREFacePanel : public QWidget
12 {
13  Q_OBJECT
14 
15  public:
16  CREFacePanel();
17  void setFace(const New_Face* face);
18 
19  protected:
20  const New_Face* myFace;
21 
22  QTreeWidget* myUsing;
23  QComboBox* myColor;
24  QLineEdit* myFile;
25  QPushButton* mySave;
26 
27  private slots:
28  void saveClicked(bool);
29 };
30 
31 #endif // CLASS_CRE_FACE_PANEL_H
QTreeWidget * myUsing
Definition: CREFacePanel.h:22
void saveClicked(bool)
void setFace(const New_Face *face)
const New_Face * myFace
Definition: CREFacePanel.h:20
QComboBox * myColor
Definition: CREFacePanel.h:23
QLineEdit * myFile
Definition: CREFacePanel.h:24
QPushButton * mySave
Definition: CREFacePanel.h:25