summaryrefslogtreecommitdiffstats
path: root/src/sources/sourceprefs.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 19:54:13 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-10 19:54:13 +0000
commitda7847adb43726079c7a4be1f06acbebe0bdde57 (patch)
tree0138139a2d4a3a213319cc5e23e409b90a9fcc6b /src/sources/sourceprefs.cpp
downloadkima-da7847adb43726079c7a4be1f06acbebe0bdde57.tar.gz
kima-da7847adb43726079c7a4be1f06acbebe0bdde57.zip
Added old abandoned KDE3 version of Kima
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kima@1088422 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/sources/sourceprefs.cpp')
-rw-r--r--src/sources/sourceprefs.cpp88
1 files changed, 88 insertions, 0 deletions
diff --git a/src/sources/sourceprefs.cpp b/src/sources/sourceprefs.cpp
new file mode 100644
index 0000000..cabce8b
--- /dev/null
+++ b/src/sources/sourceprefs.cpp
@@ -0,0 +1,88 @@
+#include <kdialog.h>
+#include <klocale.h>
+/****************************************************************************
+** Form implementation generated from reading ui file './sourceprefs.ui'
+**
+** Created: Thu Jun 21 19:16:51 2007
+** by: The User Interface Compiler ($Id: qt/main.cpp 3.3.7 edited Aug 31 2005 $)
+**
+** WARNING! All changes made in this file will be lost!
+****************************************************************************/
+
+#include "sourceprefs.h"
+
+#include <qvariant.h>
+#include <qpushbutton.h>
+#include <qlabel.h>
+#include <qlineedit.h>
+#include <qcheckbox.h>
+#include <qlayout.h>
+#include <qtooltip.h>
+#include <qwhatsthis.h>
+
+/*
+ * Constructs a SourcePrefs as a child of 'parent', with the
+ * name 'name' and widget flags set to 'f'.
+ */
+SourcePrefs::SourcePrefs( QWidget* parent, const char* name, WFlags fl )
+ : QWidget( parent, name, fl )
+{
+ if ( !name )
+ setName( "SourcePrefs" );
+ SourcePrefsLayout = new QVBoxLayout( this, 0, 6, "SourcePrefsLayout");
+
+ descriptionLabel = new QLabel( this, "descriptionLabel" );
+ SourcePrefsLayout->addWidget( descriptionLabel );
+
+ hBoxLayout = new QHBoxLayout( 0, 0, 6, "hBoxLayout");
+
+ nameLabel = new QLabel( this, "nameLabel" );
+ hBoxLayout->addWidget( nameLabel );
+
+ nameLineEdit = new QLineEdit( this, "nameLineEdit" );
+ hBoxLayout->addWidget( nameLineEdit );
+ spacer8 = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
+ hBoxLayout->addItem( spacer8 );
+ SourcePrefsLayout->addLayout( hBoxLayout );
+
+ taskbarCheckBox = new QCheckBox( this, "taskbarCheckBox" );
+ SourcePrefsLayout->addWidget( taskbarCheckBox );
+
+ hBoxLayout2 = new QHBoxLayout( 0, 0, 6, "hBoxLayout2");
+ spacer8_2 = new QSpacerItem( 20, 20, QSizePolicy::Fixed, QSizePolicy::Minimum );
+ hBoxLayout2->addItem( spacer8_2 );
+
+ nameCheckBox = new QCheckBox( this, "nameCheckBox" );
+ hBoxLayout2->addWidget( nameCheckBox );
+ SourcePrefsLayout->addLayout( hBoxLayout2 );
+
+ tooltipCheckBox = new QCheckBox( this, "tooltipCheckBox" );
+ SourcePrefsLayout->addWidget( tooltipCheckBox );
+ languageChange();
+ resize( QSize(203, 127).expandedTo(minimumSizeHint()) );
+ clearWState( WState_Polished );
+}
+
+/*
+ * Destroys the object and frees any allocated resources
+ */
+SourcePrefs::~SourcePrefs()
+{
+ // no need to delete child widgets, Qt does it all for us
+}
+
+/*
+ * Sets the strings of the subwidgets using the current
+ * language.
+ */
+void SourcePrefs::languageChange()
+{
+ setCaption( tr2i18n( "SourcePrefs" ) );
+ descriptionLabel->setText( tr2i18n( "description" ) );
+ nameLabel->setText( tr2i18n( "Name:" ) );
+ taskbarCheckBox->setText( tr2i18n( "Show this source in Taskbar" ) );
+ nameCheckBox->setText( tr2i18n( "Show name in Taskbar" ) );
+ tooltipCheckBox->setText( tr2i18n( "Show this source in ToolTip" ) );
+}
+
+#include "sourceprefs.moc"