summaryrefslogtreecommitdiffstats
path: root/gnome2-user-guide/C/gosbasic.xml
blob: f8cb208f1bd155fff471711bb2f4b8e86f1fb2b8 (plain)
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
<chapter id="gosbasic-1">
  <title>Basic Skills</title>
  <highlights>
    <para>This chapter introduces you to the basic skills that you
need to work with the GNOME Desktop.</para>
  </highlights>
  <sect1 id="gosbasic-2">
    <title>Mouse Skills</title>
    <indexterm>
      <primary>basic skills</primary>
      <secondary>mouse skills</secondary>
    </indexterm>
    <indexterm>
      <primary>mouse</primary>
      <secondary>basic skills</secondary>
    </indexterm>
    <para>Even if you are very familiar with mouse devices, you should
still familiarize yourself with the button conventions and action terminology
used in this manual. This section also describes the mouse pointers.</para>
    <sect2 id="gosgetstarted-44">
      <title>Mouse Button Conventions</title>
      <indexterm>
        <primary>mouse</primary>
        <secondary>button conventions</secondary>
      </indexterm>
      <para>All the instructions in this manual are for the following
types of mouse devices:</para>
      <itemizedlist>
        <listitem>
          <para>Devices that are configured for right-hand users.</para>
        </listitem>
        <listitem>
          <para>Three button devices. If you have a two-button mouse device,
then you press the two buttons simultaneously to simulate the effect of a
middle mouse button. </para>
        </listitem>
      </itemizedlist>
      <para>The mouse button conventions used in this manual are as follows:</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="36.36*"/>
          <colspec colname="colspec1" colwidth="63.64*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Mouse Button</para>
              </entry>
              <entry valign="top">
                <para>Definition </para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry valign="top">
                <para>Left mouse button</para>
              </entry>
              <entry valign="top">
                <para>The button on the left side of a mouse device configured for normal right-hand
use. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Middle mouse button</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>The middle button of a mouse
device configured for normal right-hand use. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Right mouse button</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>The button on the right side
of a mouse device configured for normal right-hand use. </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
      <para>To reverse the handedness of your mouse device, open the , then select
the options that you require. If you do reverse the handedness of your mouse
device, then you must reverse the mouse button conventions used in this manual.</para>
    </sect2>
    <sect2 id="gosgetstarted-45">
      <title>Mouse Actions</title>
      <indexterm>
        <primary>mouse</primary>
        <secondary>actions</secondary>
      </indexterm>
      <para>The following table describes the actions that you can perform with
the mouse:</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="36.36*"/>
          <colspec colname="colspec1" colwidth="63.64*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Mouse Button</para>
              </entry>
              <entry valign="top">
                <para>Usage</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry valign="top">
                <para>Left mouse button</para>
              </entry>
              <entry valign="top">
                <para>Use to perform the following actions: <itemizedlist><listitem><para>Select text. </para></listitem><listitem><para>Choose items. </para></listitem><listitem><para>Drag items. </para></listitem></itemizedlist></para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Middle mouse button</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Use to perform the following
actions: <itemizedlist><listitem><para>Paste text. </para></listitem><listitem><para>Move items.</para></listitem></itemizedlist></para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Right mouse button</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Opens a menu for the selected
object, if a menu applies. </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
      <para>For example, if you want to copy text then perform the following steps: </para>
      <orderedlist>
        <listitem>
          <para>Select the text with the left mouse button.</para>
        </listitem>
        <listitem>
          <para>Move the mouse pointer to the location where you want to copy
the text.</para>
        </listitem>
        <listitem>
          <para>Click on the middle mouse button. </para>
        </listitem>
      </orderedlist>
      <para>You can also right-click on the desktop to open the <guimenu>Desktop</guimenu> menu.</para>
    </sect2>
    <sect2 id="gosbasic-6">
      <title>Mouse Action Terminology</title>
      <indexterm>
        <primary>mouse</primary>
        <secondary>action terminology</secondary>
      </indexterm>
      <para>The conventions used in this manual to describe actions
