File: Tutorial_09_gtk_entry.py

package info (click to toggle)
sugar-pippy-activity 76-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,664 kB
  • sloc: python: 5,860; makefile: 16; sh: 1
file content (33 lines) | stat: -rw-r--r-- 764 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
from gi.repository import Gdk

class PyApp(Gtk.Window):

    def __init__(self):
        super(PyApp, self).__init__()
        self.set_title('Text Entry')
        self.set_position(Gtk.WindowPosition.CENTER_ALWAYS)
        self.set_size_request(250, 150)

        def entry_cb(widget, event):
            if Gdk.keyval_name(event.keyval) == 'Return':
                print(widget.get_text())

        entry = Gtk.Entry()
        entry.connect('key_press_event', entry_cb)
        entry.show()

        fixed = Gtk.Fixed()
        fixed.show()
        fixed.put(entry, 20, 30)

        self.add(fixed)
        self.show()

        self.connect('destroy', Gtk.main_quit)


PyApp()
Gtk.main()