Commit e098bdc8946e9320c30e5aa0882a5d170c91861f
1 parent
9aab90fd
Exists in
master
and in
5 other branches
Incluindo botão para transferência de arquivos na barra de ferramentas; incluind…
…o tooltips nos botões.
Showing
1 changed file
with
15 additions
and
12 deletions
Show diff stats
ui/00default.xml
| ... | ... | @@ -49,7 +49,7 @@ |
| 49 | 49 | <menuitem action='print' src='copy' group='clipboard' label='Print copy' /> |
| 50 | 50 | <separator/> |
| 51 | 51 | |
| 52 | - <menuitem action='Transfer' key='<alt>t' label='Send/Receive'/> | |
| 52 | + <menuitem action='transfer' key='<alt>t' label='Send/Receive' /> | |
| 53 | 53 | <menuitem action='Quit' key='<ctrl>q' label='Quit' icon="quit" sysmenu="quit"/> |
| 54 | 54 | |
| 55 | 55 | </menu> |
| ... | ... | @@ -143,21 +143,24 @@ |
| 143 | 143 | </menubar> |
| 144 | 144 | |
| 145 | 145 | <toolbar name='toolbar.default' label='Toolbar' key='<alt>t' > |
| 146 | - <toolitem action='selectall' /> | |
| 147 | - <toolitem action='copy' append='no' format='text' /> | |
| 148 | - <toolitem action='paste' src='clipboard' /> | |
| 149 | - <toolitem action='erase' target='input' /> | |
| 146 | + <toolitem action='selectall' tooltip='Select all'/> | |
| 147 | + <toolitem action='copy' append='no' format='text' tooltip='Copy selected area to clipboard' /> | |
| 148 | + <toolitem action='paste' src='clipboard' tooltip='Paste from clipboard'/> | |
| 149 | + <toolitem action='erase' target='input' tooltip='Erase screen contents' /> | |
| 150 | 150 | |
| 151 | 151 | <separator/> |
| 152 | - <toolitem action='connect' /> | |
| 153 | - <toolitem action='disconnect' /> | |
| 152 | + <toolitem action='transfer' icon='harddisk' tooltip='Send/Receive files'/> | |
| 154 | 153 | |
| 155 | 154 | <separator/> |
| 156 | - <toolitem action='set' toggle='fullscreen' icon='fullscreen' label='Full Screen' /> | |
| 157 | - <toolitem action='reset' toggle='fullscreen' icon='leave-fullscreen' label='Window' /> | |
| 158 | - <toolitem action='editcolors' /> | |
| 159 | - <toolitem action='print' src='all' /> | |
| 160 | - <toolitem action='Quit' /> | |
| 155 | + <toolitem action='connect' tooltip='Connect to host'/> | |
| 156 | + <toolitem action='disconnect' tooltip='Disconnect from host'/> | |
| 157 | + | |
| 158 | + <separator/> | |
| 159 | + <toolitem action='set' toggle='fullscreen' icon='fullscreen' label='Full Screen' tooltip='Go to fullscreen mode'/> | |
| 160 | + <toolitem action='reset' toggle='fullscreen' icon='leave-fullscreen' label='Window' tooltip='Go back to window mode'/> | |
| 161 | + <toolitem action='editcolors' tooltip='Select terminal colors'/> | |
| 162 | + <toolitem action='print' src='all' tooltip='Print screen contents'/> | |
| 163 | + <toolitem action='Quit' tooltip='Quit pw3270'/> | |
| 161 | 164 | </toolbar> |
| 162 | 165 | |
| 163 | 166 | <popup name='selectionpopup' type='selection'> | ... | ... |