2010-07-08 20:01:03 +02:00
|
|
|
#!/usr/bin/env python
|
2010-07-04 03:05:16 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2010-09-07 15:50:29 +02:00
|
|
|
"""XWindows specific methods for TableWindows Class.
|
2009-05-21 17:13:39 +02:00
|
|
|
"""
|
2010-03-03 05:12:55 +01:00
|
|
|
# Copyright 2008 - 2010, Ray E. Barker
|
2009-05-21 17:13:39 +02:00
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program 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 General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
|
2010-09-23 08:31:16 +02:00
|
|
|
import L10n
|
|
|
|
_ = L10n.get_translation()
|
|
|
|
|
2009-05-21 17:13:39 +02:00
|
|
|
# Standard Library modules
|
|
|
|
import re
|
2009-11-16 19:04:25 +01:00
|
|
|
import os
|
2009-05-21 17:13:39 +02:00
|
|
|
|
|
|
|
# pyGTK modules
|
|
|
|
import gtk
|
|
|
|
|
|
|
|
# Other Library modules
|
|
|
|
import Xlib.display
|
|
|
|
|
2010-09-07 15:50:29 +02:00
|
|
|
# FPDB modules
|
2009-05-21 17:13:39 +02:00
|
|
|
from TableWindow import Table_Window
|
|
|
|
|
|
|
|
# We might as well do this once and make them globals
|
|
|
|
disp = Xlib.display.Display()
|
|
|
|
root = disp.screen().root
|
|
|
|
|
|
|
|
class Table(Table_Window):
|
|
|
|
|
2010-09-07 15:50:29 +02:00
|
|
|
def find_table_parameters(self):
|
2009-05-21 17:13:39 +02:00
|
|
|
|
2010-11-22 22:37:37 +01:00
|
|
|
# This is called by __init__(). Find the poker table window of interest,
|
|
|
|
# given the self.search_string. Then populate self.number, self.title,
|
|
|
|
# self.window, and self.parent (if required).
|
|
|
|
|
2010-11-11 05:26:55 +01:00
|
|
|
reg = '''
|
|
|
|
\s+(?P<XID>[\dxabcdef]+) # XID in hex
|
|
|
|
\s(?P<TITLE>.+): # window title
|
|
|
|
'''
|
|
|
|
|
2010-09-07 15:50:29 +02:00
|
|
|
self.number = None
|
2009-11-16 19:04:25 +01:00
|
|
|
for listing in os.popen('xwininfo -root -tree').readlines():
|
2010-11-10 17:12:09 +01:00
|
|
|
if re.search(self.search_string, listing, re.I):
|
2010-11-11 05:26:55 +01:00
|
|
|
mo = re.match(reg, listing, re.VERBOSE)
|
|
|
|
title = re.sub('\"', '', mo.groupdict()["TITLE"])
|
2010-09-09 02:35:59 +02:00
|
|
|
if self.check_bad_words(title): continue
|
2010-11-11 05:26:55 +01:00
|
|
|
self.number = int( mo.groupdict()["XID"], 0 )
|
2010-09-09 02:35:59 +02:00
|
|
|
self.title = title
|
2010-09-07 15:50:29 +02:00
|
|
|
break
|
2010-09-17 02:29:58 +02:00
|
|
|
|
2010-09-07 15:50:29 +02:00
|
|
|
if self.number is None:
|
2009-05-21 17:13:39 +02:00
|
|
|
return None
|
2010-12-05 18:52:02 +01:00
|
|
|
(self.window, self.parent) = self.get_window_from_xid(self.number)
|
2010-09-07 15:50:29 +02:00
|
|
|
|
2010-12-13 19:45:04 +01:00
|
|
|
# def get_window_from_xid(self, id):
|
|
|
|
# for outside in root.query_tree().children:
|
|
|
|
# if outside.id == id:
|
|
|
|
# return (outside, outside.query_tree().parent)
|
|
|
|
# for inside in outside.query_tree().children:
|
|
|
|
# if inside.id == id: # GNOME, Xfce
|
|
|
|
# return (inside, inside.query_tree().parent)
|
|
|
|
# for wayinside in inside.query_tree().children:
|
|
|
|
# if wayinside.id == id: # KDE
|
|
|
|
# parent = wayinside.query_tree().parent
|
|
|
|
# return (wayinside, parent.query_tree().parent)
|
|
|
|
# return (None, None)
|
|
|
|
|
2010-09-07 15:50:29 +02:00
|
|
|
def get_window_from_xid(self, id):
|
2010-12-13 19:45:04 +01:00
|
|
|
for top_level in root.query_tree().children:
|
|
|
|
if top_level.id == id:
|
|
|
|
return (top_level, None)
|
|
|
|
for w in treewalk(top_level):
|
|
|
|
if w.id == id:
|
|
|
|
return (w, top_level)
|
2009-05-21 17:13:39 +02:00
|
|
|
|
|
|
|
def get_geometry(self):
|
|
|
|
try:
|
|
|
|
my_geo = self.window.get_geometry()
|
2010-12-05 18:52:02 +01:00
|
|
|
if self.parent is None:
|
2010-12-13 19:45:04 +01:00
|
|
|
return {'x' : my_geo.x,
|
|
|
|
'y' : my_geo.y,
|
2010-12-05 18:52:02 +01:00
|
|
|
'width' : my_geo.width,
|
|
|
|
'height' : my_geo.height
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
pa_geo = self.parent.get_geometry()
|
|
|
|
return {'x' : my_geo.x + pa_geo.x,
|
|
|
|
'y' : my_geo.y + pa_geo.y,
|
|
|
|
'width' : my_geo.width,
|
|
|
|
'height' : my_geo.height
|
|
|
|
}
|
2009-05-21 17:13:39 +02:00
|
|
|
except:
|
|
|
|
return None
|
|
|
|
|
|
|
|
def get_window_title(self):
|
2010-09-17 02:29:58 +02:00
|
|
|
s = os.popen("xwininfo -wm -id %d" % self.number).read()
|
2010-09-07 15:50:29 +02:00
|
|
|
mo = re.search('"(.+)"', s)
|
|
|
|
try:
|
|
|
|
return mo.group(1)
|
|
|
|
except AttributeError:
|
|
|
|
return None
|
2010-09-17 02:29:58 +02:00
|
|
|
|
2010-12-04 17:22:02 +01:00
|
|
|
def topify(self, window):
|
|
|
|
# The idea here is to call set_transient_for on the HUD window, with the table window
|
|
|
|
# as the argument. This should keep the HUD window on top of the table window, as if
|
|
|
|
# the hud window was a dialog belonging to the table.
|
|
|
|
|
|
|
|
# This is the gdkhandle for the HUD window
|
|
|
|
gdkwindow = gtk.gdk.window_foreign_new(window.window.xid)
|
2010-12-05 18:52:02 +01:00
|
|
|
gdkwindow.set_transient_for(self.gdkhandle)
|
2010-12-13 19:45:04 +01:00
|
|
|
|
|
|
|
def treewalk(parent):
|
|
|
|
for w in parent.query_tree().children:
|
|
|
|
for ww in treewalk(w):
|
|
|
|
yield ww
|
|
|
|
yield w
|
|
|
|
|