source: src/mlx/gui/common.py@ 373:cf2b6b8a3973

Last change on this file since 373:cf2b6b8a3973 was 373:cf2b6b8a3973, checked in by István Váradi <ivaradi@…>, 11 years ago

Added support for a secondary instance (#157)

File size: 10.8 KB
RevLine 
[28]1
[105]2import mlx.const as _const
[175]3from mlx.i18n import xstr
[105]4
[373]5from mlx.util import secondaryInstallation
6
[28]7import os
8
[300]9#-----------------------------------------------------------------------------
10
11## @package mlx.gui.common
12#
13# Common definitions and utilities for the GUI
14#
15# The main purpose of this module is to provide common definitions for things
16# that are named differently in Gtk+ 2 and 3. This way the other parts of the
17# GUI have to check the version in use very rarely. The variable \ref pygobject
18# tells which version is being used. If it is \c True, Gtk+ 3 is used via the
19# PyGObject interface. Otherwise Gtk+ 2 is used, which is the default on
20# Windows or when the \c FORCE_PYGTK environment variable is set.
21#
[302]22# Besides this there are some common utility classes and functions.
[300]23
24#-----------------------------------------------------------------------------
25
[28]26appIndicator = False
27
28if os.name=="nt" or "FORCE_PYGTK" in os.environ:
29 print "Using PyGTK"
30 pygobject = False
31 import pygtk
[29]32 import gtk.gdk as gdk
[28]33 import gtk
34 import gobject
[44]35 import pango
[28]36 try:
37 import appindicator
38 appIndicator = True
39 except Exception, e:
40 pass
[42]41
42 MESSAGETYPE_ERROR = gtk.MESSAGE_ERROR
[76]43 MESSAGETYPE_QUESTION = gtk.MESSAGE_QUESTION
[97]44 MESSAGETYPE_INFO = gtk.MESSAGE_INFO
[175]45
[124]46 RESPONSETYPE_OK = gtk.RESPONSE_OK
[76]47 RESPONSETYPE_YES = gtk.RESPONSE_YES
[124]48 RESPONSETYPE_NO = gtk.RESPONSE_NO
[123]49 RESPONSETYPE_ACCEPT = gtk.RESPONSE_ACCEPT
50 RESPONSETYPE_REJECT = gtk.RESPONSE_REJECT
[149]51 RESPONSETYPE_CANCEL = gtk.RESPONSE_CANCEL
[175]52
[93]53 ACCEL_VISIBLE = gtk.ACCEL_VISIBLE
54 CONTROL_MASK = gdk.CONTROL_MASK
[123]55 DIALOG_MODAL = gtk.DIALOG_MODAL
[127]56 WRAP_WORD = gtk.WRAP_WORD
[132]57 JUSTIFY_CENTER = gtk.JUSTIFY_CENTER
[97]58
[144]59 CONTROL_MASK = gdk.CONTROL_MASK
60 SHIFT_MASK = gdk.SHIFT_MASK
61 BUTTON1_MASK = gdk.BUTTON1_MASK
62
63 SCROLL_UP = gdk.SCROLL_UP
64 SCROLL_DOWN = gdk.SCROLL_DOWN
65
66 SPIN_USER_DEFINED = gtk.SPIN_USER_DEFINED
67
[149]68 FILE_CHOOSER_ACTION_SELECT_FOLDER = gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER
[151]69 FILE_CHOOSER_ACTION_OPEN = gtk.FILE_CHOOSER_ACTION_OPEN
70 FILE_CHOOSER_ACTION_SAVE = gtk.FILE_CHOOSER_ACTION_SAVE
[149]71
[175]72 SELECTION_MULTIPLE = gtk.SELECTION_MULTIPLE
73
[220]74 SHADOW_IN = gtk.SHADOW_IN
75
76 POLICY_AUTOMATIC = gtk.POLICY_AUTOMATIC
77
[362]78 WEIGHT_NORMAL = pango.WEIGHT_NORMAL
[226]79 WEIGHT_BOLD = pango.WEIGHT_BOLD
80
[246]81 WINDOW_STATE_ICONIFIED = gdk.WINDOW_STATE_ICONIFIED
82 WINDOW_STATE_WITHDRAWN = gdk.WINDOW_STATE_WITHDRAWN
83
[264]84 SORT_ASCENDING = gtk.SORT_ASCENDING
85 SORT_DESCENDING = gtk.SORT_DESCENDING
86
[277]87 EVENT_BUTTON_PRESS = gdk.BUTTON_PRESS
88
[227]89 pixbuf_new_from_file = gdk.pixbuf_new_from_file
90
[97]91 def text2unicode(text):
92 """Convert the given text, returned by a Gtk widget, to Unicode."""
93 return unicode(text)
[276]94
95 def text2str(text):
96 """Convert the given text, returned by xstr to a string."""
97 return str(text)
[28]98else:
99 print "Using PyGObject"
100 pygobject = True
[29]101 from gi.repository import Gdk as gdk
[227]102 from gi.repository import GdkPixbuf as gdkPixbuf
[28]103 from gi.repository import Gtk as gtk
104 from gi.repository import GObject as gobject
105 from gi.repository import AppIndicator3 as appindicator
[44]106 from gi.repository import Pango as pango
[28]107 appIndicator = True
[76]108
[42]109 MESSAGETYPE_ERROR = gtk.MessageType.ERROR
[76]110 MESSAGETYPE_QUESTION = gtk.MessageType.QUESTION
[97]111 MESSAGETYPE_INFO = gtk.MessageType.INFO
[124]112 RESPONSETYPE_OK = gtk.ResponseType.OK
[76]113 RESPONSETYPE_YES = gtk.ResponseType.YES
[124]114 RESPONSETYPE_NO = gtk.ResponseType.NO
[123]115 RESPONSETYPE_ACCEPT = gtk.ResponseType.ACCEPT
116 RESPONSETYPE_REJECT = gtk.ResponseType.REJECT
[149]117 RESPONSETYPE_CANCEL = gtk.ResponseType.CANCEL
[93]118 ACCEL_VISIBLE = gtk.AccelFlags.VISIBLE
119 CONTROL_MASK = gdk.ModifierType.CONTROL_MASK
[123]120 DIALOG_MODAL = gtk.DialogFlags.MODAL
[127]121 WRAP_WORD = gtk.WrapMode.WORD
[132]122 JUSTIFY_CENTER = gtk.Justification.CENTER
[42]123
[144]124 CONTROL_MASK = gdk.ModifierType.CONTROL_MASK
125 SHIFT_MASK = gdk.ModifierType.SHIFT_MASK
126 BUTTON1_MASK = gdk.ModifierType.BUTTON1_MASK
127
128 SCROLL_UP = gdk.ScrollDirection.UP
129 SCROLL_DOWN = gdk.ScrollDirection.DOWN
130
131 SPIN_USER_DEFINED = gtk.SpinType.USER_DEFINED
132
[149]133 FILE_CHOOSER_ACTION_SELECT_FOLDER = gtk.FileChooserAction.SELECT_FOLDER
[151]134 FILE_CHOOSER_ACTION_OPEN = gtk.FileChooserAction.OPEN
135 FILE_CHOOSER_ACTION_SAVE = gtk.FileChooserAction.SAVE
[149]136
[175]137 SELECTION_MULTIPLE = gtk.SelectionMode.MULTIPLE
138
[220]139 SHADOW_IN = gtk.ShadowType.IN
140
141 POLICY_AUTOMATIC = gtk.PolicyType.AUTOMATIC
142
[362]143 WEIGHT_NORMAL = pango.Weight.NORMAL
[226]144 WEIGHT_BOLD = pango.Weight.BOLD
145
[246]146 WINDOW_STATE_ICONIFIED = gdk.WindowState.ICONIFIED
147 WINDOW_STATE_WITHDRAWN = gdk.WindowState.WITHDRAWN
148
[264]149 SORT_ASCENDING = gtk.SortType.ASCENDING
150 SORT_DESCENDING = gtk.SortType.DESCENDING
151
[277]152 EVENT_BUTTON_PRESS = gdk.EventType.BUTTON_PRESS
153
[227]154 pixbuf_new_from_file = gdkPixbuf.Pixbuf.new_from_file
155
[97]156 import codecs
157 _utf8Decoder = codecs.getdecoder("utf-8")
158
159 def text2unicode(str):
160 """Convert the given text, returned by a Gtk widget, to Unicode."""
161 return _utf8Decoder(str)[0]
162
[276]163 def text2str(text):
164 """Convert the given text, returned by xstr to a string."""
165 return _utf8Decoder(text)[0]
166
[28]167import cairo
168
[32]169#------------------------------------------------------------------------------
170
171class FlightStatusHandler(object):
172 """Base class for objects that handle the flight status in some way."""
173 def __init__(self):
174 self._stage = None
175 self._rating = 100
176 self._noGoReason = None
177
178 def resetFlightStatus(self):
179 """Reset the flight status."""
180 self._stage = None
181 self._rating = 100
182 self._noGoReason = None
183 self._updateFlightStatus()
184
185 def setStage(self, stage):
186 """Set the stage of the flight."""
187 if stage!=self._stage:
188 self._stage = stage
189 self._updateFlightStatus()
190
191 def setRating(self, rating):
192 """Set the rating to the given value."""
193 if rating!=self._rating:
194 self._rating = rating
195 if self._noGoReason is None:
196 self._updateFlightStatus()
197
198 def setNoGo(self, reason):
199 """Set a No-Go condition with the given reason."""
200 if self._noGoReason is None:
201 self._noGoReason = reason
202 self._updateFlightStatus()
203
204#------------------------------------------------------------------------------
[84]205
206class IntegerEntry(gtk.Entry):
207 """An entry that allows only either an empty value, or an integer."""
208 def __init__(self, defaultValue = None):
209 """Construct the entry."""
210 gtk.Entry.__init__(self)
211
[86]212 self.set_alignment(1.0)
213
[84]214 self._defaultValue = defaultValue
215 self._currentInteger = defaultValue
216 self._selfSetting = False
217 self._set_text()
218
219 self.connect("changed", self._handle_changed)
220
221 def get_int(self):
222 """Get the integer."""
223 return self._currentInteger
224
[241]225 def reset(self):
226 """Reset the integer."""
227 self.set_int(None)
228
[84]229 def set_int(self, value):
230 """Set the integer."""
231 if value!=self._currentInteger:
232 self._currentInteger = value
233 self.emit("integer-changed", self._currentInteger)
234 self._set_text()
235
236 def _handle_changed(self, widget):
237 """Handle the changed signal."""
238 if self._selfSetting:
239 return
240 text = self.get_text()
241 if text=="":
242 self.set_int(self._defaultValue)
243 else:
244 try:
245 self.set_int(int(text))
246 except:
247 self._set_text()
248
249 def _set_text(self):
250 """Set the text value from the current integer."""
251 self._selfSetting = True
252 self.set_text("" if self._currentInteger is None
253 else str(self._currentInteger))
254 self._selfSetting = False
255
256#------------------------------------------------------------------------------
257
258gobject.signal_new("integer-changed", IntegerEntry, gobject.SIGNAL_RUN_FIRST,
259 None, (object,))
260
261#------------------------------------------------------------------------------
[105]262
[227]263PROGRAM_NAME = "MAVA Logger X"
264
[232]265WINDOW_TITLE_BASE = PROGRAM_NAME + " " + _const.VERSION
[373]266if secondaryInstallation:
267 WINDOW_TITLE_BASE += " (" + xstr("secondary") + ")"
[105]268
269#------------------------------------------------------------------------------
[175]270
271# A mapping of aircraft types to their screen names
[191]272aircraftNames = { _const.AIRCRAFT_B736 : xstr("aircraft_b736"),
273 _const.AIRCRAFT_B737 : xstr("aircraft_b737"),
274 _const.AIRCRAFT_B738 : xstr("aircraft_b738"),
275 _const.AIRCRAFT_B738C : xstr("aircraft_b738c"),
276 _const.AIRCRAFT_B733 : xstr("aircraft_b733"),
277 _const.AIRCRAFT_B734 : xstr("aircraft_b734"),
278 _const.AIRCRAFT_B735 : xstr("aircraft_b735"),
279 _const.AIRCRAFT_DH8D : xstr("aircraft_dh8d"),
280 _const.AIRCRAFT_B762 : xstr("aircraft_b762"),
281 _const.AIRCRAFT_B763 : xstr("aircraft_b763"),
282 _const.AIRCRAFT_CRJ2 : xstr("aircraft_crj2"),
283 _const.AIRCRAFT_F70 : xstr("aircraft_f70"),
284 _const.AIRCRAFT_DC3 : xstr("aircraft_dc3"),
285 _const.AIRCRAFT_T134 : xstr("aircraft_t134"),
286 _const.AIRCRAFT_T154 : xstr("aircraft_t154"),
287 _const.AIRCRAFT_YK40 : xstr("aircraft_yk40") }
[175]288
289#------------------------------------------------------------------------------
[221]290
[226]291def formatFlightLogLine(timeStr, line):
[221]292 """Format the given flight log line."""
293 """Format the given line for flight logging."""
294 if timeStr is not None:
295 line = timeStr + ": " + line
296 return line + "\n"
297
298#------------------------------------------------------------------------------
[226]299
300def addFaultTag(buffer):
301 """Add a tag named 'fault' to the given buffer."""
[362]302 buffer.create_tag("fault", foreground="red", weight=WEIGHT_BOLD)
[226]303
304#------------------------------------------------------------------------------
305
306def appendTextBuffer(buffer, text, isFault = False):
307 """Append the given line at the end of the given text buffer.
308
309 If isFault is set, use the tag named 'fault'."""
[345]310 insertTextBuffer(buffer, buffer.get_end_iter(), text, isFault)
[226]311
312#------------------------------------------------------------------------------
[345]313
314def insertTextBuffer(buffer, iter, text, isFault = False):
315 """Insert the given line into the given text buffer at the given iterator.
316
[362]317 If isFault is set, use the tag named 'fault' else use the tag named
318 'normal'."""
319 line = iter.get_line()
320
321 buffer.insert(iter, text)
322
323 iter0 = buffer.get_iter_at_line(line)
324 iter1 = buffer.get_iter_at_line(line+1)
[345]325 if isFault:
[362]326 buffer.apply_tag_by_name("fault", iter0, iter1)
[345]327 else:
[362]328 buffer.remove_all_tags(iter0, iter1)
[345]329
330#------------------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.