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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
<?xml version="1.0" encoding="iso-8859-1"?>
<resources>
<section name="Dialogs">
<components name="connect">
<label
name="label_title"
x="20"
y="20"
width="500"
height="500"
text="Welcome to the CTalk IRC Client." />
<label
name="label_server"
x="20"
y="65"
width="100"
height="17"
text="Server:" />
<inputbox
name="inputbox_server"
x="20"
y="80"
width="300"
height="17"
tab_id="0" />
<label
name="label_fullname"
x="20"
y="105"
width="100"
height="17"
text="Full name:" />
<inputbox
name="inputbox_fullname"
x="20"
y="120"
width="300"
height="17"
tab_id="1" />
<label
name="label_username"
x="20"
y="145"
width="100"
height="17"
text="Nick:" />
<inputbox
name="inputbox_username"
x="20"
y="160"
width="300"
height="17"
tab_id="2" />
<label
name="label_password"
x="20"
y="185"
width="100"
height="17"
text="Password:" />
<inputbox
name="inputbox_password"
x="20"
y="200"
width="300"
height="17"
tab_id="3" />
<button
name="button_ok"
x="25"
y="245"
width="50"
height="20"
tab_id="4"
text="Ok" />
<button
name="button_cancel"
x="80"
y="245"
width="50"
height="20"
tab_id="5"
text="Cancel" />
</components>
</section>
</resources>
|