summaryrefslogtreecommitdiff
path: root/noncore/unsupported/oipkg/settings.h
authortille <tille>2002-07-09 13:17:05 (UTC)
committer tille <tille>2002-07-09 13:17:05 (UTC)
commite99adc2029808f6276474c95e8587607a4bd8091 (patch) (side-by-side diff)
treeff1d4fc802b9cb581cb01466777f564ca7390512 /noncore/unsupported/oipkg/settings.h
parent0faf1ec599a30432169486aea8a117cf9f1627b8 (diff)
downloadopie-e99adc2029808f6276474c95e8587607a4bd8091.zip
opie-e99adc2029808f6276474c95e8587607a4bd8091.tar.gz
opie-e99adc2029808f6276474c95e8587607a4bd8091.tar.bz2
weg mit dem scheiss...
Diffstat (limited to 'noncore/unsupported/oipkg/settings.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/oipkg/settings.h75
1 files changed, 0 insertions, 75 deletions
diff --git a/noncore/unsupported/oipkg/settings.h b/noncore/unsupported/oipkg/settings.h
deleted file mode 100644
index 44459b2..0000000
--- a/noncore/unsupported/oipkg/settings.h
+++ b/dev/null
@@ -1,75 +0,0 @@
-/***************************************************************************
- * *
- * 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. *
- * *
- ***************************************************************************/
-// (c) 2002 Patrick S. Vogt <tille@handhelds.org>
-#ifndef PACKAGEMANAGERSETTINGS_H
-#define PACKAGEMANAGERSETTINGS_H
-
-#include "pksettingsbase.h"
-#include <qintdict.h>
-
-
-class PackageManagerSettings : public PackageManagerSettingsBase
-{
- Q_OBJECT
-public:
- PackageManagerSettings( QWidget* , const char* , WFlags );
- ~PackageManagerSettings();
-
- bool showDialog( int ) ;
- QString getDestinationUrl();
- QString getDestinationName();
- QString getLinkDestinationName();
- bool createLinks();
- QStringList getActiveServers();
- QStringList getDestinationUrls();
-
-public slots: /** No descriptions */
- void createLinks();
- void removeLinks();
- void writeInstallationSettings();
- void readInstallationSettings();
- void writeCurrentInstallationSetting();
- void readInstallationSetting(int);
- void installationSettingSetName(const QString &);
- void activeDestinationChange(int)
- void newServer();
- void editServer(int);
- void removeDestination();
- void newDestination();
- void editDestination(int);
- void linkEnabled(bool);
- void removeServer();
- void serverNameChanged(const QString&);
- void serverUrlChanged(const QString&);
- void destNameChanged(const QString&);
- void destUrlChanged(const QString&);
- void installationSettingChange(int);
- void newInstallationSetting();
- void removeInstallationSetting();
- void renameInstallationSetting();
-
-private:
- QIntDict<QString> serverurlDic;
- QIntDict<QString> destinationurlDic;
- int ipkg_old;
- int editedserver;
- int editeddestination;
- int currentSetting;
- int installationSettingsCount;
- bool changed;
- bool serverChanged;
-
- bool readIpkgConfig(const QString&);
- void writeIpkgConfig(const QString&);
- void writeSettings();
- void readSettings();
-};
-
-#endif
-