From 80471c46265182afccfa832750abd1f4f7fbfaa9 Mon Sep 17 00:00:00 2001 From: zecke Date: Thu, 26 Sep 2002 21:22:18 +0000 Subject: main /s/setMainWindow/showMainWindow First implementation of the gui --- (limited to 'noncore/apps') diff --git a/noncore/apps/opie-console/main.cpp b/noncore/apps/opie-console/main.cpp index cf8bf05..4b5107e 100644 --- a/noncore/apps/opie-console/main.cpp +++ b/noncore/apps/opie-console/main.cpp @@ -1,14 +1,16 @@ #include -#include +#include "mainwindow.h" int main(int argc, char **argv) { QPEApplication app( argc, argv ); - MainWindow* mw = new MainWindow(); - app.setMainWidget( mw ); - + + MainWindow mw; + mw.setCaption(QObject::tr("Opie console") ); + app.showMainWidget( &mw ); + app.exec(); - - delete mw; + + return 0; } diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp new file mode 100644 index 0000000..b6b2a2e --- a/dev/null +++ b/noncore/apps/opie-console/mainwindow.cpp @@ -0,0 +1,62 @@ + +#include +#include +#include +#include +#include + +#include "metafactory.h" +#include "mainwindow.h" + +MainWindow::MainWindow() +{ + qWarning("c'tor"); + m_factory = new MetaFactory(); + m_sessions.setAutoDelete( TRUE ); + m_curSession = 0l; + + initUI(); + +} +void MainWindow::initUI() { + setToolBarsMovable( FALSE ); + + m_tool = new QToolBar( this ); + m_tool->setHorizontalStretchable( TRUE ); + + m_bar = new QMenuBar( m_tool ); + m_console = new QPopupMenu( this ); + + /* + * new Action for new sessions + */ + QAction* a = new QAction(); + a->setText( tr("New Connection") ); + a->addTo( m_console ); + connect(a, SIGNAL(activated() ), + this, SLOT(slotNew() ) ); + + a = new QAction(); + a->setText( tr("New from Session") ); + + m_connect = new QAction(); + m_connect->setText( tr("Connect") ); + m_connect->addTo( m_console ); + connect(m_connect, SIGNAL(activated() ), + this, SLOT(slotConnect() ) ); + + m_bar->insertItem( tr("Connection"), m_console ); + +} +MainWindow::~MainWindow() { + delete m_factory; +} +MetaFactory* MainWindow::factory() { + return m_factory; +} +Session* MainWindow::currentSession() { + return m_curSession; +} +QList MainWindow::sessions() { + return m_sessions; +} diff --git a/noncore/apps/opie-console/mainwindow.h b/noncore/apps/opie-console/mainwindow.h index 7786c95..3d1e1c8 100644 --- a/noncore/apps/opie-console/mainwindow.h +++ b/noncore/apps/opie-console/mainwindow.h @@ -11,6 +11,9 @@ * it's also the dispatcher between the different * actions supported by the gui */ +class QToolBar; +class QMenuBar; +class QAction; class MetaFactory; class MainWindow : public QMainWindow { Q_OBJECT @@ -36,6 +39,7 @@ public: QList sessions(); private: + void initUI(); /** * the current session */ @@ -51,6 +55,16 @@ private: */ MetaFactory* m_factory; + QToolBar* m_tool; + QMenuBar* m_bar; + QPopupMenu* m_console; + QPopupMenu* m_settings; + QPopupMenu* m_newsession; + QAction* m_connect; + QAction* m_disconnect; + QAction* m_terminate; + QAction* m_set; + }; diff --git a/noncore/apps/opie-console/metafactory.cpp b/noncore/apps/opie-console/metafactory.cpp new file mode 100644 index 0000000..bef6ec7 --- a/dev/null +++ b/noncore/apps/opie-console/metafactory.cpp @@ -0,0 +1,44 @@ + +#include "metafactory.h" + +MetaFactory::MetaFactory() { +} +MetaFactory::~MetaFactory() { + +} +void MetaFactory::addConfigWidgetFactory( const QString& str, + configWidget wid) { + m_confFact.insert( str, wid ); +} +void MetaFactory::addIOLayerFactory( const QString& str, + iolayer lay) { + m_layerFact.insert( str, lay ); +} +void MetaFactory::addFileTransferLayer( const QString& str, + filelayer lay) { + m_fileFact.insert( str, lay ); +} +QStringList MetaFactory::ioLayers()const { + QStringList list; + QMap::ConstIterator it; + for (it = m_layerFact.begin(); it != m_layerFact.end(); ++it ) { + list << it.key(); + } + return list; +} +QStringList MetaFactory::configWidgets()const { + QStringList list; + QMap::ConstIterator it; + for ( it = m_confFact.begin(); it != m_confFact.end(); ++it ) { + list << it.key(); + } + return list; +} +QStringList MetaFactory::fileTransferLayers()const { + QStringList list; + QMap::ConstIterator it; + for ( it = m_fileFact.begin(); it != m_fileFact.end(); ++it ) { + list << it.key(); + } + return list; +} diff --git a/noncore/apps/opie-console/opie-console.pro b/noncore/apps/opie-console/opie-console.pro index 5b6fdc3..4a1180f 100644 --- a/noncore/apps/opie-console/opie-console.pro +++ b/noncore/apps/opie-console/opie-console.pro @@ -1,8 +1,16 @@ TEMPLATE = app CONFIG = qt warn_on release DESTDIR = $(OPIEDIR)/bin -HEADERS = io_layer.h io_serial.h file_layer.h -SOURCES = io_layer.cpp io_serial.cpp file_layer.cpp main.cpp +HEADERS = io_layer.h io_serial.h \ + file_layer.h \ + metafactory.h \ + session.h \ + mainwindow.h +SOURCES = io_layer.cpp io_serial.cpp \ + file_layer.cpp main.cpp \ + metafactory.cpp \ + session.cpp \ + mainwindow.cpp INTERFACES = INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include diff --git a/noncore/apps/opie-console/session.cpp b/noncore/apps/opie-console/session.cpp new file mode 100644 index 0000000..4198fdc --- a/dev/null +++ b/noncore/apps/opie-console/session.cpp @@ -0,0 +1,26 @@ + + +#include "io_layer.h" +#include "file_layer.h" +#include "session.h" + +Session::Session( QWidget* widget, IOLayer* lay) + : m_widget( widget ), m_layer( lay ) +{ +} +Session::~Session() { + delete m_layer; + delete m_widget; +} +QWidget* Session::widget() { + return m_widget; +} +IOLayer* Session::layer() { + return m_layer; +} +void Session::setWidget( QWidget* wid ) { + m_widget = wid; +} +void Session::setIOLayer( IOLayer* lay ) { + m_layer = lay; +} -- cgit v0.9.0.2