/usr/share/pyshared/pyhoca/wxgui/sessiontitle.py is in pyhoca-gui 0.4.0.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | # -*- coding: utf-8 -*-
# Copyright (C) 2010-2013 by Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
# Copyright (C) 2010-2013 by Dick Kniep <dick.kniep@lindix.nl>
#
# PyHoca GUI is free software; you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# PyHoca GUI is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
modules ={}
try:
import wxversion
wxversion.select('2.9')
except: pass
try:
import wxversion
wxversion.select('2.8')
except: pass
# Python X2Go
import x2go
# gevent
import gevent
import gevent.monkey
gevent.monkey.patch_all()
import wx
import os
# PyHoca-GUI modules
# ... NONE ...
if os.environ.has_key('DESKTOP_SESSION'):
WINDOW_MANAGER = os.environ['DESKTOP_SESSION']
else:
WINDOW_MANAGER = 'generic'
class PyHocaGUI_DialogBoxSessionTitle(wx.Dialog):
"""\
Simple dialog box for selecting a session title string.
"""
def __init__(self, _PyHocaGUI, profile_name, session_name):
"""\
Session title renaming dialog box (constructor).
@param _PyHocaGUI: the master/parent object of the application
@type _PyHocaGUI: C{obj}
@param profile_name: session profile name
@type profile_name: C{str}
@param session_name: the X2Go session name of the Window that we intend to modify the name of
@type session_name C{str}
"""
self._PyHocaGUI = _PyHocaGUI
self._pyhoca_logger = self._PyHocaGUI._pyhoca_logger
self._pyhoca_logger('session title query box started', loglevel=x2go.loglevel_INFO, )
self.current_profile_name = profile_name
self.current_session_name = session_name
wx.Dialog.__init__(self, None, id=-1, title=profile_name, style=wx.DEFAULT_FRAME_STYLE, )
self._PyHocaGUI._sub_windows.append(self)
self.SetTitle(_(u'Session Title - %s') % profile_name)
self.titleLbl = wx.StaticText(self, wx.ID_ANY, _(u'Change session title to')+':', size=(-1, -1))
self.titleTxt = wx.TextCtrl(self, wx.ID_ANY, '', style=wx.TE_PROCESS_ENTER, size=(120, -1))
self.okBtn = wx.Button(self, wx.ID_OK, _(u'OK'), )
self.okBtn.SetDefault()
self.cancelBtn = wx.Button(self, wx.ID_CANCEL, _(u'Cancel'), )
self.Bind(wx.EVT_BUTTON, self.OnOk, self.okBtn)
self.Bind(wx.EVT_TEXT_ENTER, self.OnOk, self.titleTxt)
self.Bind(wx.EVT_BUTTON, self.OnCancel, self.cancelBtn)
titleSizer = wx.BoxSizer(wx.HORIZONTAL)
btnSizer = wx.BoxSizer(wx.HORIZONTAL)
mainSizer = wx.BoxSizer(wx.VERTICAL)
titleSizer.Add(self.titleLbl, 0, wx.ALL, 5)
titleSizer.Add(self.titleTxt, 0, wx.ALL, 5)
btnSizer.Add(self.okBtn, 0, wx.ALL, 5)
btnSizer.Add(self.cancelBtn, 0, wx.ALL, 5)
mainSizer.Add(titleSizer, 0, wx.ALL, 5)
mainSizer.Add(btnSizer, 0, wx.ALL|wx.ALIGN_RIGHT, 5)
self.SetSizerAndFit(mainSizer)
self.Layout()
maxX, maxY = wx.GetDisplaySize()
# we will use the logon window position for this session re-titling windows, as well
if self._PyHocaGUI.logon_window_position_x and self._PyHocaGUI.logon_window_position_y:
# allow positioning of logon window via command line option
if self._PyHocaGUI.logon_window_position_x < 0:
move_x = maxX - (self.GetSize().GetWidth() + self._PyHocaGUI.logon_window_position_x)
else:
move_x = self._PyHocaGUI.logon_window_position_x
if self._PyHocaGUI.logon_window_position_y < 0:
move_y = maxX - (self.GetSize().GetHeight() + self._PyHocaGUI.logon_window_position_y)
else:
move_y = self._PyHocaGUI.logon_window_position_y
elif (x2go.X2GOCLIENT_OS == 'Linux') and (WINDOW_MANAGER in ('gnome', 'gnome-fallback', 'awesome', 'mate', 'ubuntu', 'ubuntu-2d', 'openbox-gnome', )):
# automatically place logon Window for GNOME, awesome
move_x = maxX - (self.GetSize().GetWidth() + 20)
move_y = 35
else:
# automatically place logon Window for KDE4, LXDE, etc.
move_x = maxX - (self.GetSize().GetWidth() + 20)
move_y = maxY - (self.GetSize().GetHeight() + 70)
self.Move((move_x, move_y))
self.Show()
def OnOk(self, evt):
"""\
Continue here, if the user clicks the Ok button in the dialog box.
@param evt: event
@type evt: C{obj}
"""
title = self.titleTxt.GetValue()
_session = self._PyHocaGUI._X2GoClient__get_session_of_session_name(session_name=self.current_session_name, return_object=True)
_session.set_session_window_title(title=title)
self.Close()
self.Destroy()
def OnCancel(self, evt):
"""\
Continue here, if the user clicks the Cancel button in the dialog box.
@param evt: event
@type evt: C{obj}
"""
self.Close()
self.Destroy()
def Destroy(self):
"""\
Do some PyHocaGUI specific cleanup if this window gets destroyed.
"""
try:
self._PyHocaGUI._sub_windows.remove(self)
except ValueError:
pass
try:
self._PyHocaGUI._temp_disabled_profile_names.remove(self.current_profile_name)
except ValueError:
pass
wx.Dialog.Destroy(self)
|