author | harlekin <harlekin> | 2004-10-13 20:57:30 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2004-10-13 20:57:30 (UTC) |
commit | ff1e5cf77abe865c4ca9beda114577ad4a13e61f (patch) (unidiff) | |
tree | ab16c5f4b826c744e4e921c3df30930bc452428e | |
parent | 2e51b60e861912fa525597f6b9de6b83c9cedf94 (diff) | |
download | opie-ff1e5cf77abe865c4ca9beda114577ad4a13e61f.zip opie-ff1e5cf77abe865c4ca9beda114577ad4a13e61f.tar.gz opie-ff1e5cf77abe865c4ca9beda114577ad4a13e61f.tar.bz2 |
add an config option for 10East to deactivate the script menu runtime
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index a0622d4..291912c 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp | |||
@@ -29,6 +29,10 @@ using namespace Opie::Ui; | |||
29 | /* STD */ | 29 | /* STD */ |
30 | #include <assert.h> | 30 | #include <assert.h> |
31 | 31 | ||
32 | #ifdef EAST | ||
33 | #include <opie2/oconfig.h> | ||
34 | #endif | ||
35 | |||
32 | MainWindow::MainWindow(QWidget *parent, const char *name, WFlags) : QMainWindow(parent, name, WStyle_ContextHelp) { | 36 | MainWindow::MainWindow(QWidget *parent, const char *name, WFlags) : QMainWindow(parent, name, WStyle_ContextHelp) { |
33 | 37 | ||
34 | #ifdef FSCKED_DISTRI | 38 | #ifdef FSCKED_DISTRI |
@@ -203,8 +207,10 @@ void MainWindow::initUI() { | |||
203 | m_saveScript = new QAction(tr("Save Script"), QString::null, 0, this, 0); | 207 | m_saveScript = new QAction(tr("Save Script"), QString::null, 0, this, 0); |
204 | m_saveScript->addTo(m_scripts); | 208 | m_saveScript->addTo(m_scripts); |
205 | connect(m_saveScript, SIGNAL(activated()), this, SLOT(slotSaveScript())); | 209 | connect(m_saveScript, SIGNAL(activated()), this, SLOT(slotSaveScript())); |
206 | 210 | ||
207 | 211 | ||
212 | |||
213 | |||
208 | /* | 214 | /* |
209 | * action that open/closes the keyboard | 215 | * action that open/closes the keyboard |
210 | */ | 216 | */ |
@@ -222,7 +228,13 @@ void MainWindow::initUI() { | |||
222 | m_bar->insertItem( tr("Connection"), m_console ); | 228 | m_bar->insertItem( tr("Connection"), m_console ); |
223 | 229 | ||
224 | /* the scripts menu */ | 230 | /* the scripts menu */ |
225 | m_bar->insertItem( tr("Scripts"), m_scripts ); | 231 | #ifdef EAST |
232 | OConfig cfg("opie-console"); | ||
233 | cfg.setGroup("10east"); | ||
234 | if( !cfg.readEntry("scripthide",0) ) { | ||
235 | m_bar->insertItem( tr("Scripts"), m_scripts ); | ||
236 | } | ||
237 | #endif | ||
226 | 238 | ||
227 | /* and the keyboard */ | 239 | /* and the keyboard */ |
228 | m_keyBar = new QToolBar(this); | 240 | m_keyBar = new QToolBar(this); |