tscrollwin.py :  » Language-Interface » ChinesePython » chinesepython2.1.3-0.4 » Mac » Lib » test » 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 » Language Interface » ChinesePython 
ChinesePython » chinesepython2.1.3 0.4 » Mac » Lib » test » tscrollwin.py
# Test FrameWork scrollbars
# Draw a window in which the user can type.
#
# This test expects Win, Evt and FrameWork (and anything used by those)
# to work.
#
# Actually, it is more a test of FrameWork by now....

from FrameWork import *
import Win
import Qd
import TE
import os

class MyWindow(ScrolledWindow):
  def open(self, name):
    r = (40, 40, 400, 300)
    w = Win.NewWindow(r, name, 1, 0, -1, 1, 0x55555555)
    self.ourrect = 0, 0, 360-SCROLLBARWIDTH-1, 260-SCROLLBARWIDTH-1
    Qd.SetPort(w)
    w.DrawGrowIcon()
    self.wid = w
    self.do_postopen()
    self.vx = self.vy = 0
    self.scrollbars()
    
  def getscrollbarvalues(self):
    return self.vx, self.vy
    
  def scrollbar_callback(self, which, what, value):
    if what == '-':
      delta = -1
    elif what == '--':
      delta = -100
    elif what == '+':
      delta = 1
    elif what == '++':
      delta = 100
      
    if which == 'x':
      if value:
        self.vx = value
      else:
        self.vx = self.vx + delta
    else:
      if value:
        self.vy = value
      else:
        self.vy = self.vy + delta
    self.wid.InvalWindowRect(self.ourrect)

  def do_update(self, wid, event):
    Qd.EraseRect(self.ourrect)
    Qd.MoveTo(40, 40)
    Qd.DrawString("x=%d, y=%d"%(self.vx, self.vy))

class TestSW(Application):
  def __init__(self):
    Application.__init__(self)
    self.num = 0
    self.listoflists = []
    
  def makeusermenus(self):
    self.filemenu = m = Menu(self.menubar, "File")
    self.newitem = MenuItem(m, "New window...", "O", self.open)
    self.quititem = MenuItem(m, "Quit", "Q", self.quit)
  
  def open(self, *args):
    w = MyWindow(self)
    w.open('Window %d'%self.num)
    self.num = self.num + 1
    self.listoflists.append(w)
    
  def quit(self, *args):
    raise self

  def do_about(self, id, item, window, event):
    EasyDialogs.Message("""Test scrolling FrameWork windows""")

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