that you take with the mouse are as follows: </para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="36.36*"/>
          <colspec colname="colspec1" colwidth="63.64*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Action</para>
              </entry>
              <entry valign="top">
                <para>Definition </para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Click</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Press and release the left mouse button,
without moving the mouse. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Click-and-hold</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Press and do not release the
left mouse button.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Left-click</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Same as <emphasis>click</emphasis>.
Left-click clarifies the action when there might be confusion with <emphasis>right-click</emphasis>. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Middle-click</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Press and release the middle
mouse button, without moving the mouse. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Right-click</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Press and release the right mouse
button, without moving the mouse. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Double-click</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Press and release the left mouse
button twice in rapid succession without moving the mouse. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Drag</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Click-and-hold a mouse button, then
move an object. For example, you can drag a window or an icon. The left and
middle mouse buttons can perform drag actions. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Drag-and-drop</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Click-and-hold a mouse button,
then move an object. For example, you can drag-and-drop a window or an icon.
Release the mouse button to place the object in a new location. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Grab</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Point to an item that you can move,
and click-and-hold on the mouse button. For example, you can grab the titlebar
of a window, then drag the window to a new location.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect2>
    <sect2 id="gosbasic-7">
      <title>Mouse Pointers</title>
      <indexterm>
        <primary>mouse</primary>
        <secondary>pointers</secondary>
      </indexterm>
      <indexterm>
        <primary>pointers</primary>
        <see>mouse pointers</see>
      </indexterm>
      <para>As you use the mouse, the appearance of the mouse pointer can change.
The appearance of the pointer can provide feedback about a particular operation,
location, or state. The following table lists and describes some of the mouse
pointers.</para>
      <informaltable frame="topbot">
        <tgroup cols="3" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="36.36*"/>
          <colspec colname="colspec2" colwidth="63.64*"/>
          <colspec colname="colspec1" colwidth="63.64*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Pointer</para>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Associated Action</para>
              </entry>
              <entry valign="top">
                <para>Description</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/normal_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Normal pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Point to an item, choose a menu item</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Normal pointer. The pointer that appears during normal
use of the mouse.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/move_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Move pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Drag-and-drop</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Move pointer. Indicates that when you drop the object, the object is moved
from the old location to the new location.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/copy_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Copy pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Drag-and-drop</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Copy pointer. Indicates that when you drop the object, a copy of the object
is created where you drop the object.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/link_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Symbolic link pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Drag-and-drop</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Symbolic link pointer. Indicates that when you drop the object, a <firstterm>symbolic link</firstterm> to the object is created where you drop the object.
A symbolic link is a special type of file that points to another file or folder.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/ask_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Ask pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Drag-and-drop</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Ask pointer. Indicates that when you drop the object, a menu opens. You can
choose to move or copy the object, or to create a symbolic link to the object.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/not_available_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Not available pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Drag-and-drop</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Not available pointer. Indicates that you cannot drop the object at the current
location.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/move_panel_object_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Move panel object pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Move panel object</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Move panel object pointer. Indicates that you have selected a panel object
to move. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/horiz_resize_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Horizontal resize pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Resize window horizontally</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Horizontal resize pointer. Indicates that you have selected a vertical window
border to resize the window horizontally.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/vert_resize_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Vertical resize pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Resize window vertically</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Vertical resize pointer. Indicates that you have selected a horizontal window
border to resize the window vertically.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/corner_resize_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Corner resize pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Resize window horizontally and vertically</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Corner resize pointer. Indicates that you have selected
a corner of a window border to resize the window horizontally and vertically.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <screenshot>
                  <mediaobject>
                    <imageobject>
                      <imagedata fileref="figures/column_resize_pointer.png" format="PNG"/>
                    </imageobject>
                    <textobject>
                      <phrase>Window pane or table column resize pointer.</phrase>
                    </textobject>
                  </mediaobject>
                </screenshot>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Resize window pane or resize table column</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Window pane or table column resize
