summaryrefslogtreecommitdiffstats
path: root/libkdepim/komposer/core/prefsmodule.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:57:02 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:57:02 -0600
commit2c2fbd828ca474671bb9e03681b30b115d8d6035 (patch)
tree526a9da418f8d3d7ccf515c37048d3dfc80f2843 /libkdepim/komposer/core/prefsmodule.cpp
parentf0610eece3676b6fe99f42cf4ef2b19a39a5c4e8 (diff)
downloadtdepim-2c2fbd828ca474671bb9e03681b30b115d8d6035.tar.gz
tdepim-2c2fbd828ca474671bb9e03681b30b115d8d6035.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'libkdepim/komposer/core/prefsmodule.cpp')
-rw-r--r--libkdepim/komposer/core/prefsmodule.cpp142
1 files changed, 0 insertions, 142 deletions
diff --git a/libkdepim/komposer/core/prefsmodule.cpp b/libkdepim/komposer/core/prefsmodule.cpp
deleted file mode 100644
index 77e1c264b..000000000
--- a/libkdepim/komposer/core/prefsmodule.cpp
+++ /dev/null
@@ -1,142 +0,0 @@
-/**
- * prefsmodule.cpp
- *
- * Copyright (C) 2003-2004 Zack Rusin <zack@kde.org>
- *
- * This library 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 library 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 library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
- */
-
-#include "prefsmodule.h"
-
-#include <kaboutdata.h>
-#include <kdebug.h>
-#include <kcombobox.h>
-#include <klocale.h>
-#include <ktrader.h>
-
-#include <tqlayout.h>
-#include <tqlabel.h>
-#include <tqbuttongroup.h>
-
-#include <tdepimmacros.h>
-
-extern "C"
-{
- KDE_EXPORT KCModule *create_komposerconfig( TQWidget *parent, const char * ) {
- return new Komposer::PrefsModule( parent, "komposerprefs" );
- }
-}
-using namespace Komposer;
-
-PrefsModule::PrefsModule( TQWidget *parent, const char *name )
- : KPrefsModule( Komposer::Prefs::self(), parent, name )
-{
- TQVBoxLayout *topLayout = new TQVBoxLayout( this );
-
- EditorSelection *editors = new EditorSelection( i18n( "Editors" ),
- Komposer::Prefs::self()->m_activeEditor,
- this );
- topLayout->addWidget( editors->groupBox() );
-
- addWid( editors );
-
- load();
-}
-
-const KAboutData*
-PrefsModule::aboutData() const
-{
- KAboutData *about = new KAboutData( I18N_NOOP( "komposerconfig" ),
- I18N_NOOP( "KDE Komposer" ),
- 0, 0, KAboutData::License_LGPL,
- I18N_NOOP( "(c), 2003-2004 Zack Rusin" ) );
-
- about->addAuthor( "Zack Rusin", 0, "zack@kde.org" );;
-
- return about;
-}
-
-
-EditorSelection::EditorSelection( const TQString &text, TQString &reference,
- TQWidget *parent )
- : m_reference( reference )
-{
- m_box = new TQGroupBox( 0, TQt::Vertical, text, parent );
- TQVBoxLayout *boxLayout = new TQVBoxLayout( m_box->tqlayout() );
- boxLayout->tqsetAlignment( TQt::AlignTop );
-
- m_editorsCombo = new KComboBox( m_box );
- boxLayout->addWidget( m_editorsCombo );
-
- connect( m_editorsCombo, TQT_SIGNAL(activated(const TQString&)),
- TQT_SLOT(slotActivated(const TQString&)) );
-}
-
-EditorSelection::~EditorSelection()
-{
-}
-
-TQGroupBox*
-EditorSelection::groupBox() const
-{
- return m_box;
-}
-
-void
-EditorSelection::readConfig()
-{
- m_editorsCombo->clear();
-
- KTrader::OfferList editors = KTrader::self()->query(
- TQString::tqfromLatin1( "Komposer/Editor" ) );
- KTrader::OfferList::ConstIterator it;
- int i = 0;
- for ( it = editors.begin(); it != editors.end(); ++it, ++i ) {
- if ( !(*it)->hasServiceType( TQString::tqfromLatin1( "Komposer/Editor" ) ) )
- continue;
-
- TQString name = (*it)->property( "X-KDE-KomposerIdentifier" ).toString();
- m_editorsCombo->insertItem( name );
- if ( m_reference.contains( name ) )
- m_editorsCombo->setCurrentItem( i );
- }
-}
-
-void EditorSelection::writeConfig()
-{
- m_reference = m_services[ m_editorsCombo->currentText()]->
- property( "X-KDE-KomposerIdentifier" ).toString();
-}
-
-void
-EditorSelection::slotActivated( const TQString &editor )
-{
- if ( !editor.isEmpty() )
- emit changed();
-}
-
-void
-EditorSelection::setItem( const TQString &str )
-{
- for ( int i = 0; i < m_editorsCombo->count(); ++i ) {
- if ( m_editorsCombo->text( i ) == str ) {
- m_editorsCombo->setCurrentItem( i );
- break;
- }
- }
-}
-
-#include "prefsmodule.moc"