summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/mainwindow.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-console/mainwindow.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/mainwindow.h b/noncore/apps/opie-console/mainwindow.h
index db07f5a..f3c8b81 100644
--- a/noncore/apps/opie-console/mainwindow.h
+++ b/noncore/apps/opie-console/mainwindow.h
@@ -1,17 +1,18 @@
1#ifndef OPIE_MAIN_WINDOW_H 1#ifndef OPIE_MAIN_WINDOW_H
2#define OPIE_MAIN_WINDOW_H 2#define OPIE_MAIN_WINDOW_H
3 3
4#include <qmainwindow.h> 4#include <qmainwindow.h>
5#include <qlist.h> 5#include <qlist.h>
6#include <qfile.h>
6 7
7#include "session.h" 8#include "session.h"
8 9
9/** 10/**
10 * this is the MainWindow of the new opie console 11 * this is the MainWindow of the new opie console
11 * it's also the dispatcher between the different 12 * it's also the dispatcher between the different
12 * actions supported by the gui 13 * actions supported by the gui
13 */ 14 */
14class QToolBar; 15class QToolBar;
15class QToolButton; 16class QToolButton;
16class QMenuBar; 17class QMenuBar;
17class QAction; 18class QAction;
@@ -64,24 +65,25 @@ private slots:
64 void slotTransfer(); 65 void slotTransfer();
65 void slotOpenKeb(bool); 66 void slotOpenKeb(bool);
66 void slotOpenButtons(bool); 67 void slotOpenButtons(bool);
67 void slotRecordScript(); 68 void slotRecordScript();
68 void slotSaveScript(); 69 void slotSaveScript();
69 void slotRunScript(int); 70 void slotRunScript(int);
70 void slotFullscreen(); 71 void slotFullscreen();
71 void slotQuickLaunch(); 72 void slotQuickLaunch();
72 void slotWrap(); 73 void slotWrap();
73 void slotSessionChanged( Session* ); 74 void slotSessionChanged( Session* );
74 void slotKeyReceived(FKey, ushort, ushort, bool); 75 void slotKeyReceived(FKey, ushort, ushort, bool);
75 void slotSaveHistory(); 76 void slotSaveHistory();
77 void slotSaveLog();
76 78
77 /* what could these both slot do? */ 79 /* what could these both slot do? */
78 void slotCopy(); 80 void slotCopy();
79 void slotPaste(); 81 void slotPaste();
80 82
81 /* save the currentSession() to Profiles */ 83 /* save the currentSession() to Profiles */
82 void slotSaveSession(); 84 void slotSaveSession();
83 85
84private: 86private:
85 void initUI(); 87 void initUI();
86 void populateProfiles(); 88 void populateProfiles();
87 void populateScripts(); 89 void populateScripts();
@@ -117,23 +119,25 @@ private:
117 QAction* m_disconnect; 119 QAction* m_disconnect;
118 QAction* m_quickLaunch; 120 QAction* m_quickLaunch;
119 QAction* m_terminate; 121 QAction* m_terminate;
120 QAction* m_transfer; 122 QAction* m_transfer;
121 QAction* m_setProfiles; 123 QAction* m_setProfiles;
122 QAction* m_openKeys; 124 QAction* m_openKeys;
123 QAction* m_openButtons; 125 QAction* m_openButtons;
124 QAction* m_recordScript; 126 QAction* m_recordScript;
125 QAction* m_saveScript; 127 QAction* m_saveScript;
126 QAction* m_fullscreen; 128 QAction* m_fullscreen;
127 QAction* m_wrap; 129 QAction* m_wrap;
128 QAction* m_closewindow; 130 QAction* m_closewindow;
131 QAction* m_recordLog;
129 132
130 FunctionKeyboard *m_kb; 133 FunctionKeyboard *m_kb;
131 int m_runScript_id; 134 int m_runScript_id;
132 bool m_isFullscreen; 135 bool m_isFullscreen;
133 bool m_isWrapped; 136 bool m_isWrapped;
137 bool m_recordingLog;
134 138
135 QWidget* savedParentFullscreen; 139 QWidget* savedParentFullscreen;
136}; 140};
137 141
138 142
139#endif 143#endif