2007-07-06 14:58:28 +02:00
|
|
|
# Copyright (C) 2007 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
import gobject
|
|
|
|
|
|
|
|
_groups = {}
|
|
|
|
|
|
|
|
def get_group(group_id):
|
|
|
|
if _groups.has_key(group_id):
|
|
|
|
group = _groups[group_id]
|
|
|
|
else:
|
|
|
|
group = Group()
|
|
|
|
_groups[group_id] = group
|
|
|
|
|
|
|
|
return group
|
|
|
|
|
|
|
|
class Group(gobject.GObject):
|
|
|
|
__gsignals__ = {
|
|
|
|
'popup' : (gobject.SIGNAL_RUN_FIRST,
|
|
|
|
gobject.TYPE_NONE, ([])),
|
|
|
|
'popdown' : (gobject.SIGNAL_RUN_FIRST,
|
|
|
|
gobject.TYPE_NONE, ([]))
|
|
|
|
}
|
|
|
|
def __init__(self):
|
|
|
|
gobject.GObject.__init__(self)
|
|
|
|
self._up = False
|
|
|
|
self._palettes = []
|
2007-08-20 20:01:27 +02:00
|
|
|
self._sig_ids = {}
|
2007-07-06 14:58:28 +02:00
|
|
|
|
|
|
|
def is_up(self):
|
|
|
|
return self._up
|
|
|
|
|
2007-08-24 14:21:07 +02:00
|
|
|
def get_state(self):
|
|
|
|
for palette in self._palettes:
|
|
|
|
if palette.is_up():
|
|
|
|
return palette.palette_state
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
2007-07-06 14:58:28 +02:00
|
|
|
def add(self, palette):
|
|
|
|
self._palettes.append(palette)
|
|
|
|
|
2007-08-20 20:01:27 +02:00
|
|
|
self._sig_ids[palette] = []
|
|
|
|
|
2007-07-06 14:58:28 +02:00
|
|
|
sid = palette.connect('popup', self._palette_popup_cb)
|
2007-08-20 20:01:27 +02:00
|
|
|
self._sig_ids[palette].append(sid)
|
2007-07-06 14:58:28 +02:00
|
|
|
|
|
|
|
sid = palette.connect('popdown', self._palette_popdown_cb)
|
2007-08-20 20:01:27 +02:00
|
|
|
self._sig_ids[palette].append(sid)
|
2007-07-06 14:58:28 +02:00
|
|
|
|
|
|
|
def remove(self, palette):
|
2007-08-20 20:01:27 +02:00
|
|
|
sig_ids = self._sig_ids[palette]
|
|
|
|
for sid in sig_ids:
|
|
|
|
palette.disconnect(sid)
|
2007-07-06 14:58:28 +02:00
|
|
|
|
|
|
|
self._palettes.remove(palette)
|
2008-01-09 21:21:06 +01:00
|
|
|
del self._sig_ids[palette]
|
2007-07-06 14:58:28 +02:00
|
|
|
|
2007-08-20 20:01:27 +02:00
|
|
|
def popdown(self):
|
|
|
|
for palette in self._palettes:
|
|
|
|
if palette.is_up():
|
|
|
|
palette.popdown(immediate=True)
|
|
|
|
|
2007-07-06 14:58:28 +02:00
|
|
|
def _palette_popup_cb(self, palette):
|
|
|
|
if not self._up:
|
|
|
|
self.emit('popup')
|
|
|
|
self._up = True
|
|
|
|
|
|
|
|
def _palette_popdown_cb(self, palette):
|
|
|
|
down = True
|
|
|
|
for palette in self._palettes:
|
|
|
|
if palette.is_up():
|
|
|
|
down = False
|
|
|
|
|
|
|
|
if down:
|
|
|
|
self._up = False
|
|
|
|
self.emit('popdown')
|