~w-shackleton/droidpad-android/stable

« back to all changes in this revision

Viewing changes to samples/slideshow.xml

  • Committer: William Shackleton
  • Date: 2012-06-04 23:34:42 UTC
  • Revision ID: w.shackleton@gmail.com-20120604233442-y30ax1tbpz9mrxng
Tags: 1.9.2
ReleaseĀ 1.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" ?>
2
 
<layout
3
 
        mode="slide"
4
 
        title="Custom slideshow presentation"
5
 
        description="Sample layout for editing"
6
 
        width="6"
7
 
        height="7">
8
 
        <!--
9
 
                  The order for slideshow buttons is as follows:
10
 
                  * Next
11
 
                  * Previous
12
 
                  * Start slideshow
13
 
                  * End slideshow
14
 
                  * Toggle white fill - can be a toggle button
15
 
                  * Toggle black fill - can be a toggle button
16
 
                  * Return to beginning
17
 
                  * Go to end
18
 
             -->
19
 
        <button x="0" y="0" width="6" height="2" textSize="30">
20
 
                Next
21
 
        </button>
22
 
        <button x="0" y="2" width="2" height="2" textSize="20">
23
 
                Previous
24
 
        </button>
25
 
        <button x="2" y="2" width="2" height="2" textSize="20">
26
 
                Start
27
 
        </button>
28
 
        <button x="4" y="2" width="2" height="2" textSize="20">
29
 
                Quit
30
 
        </button>
31
 
 
32
 
        <toggle x="0" y="6" width="3" height="1" textSize="16">
33
 
                Toggle white
34
 
        </toggle>
35
 
        <toggle x="3" y="6" width="3" height="1" textSize="16">
36
 
                Toggle black
37
 
        </toggle>
38
 
 
39
 
        <button x="0" y="5" width="3" height="1" textSize="14">
40
 
                Go to beginning
41
 
        </button>
42
 
        <button x="3" y="5" width="3" height="1" textSize="14">
43
 
                Go to end
44
 
        </button>
45
 
</layout>
 
1
<?xml version="1.0" ?>
 
2
<layout
 
3
        mode="slide"
 
4
        title="Custom slideshow presentation"
 
5
        description="Sample layout for editing"
 
6
        width="6"
 
7
        height="7">
 
8
        <!--
 
9
                  The order for slideshow buttons is as follows:
 
10
                  * Next
 
11
                  * Previous
 
12
                  * Start slideshow
 
13
                  * End slideshow
 
14
                  * Toggle white fill - can be a toggle button
 
15
                  * Toggle black fill - can be a toggle button
 
16
                  * Return to beginning
 
17
                  * Go to end
 
18
                  The fields must be in this order.
 
19
             -->
 
20
        <button x="0" y="0" width="6" height="2" textSize="30">
 
21
                Next
 
22
        </button>
 
23
        <button x="0" y="2" width="2" height="2" textSize="20">
 
24
                Previous
 
25
        </button>
 
26
        <button x="2" y="2" width="2" height="2" textSize="20">
 
27
                Start
 
28
        </button>
 
29
        <button x="4" y="2" width="2" height="2" textSize="20">
 
30
                Quit
 
31
        </button>
 
32
 
 
33
        <toggle x="0" y="6" width="3" height="1" textSize="16">
 
34
                Toggle white
 
35
        </toggle>
 
36
        <toggle x="3" y="6" width="3" height="1" textSize="16">
 
37
                Toggle black
 
38
        </toggle>
 
39
 
 
40
        <button x="0" y="5" width="3" height="1" textSize="14">
 
41
                Go to beginning
 
42
        </button>
 
43
        <button x="3" y="5" width="3" height="1" textSize="14">
 
44
                Go to end
 
45
        </button>
 
46
</layout>