kpresenter
KPrPresDurationDia.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef presdurationdia_h
00022 #define presdurationdia_h
00023
00024 #include <kdialogbase.h>
00025
00026 class KPrDocument;
00027 class KListView;
00028 class QLabel;
00029
00030 class KPrPresDurationDia : public KDialogBase
00031 {
00032 Q_OBJECT
00033
00034 public:
00035 KPrPresDurationDia( QWidget *parent, const char *name,
00036 KPrDocument *_doc,
00037 QStringList _durationListString,
00038 const QString &_durationString );
00039
00040 protected:
00041 void setupSlideList( QWidget *_page );
00042
00043 private:
00044 KPrDocument *doc;
00045 KListView *slides;
00046 QLabel *label;
00047
00048 QStringList m_durationListString;
00049 QString m_durationString;
00050
00051 protected slots:
00052 void slotCloseDialog() { emit presDurationDiaClosed(); }
00053
00054 signals:
00055 void presDurationDiaClosed();
00056
00057 };
00058
00059 #endif
|