kitchensync

groupconfig.h

00001 /*
00002     This file is part of KitchenSync.
00003 
00004     Copyright (c) 2005 Cornelius Schumacher <schumacher@kde.org>
00005 
00006     This program is free software; you can redistribute it and/or modify
00007     it under the terms of the GNU General Public License as published by
00008     the Free Software Foundation; either version 2 of the License, or
00009     (at your option) any later version.
00010 
00011     This program is distributed in the hope that it will be useful,
00012     but WITHOUT ANY WARRANTY; without even the implied warranty of
00013     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00014     GNU General Public License for more details.
00015 
00016     You should have received a copy of the GNU General Public License
00017     along with this program; if not, write to the Free Software
00018     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
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   TQ_OBJECT
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