repo.or.cz
/
pde-python.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added python module for native solution and parameter setting
[pde-python.git]
/
gmain.py
blob
bb46ff984a3f4c921e9f87fd4e6ff283c1005531
1
#!/usr/bin/python
2
#-*- coding: utf-8
3
4
import
sys
5
from
PyQt4
.
QtGui
import
*
6
7
from
gui
import
AppForm
8
9
def
guiMain
():
10
app
=
QApplication
(
sys
.
argv
)
11
form
=
AppForm
()
12
form
.
show
()
13
app
.
exec_
()
14
15
if
__name__
==
'__main__'
:
16
guiMain
()
17