00001
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 TQWidget
00035 {
00036 Q_OBJECT
00037
00038
00039 public:
00040 GroupConfig( TQWidget *parent );
00041
00042 void setSyncProcess( SyncProcess *process );
00043
00044 void updateMembers();
00045
00046 void saveConfig();
00047
00048 protected slots:
00049 void addMember();
00050
00051 private:
00052 TQLabel *mNameLabel;
00053
00054 KJanusWidget *mMemberView;
00055
00056 SyncProcess *mProcess;
00057
00058 GroupConfigCommon *mCommonConfig;
00059 TQValueList<MemberConfig *> mMemberConfigs;
00060 TQValueList<TQFrame *> mConfigPages;
00061 };
00062
00063 #endif