Application indicator + entry widget
Posted
by
Jan Jeseter
on Ask Ubuntu
See other posts from Ask Ubuntu
or by Jan Jeseter
Published on 2012-01-16T18:59:09Z
Indexed on
2012/04/10
5:43 UTC
Read the original article
Hit count: 279
indicator
|Development
I would like write my own application indicator via guide in http://unity.ubuntu.com/projects/appindicators/ (in python)
My question - Is there any chance add next to icon indicator entry widget (see below) on top panel?
(
window = gtk.Window(gtk.WINDOW_TOPLEVEL)
vbox = gtk.VBox(False, 0)
window.add(vbox)
vbox.show()
entry = gtk.Entry()
entry.set_max_length(50)
entry.set_text("hello")
vbox.pack_start(entry, True, True, 0)
entry.show()
window.show()
)
Thanks
© Ask Ubuntu or respective owner