added header

This commit is contained in:
Angoosh Leviocki 2024-11-27 15:52:50 +01:00
parent c1b729cf52
commit da3215ec5e
Signed by: angoosh
GPG Key ID: 2DAE446D291BD8D3

View File

@ -5,7 +5,7 @@ import time
gi.require_version('Gtk', '4.0') gi.require_version('Gtk', '4.0')
from gi.repository import Gtk, Gio, Gdk from gi.repository import Gtk, Gio, Gdk
index = 1 index = 2
TIME = 10*60 TIME = 10*60
class GridRow(): class GridRow():
@ -69,11 +69,18 @@ class GridWindow(Gtk.ApplicationWindow):
button1.connect("clicked", self.arb) button1.connect("clicked", self.arb)
button2.connect("clicked", self.rrb) button2.connect("clicked", self.rrb)
runlabel = Gtk.Label(label="ID", name="gridlabel")
runlabel.set_justify(2)
cntlabel = Gtk.Label(label="Countdown", name="gridlabel")
cntlabel.set_justify(2)
self.runners = [] self.runners = []
self.grid = Gtk.Grid() self.grid = Gtk.Grid()
self.grid.attach(button1, 0, 0, 1, 1) self.grid.attach(button1, 0, 0, 1, 1)
self.grid.attach(button2, 1, 0, 2, 1) self.grid.attach(button2, 1, 0, 2, 1)
self.grid.attach(runlabel, 0, 1, 1, 1)
self.grid.attach(cntlabel, 1, 1, 2, 1)
self.set_child(self.grid) self.set_child(self.grid)