libkcal
confirmsavedialog.hGo to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KCAL_CONFIRMSAVEDIALOG_H
00021 #define KCAL_CONFIRMSAVEDIALOG_H
00022
00023 #include <libkcal/incidence.h>
00024
00025 #include <kdialogbase.h>
00026 #include <kdepimmacros.h>
00027
00028 class KListView;
00029
00030 namespace KCal {
00031
00032 class KDE_EXPORT ConfirmSaveDialog : public KDialogBase
00033 {
00034 public:
00035 ConfirmSaveDialog( const QString &destination, QWidget *parent,
00036 const char *name = 0 );
00037
00038 void addIncidences( const Incidence::List &incidences,
00039 const QString &operation );
00040
00041 private:
00042 KListView *mListView;
00043 };
00044
00045 }
00046
00047 #endif
|