Fix imports, apply black
This commit is contained in:
parent
ab8644b9ec
commit
d038fcd217
1419
Pyxform/__init__.py
1419
Pyxform/__init__.py
File diff suppressed because it is too large
Load Diff
@ -5,12 +5,12 @@ from Pyxform import *
|
||||
# Init the library (sucks but works)
|
||||
#
|
||||
|
||||
xfinit ('Something','1',sys.argv[0])
|
||||
xfinit("Something", "1", sys.argv[0])
|
||||
|
||||
#
|
||||
# Create a "Window" - A form in XForms parlance
|
||||
|
||||
win=Form()
|
||||
win = Form()
|
||||
|
||||
#
|
||||
# Show it
|
||||
@ -20,15 +20,15 @@ win.Show()
|
||||
#
|
||||
# Create a button
|
||||
|
||||
a_button=Button(0,10,10,100,30,"Press Me")
|
||||
a_button = Button(0, 10, 10, 100, 30, "Press Me")
|
||||
|
||||
#
|
||||
# Put it inside win
|
||||
|
||||
win.Add (a_button)
|
||||
win.Add(a_button)
|
||||
|
||||
#
|
||||
# Start the event loop
|
||||
# It will run forever, because the button doesn't do anything
|
||||
|
||||
runforms()
|
||||
runforms()
|
||||
|
@ -7,12 +7,12 @@ from goodies import *
|
||||
# Init the library (sucks but works)
|
||||
#
|
||||
|
||||
xfinit ('Something','1',sys.argv[0])
|
||||
xfinit("Something", "1", sys.argv[0])
|
||||
|
||||
#
|
||||
# Create a "Window" - A form in XForms parlance
|
||||
|
||||
win=Form()
|
||||
win = Form()
|
||||
|
||||
#
|
||||
# Show it
|
||||
@ -22,30 +22,32 @@ win.Show()
|
||||
#
|
||||
# Create a button
|
||||
|
||||
a_button=Button(0,10,10,100,30,"Press Me")
|
||||
a_button = Button(0, 10, 10, 100, 30, "Press Me")
|
||||
|
||||
#
|
||||
# Put it inside win
|
||||
|
||||
win.Add (a_button)
|
||||
win.Add(a_button)
|
||||
|
||||
#
|
||||
# Define a function, that will be executed when the button is pressed
|
||||
|
||||
def funct (self):
|
||||
# It shows a message and exits (or not)
|
||||
answer=show_question ("Do you want","to exit?","")
|
||||
if answer==1:
|
||||
sys.exit()
|
||||
|
||||
def funct(self):
|
||||
# It shows a message and exits (or not)
|
||||
answer = show_question("Do you want", "to exit?", "")
|
||||
if answer == 1:
|
||||
sys.exit()
|
||||
|
||||
|
||||
#
|
||||
# And bind the function to the button
|
||||
|
||||
a_button.cb=funct
|
||||
a_button.cb = funct
|
||||
|
||||
|
||||
#
|
||||
# Start the event loop
|
||||
# It will run until you press the button and say yes
|
||||
|
||||
runforms()
|
||||
runforms()
|
||||
|
@ -7,12 +7,12 @@ from goodies import *
|
||||
# Init the library (sucks but works)
|
||||
#
|
||||
|
||||
xfinit ('Something','1',sys.argv[0])
|
||||
xfinit("Something", "1", sys.argv[0])
|
||||
|
||||
#
|
||||
# Create a "Window" - A form in XForms parlance
|
||||
|
||||
win=Form()
|
||||
win = Form()
|
||||
|
||||
#
|
||||
# Show it
|
||||
@ -22,54 +22,56 @@ win.Show()
|
||||
#
|
||||
# Create a button, and 2 sliders
|
||||
|
||||
a_button=Button(0,10,10,100,30,"Press Me")
|
||||
h_slider=Slider(5,0,180,200,20,"")
|
||||
v_slider=Slider(4,180,0,20,180,"")
|
||||
a_button = Button(0, 10, 10, 100, 30, "Press Me")
|
||||
h_slider = Slider(5, 0, 180, 200, 20, "")
|
||||
v_slider = Slider(4, 180, 0, 20, 180, "")
|
||||
|
||||
#
|
||||
# Set some values for the sliders
|
||||
|
||||
h_slider.Setbounds(0,200)
|
||||
h_slider.Setbounds(0, 200)
|
||||
h_slider.Set(0)
|
||||
|
||||
v_slider.Setbounds(0,200)
|
||||
v_slider.Setbounds(0, 200)
|
||||
v_slider.Set(0)
|
||||
|
||||
#
|
||||
# Put them inside win
|
||||
|
||||
win.Add (a_button)
|
||||
win.Add (h_slider)
|
||||
win.Add (v_slider)
|
||||
win.Add(a_button)
|
||||
win.Add(h_slider)
|
||||
win.Add(v_slider)
|
||||
|
||||
#
|
||||
# Define a function, that will be executed when the button is pressed
|
||||
|
||||
def funct (self):
|
||||
# It shows a message and exits (or not)
|
||||
answer=show_question ("Do you want","to exit?","")
|
||||
if answer==1:
|
||||
sys.exit()
|
||||
|
||||
def funct(self):
|
||||
# It shows a message and exits (or not)
|
||||
answer = show_question("Do you want", "to exit?", "")
|
||||
if answer == 1:
|
||||
sys.exit()
|
||||
|
||||
|
||||
#
|
||||
# And another one, for when the sliders move
|
||||
|
||||
def slide (self):
|
||||
# It moves the button to the position of the sliders
|
||||
a_button.x=h_slider.Get()
|
||||
a_button.y=v_slider.Get()
|
||||
|
||||
def slide(self):
|
||||
# It moves the button to the position of the sliders
|
||||
a_button.x = h_slider.Get()
|
||||
a_button.y = v_slider.Get()
|
||||
|
||||
|
||||
#
|
||||
# And bind the functions to the controls
|
||||
|
||||
a_button.cb=funct
|
||||
h_slider.cb=v_slider.cb=slide
|
||||
a_button.cb = funct
|
||||
h_slider.cb = v_slider.cb = slide
|
||||
|
||||
|
||||
#
|
||||
# Start the event loop
|
||||
# It will run until you press the button and say yes
|
||||
|
||||
runforms()
|
||||
runforms()
|
||||
|
@ -7,12 +7,12 @@ from goodies import *
|
||||
# Init the library (sucks but works)
|
||||
#
|
||||
|
||||
xfinit ('Something','1',sys.argv[0])
|
||||
xfinit("Something", "1", sys.argv[0])
|
||||
|
||||
#
|
||||
# Create a "Window" - A form in XForms parlance
|
||||
|
||||
win=Form()
|
||||
win = Form()
|
||||
|
||||
#
|
||||
# Show it
|
||||
@ -22,56 +22,58 @@ win.Show()
|
||||
#
|
||||
# Create a button, and 2 valsliders
|
||||
|
||||
a_button=Button(0,10,10,100,30,"Press Me")
|
||||
h_slider=Valslider(5,0,180,200,20,"")
|
||||
v_slider=Valslider(4,180,0,20,180,"")
|
||||
a_button = Button(0, 10, 10, 100, 30, "Press Me")
|
||||
h_slider = Valslider(5, 0, 180, 200, 20, "")
|
||||
v_slider = Valslider(4, 180, 0, 20, 180, "")
|
||||
|
||||
#
|
||||
# Set some values for the sliders
|
||||
|
||||
h_slider.Setbounds(0,200)
|
||||
h_slider.Setbounds(0, 200)
|
||||
h_slider.Set(0)
|
||||
h_slider.Setprecision(0)
|
||||
|
||||
v_slider.Setbounds(0,200)
|
||||
v_slider.Setbounds(0, 200)
|
||||
v_slider.Set(0)
|
||||
v_slider.Setprecision(0)
|
||||
|
||||
#
|
||||
# Put them inside win
|
||||
|
||||
win.Add (a_button)
|
||||
win.Add (h_slider)
|
||||
win.Add (v_slider)
|
||||
win.Add(a_button)
|
||||
win.Add(h_slider)
|
||||
win.Add(v_slider)
|
||||
|
||||
#
|
||||
# Define a function, that will be executed when the button is pressed
|
||||
|
||||
def funct (self):
|
||||
# It shows a message and exits (or not)
|
||||
answer=show_question ("Do you want","to exit?","")
|
||||
if answer==1:
|
||||
sys.exit()
|
||||
|
||||
def funct(self):
|
||||
# It shows a message and exits (or not)
|
||||
answer = show_question("Do you want", "to exit?", "")
|
||||
if answer == 1:
|
||||
sys.exit()
|
||||
|
||||
|
||||
#
|
||||
# And another one, for when the sliders move
|
||||
|
||||
def slide (self):
|
||||
# It moves the button to the position of the sliders
|
||||
a_button.x=h_slider.Get()
|
||||
a_button.y=v_slider.Get()
|
||||
|
||||
def slide(self):
|
||||
# It moves the button to the position of the sliders
|
||||
a_button.x = h_slider.Get()
|
||||
a_button.y = v_slider.Get()
|
||||
|
||||
|
||||
#
|
||||
# And bind the functions to the controls
|
||||
|
||||
a_button.cb=funct
|
||||
h_slider.cb=v_slider.cb=slide
|
||||
a_button.cb = funct
|
||||
h_slider.cb = v_slider.cb = slide
|
||||
|
||||
|
||||
#
|
||||
# Start the event loop
|
||||
# It will run until you press the button and say yes
|
||||
|
||||
runforms()
|
||||
runforms()
|
||||
|
@ -7,12 +7,12 @@ from goodies import *
|
||||
# Init the library (sucks but works)
|
||||
#
|
||||
|
||||
xfinit ('Something','1',sys.argv[0])
|
||||
xfinit("Something", "1", sys.argv[0])
|
||||
|
||||
#
|
||||
# Create a "Window" - A form in XForms parlance
|
||||
|
||||
win=Form(6,640,480)
|
||||
win = Form(6, 640, 480)
|
||||
|
||||
#
|
||||
# Show it
|
||||
@ -22,35 +22,40 @@ win.Show()
|
||||
#
|
||||
# Create a browser and a Button
|
||||
|
||||
brow=Browser(0,10,10,620,440,"Read Me")
|
||||
but1=Button (0,10,450,100,25,"Push Me")
|
||||
but2=Button (0,120,450,100,25,"Exit")
|
||||
brow = Browser(0, 10, 10, 620, 440, "Read Me")
|
||||
but1 = Button(0, 10, 450, 100, 25, "Push Me")
|
||||
but2 = Button(0, 120, 450, 100, 25, "Exit")
|
||||
#
|
||||
# Put them inside win
|
||||
|
||||
win.Add (brow)
|
||||
win.Add (but1)
|
||||
win.Add (but2)
|
||||
win.Add(brow)
|
||||
win.Add(but1)
|
||||
win.Add(but2)
|
||||
|
||||
#
|
||||
# The exit function
|
||||
|
||||
def funct (self):
|
||||
# It shows a message and exits (or not)
|
||||
answer=show_question ("Do you want","to exit?","")
|
||||
if answer==1:
|
||||
sys.exit()
|
||||
but2.cb=funct
|
||||
|
||||
def funct(self):
|
||||
# It shows a message and exits (or not)
|
||||
answer = show_question("Do you want", "to exit?", "")
|
||||
if answer == 1:
|
||||
sys.exit()
|
||||
|
||||
|
||||
but2.cb = funct
|
||||
|
||||
#
|
||||
# And the interesting function
|
||||
|
||||
def browse_file(self):
|
||||
# Asks for a file, and puts it in the browser
|
||||
filename=show_fselector("","","","")
|
||||
brow.Load (filename)
|
||||
|
||||
but1.cb=browse_file
|
||||
def browse_file(self):
|
||||
# Asks for a file, and puts it in the browser
|
||||
filename = show_fselector("", "", "", "")
|
||||
brow.Load(filename)
|
||||
|
||||
|
||||
but1.cb = browse_file
|
||||
|
||||
|
||||
#
|
||||
|
260
setup.py
260
setup.py
@ -1,99 +1,167 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from setuptools import setup, Extension
|
||||
|
||||
bitmaps = Extension('Pyxform.bitmaps',
|
||||
sources = [ 'Pyxform/Modules/bitmaps.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
box = Extension('Pyxform.box',
|
||||
sources = [ 'Pyxform/Modules/box.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
browser = Extension('Pyxform.browser',
|
||||
sources = [ 'Pyxform/Modules/browser.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
button = Extension('Pyxform.button',
|
||||
sources = [ 'Pyxform/Modules/button.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
choice = Extension('Pyxform.choice',
|
||||
sources = [ 'Pyxform/Modules/choice.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
clock = Extension('Pyxform.clock',
|
||||
sources = [ 'Pyxform/Modules/clock.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
counter = Extension('Pyxform.counter',
|
||||
sources = [ 'Pyxform/Modules/counter.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
dial = Extension('Pyxform.dial',
|
||||
sources = [ 'Pyxform/Modules/dial.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
forms = Extension('Pyxform.forms',
|
||||
sources = [ 'Pyxform/Modules/forms.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
frame = Extension('Pyxform.frame',
|
||||
sources = [ 'Pyxform/Modules/frame.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
goodies = Extension('Pyxform.goodies',
|
||||
sources = [ 'Pyxform/Modules/goodies.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
input = Extension('Pyxform.input',
|
||||
sources = [ 'Pyxform/Modules/input.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
menu = Extension('Pyxform.menu',
|
||||
sources = [ 'Pyxform/Modules/menu.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
objects = Extension('Pyxform.objects',
|
||||
sources = [ 'Pyxform/Modules/objects.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
pixmaps = Extension('Pyxform.pixmaps',
|
||||
sources = [ 'Pyxform/Modules/pixmaps.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
popups = Extension('Pyxform.popups',
|
||||
sources = [ 'Pyxform/Modules/popups.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
positioner = Extension('Pyxform.positioner',
|
||||
sources = [ 'Pyxform/Modules/positioner.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
slider = Extension('Pyxform.slider',
|
||||
sources = [ 'Pyxform/Modules/slider.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
text = Extension('Pyxform.text',
|
||||
sources = [ 'Pyxform/Modules/text.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
timer = Extension('Pyxform.timer',
|
||||
sources = [ 'Pyxform/Modules/timer.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
xforms = Extension('Pyxform.xforms',
|
||||
sources = [ 'Pyxform/Modules/xforms.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
xyplot = Extension('Pyxform.xyplot',
|
||||
sources = [ 'Pyxform/Modules/xyplot.c'],
|
||||
libraries = ['forms'],
|
||||
library_dirs = ['/usr/local/lib'])
|
||||
setup (name = 'PyXForms',
|
||||
version = '0.2',
|
||||
description = 'This is OLD code',
|
||||
author = 'Roberto Alsina',
|
||||
author_email = 'ralsina@netmanagers.com.ar',
|
||||
ext_modules = [bitmaps, box, browser, button, choice, clock, counter, dial, forms, frame, goodies, input, menu, objects, pixmaps, popups, positioner, slider, text, timer, xforms, xyplot],
|
||||
packages = ['Pyxform']
|
||||
)
|
||||
bitmaps = Extension(
|
||||
"Pyxform.bitmaps",
|
||||
sources=["Pyxform/Modules/bitmaps.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
box = Extension(
|
||||
"Pyxform.box",
|
||||
sources=["Pyxform/Modules/box.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
browser = Extension(
|
||||
"Pyxform.browser",
|
||||
sources=["Pyxform/Modules/browser.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
button = Extension(
|
||||
"Pyxform.button",
|
||||
sources=["Pyxform/Modules/button.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
choice = Extension(
|
||||
"Pyxform.choice",
|
||||
sources=["Pyxform/Modules/choice.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
clock = Extension(
|
||||
"Pyxform.clock",
|
||||
sources=["Pyxform/Modules/clock.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
counter = Extension(
|
||||
"Pyxform.counter",
|
||||
sources=["Pyxform/Modules/counter.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
dial = Extension(
|
||||
"Pyxform.dial",
|
||||
sources=["Pyxform/Modules/dial.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
forms = Extension(
|
||||
"Pyxform.forms",
|
||||
sources=["Pyxform/Modules/forms.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
frame = Extension(
|
||||
"Pyxform.frame",
|
||||
sources=["Pyxform/Modules/frame.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
goodies = Extension(
|
||||
"Pyxform.goodies",
|
||||
sources=["Pyxform/Modules/goodies.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
input = Extension(
|
||||
"Pyxform.input",
|
||||
sources=["Pyxform/Modules/input.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
menu = Extension(
|
||||
"Pyxform.menu",
|
||||
sources=["Pyxform/Modules/menu.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
objects = Extension(
|
||||
"Pyxform.objects",
|
||||
sources=["Pyxform/Modules/objects.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
pixmaps = Extension(
|
||||
"Pyxform.pixmaps",
|
||||
sources=["Pyxform/Modules/pixmaps.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
popups = Extension(
|
||||
"Pyxform.popups",
|
||||
sources=["Pyxform/Modules/popups.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
positioner = Extension(
|
||||
"Pyxform.positioner",
|
||||
sources=["Pyxform/Modules/positioner.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
slider = Extension(
|
||||
"Pyxform.slider",
|
||||
sources=["Pyxform/Modules/slider.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
text = Extension(
|
||||
"Pyxform.text",
|
||||
sources=["Pyxform/Modules/text.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
timer = Extension(
|
||||
"Pyxform.timer",
|
||||
sources=["Pyxform/Modules/timer.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
xforms = Extension(
|
||||
"Pyxform.xforms",
|
||||
sources=["Pyxform/Modules/xforms.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
xyplot = Extension(
|
||||
"Pyxform.xyplot",
|
||||
sources=["Pyxform/Modules/xyplot.c"],
|
||||
libraries=["forms"],
|
||||
library_dirs=["/usr/local/lib"],
|
||||
)
|
||||
setup(
|
||||
name="PyXForms",
|
||||
version="0.2",
|
||||
description="This is OLD code",
|
||||
author="Roberto Alsina",
|
||||
author_email="ralsina@netmanagers.com.ar",
|
||||
ext_modules=[
|
||||
bitmaps,
|
||||
box,
|
||||
browser,
|
||||
button,
|
||||
choice,
|
||||
clock,
|
||||
counter,
|
||||
dial,
|
||||
forms,
|
||||
frame,
|
||||
goodies,
|
||||
input,
|
||||
menu,
|
||||
objects,
|
||||
pixmaps,
|
||||
popups,
|
||||
positioner,
|
||||
slider,
|
||||
text,
|
||||
timer,
|
||||
xforms,
|
||||
xyplot,
|
||||
],
|
||||
packages=["Pyxform"],
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user