Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members Related Pages Search
usage.h00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef USAGEDIALOG_H
00010 #define USAGEDIALOG_H
00011
00012 #include <qvariant.h>
00013 #include <qdialog.h>
00014 class QVBoxLayout;
00015 class QHBoxLayout;
00016 class QGridLayout;
00017 class QGroupBox;
00018 class QLabel;
00019
00020 class UsageDialog : public QDialog
00021 {
00022 Q_OBJECT
00023
00024 public:
00025 UsageDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
00026 ~UsageDialog();
00027
00028 QGroupBox* FunctionsBox;
00029 QLabel* FunctionsUsage;
00030 QGroupBox* OperatorsBox;
00031 QLabel* OperatorsUsage;
00032 QGroupBox* ConstantsBox;
00033 QLabel* ConstantsUsage;
00034
00035
00036 protected:
00037 QVBoxLayout* UsageDialogLayout;
00038 QVBoxLayout* FunctionsBoxLayout;
00039 QVBoxLayout* OperatorsBoxLayout;
00040 QVBoxLayout* ConstantsBoxLayout;
00041 };
00042
00043 #endif // USAGEDIALOG_H
|