tkxml 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION DELETED
@@ -1 +0,0 @@
1
- 0.3.0
@@ -1,6 +0,0 @@
1
- require 'tkxml'
2
-
3
- file = File.open("demo/ui.xml")
4
- tkxml = TkXML.new(file)
5
- tkxml.build
6
-
@@ -1,32 +0,0 @@
1
- <Tk:Root name="test" title="Test">
2
-
3
- <Tk:Frame name="menuframe">
4
- <Tk:Menubutton name="filebutton" text="File" underline="0">
5
- <Tk:Menu name="filemenu" tearoff="false">
6
- <Tk:_add
7
- _1="command"
8
- label="Open"
9
- command="openDocument"
10
- underline="0"
11
- accel="Ctrl+O" />
12
- <Tk:_add
13
- _1="command"
14
- label="Exit"
15
- command="exitApplication"
16
- underline="0"
17
- accel="Ctrl+Q" />
18
- </Tk:Menu>
19
- <Tk:_pack side="left" />
20
- </Tk:Menubutton>
21
- <Tk:_pack side="left" />
22
- </Tk:Frame>
23
-
24
- <Tk:_bind
25
- _1="Control-o"
26
- _2="openDocument" />
27
-
28
- <Tk:_bind
29
- _1="Control-q"
30
- _2="exitApplication" />
31
-
32
- </Tk:Root>