-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmostraFinestra.py
executable file
·47 lines (36 loc) · 1.23 KB
/
mostraFinestra.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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
#fonte: https://docs.python.org/3.5/howto/argparse.html
import gi
gi.require_version( 'Gtk', '3.0' )
from gi.repository import Gtk
# gestione degli argomenti passati via CLI
import argparse
parser = argparse.ArgumentParser(
description="Ricrea la finestra dal GUI_file specificato" )
parser.add_argument( "GUI_file",
help="file di interfaccia gradica da aprire" )
args = parser.parse_args()
GUI_file = args.GUI_file
print( GUI_file )
# costruzione della finestra
builder = Gtk.Builder()
builder.add_from_file( GUI_file )
handlers = {
"onDeleteWindow": Gtk.main_quit
}
builder.connect_signals( handlers )
try:
window = builder.get_object( "window" )
window.show_all()
Gtk.main()
except:
print( "ERRORE! la GtkWindow deve avere id 'window'" )
# add_argument può specificare type=int come parametro aggiuntivo
# parametri opzionali: ° nome breve (una lettera) preceduta da -
# ° nome lungo preceduto da --
# ° action="store_true" se uso tipo flag
# ° type= per parametri normali ma opzionali
# ° choiches=[,,] per limitare valori possibili
#
#vedi link sopra per altre opzioni