Pulling in skeleton code
[ejpi] / src / util / qwrappers.py
1 #!/usr/bin/env python
2
3 from __future__ import with_statement
4 from __future__ import division
5
6 import logging
7
8 from PyQt4 import QtGui
9 from PyQt4 import QtCore
10
11 from util import qui_utils
12 from util import misc as misc_utils
13
14
15 _moduleLogger = logging.getLogger(__name__)
16
17
18 class ApplicationWrapper(object):
19
20         def __init__(self, qapp, constants):
21                 self._constants = constants
22                 self._qapp = qapp
23                 self._clipboard = QtGui.QApplication.clipboard()
24
25                 self._errorLog = qui_utils.QErrorLog()
26                 self._mainWindow = None
27
28                 self._fullscreenAction = QtGui.QAction(None)
29                 self._fullscreenAction.setText("Fullscreen")
30                 self._fullscreenAction.setCheckable(True)
31                 self._fullscreenAction.setShortcut(QtGui.QKeySequence("CTRL+Enter"))
32                 self._fullscreenAction.toggled.connect(self._on_toggle_fullscreen)
33
34                 self._orientationAction = QtGui.QAction(None)
35                 self._orientationAction.setText("Orientation")
36                 self._orientationAction.setCheckable(True)
37                 self._orientationAction.setShortcut(QtGui.QKeySequence("CTRL+o"))
38                 self._orientationAction.toggled.connect(self._on_toggle_orientation)
39
40                 self._logAction = QtGui.QAction(None)
41                 self._logAction.setText("Log")
42                 self._logAction.setShortcut(QtGui.QKeySequence("CTRL+l"))
43                 self._logAction.triggered.connect(self._on_log)
44
45                 self._quitAction = QtGui.QAction(None)
46                 self._quitAction.setText("Quit")
47                 self._quitAction.setShortcut(QtGui.QKeySequence("CTRL+q"))
48                 self._quitAction.triggered.connect(self._on_quit)
49
50                 self._aboutAction = QtGui.QAction(None)
51                 self._aboutAction.setText("About")
52                 self._aboutAction.triggered.connect(self._on_about)
53
54                 self._qapp.lastWindowClosed.connect(self._on_app_quit)
55                 self._mainWindow = self._new_main_window()
56                 self._mainWindow.window.destroyed.connect(self._on_child_close)
57
58                 self.load_settings()
59
60                 self._mainWindow.show()
61                 self._idleDelay = QtCore.QTimer()
62                 self._idleDelay.setSingleShot(True)
63                 self._idleDelay.setInterval(0)
64                 self._idleDelay.timeout.connect(lambda: self._mainWindow.start())
65                 self._idleDelay.start()
66
67         def load_settings(self):
68                 raise NotImplementedError("Booh")
69
70         def save_settings(self):
71                 raise NotImplementedError("Booh")
72
73         def _new_main_window(self):
74                 raise NotImplementedError("Booh")
75
76         @property
77         def constants(self):
78                 return self._constants
79
80         @property
81         def errorLog(self):
82                 return self._errorLog
83
84         @property
85         def fullscreenAction(self):
86                 return self._fullscreenAction
87
88         @property
89         def orientationAction(self):
90                 return self._orientationAction
91
92         @property
93         def logAction(self):
94                 return self._logAction
95
96         @property
97         def aboutAction(self):
98                 return self._aboutAction
99
100         @property
101         def quitAction(self):
102                 return self._quitAction
103
104         def _close_windows(self):
105                 if self._mainWindow is not None:
106                         self.save_settings()
107                         self._mainWindow.window.destroyed.disconnect(self._on_child_close)
108                         self._mainWindow.close()
109                         self._mainWindow = None
110
111         @misc_utils.log_exception(_moduleLogger)
112         def _on_app_quit(self, checked = False):
113                 if self._mainWindow is not None:
114                         self.save_settings()
115                         self._mainWindow.destroy()
116
117         @misc_utils.log_exception(_moduleLogger)
118         def _on_child_close(self, obj = None):
119                 if self._mainWindow is not None:
120                         self.save_settings()
121                         self._mainWindow = None
122
123         @misc_utils.log_exception(_moduleLogger)
124         def _on_toggle_fullscreen(self, checked = False):
125                 self._mainWindow.set_fullscreen(checked)
126
127         @misc_utils.log_exception(_moduleLogger)
128         def _on_toggle_orientation(self, checked = False):
129                 self._mainWindow.set_orientation(checked)
130
131         @misc_utils.log_exception(_moduleLogger)
132         def _on_about(self, checked = True):
133                 raise NotImplementedError("Booh")
134
135         @misc_utils.log_exception(_moduleLogger)
136         def _on_log(self, checked = False):
137                 with open(self._constants._user_logpath_, "r") as f:
138                         logLines = f.xreadlines()
139                         log = "".join(logLines)
140                         self._clipboard.setText(log)
141
142         @misc_utils.log_exception(_moduleLogger)
143         def _on_quit(self, checked = False):
144                 self._close_windows()
145
146
147 class WindowWrapper(object):
148
149         def __init__(self, parent, app):
150                 self._app = app
151
152                 self._errorDisplay = qui_utils.ErrorDisplay(self._app.errorLog)
153
154                 self._layout = QtGui.QBoxLayout(QtGui.QBoxLayout.LeftToRight)
155                 self._layout.setContentsMargins(0, 0, 0, 0)
156                 self._layout.addWidget(self._errorDisplay.toplevel)
157
158                 centralWidget = QtGui.QWidget()
159                 centralWidget.setLayout(self._layout)
160                 centralWidget.setContentsMargins(0, 0, 0, 0)
161
162                 self._window = QtGui.QMainWindow(parent)
163                 self._window.setAttribute(QtCore.Qt.WA_DeleteOnClose, True)
164                 qui_utils.set_stackable(self._window, True)
165                 self._window.setCentralWidget(centralWidget)
166
167                 self._closeWindowAction = QtGui.QAction(None)
168                 self._closeWindowAction.setText("Close")
169                 self._closeWindowAction.setShortcut(QtGui.QKeySequence("CTRL+w"))
170                 self._closeWindowAction.triggered.connect(self._on_close_window)
171
172                 self._window.addAction(self._closeWindowAction)
173                 self._window.addAction(self._app.quitAction)
174                 self._window.addAction(self._app.fullscreenAction)
175                 self._window.addAction(self._app.orientationAction)
176                 self._window.addAction(self._app.logAction)
177
178         @property
179         def window(self):
180                 return self._window
181
182         def walk_children(self):
183                 return ()
184
185         def start(self):
186                 pass
187
188         def close(self):
189                 for child in self.walk_children():
190                         child.window.destroyed.disconnect(self._on_child_close)
191                         child.close()
192                 self._window.close()
193
194         def destroy(self):
195                 pass
196
197         def show(self):
198                 self.set_fullscreen(self._app.fullscreenAction.isChecked())
199                 self._window.show()
200                 for child in self.walk_children():
201                         child.show()
202
203         def hide(self):
204                 for child in self.walk_children():
205                         child.hide()
206                 self._window.hide()
207
208         def set_fullscreen(self, isFullscreen):
209                 if isFullscreen:
210                         self._window.showFullScreen()
211                 else:
212                         self._window.showNormal()
213                 for child in self.walk_children():
214                         child.set_fullscreen(isFullscreen)
215
216         def set_orientation(self, isPortrait):
217                 if isPortrait:
218                         qui_utils.set_window_orientation(self.window, QtCore.Qt.Vertical)
219                 else:
220                         qui_utils.set_window_orientation(self.window, QtCore.Qt.Horizontal)
221                 for child in self.walk_children():
222                         child.set_orientation(isPortrait)
223
224         @misc_utils.log_exception(_moduleLogger)
225         def _on_child_close(self):
226                 raise NotImplementedError("Booh")
227
228         @misc_utils.log_exception(_moduleLogger)
229         def _on_close_window(self, checked = True):
230                 self.close()