mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-02 16:25:47 -04:00
rhs callback
This commit is contained in:
parent
999fb83c92
commit
d39e8b00ba
1 changed files with 6 additions and 0 deletions
|
@ -42,6 +42,11 @@ class HellowWorldGTK:
|
||||||
row = treeview.get_model()[offs[0]][0]
|
row = treeview.get_model()[offs[0]][0]
|
||||||
self.set_texture(row)
|
self.set_texture(row)
|
||||||
|
|
||||||
|
def rhs_callback(self, rhs):
|
||||||
|
offs,col = rhs.get_cursor()
|
||||||
|
row = rhs.get_model()[offs[0]][0]
|
||||||
|
print row
|
||||||
|
|
||||||
def set_texture(self, name):
|
def set_texture(self, name):
|
||||||
# parse the example texture, fetch the width,height;
|
# parse the example texture, fetch the width,height;
|
||||||
# create Patch objects and stuff them into a list
|
# create Patch objects and stuff them into a list
|
||||||
|
@ -119,6 +124,7 @@ class HellowWorldGTK:
|
||||||
cell = gtk.CellRendererText()
|
cell = gtk.CellRendererText()
|
||||||
column.pack_start(cell, False)
|
column.pack_start(cell, False)
|
||||||
column.add_attribute(cell, "text", 0)
|
column.add_attribute(cell, "text", 0)
|
||||||
|
rhs.connect("cursor-changed", self.rhs_callback)
|
||||||
|
|
||||||
# set the progress bar up
|
# set the progress bar up
|
||||||
# by default we've "done" all the 1-patch textures
|
# by default we've "done" all the 1-patch textures
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue