00001 // sitzungskonfigurationdialog.h 00002 // LFTVideo.cpp v1.7 00003 // 12.5.2003 00004 // 00005 // für weitere Informationen: 00006 // siehe header von main.cpp 00007 00008 00009 #ifndef SITZUNGSKONFIGURATIONDIALOG_H 00010 #define SITZUNGSKONFIGURATIONDIALOG_H 00011 00012 #include "sitzungskonfigurationdialogbase.h" 00013 #include <qstring.h> 00014 00015 class SitzungsKonfigurationDialog : public SitzungsKonfigurationDialogBase 00016 { 00017 Q_OBJECT 00018 public: 00019 SitzungsKonfigurationDialog( QWidget* parent = 0, 00020 const char* name = 0, bool modal = FALSE, WFlags f = 0 ); 00021 QString filename(); 00022 00023 private slots: 00024 void showTheFilename(); 00025 void disableOK(); 00026 }; 00027 00028 00029 #endif SITZUNGSKONFIGURATIONDIALOG_H 00030