Difference between revisions of "Features/GTK3/Porting/Typing Turtle"
Jump to navigation
Jump to search
Line 25: | Line 25: | ||
self.layout = self.create_pango_layout('') | self.layout = self.create_pango_layout('') | ||
self.layout.set_text(self.title_original, len(self.title_original) | self.layout.set_text(self.title_original, len(self.title_original) | ||
+ | |||
+ | ---- | ||
+ | |||
+ | self.lessonbuffer = Gtk.TextBuffer.new(self.tagtable) | ||
+ | self.lessontext = Gtk.TextView.new_with_buffer(self.lessonbuffer) | ||
= Gtk.TextTag = | = Gtk.TextTag = |
Revision as of 09:25, 19 July 2012
This page is being performed while I'm porting Typing Turtle Activity to Gtk3.
There is a [ticket] with some useful information that I'm using on the porting and to keep tracking this port. Besides, this wiki page will be useful to write some code snippets about what are the difficulties that I'm having on the port and maybe can be useful for someone else.
I will take this guide as reference on the Gtk3 porting.
Code Snippets
Gtk.Style.fg_gc
gc = self.get_style().fg_gc[Gtk.StateType.NORMAL]
replaced by:
gc = self.get_style().fg[Gtk.StateType.NORMAL]
Gtk.DrawingArea
self.layout = self.create_pango_layout() self.layout.set_text(self.title_original)
replaced by:
self.layout = self.create_pango_layout() self.layout.set_text(self.title_original, len(self.title_original)
self.lessonbuffer = Gtk.TextBuffer.new(self.tagtable) self.lessontext = Gtk.TextView.new_with_buffer(self.lessonbuffer)
Gtk.TextTag
instructions_tag = Gtk.TextTag('instructions')
replaced by:
instructions_tag = Gtk.TextTag.new('instructions')