Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pynxc/waxy/demos/Slider.py
blob: 8b53d8ed53272cc05a5c77cca5ad3c9fdc1ee571 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python

from waxy import *
import pylab
import numpy

def myfunc(x,params):

    y=params[0]+params[1]*x+params[2]*x**2
    
    return y
    
    
def myplot(x,y):

    pylab(x,y,'-o')
    title('This is a test')
    xlabel('This')
    ylabel('That')
    
    show()

class MainFrame(VerticalFrame):

    def Body(self):
        self.CenterOnScreen()

        self.CreateStatusBar()
        self.SetStatusText("This is the statusbar")

        menubar = MenuBar(self)
        menu1 = Menu(self)
        menu1.Append("E&xit", self.CloseWindow, "Exit demo",hotkey="Ctrl+Q")
        menubar.Append(menu1, "&File")
        
        
        s=Slider(self,min=-5.0,max=5.0,tickfreq=0.1,ticks='bottom',labels=True)
        self.AddComponent(s,stretch=True)
        s=FloatSlider(self,min=-5.0,max=5.0,tickfreq=0.1,ticks='bottom',labels=True)
        self.AddComponent(s,stretch=True)
        self.Pack()
        self.SetSize((640, 480))

    def CloseWindow(self,event):
        self.Close()                


if __name__=="__main__":
    app = Application(MainFrame, title="Slider Example")
    app.Run()