Esempio n. 1
0
## Lino 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 2 of the License, or
## (at your option) any later version.

## Lino 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 Lino; if not, write to the Free Software Foundation,
## Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

"""
starts a GUI application with an adamo database.
Just a proof of concept, far from being usable.
"""

import sys

from lino.ui import console
from lino.schemas.sprl import demo
from lino.ui.wxwindows import run

if __name__ == "__main__":
    console.parse_args(sys.argv)
    sess = demo.beginSession()
    run(sess)
    
Esempio n. 2
0
## This file is part of the Lino project.

## Lino 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 2 of the License, or
## (at your option) any later version.

## Lino 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 Lino; if not, write to the Free Software Foundation,
## Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""
starts a GUI application with an adamo database.
Just a proof of concept, far from being usable.
"""

import sys

from lino.ui import console
from lino.schemas.sprl import demo
from lino.ui.wxwindows import run

if __name__ == "__main__":
    console.parse_args(sys.argv)
    sess = demo.beginSession()
    run(sess)
Esempio n. 3
0
        frm.addEntry("dossard",STRING,
                     label="Dossard",
                     value="*",
                     doc="""Hier die Dossardnummer des ankommenden Läufers eingeben, oder '*' wenn sie später erfasst werden soll.""")

        
        #bbox = frm.addHPanel()
        bbox = frm
        bbox.addButton(name="start",
                      label="&Start",
                      onclick=self.start)
        bbox.addButton(name="arrive",
                      label="&Arrive",
                      onclick=self.arrive).setDefault()
        bbox.addButton("write",label="&Write",onclick=self.writedata)
        bbox.addButton("exit",label="&Exit",onclick=self.exit)

##         fileMenu  = frm.addMenu("&File")
##         fileMenu.addButton(frm.buttons.write,accel="Ctrl-S")
##         fileMenu.addButton(frm.buttons.exit,accel="Ctrl-Q")
        
##         fileMenu  = frm.addMenu("&Edit")
##         fileMenu.addButton(frm.buttons.start)
##         fileMenu.addButton(frm.buttons.arrive,accel="Ctrl-A")
        
        frm.show()
        
if __name__ == "__main__":
    console.parse_args()
    Main().run()
Esempio n. 4
0

def main():
    spoolFile = r"tmp.ps"
    d = winprn.Win32TextPrinter("Lexmark Optra PS",
                                spoolFile,
                                coding="cp850")
    d.writeln("--- File 2a.prn:---")
    d.readfile("2a.prn",coding="cp850")
    d.writeln("--- eof 2a.prn---")
    
    d.writeln("--- File 2b.prn:---")
    d.readfile("2b.prn",coding="cp850")
    d.writeln("--- eof 2b.prn---")
    
    d.writeln("Here is some more text.")
    d.writeln("Ännchen Müller machte große Augen.")
    d.write("And here")
    d.write(" is some")
    d.write(" frag")
    d.writeln("mented text.")
    d.drawDebugRaster()
    d.endDoc()
        
        
if __name__ == '__main__':
    console.parse_args()
    main()