author | harlekin <harlekin> | 2002-10-05 22:21:04 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-10-05 22:21:04 (UTC) |
commit | 48b16b3a3557e70abf90e83b84396258b92b652e (patch) (side-by-side diff) | |
tree | 9dad37a08e79da5705a8297b2bf09a0b2441f3b6 | |
parent | 99425255c4afcd75ee6b2f903487cb958d3acdee (diff) | |
download | opie-48b16b3a3557e70abf90e83b84396258b92b652e.zip opie-48b16b3a3557e70abf90e83b84396258b92b652e.tar.gz opie-48b16b3a3557e70abf90e83b84396258b92b652e.tar.bz2 |
otabwidget instead of qtabwidget
-rw-r--r-- | noncore/apps/opie-console/.cvsignore | 4 | ||||
-rw-r--r-- | noncore/apps/opie-console/file_layer.h | 2 | ||||
-rw-r--r-- | noncore/apps/opie-console/mainwindow.cpp | 19 | ||||
-rw-r--r-- | noncore/apps/opie-console/mainwindow.h | 4 | ||||
-rw-r--r-- | noncore/apps/opie-console/opie-console.pro | 3 | ||||
-rw-r--r-- | noncore/apps/opie-console/tabwidget.cpp | 14 | ||||
-rw-r--r-- | noncore/apps/opie-console/tabwidget.h | 4 |
7 files changed, 37 insertions, 13 deletions
diff --git a/noncore/apps/opie-console/.cvsignore b/noncore/apps/opie-console/.cvsignore index acc07da..41d9740 100644 --- a/noncore/apps/opie-console/.cvsignore +++ b/noncore/apps/opie-console/.cvsignore @@ -1 +1,5 @@ +configurebase.cpp +configurebase.h +editbase.cpp +editbase.h moc*.cpp diff --git a/noncore/apps/opie-console/file_layer.h b/noncore/apps/opie-console/file_layer.h index 71a0c82..cfa149e 100644 --- a/noncore/apps/opie-console/file_layer.h +++ b/noncore/apps/opie-console/file_layer.h @@ -11,3 +11,5 @@ class QFile; class FileTransferLayer : public QObject { + Q_OBJECT + public: diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp index 88d5823..dce08ca 100644 --- a/noncore/apps/opie-console/mainwindow.cpp +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -11,2 +11,3 @@ #include "mainwindow.h" +#include "tabwidget.h" @@ -42,4 +43,2 @@ void MainWindow::initUI() { - - /* @@ -53,3 +52,2 @@ void MainWindow::initUI() { - /* @@ -103,3 +101,7 @@ void MainWindow::initUI() { + m_consoleWindow = new TabWidget( this, "blah"); + setCentralWidget( m_consoleWindow ); + } + ProfileManager* MainWindow::manager() { @@ -107,2 +109,3 @@ ProfileManager* MainWindow::manager() { } + void MainWindow::populateProfiles() { @@ -110,4 +113,3 @@ void MainWindow::populateProfiles() { Profile::ValueList list = manager()->all(); - for (Profile::ValueList::Iterator it = list.begin(); it != list.end(); - ++it ) { + for (Profile::ValueList::Iterator it = list.begin(); it != list.end(); ++it ) { m_sessionsPop->insertItem( (*it).name() ); @@ -131,2 +133,3 @@ QList<Session> MainWindow::sessions() { } + void MainWindow::slotNew() { @@ -134,2 +137,3 @@ void MainWindow::slotNew() { } + void MainWindow::slotConnect() { @@ -138,2 +142,3 @@ void MainWindow::slotConnect() { } + void MainWindow::slotDisconnect() { @@ -142,2 +147,3 @@ void MainWindow::slotDisconnect() { } + void MainWindow::slotTerminate() { @@ -149,2 +155,3 @@ void MainWindow::slotTerminate() { } + void MainWindow::slotConfigure() { @@ -161,2 +168,3 @@ void MainWindow::slotConfigure() { } + void MainWindow::slotClose() { @@ -164,2 +172,3 @@ void MainWindow::slotClose() { } + void MainWindow::slotProfile(int) { diff --git a/noncore/apps/opie-console/mainwindow.h b/noncore/apps/opie-console/mainwindow.h index be4b469..36eb3a7 100644 --- a/noncore/apps/opie-console/mainwindow.h +++ b/noncore/apps/opie-console/mainwindow.h @@ -17,4 +17,5 @@ class QAction; class MetaFactory; - +class TabWidget; class ProfileManager; + class MainWindow : public QMainWindow { @@ -75,2 +76,3 @@ private: + TabWidget* m_consoleWindow; QToolBar* m_tool; diff --git a/noncore/apps/opie-console/opie-console.pro b/noncore/apps/opie-console/opie-console.pro index 0b5df20..7abf385 100644 --- a/noncore/apps/opie-console/opie-console.pro +++ b/noncore/apps/opie-console/opie-console.pro @@ -1,3 +1,4 @@ TEMPLATE = app -CONFIG = qt warn_on release +#CONFIG = qt warn_on release +CONFIG = qt debug DESTDIR = $(OPIEDIR)/bin diff --git a/noncore/apps/opie-console/tabwidget.cpp b/noncore/apps/opie-console/tabwidget.cpp index 6091aa2..783bf13 100644 --- a/noncore/apps/opie-console/tabwidget.cpp +++ b/noncore/apps/opie-console/tabwidget.cpp @@ -4,4 +4,3 @@ TabWidget::TabWidget( QWidget* parent, const char* name ) - : QTabWidget( parent, name ) -{ + : OTabWidget( parent, name ) { connect(this, SIGNAL(currentChanged(QWidget*) ), @@ -9,9 +8,12 @@ TabWidget::TabWidget( QWidget* parent, const char* name ) } + TabWidget::~TabWidget() { } + void TabWidget::add( Session* ses ) { if ( !ses->widget() ) return; - addTab( ses->widget(), ses->name() ); + addTab( ses->widget(), "console/konsole", ses->name() ); m_map.insert( ses->widget(), ses ); } + void TabWidget::remove( Session* ses ) { @@ -20,2 +22,3 @@ void TabWidget::remove( Session* ses ) { } + void TabWidget::slotCurChanged( QWidget* wid ) { @@ -23,4 +26,5 @@ void TabWidget::slotCurChanged( QWidget* wid ) { it = m_map.find(wid ); - if (it == m_map.end() ) + if ( it == m_map.end() ) { return; + } @@ -28 +32,3 @@ void TabWidget::slotCurChanged( QWidget* wid ) { } + + diff --git a/noncore/apps/opie-console/tabwidget.h b/noncore/apps/opie-console/tabwidget.h index d5d4be3..a701488 100644 --- a/noncore/apps/opie-console/tabwidget.h +++ b/noncore/apps/opie-console/tabwidget.h @@ -4,3 +4,3 @@ #include <qmap.h> -#include <qtabwidget.h> +#include <opie/otabwidget.h> @@ -11,3 +11,3 @@ */ -class TabWidget : QTabWidget{ +class TabWidget : public OTabWidget{ Q_OBJECT |