/usr/share/tpclient-pywx/windows/xrc/configConnect.py is in tpclient-pywx 0.3.1.1-3.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 | # This file has been automatically generated.
# Please do not edit it manually.
# Python Imports
import os.path
# wxPython imports
import wx
from wx.xrc import XRCCTRL, XmlResourceWithHandlers
# Local imports
from requirements import location
class configConnectBase(wx.Panel):
xrc = os.path.join(location(), "windows", "xrc", 'configConnect.xrc')
def PreCreate(self, pre):
""" This function is called during the class's initialization.
Override it for custom setup before the window is created usually to
set additional window styles using SetWindowStyle() and SetExtraStyle()."""
pass
def __init__(self, parent, *args, **kw):
""" Pass an initialized wx.xrc.XmlResource into res """
f = os.path.join(os.path.dirname(__file__), self.xrc)
res = XmlResourceWithHandlers(f)
# Two stage creation (see http://wiki.wxpython.org/index.cgi/TwoStageCreation)
pre = wx.PrePanel()
res.LoadOnPanel(pre, parent, "configConnect")
self.PreCreate(pre)
self.PostCreate(pre)
# Define variables for the controls
self.Servers = XRCCTRL(self, "Servers")
self.ServerDetails = XRCCTRL(self, "ServerDetails")
self.Username = XRCCTRL(self, "Username")
self.GameShow = XRCCTRL(self, "GameShow")
if hasattr(self, "OnGameShow"):
self.Bind(wx.EVT_TOGGLEBUTTON, self.OnGameShow, self.GameShow)
self.GameTitle = XRCCTRL(self, "GameTitle")
self.Game = XRCCTRL(self, "Game")
self.Password = XRCCTRL(self, "Password")
self.AutoConnect = XRCCTRL(self, "AutoConnect")
if hasattr(self, "OnAutoConnect"):
self.Bind(wx.EVT_CHECKBOX, self.OnAutoConnect, self.AutoConnect)
self.Debug = XRCCTRL(self, "Debug")
if hasattr(self, "OnDebug"):
self.Bind(wx.EVT_CHECKBOX, self.OnDebug, self.Debug)
def strings():
pass
_("Login for");
_("Username");
_("The username for the account on the Thousand Parsec server.");
_("Show seperate game box.");
_("G");
_("Game");
_("Password");
_("Autoconnect");
_("Debug Output");
|