testTree.py :  » GUI » pyui » pyui095 » tests » sandbox » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » GUI » pyui 
pyui » pyui095 » tests » sandbox » testTree.py
import time

import pyui
from pyui.locals import *


class app:
    def __init__(self):

        # create gui objects
        print "Initializing"

        self.frame = pyui.widgets.Frame(10, 100, 400, 400, "see my tree")
        self.frame.setLayout( pyui.layouts.BorderLayoutManager() )
        self.frame.registerEvent(TREENODE_SELECTED, self.onSelected)
        
        # create widgets
        self.label = pyui.widgets.Button("nothin...", None)
        self.tree = pyui.tree.Tree()

        #add nodes
        node1 = pyui.tree.TreeNode("Test")
        node2 = pyui.tree.TreeNode("Testing")
        node3 = pyui.tree.TreeNode("foo foo")
        node4 = pyui.tree.TreeNode("have another")
        node5 = pyui.tree.TreeNode("have another1")
        node6 = pyui.tree.TreeNode("have another2")
        node7 = pyui.tree.TreeNode("have another3")
        node8 = pyui.tree.TreeNode("last one")                        
        
        self.tree.addNode(node1)
        node1.addNode(node2)
        node1.addNode(node3)
        node1.addNode(node4)
        node3.addNode(node5)
        node3.addNode(node6)
        node3.addNode(node7)
        node7.addNode(node8)
        
        self.frame.addChild(self.tree, CENTER)
        self.frame.addChild(self.label, SOUTH)
        self.frame.pack()
        
    def onSelected(self, event):
        self.label.text = "Selected:" + event.node.title

    def cleanup(self):
        self.frame = None

def run():
    done = 1
    frame = 0
    t = time.time()

    import testopt
    opts = testopt.parseCommandLine(640, 480)
    pyui.init(*opts)
    
    g = app()
    while done:
        pyui.draw()
        now = int(time.time())
        if now != t:
            print frame
            frame = 0
            t = now
        frame = frame + 1
        done = pyui.update()        


    print "done X"
    g.cleanup()
    pyui.quit()
    print "quit."



if __name__ == '__main__':
   run()
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.