Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/face.py
diff options
context:
space:
mode:
Diffstat (limited to 'face.py')
-rw-r--r--face.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/face.py b/face.py
index dd4bf90..7032455 100644
--- a/face.py
+++ b/face.py
@@ -12,23 +12,23 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-import gtk
+from gi.repository import Gtk
import logging
_logger = logging.getLogger('memorize-activity')
-from sugar.graphics import style
+from sugar3.graphics import style
import speak.espeak
import speak.face
import theme
-class Face(gtk.EventBox):
+class Face(Gtk.EventBox):
def __init__(self):
- gtk.EventBox.__init__(self)
+ Gtk.EventBox.__init__(self)
- self.modify_bg(gtk.STATE_NORMAL, style.COLOR_BLACK.get_gdk_color())
+ self.modify_bg(Gtk.STATE_NORMAL, style.COLOR_BLACK.get_Gdk_color())
self.face = speak.face.View(style.Color('#4b4c4e'))
self.face.set_border_width(theme.SVG_PAD)
@@ -52,7 +52,7 @@ def look_at():
if not speak.espeak.supported:
return
- display = gtk.gdk.display_get_default()
+ display = Gdk.display_get_default()
screen_, x, y, modifiers_ = display.get_pointer()
for i in _cache: