Commit 888c8d2a678781e24756445cc6311158f3c77e58
1 parent
048a8b81
Exists in
master
and in
4 other branches
Working on new keypad model.
Showing
1 changed file
with
177 additions
and
0 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,177 @@ |
| 1 | +<!----------------------------------------------------------------------------- | |
| 2 | + | |
| 3 | + "Software pw3270, desenvolvido com base nos códigos fontes do WC3270 e X3270 | |
| 4 | + (Paul Mattes Paul.Mattes@usa.net), de emulação de terminal 3270 para acesso a | |
| 5 | + aplicativos mainframe. Registro no INPI sob o nome G3270. | |
| 6 | + | |
| 7 | + Copyright (C) <2008> <Banco do Brasil S.A.> | |
| 8 | + | |
| 9 | + Este programa é software livre. Você pode redistribuí-lo e/ou modificá-lo sob | |
| 10 | + os termos da GPL v.2 - Licença Pública Geral GNU, conforme publicado pela | |
| 11 | + Free Software Foundation. | |
| 12 | + | |
| 13 | + Este programa é distribuído na expectativa de ser útil, mas SEM QUALQUER | |
| 14 | + GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou de ADEQUAÇÃO | |
| 15 | + A QUALQUER PROPÓSITO EM PARTICULAR. Consulte a Licença Pública Geral GNU para | |
| 16 | + obter mais detalhes. | |
| 17 | + | |
| 18 | + Você deve ter recebido uma cópia da Licença Pública Geral GNU junto com este | |
| 19 | + programa; se não, escreva para a Free Software Foundation, Inc., 59 Temple | |
| 20 | + Place, Suite 330, Boston, MA, 02111-1307, USA | |
| 21 | + | |
| 22 | + Contatos: | |
| 23 | + | |
| 24 | + perry.werneck@gmail.com (Alexandre Perry de Souza Werneck) | |
| 25 | + erico.mendonca@gmail.com (Erico Mascarenhas Mendonça) | |
| 26 | + | |
| 27 | +------------------------------------------------------------------------------> | |
| 28 | + | |
| 29 | +<ui> | |
| 30 | + | |
| 31 | + <keypad name="lateral_keypad" position="right" width='3'> | |
| 32 | + | |
| 33 | + <attribute name='label' translatable='yes'>Lateral keypad</attribute> | |
| 34 | + | |
| 35 | + <button> | |
| 36 | + <attribute name="label" translatable="no">PF1</attribute> | |
| 37 | + <attribute name="action"></attribute> | |
| 38 | + </button> | |
| 39 | + | |
| 40 | + <button> | |
| 41 | + <attribute name="label" translatable="no">PF2</attribute> | |
| 42 | + <attribute name="action"></attribute> | |
| 43 | + </button> | |
| 44 | + | |
| 45 | + <button> | |
| 46 | + <attribute name="label" translatable="no">PF3</attribute> | |
| 47 | + <attribute name="action"></attribute> | |
| 48 | + </button> | |
| 49 | + | |
| 50 | + <button> | |
| 51 | + <attribute name="label" translatable="no">PF4</attribute> | |
| 52 | + <attribute name="action"></attribute> | |
| 53 | + </button> | |
| 54 | + | |
| 55 | + <button> | |
| 56 | + <attribute name="label" translatable="no">PF5</attribute> | |
| 57 | + <attribute name="action"></attribute> | |
| 58 | + </button> | |
| 59 | + | |
| 60 | + <button> | |
| 61 | + <attribute name="label" translatable="no">PF6</attribute> | |
| 62 | + <attribute name="action"></attribute> | |
| 63 | + </button> | |
| 64 | + | |
| 65 | + <button> | |
| 66 | + <attribute name="label" translatable="no">PF7</attribute> | |
| 67 | + <attribute name="action"></attribute> | |
| 68 | + </button> | |
| 69 | + | |
| 70 | + <button> | |
| 71 | + <attribute name="label" translatable="no">PF8</attribute> | |
| 72 | + <attribute name="action"></attribute> | |
| 73 | + </button> | |
| 74 | + | |
| 75 | + <button> | |
| 76 | + <attribute name="label" translatable="no">PF9</attribute> | |
| 77 | + <attribute name="action"></attribute> | |
| 78 | + </button> | |
| 79 | + | |
| 80 | + <button> | |
| 81 | + <attribute name="label" translatable="no">PF10</attribute> | |
| 82 | + <attribute name="action"></attribute> | |
| 83 | + </button> | |
| 84 | + | |
| 85 | + <button> | |
| 86 | + <attribute name="label" translatable="no">PF11</attribute> | |
| 87 | + <attribute name="action"></attribute> | |
| 88 | + </button> | |
| 89 | + | |
| 90 | + <button> | |
| 91 | + <attribute name="label" translatable="no">PF12</attribute> | |
| 92 | + <attribute name="action"></attribute> | |
| 93 | + </button> | |
| 94 | + | |
| 95 | + <button column='1'> | |
| 96 | + <attribute name="icon-name" translatable="no">go-up</attribute> | |
| 97 | + <attribute name="action"></attribute> | |
| 98 | + </button> | |
| 99 | + | |
| 100 | + <button column='0'> | |
| 101 | + <attribute name="icon-name" translatable="no">go-back</attribute> | |
| 102 | + <attribute name="action"></attribute> | |
| 103 | + </button> | |
| 104 | + | |
| 105 | + <button> | |
| 106 | + <attribute name="icon-name" translatable="no">go-top</attribute> | |
| 107 | + <attribute name="action"></attribute> | |
| 108 | + </button> | |
| 109 | + | |
| 110 | + <button> | |
| 111 | + <attribute name="icon-name" translatable="no">go-forward</attribute> | |
| 112 | + <attribute name="action"></attribute> | |
| 113 | + </button> | |
| 114 | + | |
| 115 | + <button> | |
| 116 | + <attribute name="label" translatable="no">PA1</attribute> | |
| 117 | + <attribute name="action"></attribute> | |
| 118 | + </button> | |
| 119 | + | |
| 120 | + <button> | |
| 121 | + <attribute name="label" translatable="no">PA2</attribute> | |
| 122 | + <attribute name="action"></attribute> | |
| 123 | + </button> | |
| 124 | + | |
| 125 | + <button> | |
| 126 | + <attribute name="label" translatable="no">PA3</attribute> | |
| 127 | + <attribute name="action"></attribute> | |
| 128 | + </button> | |
| 129 | + | |
| 130 | + <button> | |
| 131 | + <attribute name="icon-name" translatable="no">goto-first</attribute> | |
| 132 | + <attribute name="action"></attribute> | |
| 133 | + </button> | |
| 134 | + | |
| 135 | + <button> | |
| 136 | + <attribute name="icon-name" translatable="no">goto-last</attribute> | |
| 137 | + <attribute name="action"></attribute> | |
| 138 | + </button> | |
| 139 | + | |
| 140 | + <button> | |
| 141 | + <attribute name="label" translatable="Yes">Clear</attribute> | |
| 142 | + <attribute name="action"></attribute> | |
| 143 | + </button> | |
| 144 | + | |
| 145 | + <button> | |
| 146 | + <attribute name="label" translatable="Yes">Reset</attribute> | |
| 147 | + <attribute name="action"></attribute> | |
| 148 | + </button> | |
| 149 | + | |
| 150 | + <button> | |
| 151 | + <attribute name="label" translatable="Yes">Erase\nEOF</attribute> | |
| 152 | + <attribute name="action"></attribute> | |
| 153 | + </button> | |
| 154 | + | |
| 155 | + <button> | |
| 156 | + <attribute name="label" translatable="Yes">Erase\nInput</attribute> | |
| 157 | + <attribute name="action"></attribute> | |
| 158 | + </button> | |
| 159 | + | |
| 160 | + <button> | |
| 161 | + <attribute name="label" translatable="Yes">Attn</attribute> | |
| 162 | + <attribute name="action"></attribute> | |
| 163 | + </button> | |
| 164 | + | |
| 165 | + <button> | |
| 166 | + <attribute name="label" translatable="Yes">Break</attribute> | |
| 167 | + <attribute name="action"></attribute> | |
| 168 | + </button> | |
| 169 | + | |
| 170 | + <button> | |
| 171 | + <attribute name="icon-name" translatable="no">ok</attribute> | |
| 172 | + <attribute name="action"></attribute> | |
| 173 | + </button> | |
| 174 | + | |
| 175 | + </keypad> | |
| 176 | + | |
| 177 | +</ui> | ... | ... |