projects
/
minwii.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Implémentation de Column (en cours).
[minwii.git]
/
src
/
app
/
minwii.py
1
# -*- coding: utf-8 -*-
2
"""
3
l'application winwii
4
5
$Id$
6
$URL$
7
"""
8
9
from
pgu
.
gui
import
Desktop
10
from
pgu
.
gui
import
QUIT
11
from
widgets
.
home
import
Home
12
13
class
MinWii
(
Desktop
):
14
15
def
__init__
(
self
) :
16
Desktop
.__
init
__
(
self
)
17
18
home
=
Home
()
19
home
.
connect
(
QUIT
,
self
.
quit
)
20
self
.
run
(
home
)