katemailfilesdialog.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef _KATE_MAILFILES_DIALOG_H_
00020 #define _KATE_MAILFILES_DIALOG_H_
00021
00022 #include <kate/document.h>
00023
00024 #include <kdialogbase.h>
00025 #include <kurl.h>
00026 #include <qptrlist.h>
00027
00028 class QString;
00029 class QStringList;
00030 class KateMainWindow;
00031
00038 class KateMailDialog : public KDialogBase {
00039 Q_OBJECT
00040 public:
00041 KateMailDialog( QWidget *parent=0,
00042 KateMainWindow *mainwin=0 );
00043 ~KateMailDialog() {};
00044
00048 QPtrList<Kate::Document> selectedDocs();
00049 private slots:
00050 void slotShowButton();
00051 private:
00052 class KListView *list;
00053 class QLabel *lInfo;
00054 KateMainWindow *mainWindow;
00055 class QVBox *mw;
00056
00057 };
00058
00059 #endif // _KATE_MAILFILES_DIALOG_H_
|