kitchensync
groupconfig.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef GROUPCONFIG_H
00021 #define GROUPCONFIG_H
00022
00023 #include <tqwidget.h>
00024 #include <tqvaluelist.h>
00025
00026 class TQFrame;
00027 class TQLabel;
00028 class KJanusWidget;
00029
00030 class GroupConfigCommon;
00031 class MemberConfig;
00032 class SyncProcess;
00033
00034 class GroupConfig : public QWidget
00035 {
00036 Q_OBJECT
00037
00038 public:
00039 GroupConfig( TQWidget *parent );
00040
00041 void setSyncProcess( SyncProcess *process );
00042
00043 void updateMembers();
00044
00045 void saveConfig();
00046
00047 protected slots:
00048 void addMember();
00049
00050 private:
00051 TQLabel *mNameLabel;
00052
00053 KJanusWidget *mMemberView;
00054
00055 SyncProcess *mProcess;
00056
00057 GroupConfigCommon *mCommonConfig;
00058 TQValueList<MemberConfig *> mMemberConfigs;
00059 TQValueList<TQFrame *> mConfigPages;
00060 };
00061
00062 #endif
|