summaryrefslogtreecommitdiffstats
path: root/kpilot/kpilot/kpilotConfigDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'kpilot/kpilot/kpilotConfigDialog.h')
-rw-r--r--kpilot/kpilot/kpilotConfigDialog.h134
1 files changed, 0 insertions, 134 deletions
diff --git a/kpilot/kpilot/kpilotConfigDialog.h b/kpilot/kpilot/kpilotConfigDialog.h
deleted file mode 100644
index 11960f8d..00000000
--- a/kpilot/kpilot/kpilotConfigDialog.h
+++ /dev/null
@@ -1,134 +0,0 @@
-#ifndef _KPILOT_KPILOTCONFIGDIALOG_H
-#define _KPILOT_KPILOTCONFIGDIALOG_H
-/* kpilotConfigDialog.h KPilot
-**
-** Copyright (C) 2001 by Dan Pilone
-** Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
-**
-** This file defines a specialization of KPilotDeviceLink
-** that can actually handle some HotSync tasks, like backup
-** and restore. It does NOT do conduit stuff.
-*/
-
-/*
-** This program is free software; you can redistribute it and/or modify
-** it under the terms of the GNU General Public License as published by
-** the Free Software Foundation; either version 2 of the License, or
-** (at your option) any later version.
-**
-** This program is distributed in the hope that it will be useful,
-** but WITHOUT ANY WARRANTY; without even the implied warranty of
-** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-** GNU General Public License for more details.
-**
-** You should have received a copy of the GNU General Public License
-** along with this program in a file called COPYING; if not, write to
-** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
-** MA 02110-1301, USA.
-*/
-
-/*
-** Bug reports and questions can be sent to kde-pim@kde.org
-*/
-
-#include "plugin.h"
-
-
-// class KPilotConfigWidget;
-class StartExitConfigWidget;
-class SyncConfigWidget;
-class DeviceConfigWidget;
-class ViewersConfigWidget;
-class BackupConfigWidget;
-
-class ConfigPage : public ConduitConfigBase
-{
-public:
- ConfigPage( TQWidget *w, const char *n ) : ConduitConfigBase(w,n) { } ;
-protected:
- // Override base class virtual function.
- virtual TQString maybeSaveText() const;
-} ;
-
-class DeviceConfigPage : public ConfigPage
-{
-Q_OBJECT
-public:
- DeviceConfigPage( TQWidget *, const char * );
-
-protected:
- virtual bool validate();
- virtual void load();
- virtual void commit();
-
-protected slots:
- void changePortType(int);
-
-private:
- DeviceConfigWidget *fConfigWidget;
-
- // Read and write the values of Encoding
- // and EncodingDD.
- void getEncoding();
- void setEncoding();
-} ;
-
-
-class KDE_EXPORT SyncConfigPage : public ConfigPage
-{
-public:
- SyncConfigPage( TQWidget *, const char * );
-
-protected:
- virtual void load();
- virtual void commit();
-
-private:
- SyncConfigWidget *fConfigWidget;
-} ;
-
-class BackupConfigPage : public ConfigPage
-{
-Q_OBJECT
-public:
- BackupConfigPage( TQWidget *, const char * );
-
-protected:
- virtual void load();
- virtual void commit();
-
-protected slots:
- void slotSelectNoBackupDBs();
- void slotSelectNoRestoreDBs();
-
-private:
- BackupConfigWidget *fConfigWidget;
-} ;
-
-class StartExitConfigPage : public ConfigPage
-{
-public:
- StartExitConfigPage( TQWidget *, const char * );
-
-protected:
- virtual void load();
- virtual void commit();
-
-private:
- StartExitConfigWidget *fConfigWidget;
-} ;
-
-class ViewersConfigPage : public ConfigPage
-{
-public:
- ViewersConfigPage( TQWidget *, const char * );
-
-protected:
- virtual void load();
- virtual void commit();
-
-private:
- ViewersConfigWidget *fConfigWidget;
-} ;
-
-#endif