KCal Library
resourcelocaldirconfig.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef KCAL_RESOURCELOCALDIRCONFIG_H
00024 #define KCAL_RESOURCELOCALDIRCONFIG_H
00025
00026 #include "kcal_export.h"
00027
00028 #include "kresources/resource.h"
00029 #include "kresources/configwidget.h"
00030
00031 namespace KCal {
00032
00039 class KCAL_EXPORT ResourceLocalDirConfig : public KRES::ConfigWidget
00040 {
00041 Q_OBJECT
00042 public:
00043 explicit ResourceLocalDirConfig( QWidget *parent = 0 );
00044 ~ResourceLocalDirConfig();
00045
00046 public Q_SLOTS:
00047 virtual void loadSettings( KRES::Resource *resource );
00048 virtual void saveSettings( KRES::Resource *resource );
00049
00050 private:
00051
00052 Q_DISABLE_COPY( ResourceLocalDirConfig )
00053 class Private;
00054 Private *const d;
00055
00056 };
00057
00058 }
00059
00060 #endif