You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
2.9 KiB
137 lines
2.9 KiB
#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
|