pointer. Indicates that you have selected a column in a table to resize.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect2>
  </sect1>
  <sect1 id="gosbasic-51">
    <title>Keyboard Skills</title>
    <indexterm>
      <primary>basic skills</primary>
      <secondary>keyboard skills</secondary>
    </indexterm>
    <indexterm>
      <primary>keyboard</primary>
      <secondary>basic skills</secondary>
    </indexterm>
    <para>For almost every task that you can perform with
the mouse, you can use the keyboard to perform the same task. <firstterm>Shortcut keys</firstterm> are keys that provide you with a quick way to perform
a task. </para>
    <para>You can use shortcut keys to perform desktop environment tasks and to
work with interface items such as panels and windows. You can also use shortcut
keys in applications. To customize your shortcut keys, use the <application>Keyboard Shortcuts</application> preference tool.</para>
    <para>You can also modify your desktop environment preferences to use keyboard
accessibility features. </para>
    <para>The following sections describe the shortcut keys that you can use.</para>
    <sect2 id="gosbasic-62">
      <title>Desktop Environment Shortcut Keys</title>
      <indexterm>
        <primary>shortcut keys</primary>
        <secondary>desktop environment</secondary>
      </indexterm>
      <para>Desktop environment shortcut keys enable you
to use the keyboard to perform desktop environment tasks. The following table
lists some desktop environment shortcut keys:</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="35.67*"/>
          <colspec colname="colspec1" colwidth="64.33*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Default Shortcut Keys</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Alt</keycap><keycap>F1</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Opens the <guimenu>Main Menu</guimenu>.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Alt</keycap><keycap>F2</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Displays the <guilabel>Run Application</guilabel>
dialog.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>
                  <keycap>Print Screen</keycap>
                </para>
              </entry>
              <entry colname="colspec1">
                <para>Takes a screenshot. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Alt</keycap><keycap>Print
Screen</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Takes a screenshot
of the window that has focus. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>right arrow</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches to the workspace to the right of the current workspace.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>left arrow</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches to the workspace to the left of the current workspace.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>up arrow</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches to the workspace above the current workspace.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>down arrow</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches to the workspace below the current workspace.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>d</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Minimizes
all windows, and gives focus to the desktop.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>
                  <keycap>F1</keycap>
                </para>
              </entry>
              <entry colname="colspec1">
                <para>Starts the online help browser, and displays appropriate
online help.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect2>
    <sect2 id="gosbasic-58">
      <title>Window Shortcut Keys</title>
      <indexterm>
        <primary>shortcut keys</primary>
        <secondary>window</secondary>
      </indexterm>
      <para>Window shortcut keys enable you to use the keyboard to perform window
tasks. The following table lists some window shortcut keys:</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="35.67*"/>
          <colspec colname="colspec1" colwidth="64.33*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Default Shortcut Keys</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Alt</keycap><keycap>Tab</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches between windows. When you use these
shortcut keys, a list of windows that you can select is displayed. Release
the keys to select a window.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Alt</keycap><keycap>Esc</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches between windows in reverse order.
Release the keys to select a window.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>
                  <keycap>F10</keycap>
                </para>
              </entry>
              <entry colname="colspec1">
                <para>Opens the first menu on the left side of the menubar. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Alt</keycap><keycap>spacebar</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Opens the <guilabel>Window Menu</guilabel>. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>Arrow keys</para>
              </entry>
              <entry colname="colspec1">
                <para>Moves the focus between items in a menu.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>
                  <keycap>Return</keycap>
                </para>
              </entry>
              <entry colname="colspec1">
                <para>Chooses a menu item. </para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>
                  <keycap>Esc</keycap>
                </para>
              </entry>
              <entry colname="colspec1">
                <para>Closes an open menu.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>right arrow</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches to the workspace to the right of the current workspace.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>left arrow</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches to the workspace to the left of the current workspace.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>up arrow</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches to the workspace above the current workspace.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>down arrow</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Switches to the workspace below the current workspace.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>d</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Minimizes all windows, and gives focus to the desktop.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect2>
    <sect2 id="gosbasic-61">
      <title>Panel Shortcut Keys</title>
      <indexterm>
        <primary>shortcut keys</primary>
        <secondary>panel</secondary>
      </indexterm>
      <para>Panel shortcut keys enable you to use the keyboard to perform panel
tasks. The following table lists panel shortcut keys:</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="31.36*"/>
          <colspec colname="colspec1" colwidth="68.64*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Default Shortcut Keys</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec0" valign="top">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Tab</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Switches the focus between the panels and the desktop.
When you use these shortcut keys, a list of items that you can select is displayed.
Release the keys to select an item.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Esc</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Switches the focus between the panels and the desktop.
Release the keys to select an item.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>F10</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Opens the popup menu for the selected panel.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>
                  <keycap>Tab</keycap>
                </para>
              </entry>
              <entry colname="colspec1">
                <para>Switches the focus between objects on a panel.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>
                  <keycap>Return </keycap>
                </para>
              </entry>
              <entry colname="colspec1">
                <para>Chooses the selected panel object or menu
item.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Shift</keycap><keycap>F10</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Opens the popup menu
for the selected panel object.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>Arrow keys</para>
              </entry>
              <entry colname="colspec1">
                <para>Moves the focus between items in a menu. Moves the focus between interface
items in an applet also.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>
                  <keycap>Esc</keycap>
                </para>
              </entry>
              <entry colname="colspec1">
                <para>Closes an open menu.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para>
                  <keycap>F10</keycap>
                </para>
              </entry>
              <entry colname="colspec1">
                <para>Opens the <guimenu>Applications</guimenu> menu from
the <application>Menu Bar</application>, if the <application>Menu Bar</application>
is in a panel. </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect2>
    <sect2 id="gosbasic-59">
      <title>Application Shortcut Keys</title>
      <indexterm>
        <primary>shortcut keys</primary>
        <secondary>application</secondary>
      </indexterm>
      <para>Application shortcut keys enable you to perform application
tasks. You can use shortcut keys to perform application tasks more quickly
than if you use a mouse. The following table lists some application shortcut
keys:</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="45.00*"/>
          <colspec colname="colspec1" colwidth="55.00*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Shortcut Keys</para>
              </entry>
              <entry valign="top">
                <para>Command</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec0" valign="top">
                <para><keycombo><keycap>Ctrl</keycap><keycap>N</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>New</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para><keycombo><keycap>Ctrl</keycap><keycap>X</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Cut</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para><keycombo><keycap>Ctrl</keycap><keycap>C</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Copy</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para><keycombo><keycap>Ctrl</keycap><keycap>V</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Paste</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Z</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Undo</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>S</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Save</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0">
                <para><keycombo><keycap>Ctrl</keycap><keycap>Q</keycap></keycombo></para>
              </entry>
              <entry colname="colspec1">
                <para>Quit</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect2>
    <sect2 id="gosbasic-63">
      <title>Access Keys</title>
      <indexterm>
        <primary>access keys</primary>
      </indexterm>
      <para>A <firstterm>menubar</firstterm> is a bar at the top of a window that contains the menus for the
application. An <firstterm>access key</firstterm> is an underlined letter
in a menubar, menu, or dialog that you can use to perform an action. On a
menubar, the access key for each menu is underlined. </para>
      <para>To open a menu, press <keycap>Alt</keycap>, then press the access key.
In the menu, the access key for each menu item is underlined. To choose a
menu item, press the access key for the menu item. The following table shows
example access keys from the <application>Text Editor</application> application:</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colwidth="41.44*"/>
          <colspec colwidth="58.56*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Access Keys</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry valign="top">
                <para><keycombo><keycap>Alt</keycap><keycap>F</keycap></keycombo></para>
              </entry>
              <entry valign="top">
                <para>Opens the <guimenu>File</guimenu> menu.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <keycap>N</keycap>
                </para>
              </entry>
              <entry valign="top">
                <para>Chooses the <guimenuitem>New</guimenuitem> item on the <guimenu>File</guimenu>
menu.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
      <para>You can also use access keys to access elements in a dialog. In a dialog,
one letter in most dialog elements is underlined. To access a particular dialog
element, press <keycap>Alt</keycap>, then press the access key. The following
table shows an example access key from the <guilabel>Preferences</guilabel>
dialog in the <application>Text Editor</application> application:</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colwidth="41.41*"/>
          <colspec colwidth="58.59*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Access Key</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry valign="top">
                <para><keycombo><keycap>Alt</keycap><keycap>U</keycap></keycombo></para>
              </entry>
              <entry valign="top">
                <para>Gives focus to the <guilabel>Use default theme font</guilabel> check box.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
      <para>You can use also other keys to navigate within a window or dialog.</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colwidth="36.36*"/>
          <colspec colwidth="63.64*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Key</para>
              </entry>
              <entry valign="top">
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry valign="top">
                <para>
                  <keycap>Tab</keycap>
                </para>
              </entry>
              <entry valign="top">
                <para>Moves the focus from element to element in a window or dialog.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>Arrow keys</para>
              </entry>
              <entry valign="top">
                <para>Use the arrow keys to perform the following actions:</para>
                <itemizedlist>
                  <listitem>
                    <para>In a menubar, move the focus from one menu to the next menu.
In an open menu, move the focus from one menu item to the next menu item. </para>
                  </listitem>
                  <listitem>
                    <para>Move the focus from one option to the next option to make
your selection, for example, within a group of radio buttons in a dialog.</para>
                  </listitem>
                  <listitem>
                    <para>Change the value that a spin box displays.</para>
                  </listitem>
                </itemizedlist>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect2>
  </sect1>
  <sect1 id="gosbasic-46">
    <title>Using Windows</title>
    <indexterm>
      <primary>basic skills</primary>
      <secondary>using windows</secondary>
    </indexterm>
    <para>This section provides information on how to use windows.</para>
    <sect2 id="gosbasic-48">
      <title>To Resize Panes</title>
      <indexterm>
        <primary>windows</primary>
        <secondary>resizing panes</secondary>
      </indexterm>
      <indexterm>
        <primary>panes</primary>
        <secondary>resizing</secondary>
      </indexterm>
      <para>Some windows contain more than one <firstterm>pane</firstterm>.
A pane is a subdivision of a window. For example, the <application>Nautilus</application> file manager window contains a side pane and a
view pane. A window that contains panes has a resize handle on the edge between
the panes. To resize the pane, grab the resize handle, then drag the edge
to the size you require.</para>
    </sect2>
    <sect2 id="gosbasic-49">
      <title>Using Tables</title>
      <indexterm>
        <primary>windows</primary>
        <secondary>using tables</secondary>
      </indexterm>
      <indexterm>
        <primary>tables</primary>
        <secondary>using</secondary>
      </indexterm>
      <para>Some windows contain information that is organized in a table. This
section describes how to work with tables.</para>
      <para>To change the width of a column, drag one of the vertical edges of the
column.</para>
      <para>In some tables, you can sort the information by a particular column.
To sort information in a table, click on the heading on top of the column
by which you want to sort the information. An up arrow is displayed in the
column heading by which the table is sorted. The following figure shows the
up arrow.</para>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/naut_sort_arrow_icon.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Up arrow in a column heading.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <para>To reverse the sort order, click on the column heading again. The up
arrow changes to a down arrow. The down arrow indicates that the information
in the column is sorted in reverse order.</para>
      <para>In some tables, you can select multiple items. The following table describes
how to select items in tables.</para>
      <informaltable frame="topbot">
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="36.36*"/>
          <colspec colname="colspec2" colwidth="63.64*"/>
          <thead>
            <row rowsep="1">
              <entry valign="top">
                <para>Task</para>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Action</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Select an item</para>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Click on the item.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Select a group of contiguous
items</para>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Press-and-hold <keycap>Shift</keycap>. Click on the first item in the group, then click on the last
item in the group.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec0" valign="top">
                <para>Select multiple items</para>
              </entry>
              <entry colname="colspec2" valign="top">
                <para>Press-and-hold <keycap>Ctrl</keycap>.
Click on the items that you want to select.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </sect2>
  </sect1>
</chapter>