blob: a6cdb94d901b7bfa86d8baa124e90afe801695fe (
plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
import sys
import gi
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, Gio, Gdk
from .window import SigloWindow
from .config import config
class Application(Gtk.Application):
def __init__(self):
self.manager = None
self.conf = config()
self.conf.load_defaults()
super().__init__(
application_id="com.github.theironrobin.siglo", flags=Gio.ApplicationFlags.FLAGS_NONE
)
def do_activate(self):
win = self.props.active_window
if not win:
win = SigloWindow(application=self)
win.present()
win.do_scanning()
def do_window_removed(self, window):
win = self.props.active_window
if win:
win.destroy_manager()
self.quit()
def main(version):
def gtk_style():
css = b"""
#multi_mac_label { font-size: 33px; }
#bluetooth_button { background-color: blue;
background-image: none; }
"""
style_provider = Gtk.CssProvider()
style_provider.load_from_data(css)
Gtk.StyleContext.add_provider_for_screen(
Gdk.Screen.get_default(),
style_provider,
Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION,
)
gtk_style()
app = Application()
return app.run(sys.argv)
|