summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profileeditordialog.cpp
authorharlekin <harlekin>2002-10-17 17:39:06 (UTC)
committer harlekin <harlekin>2002-10-17 17:39:06 (UTC)
commitec202e5d2956f2cde0f2a6be5c452bd67347e21f (patch) (unidiff)
tree54d5868f9c71ad953360b911f9c50ff21e070d03 /noncore/apps/opie-console/profileeditordialog.cpp
parentfb44c86f420d9a77d7364ac8b8bbd25b0f6ab09a (diff)
downloadopie-ec202e5d2956f2cde0f2a6be5c452bd67347e21f.zip
opie-ec202e5d2956f2cde0f2a6be5c452bd67347e21f.tar.gz
opie-ec202e5d2956f2cde0f2a6be5c452bd67347e21f.tar.bz2
only show connection tab in profile config dialog if the current layer has connections - for local console mode
Diffstat (limited to 'noncore/apps/opie-console/profileeditordialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profileeditordialog.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/apps/opie-console/profileeditordialog.cpp b/noncore/apps/opie-console/profileeditordialog.cpp
index b709cf3..5c5c2b3 100644
--- a/noncore/apps/opie-console/profileeditordialog.cpp
+++ b/noncore/apps/opie-console/profileeditordialog.cpp
@@ -3,14 +3,12 @@
3#include <qlabel.h> 3#include <qlabel.h>
4#include <qmessagebox.h> 4#include <qmessagebox.h>
5#include <qstringlist.h> 5#include <qstringlist.h>
6#include <qcombobox.h> 6#include <qcombobox.h>
7 7
8 8
9#include <opie/otabwidget.h>
10
11#include "profileeditorplugins.h" 9#include "profileeditorplugins.h"
12#include "metafactory.h" 10#include "metafactory.h"
13#include "profileeditordialog.h" 11#include "profileeditordialog.h"
14 12
15namespace { 13namespace {
16 void setCurrent( const QString& str, QComboBox* bo ) { 14 void setCurrent( const QString& str, QComboBox* bo ) {
@@ -54,13 +52,13 @@ Profile ProfileEditorDialog::profile() const
54 52
55void ProfileEditorDialog::initUI() 53void ProfileEditorDialog::initUI()
56{ 54{
57 m_con = m_term = 0l; 55 m_con = m_term = 0l;
58 56
59 QVBoxLayout *mainLayout = new QVBoxLayout( this ); 57 QVBoxLayout *mainLayout = new QVBoxLayout( this );
60 OTabWidget *tabWidget = new OTabWidget( this ); 58 tabWidget = new OTabWidget( this );
61 tabWidget->setTabStyle(OTabWidget::TextTab); 59 tabWidget->setTabStyle(OTabWidget::TextTab);
62 mainLayout->add(tabWidget); 60 mainLayout->add(tabWidget);
63 61
64 QWidget *tabprof; 62 QWidget *tabprof;
65 63
66 /* base tabs */ 64 /* base tabs */
@@ -170,15 +168,17 @@ QCString ProfileEditorDialog::profType()const
170 * we need to switch the widget 168 * we need to switch the widget
171 */ 169 */
172void ProfileEditorDialog::slotConActivated( const QString& str ) { 170void ProfileEditorDialog::slotConActivated( const QString& str ) {
173 delete m_con; 171 delete m_con;
174 m_con = m_fact->newConnectionPlugin( str, m_tabCon ); 172 m_con = m_fact->newConnectionPlugin( str, m_tabCon );
175 173
176 if (m_con ) { 174 if ( m_con ) {
177 m_con->load( m_prof ); 175 m_con->load( m_prof );
178 m_layCon->addWidget( m_con ); 176 m_layCon->addWidget( m_con );
177 } else {
178 tabWidget->removePage( m_tabCon );
179 } 179 }
180} 180}
181/* 181/*
182 * we need to switch the widget 182 * we need to switch the widget
183 */ 183 */
184void ProfileEditorDialog::slotTermActivated( const QString& str ) { 184void ProfileEditorDialog::slotTermActivated( const QString& str ) {