summaryrefslogtreecommitdiffstats
path: root/src/configDlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/configDlg.cpp')
-rw-r--r--src/configDlg.cpp119
1 files changed, 0 insertions, 119 deletions
diff --git a/src/configDlg.cpp b/src/configDlg.cpp
deleted file mode 100644
index 29d71f8..0000000
--- a/src/configDlg.cpp
+++ /dev/null
@@ -1,119 +0,0 @@
-#include <tdelocale.h>
-/****************************************************************************
-** Form implementation generated from reading ui file './configDlg.ui'
-**
-** Created: dim. oct. 26 08:57:34 2008
-**
-** WARNING! All changes made in this file will be lost!
-****************************************************************************/
-
-#include "configDlg.h"
-
-#include <tqvariant.h>
-#include <tqtable.h>
-#include <kpushbutton.h>
-#include <tqlayout.h>
-#include <tqtooltip.h>
-#include <tqwhatsthis.h>
-#include "kpushbutton.h"
-
-/*
- * Constructs a configDlg as a child of 'parent', with the
- * name 'name' and widget flags set to 'f'.
- */
-configDlg::configDlg( TQWidget* parent, const char* name, WFlags fl )
- : TQWidget( parent, name, fl )
-{
- if ( !name )
- setName( "configDlg" );
- setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)7, (TQSizePolicy::SizeType)7, 0, 0, sizePolicy().hasHeightForWidth() ) );
- configDlgLayout = new TQGridLayout( this, 1, 1, 11, 6, "configDlgLayout");
-
- Layout1 = new TQHBoxLayout( 0, 0, 6, "Layout1");
-
- configDlgLayout->addMultiCellLayout( Layout1, 3, 3, 0, 1 );
- spacer4 = new TQSpacerItem( 20, 190, TQSizePolicy::Minimum, TQSizePolicy::Expanding );
- configDlgLayout->addItem( spacer4, 2, 1 );
-
- tblDevices = new TQTable( this, "tblDevices" );
- tblDevices->setNumCols( tblDevices->numCols() + 1 );
- tblDevices->horizontalHeader()->setLabel( tblDevices->numCols() - 1, tr2i18n( "device" ) );
- tblDevices->setNumCols( tblDevices->numCols() + 1 );
- tblDevices->horizontalHeader()->setLabel( tblDevices->numCols() - 1, tr2i18n( "label" ) );
- tblDevices->setNumCols( tblDevices->numCols() + 1 );
- tblDevices->horizontalHeader()->setLabel( tblDevices->numCols() - 1, tr2i18n( "Input" ) );
- tblDevices->setNumCols( tblDevices->numCols() + 1 );
- tblDevices->horizontalHeader()->setLabel( tblDevices->numCols() - 1, tr2i18n( "Output" ) );
- tblDevices->setResizePolicy( TQTable::Default );
- tblDevices->setVScrollBarMode( TQTable::Auto );
- tblDevices->setNumRows( 0 );
- tblDevices->setNumCols( 4 );
- tblDevices->setShowGrid( TRUE );
- tblDevices->setSelectionMode( TQTable::Single );
- tblDevices->setFocusStyle( TQTable::SpreadSheet );
-
- configDlgLayout->addMultiCellWidget( tblDevices, 1, 2, 0, 0 );
-
- layout4 = new TQVBoxLayout( 0, 0, 6, "layout4");
-
- bAdd = new KPushButton( this, "bAdd" );
- bAdd->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)1, (TQSizePolicy::SizeType)0, 0, 0, bAdd->sizePolicy().hasHeightForWidth() ) );
- bAdd->setProperty( "stdItem", 27 );
- layout4->addWidget( bAdd );
-
- bRemove = new KPushButton( this, "bRemove" );
- bRemove->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)1, (TQSizePolicy::SizeType)0, 0, 0, bRemove->sizePolicy().hasHeightForWidth() ) );
- bRemove->setProperty( "stdItem", 28 );
- layout4->addWidget( bRemove );
-
- configDlgLayout->addLayout( layout4, 1, 1 );
- languageChange();
- resize( TQSize(578, 342).expandedTo(minimumSizeHint()) );
- clearWState( WState_Polished );
-
- // signals and slots connections
- connect( bRemove, TQT_SIGNAL( clicked() ), this, TQT_SLOT( bRemoveClick() ) );
- connect( bAdd, TQT_SIGNAL( clicked() ), this, TQT_SLOT( bAddClick() ) );
-}
-
-/*
- * Destroys the object and frees any allocated resources
- */
-configDlg::~configDlg()
-{
- // no need to delete child widgets, TQt does it all for us
-}
-
-/*
- * Sets the strings of the subwidgets using the current
- * language.
- */
-void configDlg::languageChange()
-{
- setCaption( tr2i18n( "k9Copy - Devices" ) );
- tblDevices->horizontalHeader()->setLabel( 0, tr2i18n( "device" ) );
- tblDevices->horizontalHeader()->setLabel( 1, tr2i18n( "label" ) );
- tblDevices->horizontalHeader()->setLabel( 2, tr2i18n( "Input" ) );
- tblDevices->horizontalHeader()->setLabel( 3, tr2i18n( "Output" ) );
- bAdd->setText( tr2i18n( "Add" ) );
- bAdd->setAccel( TQKeySequence( TQString() ) );
- bRemove->setText( tr2i18n( "Remove" ) );
- bRemove->setAccel( TQKeySequence( TQString() ) );
-}
-
-void configDlg::bRemoveClick()
-{
- tqWarning( "configDlg::bRemoveClick(): Not implemented yet" );
-}
-
-void configDlg::bAddClick()
-{
- tqWarning( "configDlg::bAddClick(): Not implemented yet" );
-}
-
-void configDlg::bOkClick()
-{
- tqWarning( "configDlg::bOkClick(): Not implemented yet" );
-}
-
-#include "configDlg.moc"