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 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