summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profileeditordialog.cpp
authorzecke <zecke>2004-10-16 21:06:28 (UTC)
committer zecke <zecke>2004-10-16 21:06:28 (UTC)
commit999a0f2d22f132005bde62558ace48a0ce8b1dcc (patch) (unidiff)
tree75f528b52a8a89289925e62bbd4c48d316c8ddcf /noncore/apps/opie-console/profileeditordialog.cpp
parente70f226f5c4c2f488f6c4406034a04e128c0ca93 (diff)
downloadopie-999a0f2d22f132005bde62558ace48a0ce8b1dcc.zip
opie-999a0f2d22f132005bde62558ace48a0ce8b1dcc.tar.gz
opie-999a0f2d22f132005bde62558ace48a0ce8b1dcc.tar.bz2
-Remove never finished classes by ibotty for the console widget
-Put setCurrent into ComboboxHelper and remove duplication from the dialogs -Remove old and unneeded debug output -IOBt, IOIrda can share the implementation for sening,recieving and supports with IOSerial
Diffstat (limited to 'noncore/apps/opie-console/profileeditordialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profileeditordialog.cpp22
1 files changed, 9 insertions, 13 deletions
diff --git a/noncore/apps/opie-console/profileeditordialog.cpp b/noncore/apps/opie-console/profileeditordialog.cpp
index dc42d8b..8109070 100644
--- a/noncore/apps/opie-console/profileeditordialog.cpp
+++ b/noncore/apps/opie-console/profileeditordialog.cpp
@@ -1,3 +1,8 @@
1#include "profileeditordialog.h"
2#include "metafactory.h"
3#include "comboboxhelper.h"
4
5
1#include <qlayout.h> 6#include <qlayout.h>
2#include <qlineedit.h> 7#include <qlineedit.h>
3#include <qlabel.h> 8#include <qlabel.h>
@@ -6,19 +11,10 @@
6#include <qcheckbox.h> 11#include <qcheckbox.h>
7#include <qscrollview.h> 12#include <qscrollview.h>
8 13
9#include "metafactory.h" 14
10#include "profileeditordialog.h"
11 15
12using namespace Opie::Ui; 16using namespace Opie::Ui;
13namespace { 17
14 void setCurrent( const QString& str, QComboBox* bo ) {
15 for (int i = 0; i < bo->count(); i++ ) {
16 if ( bo->text(i) == str ) {
17 bo->setCurrentItem( i );
18 }
19 }
20 };
21}
22 18
23ProfileEditorDialog::ProfileEditorDialog( MetaFactory* fact, 19ProfileEditorDialog::ProfileEditorDialog( MetaFactory* fact,
24 const Profile& prof ) 20 const Profile& prof )
@@ -124,8 +120,8 @@ void ProfileEditorDialog::initUI()
124 // load profile values 120 // load profile values
125 m_name->setText(m_prof.name()); 121 m_name->setText(m_prof.name());
126 slotKeyActivated( "Default Keyboard" ); 122 slotKeyActivated( "Default Keyboard" );
127 setCurrent( m_fact->external(m_prof.ioLayerName() ), m_conCmb ); 123 ComboboxHelper::setCurrent( m_fact->external(m_prof.ioLayerName() ), m_conCmb );
128 setCurrent( m_fact->external(m_prof.terminalName() ), m_termCmb ); 124 ComboboxHelper::setCurrent( m_fact->external(m_prof.terminalName() ), m_termCmb );
129 slotConActivated( m_fact->external(m_prof.ioLayerName() ) ); 125 slotConActivated( m_fact->external(m_prof.ioLayerName() ) );
130 slotTermActivated( m_fact->external(m_prof.terminalName() ) ); 126 slotTermActivated( m_fact->external(m_prof.terminalName() ) );
131 m_autoConnect->setChecked(m_prof.autoConnect()); 127 m_autoConnect->setChecked(m_prof.autoConnect());