sugar-toolkit-gtk3/shell/view/clipboardicon.py

98 lines
3.5 KiB
Python
Raw Normal View History

2007-03-14 04:57:29 +01:00
# Copyright (C) 2007, Red Hat, Inc.
# Copyright (C) 2007, Tomeu Vizoso <tomeu@tomeuvizoso.net>
#
# 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import logging
2007-02-21 21:12:27 +01:00
from sugar.graphics.canvasicon import CanvasIcon
from view.clipboardmenu import ClipboardMenu
2007-02-23 13:09:33 +01:00
from sugar.graphics.xocolor import XoColor
from sugar.graphics import units
2007-02-24 14:35:31 +01:00
from sugar.graphics import color
2007-02-21 20:20:36 +01:00
from sugar.activity import activityfactory
from sugar.clipboard import clipboardservice
from sugar import util
2007-02-21 21:12:27 +01:00
class ClipboardIcon(CanvasIcon):
2007-02-21 21:12:27 +01:00
def __init__(self, popup_context, object_id, name):
CanvasIcon.__init__(self)
self._popup_context = popup_context
self._object_id = object_id
self._name = name
self._percent = 0
self._preview = None
self._activity = None
self.props.box_width = units.grid_to_pixels(1)
self.props.box_height = units.grid_to_pixels(1)
self.props.scale = units.STANDARD_ICON_SCALE
self.connect('activated', self._icon_activated_cb)
self._menu = None
2007-02-21 21:12:27 +01:00
def get_popup(self):
self._menu = ClipboardMenu(self._name, self._percent, self._preview,
self._activity)
self._menu.connect('action', self._popup_action_cb)
return self._menu
2007-02-21 21:12:27 +01:00
def get_popup_context(self):
return self._popup_context
def set_state(self, name, percent, icon_name, preview, activity):
self._name = name
self._percent = percent
self._preview = preview
self._activity = activity
self.set_property("icon_name", icon_name)
if self._menu:
self._menu.set_state(name, percent, preview, activity)
if activity and percent < 100:
2007-02-24 14:23:18 +01:00
self.props.xo_color = XoColor("#000000,#424242")
else:
2007-02-24 14:23:18 +01:00
self.props.xo_color = XoColor("#000000,#FFFFFF")
def _open_file(self):
if self._percent < 100 or not self._activity:
return
logging.debug("_icon_activated_cb: " + self._object_id)
activityfactory.create_with_uri(self._activity, self._object_id)
def _icon_activated_cb(self, icon):
self._open_file()
2007-02-21 21:12:27 +01:00
def _popup_action_cb(self, popup, menu_item):
action = menu_item.props.action_id
if action == ClipboardMenu.ACTION_STOP_DOWNLOAD:
raise "Stopping downloads still not implemented."
elif action == ClipboardMenu.ACTION_DELETE:
cb_service = clipboardservice.get_instance()
cb_service.delete_object(self._object_id)
elif action == ClipboardMenu.ACTION_OPEN:
self._open_file()
def get_object_id(self):
return self._object_id
2007-02-24 14:35:31 +01:00
def prelight(self, enter):
if enter:
self.props.background_color = color.BLACK.get_int()
else:
self.props.background_color = color.TOOLBAR_BACKGROUND.get_int()