From f4fae92b6768541e2952173c3d4b09040f95bf7e Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 16 Feb 2011 20:17:18 +0000 Subject: Moved kpilot from kdepim to applications, as the core Trinity libraries should not contain hardware-dependent software git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1221127 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kpilot/conduits/recordconduit/Makefile.am | 15 -- kpilot/conduits/recordconduit/factory.cc | 144 ------------------- kpilot/conduits/recordconduit/factory.h | 40 ------ .../conduits/recordconduit/record-conduit.desktop | 91 ------------ kpilot/conduits/recordconduit/settings.kcfg | 22 --- kpilot/conduits/recordconduit/settings.kcfgc | 7 - kpilot/conduits/recordconduit/setup_base.ui | 158 --------------------- 7 files changed, 477 deletions(-) delete mode 100644 kpilot/conduits/recordconduit/Makefile.am delete mode 100644 kpilot/conduits/recordconduit/factory.cc delete mode 100644 kpilot/conduits/recordconduit/factory.h delete mode 100644 kpilot/conduits/recordconduit/record-conduit.desktop delete mode 100644 kpilot/conduits/recordconduit/settings.kcfg delete mode 100644 kpilot/conduits/recordconduit/settings.kcfgc delete mode 100644 kpilot/conduits/recordconduit/setup_base.ui (limited to 'kpilot/conduits/recordconduit') diff --git a/kpilot/conduits/recordconduit/Makefile.am b/kpilot/conduits/recordconduit/Makefile.am deleted file mode 100644 index 33ceb8540..000000000 --- a/kpilot/conduits/recordconduit/Makefile.am +++ /dev/null @@ -1,15 +0,0 @@ -INCLUDES= $(PISOCK_INCLUDE) -I$(top_srcdir)/kpilot/lib $(all_includes) - -METASOURCES = AUTO - -servicedir = $(kde_servicesdir) -service_DATA = record-conduit.desktop - -kde_module_LTLIBRARIES = conduit_record.la - - -conduit_record_la_SOURCES = settings.kcfgc setup_base.ui factory.cc -conduit_record_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) -conduit_record_la_LIBADD = ../../lib/libkpilot.la $(LIB_KDEUI) - -kde_kcfg_DATA = settings.kcfg diff --git a/kpilot/conduits/recordconduit/factory.cc b/kpilot/conduits/recordconduit/factory.cc deleted file mode 100644 index 83377336a..000000000 --- a/kpilot/conduits/recordconduit/factory.cc +++ /dev/null @@ -1,144 +0,0 @@ -/* KPilot -** -** Copyright (C) 2005 by Adriaan de Groot -** -** This file defines the factory for the recordconduit plugin. -*/ - -/* -** This program is free software; you can redistribute it and/or modify -** it under the terms of the GNU Lesser General Public License as published by -** the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. -** -** You should have received a copy of the GNU Lesser 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 "options.h" - -#include -#include -#include - -#include -#include -#include - -#include "pluginfactory.h" -#include "pilotDatabase.h" -#include "recordConduit.h" - -#include "setup_base.h" -#include "factory.h" -#include "settings.h" - - -class ConduitConfig : public ConduitConfigBase -{ -public: - ConduitConfig(TQWidget *parent=0L, const char *n=0L); - virtual void commit(); - virtual void load(); -protected: - RecordWidget *fConfigWidget; - KAboutData *fAbout; -} ; - -ConduitConfig::ConduitConfig(TQWidget *p, const char *n) : - ConduitConfigBase(p,n), - fConfigWidget(new RecordWidget(p)) -{ - FUNCTIONSETUP; - fConduitName = i18n("Record Conduit"); - fAbout = new KAboutData("recordConduit", - I18N_NOOP("Record Conduit for KPilot"), - KPILOT_VERSION, - I18N_NOOP("Configures the Record Conduit for KPilot"), - KAboutData::License_GPL, - "(C) 2005, Adriaan de Groot"); - fAbout->addAuthor("Adriaan de Groot", - I18N_NOOP("Primary Author"), - "groot@kde.org", - "http://people.fruitsalad.org/adridg/"); - - ConduitConfigBase::addAboutPage(fConfigWidget->tabWidget,fAbout); - fWidget=fConfigWidget; - TQObject::connect(fConfigWidget->fLogMessage,TQT_SIGNAL(textChanged(const TQString&)), - this,TQT_SLOT(modified())); - TQObject::connect(fConfigWidget->fDatabases,TQT_SIGNAL(textChanged(const TQString&)), - this,TQT_SLOT(modified())); - TQObject::connect(fConfigWidget->fFailImmediately,TQT_SIGNAL(toggled(bool)), - this,TQT_SLOT(modified())); -} - -/* virtual */ void ConduitConfig::commit() -{ - FUNCTIONSETUP; - -#ifdef DEBUG - DEBUGKPILOT << fname - << ": Message=" - << fConfigWidget->fLogMessage->text() - << endl; - DEBUGKPILOT << fname - << ": Databases=" - << fConfigWidget->fDatabases->text() - << endl; -#endif - - ConduitSettings::setLogMessage( fConfigWidget->fLogMessage->text() ); - ConduitSettings::setDatabases( fConfigWidget->fDatabases->text() ); - ConduitSettings::setFailImmediately( fConfigWidget->fFailImmediately->isChecked()); - ConduitSettings::self()->writeConfig(); - unmodified(); -} - -/* virtual */ void ConduitConfig::load() -{ - FUNCTIONSETUP; - ConduitSettings::self()->readConfig(); - - fConfigWidget->fLogMessage->setText( ConduitSettings::logMessage() ); - fConfigWidget->fDatabases->setText( ConduitSettings::databases().join(",") ); - fConfigWidget->fFailImmediately->setChecked( ConduitSettings::failImmediately() ); - -#ifdef DEBUG - DEBUGKPILOT << fname - << ": Read Message=" - << fConfigWidget->fLogMessage->text() - << endl; - DEBUGKPILOT << fname - << ": Read Database=" - << fConfigWidget->fDatabases->text() - << endl; -#endif - - unmodified(); -} - -typedef PilotDatabase PilotDatabaseContainer; - -typedef RecordConduit > RecordAction; - -extern "C" -{ - -void *init_conduit_record() -{ - return new ConduitFactory(0,"recordconduit"); -} - -} - diff --git a/kpilot/conduits/recordconduit/factory.h b/kpilot/conduits/recordconduit/factory.h deleted file mode 100644 index 6d35d4db1..000000000 --- a/kpilot/conduits/recordconduit/factory.h +++ /dev/null @@ -1,40 +0,0 @@ -#ifndef KPILOT_RECORD_FACTORY_H -#define KPILOT_RECORD_FACTORY_H -/* factory.h KPilot -** -** Copyright (C) 2005 by Adriaan de Groot -** -** This is the factory for the recordconduit, which uses the -** template class RecordConduit for demonstration purposes. -*/ - -/* -** This program is free software; you can redistribute it and/or modify -** it under the terms of the GNU Lesser General Public License as published by -** the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details. -** -** You should have received a copy of the GNU Lesser 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 -*/ - - -extern "C" -{ - -void *init_conduit_record(); - -} - -#endif diff --git a/kpilot/conduits/recordconduit/record-conduit.desktop b/kpilot/conduits/recordconduit/record-conduit.desktop deleted file mode 100644 index a96f24ecc..000000000 --- a/kpilot/conduits/recordconduit/record-conduit.desktop +++ /dev/null @@ -1,91 +0,0 @@ -[Desktop Entry] -Type=Service -Name=Records (Experimental) -Name[af]=Rekords (Eksperimenteel) -Name[bg]=Записи (Експериментално) -Name[ca]=Registres (Experimental) -Name[cs]=Záznamy (experimentální) -Name[da]=Indspilninger (eksperimentel) -Name[de]=Einträge (Experimentell) -Name[el]=Εγγραφές (Πειραματικό) -Name[es]=Registros (Experimental) -Name[et]=Kirjed (eksperimentaalne) -Name[fr]=Enregistrements (expérimental) -Name[fy]=Opnames (eksperimenteel) -Name[gl]=Grava (Experimental) -Name[hu]=Rekordok (kísérleti) -Name[it]=Record (sperimentale) -Name[ja]=レコード (実験中) -Name[kk]=Жазулар (Эксперименталдық) -Name[km]=កំណត់​ត្រា (ពិសោធន៍) -Name[lt]=Įrašai (eksperimentinis) -Name[nb]=Records (Eksperimentell) -Name[nds]=Logbook (warrt utprobeert) -Name[ne]=रेकर्ड (प्रयोगात्मक) -Name[nl]=Opnames (experimenteel) -Name[pl]=Wpisy (eksperymentalne) -Name[pt]=Registos (Experimental) -Name[pt_BR]=Registros (Experimental) -Name[ru]=Записи (экспериментально) -Name[sk]=Záznamy (Experimentálne) -Name[sl]=Zapisi (poskusno) -Name[sr]=Слогови (експериментално) -Name[sr@Latn]=Slogovi (eksperimentalno) -Name[sv]=Inspelningar (experimentell) -Name[tr]=Kayıtlar (Deneysel) -Name[uk]=Записи (експериментальний) -Name[zh_CN]=记录(试验性) -Name[zh_TW]=紀錄(實驗性) -Comment=This conduit does nothing. -Comment[af]=Hierdie pad doen niks -Comment[bg]=Това нещо прави нищо -Comment[bs]=Ovaj conduit ne radi ništa. -Comment[ca]=Aquest conducte no fa res. -Comment[cs]=Toto propojení nedělá nic. -Comment[cy]=Nid yw'r cwndid yma yn gwneud unrhyw beth. -Comment[da]=Denne kanal gør ingenting. -Comment[de]=Diese Erweiterung (Conduit) ist ohne Funktion -Comment[el]=Αυτός ο σύνδεσμος δεν κάνει τίποτα. -Comment[eo]=Tiu kanalo faras nenion. -Comment[et]=See kanal ei tee mitte kui midagi. -Comment[eu]=Kanal honek ez du ezer egiten. -Comment[fa]=این لوله هیچ چیز ندارد. -Comment[fi]=Tämä yhdyskäytävä ei tee mitään. -Comment[fr]=Ce canal ne fait rien. -Comment[fy]=Dit conduit docht neat. -Comment[ga]=Ní dhéanann an seoladán seo faic. -Comment[gl]=Este conducto non fai nada. -Comment[hi]=यह कन्ड्यूइट कुछ नहीं करता है. -Comment[hu]=Ez a csatoló üres, csak tesztelési célokat szolgál -Comment[is]=Þessi rás gerir ekki neitt. -Comment[it]=Questo conduit non fa nulla. -Comment[ja]=このコンジットは未知です。 -Comment[kk]=Ештеңе істемейтін арна. -Comment[km]=បំពង់​នេះ​មិន​ធ្វើ​អ្វី​ទាំងអស់ ។ -Comment[lt]=Šis kanalas nieko neatlieka. -Comment[mk]=Овој канал не прави ништо. -Comment[ms]=Saluran ini tidak berbuat apa-apa. -Comment[nb]=Denne kanalen gjør ingenting. -Comment[nds]=Disse Kanaal deit gor nix. -Comment[ne]=यो कन्ड्युटले केही पनि गर्दैन । -Comment[nl]=Dit conduit doet niets. -Comment[nn]=Denne koplinga gjer ingenting. -Comment[pl]=Ten łącznik nic nie robi. -Comment[pt]=Esta conduta não faz nada. -Comment[pt_BR]=Este conduíte não faz coisa alguma. -Comment[ro]=Această conductă nu face nimic. -Comment[ru]=Канал, который ничего не делает. -Comment[sk]=Táto spojka nič nerobí. -Comment[sl]=Ta veznik ne počne ničesar. -Comment[sr]=Овај провод не ради ништа. -Comment[sr@Latn]=Ovaj provod ne radi ništa. -Comment[sv]=Den här kanalen gör ingenting. -Comment[ta]=இந்த காப்புக் குழாய் ஒன்றும் செய்யாது -Comment[tg]=Канале, ки дар ҳолати шурӯъ нест. -Comment[tr]=Bu kanal herhangi bir işlem yapmaz. -Comment[uk]=Цей акведук нічого не робить. -Comment[zh_CN]=此管道不做任何事。 -Comment[zh_TW]=不做任何事。 -Implemented=file -ServiceTypes=KPilotConduit -X-KDE-Library=conduit_record diff --git a/kpilot/conduits/recordconduit/settings.kcfg b/kpilot/conduits/recordconduit/settings.kcfg deleted file mode 100644 index 7fc2180df..000000000 --- a/kpilot/conduits/recordconduit/settings.kcfg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - false - - - - KPilot was here. - - - - - - - - diff --git a/kpilot/conduits/recordconduit/settings.kcfgc b/kpilot/conduits/recordconduit/settings.kcfgc deleted file mode 100644 index 8a2b4f356..000000000 --- a/kpilot/conduits/recordconduit/settings.kcfgc +++ /dev/null @@ -1,7 +0,0 @@ -File=settings.kcfg -ClassName= ConduitSettings -Singleton=true -ItemAccessors=true -Mutators=true -GlobalEnums=true -SetUserTexts=true diff --git a/kpilot/conduits/recordconduit/setup_base.ui b/kpilot/conduits/recordconduit/setup_base.ui deleted file mode 100644 index 126d3ff20..000000000 --- a/kpilot/conduits/recordconduit/setup_base.ui +++ /dev/null @@ -1,158 +0,0 @@ - -RecordWidget -A tabWidget for configuring -the Record-conduit settings. -Adriaan de Groot - - - Form1 - - - - 0 - 0 - 342 - 163 - - - - - 5 - 5 - 0 - 0 - - - - - 570 - 270 - - - - Null-Conduit Options - - - - - - - - unnamed - - - 0 - - - 6 - - - - tabWidget - - - - 7 - 7 - 0 - 0 - - - - - - - Widget2 - - - General - - - - unnamed - - - 11 - - - 6 - - - - fLogMessage - - - KPilot was here. - - - <qt>Enter the message to add to the Sync Log on your Pilot here.</qt> - - - - - TextLabel1_2 - - - &Log message: - - - fLogMessage - - - - - TextLabel2_2 - - - &Databases: - - - fDatabases - - - - - fDatabases - - - <qt>The Null-conduit can be attached to several databases, effectively preventing them from Syncing. Enter the database names here.</qt> - - - - - Spacer4 - - - Vertical - - - Expanding - - - - 20 - 20 - - - - - - fFailImmediately - - - Simulate failure - - - Force the conduit to simulate a failure to perform the HotSync. - - - - - - - - - tabWidget - - - -- cgit v1.2.1