-
Notifications
You must be signed in to change notification settings - Fork 0
/
vera.py
executable file
·70 lines (50 loc) · 1.84 KB
/
vera.py
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
#
# vera - Semplice Mobile User Interface
# Copyright (C) 2013 Semplice Mobile Team
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Authors:
# Eugenio "g7" Paolantonio <me@medesimo.eu>
import sys, os
import vera.core.config as config
maincfg = config.Configuration("vera")
settings = maincfg.to_dict("vera")
os.environ["VERA_WIDTH"] = str(settings["width"])
os.environ["VERA_HEIGHT"] = str(settings["height"])
os.environ["VERA_SCALING"] = str(settings["scaling"])
import vera.core.scriptLoader as scriptLoader
import vera.views.main as mainView
from gi.repository import Clutter
def _quit(caller=None):
Clutter.main_quit()
class MainStage(Clutter.Stage):
"""The MainStage is the main vera window.
If we are travelling onboard our shiny new A380s is thanks to it ;)"""
def __init__(self):
"""We only need to set some things on the default stage."""
Clutter.Stage.__init__(self)
self.set_size(settings["width"], settings["height"])
self.connect("destroy", _quit)
self.show()
if __name__ == "__main__":
Clutter.init(sys.argv)
handler = scriptLoader.ScriptHandler()
ms = MainStage()
# Show the main view
main = mainView.View(handler, ms, maincfg.to_dict("main"))
main.ready()
main.add_to_stage()
Clutter.main()