コード例 #1
0
ファイル: shadow_x11_server.py プロジェクト: ljmljz/xpra
 def init(self, opts):
     GTKShadowServerBase.init(self, opts)
     X11ServerBase.init(self, opts)
コード例 #2
0
ファイル: shadow_server.py プロジェクト: rudresh2319/Xpra
 def init(self, opts):
     GTKShadowServerBase.init(self, opts)
     self.keycodes = {}
     #printing fails silently on OSX
     self.printing = False
コード例 #3
0
 def init(self, opts):
     GTKShadowServerBase.init(self, opts)
     X11ServerCore.do_init(self, opts)
コード例 #4
0
 def init(self, opts):
     self.pixel_depth = int(opts.pixel_depth) or 32
     if self.pixel_depth not in (24, 30, 32):
         raise InitException("unsupported pixel depth: %s" %
                             self.pixel_depth)
     GTKShadowServerBase.init(self, opts)
コード例 #5
0
ファイル: shadow_x11_server.py プロジェクト: gitmirrors2/xpra
 def init(self, opts):
     GTKShadowServerBase.init(self, opts)
     #don't call init on X11ServerCore,
     #this would call up to GTKServerBase.init(opts) again:
     X11ServerCore.do_init(self, opts)
コード例 #6
0
ファイル: shadow_server.py プロジェクト: svn2github/Xpra
 def init(self, opts):
     GTKShadowServerBase.init(self, opts)
     self.keycodes = {}
     #printing fails silently on OSX
     self.printing = False