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
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE MEEGO_IM_TOOLBAR_WIDGET SYSTEM 'ImToolbarDTD.dtd'>
<toolbar locked="true" version="1" refuse="_close">
<layout orientation="landscape">
<row>
<button name="test1" group="group1" priority="0" showon="always" alignment="right" icon="icon1" text="text1" text_id="id1">
<actions>
<sendstring string="sendstring1"> </sendstring>
</actions>
</button>
<button name="test2" group="group2" priority="10" showon="selectedtext" alignment="left" icon="icon2" text="text2" text_id="id2" toggle="true">
<actions>
<copy />
</actions>
</button>
<button name="test3" group="group3" priority="1" showon="always" alignment="left" icon="icon3" text="text3" text_id="id3">
<actions>
<paste />
</actions>
</button>
<label name="test4" text="text4">
</label>
<button name="test5" text="test5">
<actions>
<paste />
</actions>
</button>
</row>
</layout>
</toolbar>
|