Fix imports, apply black
This commit is contained in:
@ -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
|
||||
|
||||
|
||||
#
|
||||
|
Reference in New Issue
Block a user