Crossfire Server, Branch 1.12  R12190
CREFacePanel.h
Go to the documentation of this file.
00001 #ifndef CLASS_CRE_FACE_PANEL_H
00002 #define CLASS_CRE_FACE_PANEL_H
00003 
00004 #include <QObject>
00005 #include <QtGui>
00006 
00007 extern "C" {
00008 #include "global.h"
00009 }
00010 
00011 class CREFacePanel : public QWidget
00012 {
00013     Q_OBJECT
00014 
00015     public:
00016         CREFacePanel();
00017         void setFace(const New_Face* face);
00018 
00019     protected:
00020         const New_Face* myFace;
00021 
00022         QTreeWidget* myUsing;
00023         QComboBox* myColor;
00024         QLineEdit* myFile;
00025         QPushButton* mySave;
00026 
00027     private slots:
00028         void saveClicked(bool);
00029 };
00030 
00031 #endif // CLASS_CRE_FACE_PANEL_H