summaryrefslogtreecommitdiff
path: root/noncore
authorharlekin <harlekin>2002-10-17 17:39:06 (UTC)
committer harlekin <harlekin>2002-10-17 17:39:06 (UTC)
commitec202e5d2956f2cde0f2a6be5c452bd67347e21f (patch) (side-by-side diff)
tree54d5868f9c71ad953360b911f9c50ff21e070d03 /noncore
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') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profileeditordialog.cpp8
-rw-r--r--noncore/apps/opie-console/profileeditordialog.h2
-rw-r--r--noncore/apps/opie-console/serialconfigwidget.cpp2
3 files changed, 7 insertions, 5 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
@@ -7,6 +7,4 @@
-#include <opie/otabwidget.h>
-
#include "profileeditorplugins.h"
#include "metafactory.h"
@@ -58,5 +56,5 @@ void ProfileEditorDialog::initUI()
QVBoxLayout *mainLayout = new QVBoxLayout( this );
- OTabWidget *tabWidget = new OTabWidget( this );
+ tabWidget = new OTabWidget( this );
tabWidget->setTabStyle(OTabWidget::TextTab);
mainLayout->add(tabWidget);
@@ -174,7 +172,9 @@ void ProfileEditorDialog::slotConActivated( const QString& str ) {
m_con = m_fact->newConnectionPlugin( str, m_tabCon );
- if (m_con ) {
+ if ( m_con ) {
m_con->load( m_prof );
m_layCon->addWidget( m_con );
+ } else {
+ tabWidget->removePage( m_tabCon );
}
}
diff --git a/noncore/apps/opie-console/profileeditordialog.h b/noncore/apps/opie-console/profileeditordialog.h
index 3b67bb3..6fde839 100644
--- a/noncore/apps/opie-console/profileeditordialog.h
+++ b/noncore/apps/opie-console/profileeditordialog.h
@@ -3,4 +3,5 @@
#include <qdialog.h>
+#include <opie/otabwidget.h>
#include "profile.h"
@@ -47,4 +48,5 @@ private:
ProfileDialogWidget* m_con, *m_term;
QHBoxLayout *m_layCon, *m_layTerm;
+ OTabWidget *tabWidget;
};
diff --git a/noncore/apps/opie-console/serialconfigwidget.cpp b/noncore/apps/opie-console/serialconfigwidget.cpp
index d216c92..1e97a24 100644
--- a/noncore/apps/opie-console/serialconfigwidget.cpp
+++ b/noncore/apps/opie-console/serialconfigwidget.cpp
@@ -57,5 +57,5 @@ void SerialConfigWidget::load( const Profile& prof ) {
m_base->setFlow( IOLayerBase::Software );
} else {
- m_base->setFlow( IOLayerBase::None );
+ m_base->setFlow( IOLayerBase::None );
}