summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/mainwindow.h
authorzecke <zecke>2002-09-28 20:45:11 (UTC)
committer zecke <zecke>2002-09-28 20:45:11 (UTC)
commit7980189a2cb34e2864c339ef68bfbe7fb4910750 (patch) (side-by-side diff)
treea14028faccc70982d105c229f84d77e13741e987 /noncore/apps/opie-console/mainwindow.h
parentb6df65ad2ffb50f029b96ebf9d0d78dfa23f3f19 (diff)
downloadopie-7980189a2cb34e2864c339ef68bfbe7fb4910750.zip
opie-7980189a2cb34e2864c339ef68bfbe7fb4910750.tar.gz
opie-7980189a2cb34e2864c339ef68bfbe7fb4910750.tar.bz2
Add profiles and the profilemanager to the mainwindow
if one would have a ConfigureDialog one could see it....
Diffstat (limited to 'noncore/apps/opie-console/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/mainwindow.h b/noncore/apps/opie-console/mainwindow.h
index b6a8419..be4b469 100644
--- a/noncore/apps/opie-console/mainwindow.h
+++ b/noncore/apps/opie-console/mainwindow.h
@@ -16,6 +16,7 @@ class QMenuBar;
class QAction;
class MetaFactory;
+class ProfileManager;
class MainWindow : public QMainWindow {
Q_OBJECT
public:
@@ -39,15 +40,23 @@ public:
*/
QList<Session> sessions();
+ /**
+ *
+ */
+ ProfileManager* manager();
+
private slots:
void slotNew();
void slotConnect();
void slotDisconnect();
void slotTerminate();
void slotConfigure();
+ void slotClose();
+ void slotProfile(int);
private:
void initUI();
+ void populateProfiles();
/**
* the current session
*/
@@ -62,6 +71,7 @@ private:
* the metafactory
*/
MetaFactory* m_factory;
+ ProfileManager* m_manager;
QToolBar* m_tool;
QMenuBar* m_bar;