|
|
#ifndef __kio_skip_dlg__ #define __kio_skip_dlg__ "$Id: kio_skip_dlg.h,v 1.8 1999/11/30 22:05:07 koss Exp $" #include <qwidget.h> #include <qdialog.h> #include <qpushbutton.h> #include <qlabel.h> #include <qlineedit.h> #include <qlayout.h> enum SkipDlg_Result { S_SKIP = 1, S_AUTO_SKIP = 2, S_CANCEL = 0 }; SkipDlg_Result open_SkipDlg( const char *_dest, bool _multi, QString _error_text="" ); class KIOSkipDlg : public QDialog { Q_OBJECT public: KIOSkipDlg( QWidget *parent, const char *_dest, bool _multi, QString _error_text, bool _modal = false ); ~KIOSkipDlg(); protected: QPushButton *b0; QPushButton *b1; QPushButton *b2; bool modal; public slots: void b0Pressed(); void b1Pressed(); void b2Pressed(); signals: void result( KIOSkipDlg *_this, int _button ); }; #endif
Generated by: root@tantive.terraplex.com on Sun Feb 27 17:39:31 2000, using kdoc 2.0a33. |