kitchensync

konnectorconfigdialog.h

00001 /*
00002     This file is part of KitchenSync.
00003     Copyright (c) 2005 Tobias Koenig <tokoe@kde.org>
00004 
00005     Based on the code of KRES::ConfigDialog from kdelibs
00006 
00007     This library is free software; you can redistribute it and/or
00008     modify it under the terms of the GNU Library General Public
00009     License as published by the Free Software Foundation; either
00010     version 2 of the License, or (at your option) any later version.
00011 
00012     This library is distributed in the hope that it will be useful,
00013     but WITHOUT ANY WARRANTY; without even the implied warranty of
00014     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00015     Library General Public License for more details.
00016 
00017     You should have received a copy of the GNU Library General Public License
00018     along with this library; see the file COPYING.LIB.  If not, write to
00019     the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00020     Boston, MA 02110-1301, USA.
00021 */
00022 
00023 #ifndef KONNECTORCONFIGDIALOG_H
00024 #define KONNECTORCONFIGDIALOG_H
00025 
00026 #include <kdialogbase.h>
00027 
00028 class QCheckBox;
00029 class QWidget;
00030 
00031 class KLineEdit;
00032 
00033 namespace KRES {
00034 class ConfigWidget;
00035 }
00036 
00037 namespace KSync {
00038 class Konnector;
00039 }
00040 
00041 class KonnectorConfigDialog : public KDialogBase
00042 {
00043   Q_OBJECT
00044 
00045   public:
00046     KonnectorConfigDialog( QWidget *parent, KSync::Konnector* konnector );
00047 
00048     void setInEditMode( bool value );
00049 
00050   protected slots:
00051     void accept();
00052     void setReadOnly( bool value );
00053     void slotNameChanged( const QString &text );
00054 
00055   private:
00056     QWidget *createGeneralPage( QWidget* );
00057     QWidget *createFilterPage( QWidget* );
00058 
00059     KRES::ConfigWidget *mConfigWidget;
00060     KSync::Konnector* mKonnector;
00061 
00062     KLineEdit *mName;
00063     QCheckBox *mReadOnly;
00064 };
00065 
00066 #endif
KDE Home | KDE Accessibility Home | Description of Access Keys