mirror of
https://github.com/Apress/foundations-of-pygtk-development.git
synced 2025-07-21 11:51:10 +02:00
41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
#!/usr/bin/python3
|
|
|
|
import sys
|
|
import gi
|
|
gi.require_version('Gtk', '3.0')
|
|
from gi.repository import Gtk
|
|
|
|
class AppWindow(Gtk.ApplicationWindow):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.set_border_width(10)
|
|
self.set_size_request(150, 100)
|
|
grid = Gtk.Grid.new()
|
|
label1 = Gtk.Label.new("Enter the following information ...")
|
|
label2 = Gtk.Label.new("Name: ")
|
|
entry = Gtk.Entry.new()
|
|
grid.attach(label1, 0, 0, 2, 1)
|
|
grid.attach(label2, 0, 1, 1, 1)
|
|
grid.attach(entry, 1, 1, 1, 1)
|
|
grid.set_row_spacing(5)
|
|
grid.set_column_spacing(5)
|
|
self.add(grid)
|
|
|
|
class Application(Gtk.Application):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, application_id="org.example.myapp",
|
|
**kwargs)
|
|
self.window = None
|
|
|
|
def do_activate(self):
|
|
if not self.window:
|
|
self.window = AppWindow(application=self, title="Tables")
|
|
self.window.show_all()
|
|
self.window.present()
|
|
|
|
if __name__ == "__main__":
|
|
app = Application()
|
|
app.run(sys.argv)
|