summaryrefslogtreecommitdiffstats
path: root/gnome2-user-guide/C/gospanel.xml
blob: 9f59e723ac6af1c412d0e5d7a6e62569a2cf83af (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
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
<chapter id="panels">
  <title>Using the Panels</title>

  <!-- Maintained for 2.8 compatibility -->
  <anchor id="gospanel-1"/>

  <!-- Desktop Overview / Panels -->
  <anchor id="gosoverview-502"/>

  <highlights>
    <para>This chapter describes how to use the panels at the top and bottom of the GNOME Desktop, how to customize the objects that appear on them, and how to add new panels to the desktop.</para>
  </highlights>

  <section id="panels-intro">
    <title>Introduction</title>

    <!-- Maintained for 2.8 compatibility -->
    <anchor id="gospanel-2"/>

    <indexterm>
      <primary>panels</primary>
      <secondary>introduction</secondary>
    </indexterm>

    <para>A panel is an area in the GNOME Desktop where you have access to certain actions and information, no matter what the state of your application windows. <!-- The HIG says 'Do not use system modal windows', so panels are always available. --> For example, in the default GNOME panels, you can launch applications, see the date and time, control the system sound volume, and more.</para> 
    <para>You can customize panels to your liking. You can change their behavior and appearance, and you can add or remove objects from your panels. You can create multiple panels, and choose different properties, objects, and backgrounds for each panel. You can also hide panels.</para>
    <para>By default, the GNOME Desktop contains a panel at the top edge of the screen,
and a panel at the bottom edge of the screen. The following sections describe
these panels.</para>

    <section id="top-panel">
      <title>Top Edge Panel</title>
      <!-- preserve id for backwards compatibility: 2.12 -->
      <anchor id="gospanel-6"/>         
      <indexterm>
        <primary>panels</primary>
        <secondary>top edge panel</secondary>
        <see>top edge panel</see>
      </indexterm>
      <indexterm>
        <primary>top edge panel</primary>
        <secondary>introduction</secondary>
      </indexterm>
      <para>By default, the top edge panel contains the following objects:</para>
      <note><para>Your distribution of GNOME may have altered this default setup.</para></note>
           
      <variablelist>
      	<varlistentry>
      		<term><application>Menu Bar</application> applet</term>
      		<listitem><para>The Menu Bar contains the <guimenu>Applications</guimenu>, <guimenu>Places</guimenu>, and <guimenu>System</guimenu> menus. For more on the menu bar, see <xref linkend="menubar"/>.</para></listitem>
      	</varlistentry>
      	<varlistentry>
      	  <term>A set of application launcher icons</term>
          <listitem><para>The exact number of icons depends on your GNOME distribution, but in general you will find at least a launcher for the <application>Web Browser</application>, an <application>Email client</application> and the <application>Help Browser</application>. Click on any launcher icon to open the corresponding application.</para></listitem>
        </varlistentry>
      	<varlistentry>
      	  <term><application>Notification Area</application> applet</term>
          <listitem><para>Displays icons from other applications that may require your attention, or that you may want to access without switching from your current application window. For more on this, see <xref linkend="panels-notification-area"/>.</para>
          <para>Until an application adds an icon to the notification area, only a narrow bar is visible.</para>
          </listitem>
        </varlistentry>

         
        <varlistentry>
          <term><application>Clock</application> applet</term>
          <listitem><para>The <application>Clock</application> shows the current
      time. Click on the time to open a small calendar. You can also view a world map by clicking the <guilabel>Locations</guilabel> expansion label. For more on this, see the <ulink type="help" url="ghelp:clock">Clock Applet Manual</ulink>.</para></listitem>
        </varlistentry>
        <varlistentry>
          <term><application>Volume Control</application>
      applet</term>
          <listitem><para>The <application>Volume Control</application> enables you to control the volume of the speakers on your system. For more on this, see the <ulink type="help" url="ghelp:gnome-volume-control">Volume Control Manual</ulink>.</para></listitem>
        </varlistentry>
        <varlistentry>
          <term>
          <indexterm>
            <primary>top edge panel</primary>
            <secondary>window list icon</secondary>
          </indexterm>
          <application>Window Selector</application> icon</term>
          <listitem><para>The <application>Window Selector</application> lists all of your
      open windows. To give focus to a window, click on the window selector icon
      at the extreme right of the top edge panel, then select the window. For more on this, see <xref linkend="windows-focus"/>.</para></listitem>
        </varlistentry>
      </variablelist>
    </section>
    <section id="bottom-panel">
      <title>Bottom Edge Panel</title>
      <!-- preserve id for backwards compatibility: 2.12 -->
      <anchor id="gospanel-3"/>        
      <indexterm>
        <primary>panels</primary>
        <secondary>bottom edge panel</secondary>
        <see>bottom edge panel</see>
      </indexterm>
      <indexterm>
        <primary>bottom edge panel</primary>
        <secondary>introduction</secondary>
      </indexterm>
      <para>By default, the bottom edge panel contains the following objects:</para>
      <note><para>Your distribution of GNOME may have altered this default setup.</para></note>
      <indexterm>
        <primary>bottom edge panel</primary>
        <secondary>default contents</secondary>
      </indexterm>            
      <variablelist>
      	<varlistentry>
      		<term><guibutton>Show Desktop</guibutton> button</term>
      		<listitem><para>Click on this button to minimize all open windows and show the desktop. Click it again to restore all of the windows to their previous state.</para></listitem>
      	</varlistentry>
      	<varlistentry>
      		<term><application>Window List</application> applet</term>
      		<listitem><para>Displays a button for each window that is open. The <application>Window List</application> enables you to minimize and restore windows. For more on this, see <xref linkend="windowlist"/>.</para></listitem>
      	</varlistentry>
      	<varlistentry>
      		<term><application>Workspace Switcher</application> applet</term>
      		<listitem><para>Enables you to switch between your workspaces. For more on workspaces, see <xref linkend="overview-workspaces"/>.</para></listitem>
      	</varlistentry>      	
      </variablelist>
    </section>
  </section>
  <section id="gospanel-5">
    <title>Managing Panels</title>

    <!-- Desktop Overview / Panels / To Create Panels -->
    <anchor id="gosoverview-26"/>
    <anchor id="gospanel-11"/><!-- To Interact With a Panel -->
    <indexterm>
      <primary>panels</primary>
      <secondary>managing</secondary>
    </indexterm>
    <para>The following sections describe how to manage your panels.</para>
    <para>To interact with a panel, you must click on a vacant space on the panel rather than on any of the objects it holds. If the hide buttons are visible on the panel, you can also middle-click or right-click on one of them to select the panel.</para>
    <section id="gospanel-12">
      <title>Moving a Panel</title>
      <indexterm>
        <primary>panels</primary>
        <secondary>moving</secondary>
      </indexterm>
      <para>Drag a panel to another side of the screen to move it there. Click on any vacant space on the panel to begin the drag.</para>
      <para>A panel that is not set to expand to the full width of the screen can be dragged away from the edge of the screen and placed anywhere. See <xref linkend="panel-properties"/> for details on how to set a panel's expand property.</para>
    </section>  
    <section id="panel-properties">
      <title>Panel Properties</title>
      <!-- preserve id for backwards compatibility: 2.12 -->
      <anchor id="gospanel-28"/>         
      <indexterm>
        <primary>panels</primary>
        <secondary>modifying properties</secondary>
      </indexterm>
      <para>You can change
the properties of each panel, such as the position of the panel, the hide behavior,
and the visual appearance. </para>
      <para>To modify the properties of a panel, right-click on a vacant space on the panel, then choose <guimenuitem>Properties</guimenuitem>. The <guilabel>Panel Properties</guilabel> dialog contains two tabbed sections, <guilabel>General</guilabel> and <guilabel>Background</guilabel>.</para>
      
      <section id="panel-properties-general">
        <title>General Properties Tab</title>
        <para>In the <guilabel>General</guilabel> tab, you can modify panel size, position, and hiding properties. The following table describes the
dialog elements on the <guilabel>General</guilabel> tabbed section: </para>
        <informaltable frame="topbot">
          <tgroup cols="2" colsep="0" rowsep="0">
            <colspec colname="colspec0" colwidth="28.57*"/>
            <colspec colname="colspec1" colwidth="71.43*"/>
            <thead>
              <row rowsep="1">
                <entry>
                  <para>Dialog Element</para>
                </entry>
                <entry>
                  <para>Description </para>
                </entry>
              </row>
            </thead>
            <tbody>
              <row>
                <entry colname="colspec0">
                  <para>
                    <guilabel>Orientation</guilabel>
                  </para>
                </entry>
                <entry colname="colspec1">
                  <para>Select the position of the panel on your screen.
Click on the required position for the panel. </para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <guilabel>Size</guilabel>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Use the spin box to specify the size of the panel.</para>
                </entry>
              </row>
              <row>
                <entry colname="colspec0">
                  <para>
                    <guilabel>Expand</guilabel>
                  </para>
                </entry>
                <entry colname="colspec1">
                  <para>By default, a panel expands to the full length of the edge of the screen where it is located. A panel that does not expand can be moved away from the screen edges to any part of the screen.</para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <guilabel>Autohide</guilabel>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Select this option if you want the panel to only be fully visible when the mouse pointer is over it. The panel hides off-screen along its longest edge, leaving a narrow part visible along the edge of the desktop. Move the mouse pointer over the visible part of the panel to make it move back into view.</para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <guilabel>Show hide buttons</guilabel>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Select this option to display hide buttons at each end of your
panel. Clicking on a hide button moves the panel lenthways, hiding it off-screen except for the hide button at the opposite end. Click this hide button to restore the panel to being fully visible.</para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <guilabel>Arrows on hide buttons</guilabel>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Select this option to display arrows on the hide
buttons, if the hide button is enabled.</para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </informaltable>

      </section>
      <section id="panel-properties-background">
        <title>Background Properties Tab</title>
        <para>You can choose the type of background for the panel in the <guilabel>Background</guilabel> tab. The choices are as follows:</para>
        <informaltable frame="topbot">
          <tgroup cols="2" colsep="0" rowsep="0">
            <colspec colwidth="32.32*"/>
            <colspec colwidth="67.68*"/>
            <thead>
              <row rowsep="1">
                <entry>
                  <para>Dialog Element</para>
                </entry>
                <entry>
                  <para>Description</para>
                </entry>
              </row>
            </thead>
            <tbody>
              <row>
                <entry valign="top">
                  <para>
                    <guilabel>None (use system theme)</guilabel>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Select this option to have the panel use the settings in the <link linkend="prefs-theme"><application>Appearance</application> preference tool</link>. This keeps your panel's background looking the same as the rest of the desktop and applications.</para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <guilabel>Solid color</guilabel>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Select this option to specify a single color for
the panel background. Click on the <guibutton>Color</guibutton> button to
display the color selector dialog. Choose the color that you require from
the color selector dialog. </para>
                  <para>Use the <guilabel>Style</guilabel>
slider to specify the degree of transparency or opaqueness for the color.
For example, to make the panel transparent, move the slider to the <guilabel>Transparent</guilabel> end.</para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <guilabel>Background image</guilabel>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Select this option to specify an image for the panel
background. Click on the button to browse for an image file. When you have selected the file, click <guibutton>OK</guibutton>. </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </informaltable>
        
        <!-- section folded in: preserve id for backwards compatibility: 2.12 -->
        <anchor id="gospanel-61"/>
        <indexterm>
          <primary>panels</primary>
          <secondary>changing background</secondary>
        </indexterm>
        <!-- Shaun, why does this bit here change the vertical space between the previous 
        table and the following paragraph? -->
             
        <para>You can also  drag a color or image on to a panel to set the color
or image as the background of the panel. You can drag a color or image from
many applications. For example:</para>
        <itemizedlist>
          <listitem>
            <para>You can drag a color from any color selector dialog.</para>     
          </listitem>
          <listitem>
            <para>You can drag an image file from the <application>Nautilus</application> file manager to set it as the background of the panel.</para>     
          </listitem>
          <listitem>
            <para>You can drag a color or a pattern from the <link linkend="nautilus-backgrounds-and-emblems"><guilabel>Backgrounds
  and Emblems</guilabel> dialog</link> in <application>Nautilus</application> file manager to a panel to set it as the background.</para>         
          </listitem>
        </itemizedlist>
        <para>Click <guibutton>Close</guibutton> to close the <guilabel>Panel Properties</guilabel> dialog.</para>
      </section>
    </section>
    <section id="gospanel-7">
      <title>Hiding a Panel</title>
      <indexterm>
        <primary>panels</primary>
        <secondary>hiding</secondary>
      </indexterm>
      <para>You can hide or show a panel if it has hide buttons. If
the hide buttons are not visible on a panel, modify the panel properties so
that the hide buttons are visible. </para>
      <para>Hide buttons are at either end of a panel. The hide buttons contain
an optional arrow icon. The following illustration shows hide buttons. </para>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/four_hide_button.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>A horizontal panel and a vertical panel, both with hide buttons.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <para>To hide a panel, click on one of the hide buttons. The panel shrinks
in the direction of the arrow on the hide button. The hide button at the other
end of the panel remains visible.</para>
      <para>To show a hidden panel again, click on the visible hide button. The
panel expands in the direction of the arrow on the hide button. Both hide
buttons are now visible.</para>
      <para>You can set a panel to autohide. When you set autohide, the panel hides
automatically when the mouse is not pointing to the panel. The panel reappears
when you point to the part of the screen where the panel resides. To set your
panel to autohide, <link linkend="panel-properties">modify the properties</link> of the panel.</para>
    </section>    
    <section id="gospanel-10">
      <title>Adding a New Panel</title>
      <indexterm>
        <primary>panels</primary>
        <secondary>adding new</secondary>
      </indexterm>
      <para>To add a panel, right-click on a vacant space on any panel, then choose <guimenuitem>New Panel</guimenuitem>. The new panel is added to the GNOME Desktop. The
new panel contains no objects. You can customize the new panel to suit your
preferences.</para>
    </section>    
    <section id="gospanel-31">
      <title>Deleting a Panel</title>
      <!-- Desktop Overview / Panels / To Delete Panels -->
      <anchor id="gosoverview-508"/>
      <indexterm>
        <primary>panels</primary>
        <secondary>deleting</secondary>
      </indexterm>
      <para>To delete a panel from the GNOME Desktop, right-click on the panel that
you want to delete, then choose <menuchoice><guimenuitem>Delete This Panel</guimenuitem></menuchoice>.</para>
      <note>
        <para>You must always have at least one panel in the GNOME Desktop.
If you have only one panel in the GNOME Desktop, you cannot delete that panel.</para>
      </note>
    </section>
  </section>
  
  <!-- =============================================== managing panel objects -->
  <section id="gospanel-8">
    <title>Panel Objects</title>
    <!-- Desktop Overview / Panels / To Manipulate Panel Objects -->
    <anchor id="gosoverview-21"/>
    <indexterm>
      <primary>panels</primary>
      <secondary>panel objects</secondary>
      <see>panel objects</see>
    </indexterm>
    <para>This section describes the objects that
you can add to and use from your panels.</para>
    <section id="gospanel-100">
      <title>Interacting With Panel Objects</title>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>interacting with</secondary>
      </indexterm>
      <para>You use the mouse buttons to interact with a panel object
in the following ways:</para>
      <variablelist>
        <varlistentry>
          <term>Left-click</term>
          <listitem>
            <para>Launches the panel object.</para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Middle-click</term>
          <listitem>
            <para>Enables you to grab
an object, then drag the object to a new location.</para>
          </listitem>
        </varlistentry>
        <varlistentry>
          <term>Right-click</term>
          <listitem>
            <para>Opens the panel object
popup menu.</para>
          </listitem>
        </varlistentry>
      </variablelist>

      <section id="gospanel-39">
        <title>To Select an Applet</title>
        <indexterm>
          <primary>applets</primary>
          <secondary>selecting</secondary>
        </indexterm>
        <para>Some restrictions apply on where you can click on an applet in order
  to display the panel object popup menu, or to move the applet, as follows: </para>
        <itemizedlist>
          <listitem>
            <para>Some applets have popup menus of applet-specific commands
  that open when you right-click on particular parts of the applet. For example,
  the <application><link linkend="windowlist">Window List</link></application> applet has a vertical handle on
  the left side, and buttons that represent your windows on the right side.
  To open the panel object popup menu for the <application>Window List</application>
  applet, you must right-click on the handle. If you right-click on a button
  on the right side, a popup menu for the button opens.</para>
          </listitem>
          <listitem>
            <para>Some applets have areas that you cannot use to select the
  applet. For example, the <application>Command Line</application> applet has
  a field in which you enter commands. You cannot middle-click or right-click
  on this field to select the applet. Instead, middle-click or right-click on
  another part of the applet. </para>
          </listitem>
        </itemizedlist>
      </section>


    </section>
    <section id="panels-addobject">
      <title>Adding an Object to a Panel</title>
      
      <!-- preserve for backwards compatibility: 2.12 -->
      <anchor id="gospanel-15"/>   

      <!-- Desktop Overview / Panels / To Add Objects to Panels -->
      <anchor id="gosoverview-4"/>
      <anchor id="gospanel-40"/><!-- To Add an Applet to a Panel -->
      <indexterm>
        <primary>panel objects</primary>
        <secondary>adding</secondary>
      </indexterm>
      <para>To add an object to a panel, perform the following steps:</para>
      <orderedlist>
        <listitem><para>
          Right-click on a vacant space on a panel to open the panel popup menu.
        </para></listitem>
        <listitem><para>
          Choose <guisubmenu>Add to Panel</guisubmenu>.</para>
          <para>The <guilabel>Add to Panel</guilabel> dialog opens.The available panel objects are listed alphabetically, with <link linkend="launchers">launchers</link> at the top.</para>
          <tip><para>You can type a part of the name or description of an object in the <guilabel>find</guilabel> box. This will narrow the list to those objects that match what you type.</para>
          <para>To restore the full list, delete the text in the <guilabel>find</guilabel> box.</para>
          </tip>
        </listitem>
        <listitem><para>
          Either drag an object from the list to a panel, or select an object from the list and click <guibutton>Add</guibutton> to add it at the spot on the panel where you first right-clicked.
        </para></listitem>
      </orderedlist>
      
      
      <para>You can also add any item in the <guimenu>Applications</guimenu> menu to the panel: right-click the menu item and choose <guimenuitem>Add this launcher to panel</guimenuitem>.</para>

      <para>Each launcher corresponds to a <filename>.desktop</filename> file. You
can drag a <filename>.desktop</filename> file on to your panels to add the
launcher to the panel. </para>
<!--Each menu corresponds to a directory. You can drag the directory on to your panels to add the directory to the panel as a menu object. Is this still true?-->

    </section>
    <section id="gospanel-9">
      <title>Modifying the Properties of an Object</title>
      <!-- preserve id for backwards compatibility: 2.12 -->
      <anchor id="gospanel-41"/><!-- To Modify Preferences for an Applet -->
      <indexterm>
        <primary>panel objects</primary>
        <secondary>modifying properties</secondary>
      </indexterm>
      <para>Some panel objects, such as launchers and drawers,
have a set of associated properties. The properties are different for each
type of object. The properties specify details such as the following: <itemizedlist><listitem><para>The command that starts a launcher application.</para></listitem><listitem><para>The location of the source files for a menu.</para></listitem><listitem><para>The icon that represents the object.</para></listitem></itemizedlist></para>
      <para>To modify the properties of an object, perform the following steps: </para>
      <orderedlist>
        <listitem>
          <indexterm>
            <primary>panel object popup menu, illustration</primary>
          </indexterm>
          <para>Right-click on the object to open the panel object popup
menu, as shown in <xref linkend="gospanel-FIG-54"/>.</para>
          <figure id="gospanel-FIG-54">
            <title>Panel Object Popup Menu</title>
            <screenshot>
              <mediaobject>
                <imageobject>
                  <imagedata fileref="figures/panel_object_popup_menu.png" format="PNG"/>
                </imageobject>
                <textobject>
                  <phrase>Panel object popup menu. Menu items: Properties, Remove From Panel, Lock, Move.</phrase>
                </textobject>
              </mediaobject>
            </screenshot>
          </figure>
        </listitem>
        <listitem>
          <para>Choose <guimenuitem>Properties</guimenuitem>. Use the <guilabel>Properties</guilabel> dialog to modify the properties as required. The properties
in the <guilabel>Properties</guilabel> dialog depend on which object you select
in step 1. </para>
        </listitem>
        <listitem>
          <para>Close the <guilabel>Properties</guilabel> dialog.</para>
        </listitem>
      </orderedlist>
    </section>
    <section id="gospanel-32">
      <title>Moving a Panel Object</title>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>moving</secondary>
      </indexterm>
      <para>You can move panel objects within a panel, and from one panel to another
panel. You can also move objects between panels and drawers.</para>
      <para>To move a panel object, middle-click and hold on the object and drag
the object to a new location. When you release the middle mouse button, the
object anchors at the new location.</para>
      <para>Alternatively, you can use the panel object popup menu to move an object,
as follows: </para>
      <orderedlist>
        <listitem>
          <para>Right-click on the object, then choose <guimenuitem>Move</guimenuitem>.</para>
        </listitem>
        <listitem>
          <para>Point to the new location for the object, then click any mouse
button to anchor the object to the new location. This location can be on any
panel that is currently in the GNOME Desktop. </para>
        </listitem>
      </orderedlist>
      <para>Movement of a panel object affects the position of other objects on
the panel. To control how objects move on a panel, you can specify a movement
mode. To specify the movement mode, press one of the following keys as you
move the panel object:</para>
      <informaltable frame="topbot">
        <tgroup cols="3" colsep="0" rowsep="0">
          <colspec colname="colspec2" colwidth="15.00*"/>
          <colspec colname="colspec1" colwidth="30.00*"/>
          <colspec colname="colspec3" colwidth="54.00*"/>
          <thead>
            <row rowsep="1">
              <entry colname="colspec2">
                <para>Key</para>
              </entry>
              <entry>
                <para>Movement Mode</para>
              </entry>
              <entry colname="colspec3">
                <para>Description</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry colname="colspec2" valign="top">
                <para>No key</para>
              </entry>
              <entry colname="colspec1" valign="top">
                <para>Switched movement</para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>The object swaps places with other panel
objects. Switched movement is the default movement mode.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para><keycap>Alt</keycap> key</para>
              </entry>
              <entry valign="top">
                <para>Free movement</para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>The object jumps over other panel objects
into the next vacant space on the panel.</para>
              </entry>
            </row>
            <row>
              <entry colname="colspec2" valign="top">
                <para><keycap>Shift</keycap> key </para>
              </entry>
              <entry valign="top">
                <para>Push movement</para>
              </entry>
              <entry colname="colspec3" valign="top">
                <para>The object pushes other panel objects
further along the panel. </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </informaltable>
    </section>
    <section id="gospanel-566">
      <title>Locking a Panel Object</title>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>locking</secondary>
      </indexterm>
      <indexterm>
        <primary>locking panel objects</primary>
      </indexterm>
      <para>You can lock panel objects so that the objects stay in the same position
on the panel. Use this if you do not want some panel objects
to change position when you move other panel objects.</para>
      <para>To lock an object to its current location in the panel,
right-click on the object to open the panel object popup menu, then select  <guimenuitem>Lock To Panel</guimenuitem>. Deselect this to unlock the object.</para>
    </section>
    <section id="gospanel-33">
      <title>Removing a Panel Object</title>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>removing</secondary>
      </indexterm>
      <para>To remove an object from a panel, right-click on the object
to open the panel object popup menu and then choose <guimenuitem>Remove From
Panel</guimenuitem>. </para>
    </section>
  </section>
  
  <!-- ============================================== big bag o' panel objects -->
  <!-- <remark>won't work because of yelp topic clumping</remark>
    <para>This section describes the different objects you can add to your panels.</para>
    <para>For a list of the objects that are on the top and bottom panels by default, see <xref linkend="top-panel"/> and <xref linkend="bottom-panel"/>.</para>
  -->
  <section id="gospanel-17">
    <title>Applets</title>
    <indexterm>
      <primary>applets</primary>
      <secondary>introduction</secondary>
    </indexterm>
    <indexterm>
      <primary>panel objects</primary>
      <secondary>applets</secondary>
      <see>applets</see>
    </indexterm>
    <para>An applet is a small application whose
user interface resides within a panel. The following figure shows the following
applets, from left to right: </para>
    <itemizedlist>
      <listitem>
        <para><application><link linkend="windowlist">Window List</link></application>: Displays the windows
currently open on your system.</para>
      </listitem>
      <listitem>
        <para><application>Volume Control</application>: Enables you to
control the volume of the speaker on your system.</para>
      </listitem>
      <listitem>
        <para><application>Clock</application>: Shows the current date and time.</para>
      </listitem>
    </itemizedlist>
    <screenshot>
      <mediaobject>
        <imageobject>
          <imagedata fileref="figures/sample_applet.png" format="PNG"/>
        </imageobject>
        <textobject>
          <phrase>Sample applets. The context describes the graphic.</phrase>
        </textobject>
      </mediaobject>
    </screenshot>
  </section>  

  <section id="launchers">
    <title>Launchers</title>
    <!-- preserve id for backwards compatibility: 2.12 -->
    <anchor id="gospanel-16"/>
    <indexterm>
      <primary>panel objects</primary>
      <secondary>launchers</secondary>
      <see>launchers</see>
    </indexterm>
    <para>A <firstterm>launcher</firstterm> is an object that performs a specific action when you open it.</para>
    <para>You can find launchers in the panels, in the panel menubar, and on the desktop. A launcher is represented by an icon in all of these locations.</para>
    <para>You might use a launcher to do any of the following:</para>
    <itemizedlist>
      <listitem>
        <para>Start a particular application.</para>
      </listitem>
      <listitem>
        <para>Execute a command.</para>
      </listitem>
      <listitem>
        <para>Open a folder.</para>
      </listitem>
      <listitem>
        <para>Open a Web browser at a particular page on the Web. <!-- <firstterm>Uniform Resource Locator</firstterm> (URL). A URL is the address of a particular location --></para>
      </listitem>
      <listitem>
        <para>Open special <firstterm>Uniform Resource Identifiers</firstterm>
(URIs). The GNOME Desktop contains special URIs that enable you to access
particular functions from the file manager. <indexterm><primary>special URI
locations</primary><secondary>and launchers</secondary></indexterm></para>
      </listitem>
    </itemizedlist>

    <para>You can modify the properties of a launcher. For example, the properties
of a launcher include the name of the launcher, the icon that represents the
launcher, and how the launcher runs. For more on this, see <xref linkend="launchers-modify"/>.</para>
    <note><para>
      In certain situations, a launcher in a menu might not show an icon. For example, if it specifies no icon to display, or if the entire menu is set to show no icons.
    </para></note>

    <section id="gospanel-34">
      <title>Adding a Launcher to a Panel</title>
      <indexterm>
        <primary>launchers</primary>
        <secondary>adding to panel</secondary>
      </indexterm>
      <para>You can add a launcher to a panel in one of the following
ways:</para>
      <itemizedlist>
        <listitem>
          <para>From the panel popup menu</para>
          <para>Right-click on any vacant space on the panel,
then choose <guimenu>Add to Panel</guimenu>. The <link linkend="panels-addobject"><guilabel>Add to Panel</guilabel> dialog</link> opens.</para>
          <para>To create a new launcher, select <guilabel>Custom Application Launcher</guilabel> from the list. A <guilabel>Create Launcher</guilabel>
dialog is displayed. For more information on the properties in this dialog,
see <xref linkend="launchers-properties"/>.</para>
          <para>Alternatively, to add an existing launcher to the panel, select <guilabel>Application Launcher</guilabel> from the list. Choose the launcher that you want
to add from the list of menu items.</para>
        </listitem>
        <listitem>
          <para>From any menu</para>
          <para>To add a launcher to a panel from a menu, perform one of the following
steps:</para>
          <itemizedlist>
            <listitem><para>Open a menu that contains the launcher. Drag the launcher
on to the panel. </para></listitem>
            <listitem><para>Open the menu that contains the launcher and right-click on the title of the launcher.
Choose <guimenuitem>Add this launcher to panel</guimenuitem>. This method will only work if the launcher is on a sub-menu of the menu that you opened.</para></listitem>
          </itemizedlist>
        </listitem>
        <listitem>
          <para>From the file manager</para>
          <para>To add a launcher to a panel from the file manager, find the <filename>.desktop</filename> file for the launcher in your file system, then drag the <filename>.desktop</filename> file to the panel. </para>
        </listitem>
      </itemizedlist>
    </section>

    <section id="launchers-modify">
      <title>Modifying a Launcher</title>
      <!-- preserve id for backwards compatibility: 2.12 -->
      <anchor id="gospanel-36"/>        
      <indexterm>
        <primary>launchers</primary>
        <secondary>modifying properties</secondary>
      </indexterm>
      <para>To modify the properties of a launcher in a panel, perform the following
steps: </para>
      <orderedlist>
        <listitem>
          <para>Right-click on the launcher to open the panel object popup
menu.</para>
        </listitem>
        <listitem>
          <para>Choose <guimenuitem>Properties</guimenuitem>. Use the <guilabel>Launcher Properties</guilabel> dialog to modify the properties as required.
For more information on the <guilabel>Launcher Properties</guilabel> dialog,
see <xref linkend="launchers-properties"/>. </para>
        </listitem>
        <listitem>
          <para>Click <guibutton>Close</guibutton> to close the <guilabel>Launcher Properties</guilabel> dialog.</para>
        </listitem>
      </orderedlist>
    </section>

          
    <section id="launchers-properties"> 
      <title>Launcher Properties</title>
      <!-- preserve id for backwards compatibility: 2.12 -->
      <anchor id="gospanel-52"/><!-- To Create a Launcher With the Create Launcher Dialog -->
         
      <para>When you create or edit a launcher, the following properties can be set:</para>
      <variablelist>
        <varlistentry><term>Type</term>
          <listitem>
            <para>Use the drop-down list to specify whether this launcher starts an application or opens a location: </para>
            <variablelist>
              <varlistentry><term>Application</term>
                <listitem>
                  <para>The launcher starts an application.</para>
                </listitem>     
              </varlistentry>
              <varlistentry><term>Application in Terminal</term>
                <listitem>
                  <para>The launcher starts an application through a terminal window.</para>
                </listitem>     
              </varlistentry>
              <varlistentry><term>Location</term>
                <listitem>
                  <para>The launcher opens a file, web page or other location.</para>
                </listitem>
              </varlistentry>
            </variablelist>
            <para>If you are editing a location launcher, this drop-down list 
          will not be displayed. If you are editing an application launcher, 
          the <guilabel>Location</guilabel> option will not be available.</para>
          </listitem>
        </varlistentry>
        <varlistentry><term>Name</term>
          <listitem>
            <para>This is the name that is displayed if you add the launcher to a menu
or to the desktop.</para>
          </listitem>     
        </varlistentry>
        <varlistentry><term>Command</term>
          <listitem>
            <para>For an application launcher, specify a command to execute when
you click on the launcher. For sample commands, see <xref linkend="launchers-properties-commands"/>.</para>
          </listitem>     
        </varlistentry>
        <varlistentry><term>Location</term>
          <listitem>
            <para>For a location launcher, specify the location to be opened. 
            Click <guibutton>Browse</guibutton> to select a location on your 
            computer, or type a web address to launch a web page. For sample 
            locations, see <xref linkend="launchers-properties-commands"/></para>
          </listitem>     
        </varlistentry>
        <varlistentry><term>Comment</term>
          <listitem>
            <para>This is displayed  as a tooltip when you point to the
launcher icon on the panel.</para>
          </listitem>     
        </varlistentry>
      </variablelist>
      
      <para>To choose an icon for the launcher, click on the icon button, which displays a generic icon by default. An icon selector dialog is displayed. Choose an icon from the dialog. </para>
      <para>To change the icon for the launcher, click on the button showing the current icon. An icon selector dialog is displayed. Choose an icon from the dialog. </para>
  
      <section id="launchers-properties-commands">
        <title>Launcher Commands and Locations</title>
        <!-- Maintained for backwards compatibility: 2.14 -->
        <anchor id="gospanel-556"/>        
        <para>Examples of commands and locations that you can use in the <guilabel>Launcher Properties</guilabel> dialog can be found below.</para>
        
        <para>If you choose <guilabel>Application</guilabel> or <guilabel>Application in Terminal</guilabel>
from the <guilabel>Type</guilabel> drop-down box, the <guilabel>Command</guilabel> text box will be displayed. The following table shows some sample commands and the actions that the commands perform:</para>
        <informaltable frame="topbot">
          <tgroup cols="2" colsep="0" rowsep="0">
            <colspec colname="colspec0" colwidth="47.36*"/>
            <colspec colname="colspec1" colwidth="52.64*"/>
            <thead>
              <row rowsep="1">
                <entry>
                  <para>Sample Application Command</para>
                </entry>
                <entry>
                  <para>Action</para>
                </entry>
              </row>
            </thead>
            <tbody>
              <row>
                <entry colname="colspec0" valign="top">
                  <para>
                    <command>gedit</command>
                  </para>
                </entry>
                <entry colname="colspec1" valign="top">
                  <para>Starts the <application>gedit</application> text editor application.</para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <command>gedit /home/user/loremipsum.txt</command>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Opens the file <filename>/home/user/loremipsum.txt</filename> in the <application>gedit</application> text editor application.</para>
                </entry>
              </row>
              <row>
                <entry colname="colspec0" valign="top">
                  <para>
                    <command>nautilus /home/user/Projects</command>
                  </para>
                </entry>
                <entry colname="colspec1" valign="top">
                  <para>Opens the folder <filename>/home/user/Projects</filename> in a File Browser window.</para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </informaltable>
        <para>If you choose <guilabel>Location</guilabel> from the <guilabel>Type</guilabel>
drop-down box, the <guilabel>Location</guilabel> text box will be displayed. The following table
shows some sample locations and the actions that will happen if you click on the launcher:<indexterm><primary>special URIs</primary><secondary>launchers</secondary></indexterm></para>
        <informaltable frame="topbot">
          <tgroup cols="2" colsep="0" rowsep="0">
            <colspec colname="colspec0" colwidth="47.36*"/>
            <colspec colname="colspec1" colwidth="52.64*"/>
            <thead>
              <row rowsep="1">
                <entry>
                  <para>Sample Location</para>
                </entry>
                <entry>
                  <para>Action</para>
                </entry>
              </row>
            </thead>
            <tbody>
              <row>
                <entry colname="colspec0" valign="top">
                  <para>
                    <command>file:///home/user/loremipsum.txt</command>
                  </para>
                </entry>
                <entry colname="colspec1" valign="top">
                  <para>Opens the file <filename>/home/user/loremipsum.txt</filename> 
                  in the default viewer for its file type.</para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <command>file:///home/user/Projects</command>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Opens the folder <filename>/home/user/Projects</filename> in a File Browser window.</para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <command>http://www.gnome.org</command>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Opens the GNOME website in your default browser.</para>
                </entry>
              </row>
              <row>
                <entry valign="top">
                  <para>
                    <command>ftp://ftp.gnome.org</command>
                  </para>
                </entry>
                <entry valign="top">
                  <para>Opens the GNOME FTP site in your default browser. </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </informaltable>
      </section>
    </section>    
  </section>
  <section id="gospanel-557">
    <title>Buttons</title>
    <indexterm>
      <primary>buttons</primary>
      <secondary>adding to panel</secondary>
    </indexterm>
    <indexterm>
      <primary>action buttons</primary>
      <see>buttons</see>
    </indexterm>
    <para>You can add buttons to your panels to provide quick access
to common actions and functions. </para>
    <section id="gospanel-563">
      <title>Force Quit Button</title>
      <indexterm>
        <primary>buttons</primary>
        <secondary>Force Quit</secondary>
      </indexterm>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>Force Quit button</secondary>
      </indexterm>
      <indexterm>
        <primary>Force Quit button</primary>
      </indexterm>
      <indexterm>
        <primary>terminating applications</primary>
      </indexterm>
      <indexterm>
        <primary>applications</primary>
        <secondary>terminating</secondary>
      </indexterm>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/force_quit.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Force Quit icon.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <para>The <guibutton>Force Quit</guibutton> button allows you to click on 
      a window to force an application to quit. This button is useful if you 
      want to terminate an application that does not respond to your commands, 
      if the application has frozen or crashed, for example.</para>
      <para>To add a <guibutton>Force Quit</guibutton> button to a panel, right-click
on any vacant space on the panel. Choose <guimenu>Add to Panel</guimenu>, then 
choose <application>Force Quit</application> from the Add to Panel dialog. 
See <xref linkend="panels-addobject"/> for more on this.</para>
      <para>To terminate an application, click on the <guibutton>Force Quit</guibutton>
button, then click on a window from the application that you want to terminate.
If you do not want to terminate an application after you have clicked on the 
<guibutton>Force Quit</guibutton> button, press <keycap>Esc</keycap>.</para>
    </section>
    <section id="panel-lock-screen">
      <title>Lock Screen Button</title>
      <!-- preserve id for backwards compatibility: 2.12 -->
      <anchor id="gospanel-21"/>         
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/lockscreen_icon.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Lock screen icon.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <indexterm>
        <primary>buttons</primary>
        <secondary>Lock</secondary>
      </indexterm>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>Lock button</secondary>
      </indexterm>
      <indexterm>
        <primary>Lock button</primary>
      </indexterm>
      <indexterm>
        <primary>locking screen</primary>
      </indexterm>
      <para>The <guibutton>Lock Screen</guibutton> button locks your screen 
      and activates your screensaver when you click on it. To access your session
again, you must enter your password.</para>
      <para>To add a <guibutton>Lock Screen</guibutton> button to a panel, right-click
on any vacant space on the panel. Choose <guimenu>Add to Panel</guimenu>, then choose <application>Lock Screen</application> from the Add to Panel dialog. See <xref linkend="panels-addobject"/> for more on this.</para>
      <para>Right-click on the <guibutton>Lock Screen</guibutton> button to open a menu
of screensaver-related commands. <xref linkend="gosstartsession-TBL-83"/> describes
the commands that are available from the menu.</para>
      <table frame="topbot" id="gosstartsession-TBL-83">
        <title>Lock Screen Menu Items</title>
        <tgroup cols="2" colsep="0" rowsep="0">
          <colspec colname="colspec0" colwidth="43.55*"/>
          <colspec colname="colspec1" colwidth="56.45*"/>
          <thead>
            <row rowsep="1">
              <entry>
                <para>Menu Item</para>
              </entry>
              <entry>
                <para>Function</para>
              </entry>
            </row>
          </thead>
          <tbody>
            <row>
              <entry valign="top">
                <para>
                  <guimenuitem>Activate Screensaver</guimenuitem>
                </para>
              </entry>
              <entry valign="top">
                <para>Activates the screensaver immediately.</para>
                <para>This will also lock the screen if you have set <guilabel>Lock screen when screensaver is active</guilabel> in the 
<application>Screensaver</application> preference tool.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guimenuitem>Lock Screen</guimenuitem>
                </para>
              </entry>
              <entry valign="top">
                <para>Locks the screen immediately. This command performs
the same function as when you click on the <guibutton>Lock Screen</guibutton> button.</para>
              </entry>
            </row>
            <row>
              <entry valign="top">
                <para>
                  <guimenuitem>Properties</guimenuitem>
                </para>
              </entry>
              <entry valign="top">
                <para>Opens the <link linkend="prefs-screensaver"><application>Screensaver</application> preference tool</link>, with which you can configure the type of screensaver that is displayed when you lock the screen.</para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </section>
    <section id="gospanel-20">
      <title>Log Out Button</title>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/logout_icon.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Log Out icon.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <indexterm>
        <primary>buttons</primary>
        <secondary>Log Out</secondary>
      </indexterm>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>Log Out button</secondary>
      </indexterm>
      <indexterm>
        <primary>Log Out button</primary>
      </indexterm>
      <para>The <guibutton>Log Out</guibutton> button allows you to log out of
a GNOME session or switch to a different user account.</para>
      <para>To add a <guibutton>Log Out</guibutton> button to a panel, right-click
on any vacant space on the panel. Choose <guimenu>Add to Panel</guimenu>, then 
choose <application>Log Out</application> from the Add to Panel dialog. 
See <xref linkend="panels-addobject"/> for more on this.</para>
      <para>To log out of your session or switch users, click on the 
      <guibutton>Log Out</guibutton> button and then click on the appropriate 
      button in the dialog that appears. </para>
    </section>
    <section id="gospanel-555">
      <title>Run Button</title>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/run_button.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Run Application icon.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <indexterm>
        <primary>buttons</primary>
        <secondary>Run</secondary>
      </indexterm>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>Run button</secondary>
      </indexterm>
      <indexterm>
        <primary>Run button</primary>
      </indexterm>
      <para>The <guibutton>Run</guibutton> button opens the 
      <guilabel>Run Application</guilabel> dialog, which allows you to start an 
      application by choosing it from a list. </para>
      <para>To add a <guibutton>Run</guibutton> button to a panel, right-click
on any vacant space on the panel. Choose <guimenu>Add to Panel</guimenu>, then 
choose <application>Run Application</application> from the Add to Panel dialog. 
See <xref linkend="panels-addobject"/> for more on this.</para>
      <para>To open the <application>Run Application</application> dialog, click 
      on the <guibutton>Run</guibutton> button. </para>
      <para>For more information on the <guilabel>Run Application</guilabel> dialog,
see <xref linkend="gospanel-23"/>.</para>
    </section>
    <section id="gospanel-554">
      <title>Search Button</title>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/searchtool_button.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Search Tool icon.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <indexterm>
        <primary>buttons</primary>
        <secondary>Search</secondary>
      </indexterm>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>Search button</secondary>
      </indexterm>
      <indexterm>
        <primary>Search button</primary>
      </indexterm>
      <para>The <guibutton>Search</guibutton> button opens the 
      <application>Search Tool</application>, which allows you to search for 
      files on your computer. </para>
      <para>To add a <guibutton>Search</guibutton> button to a panel, right-click
on any vacant space on the panel. Choose <guimenu>Add to Panel</guimenu>, then choose <application>Search for Files</application> from the Add to Panel dialog. See <xref linkend="panels-addobject"/> for more on this.</para>
      <para>To open the <application>Search Tool</application>, click on
the <guibutton>Search</guibutton> button. </para>
      <para>For more information on the <application>Search Tool</application>,
see the <ulink type="help" url="ghelp:gnome-search-tool">Search Tool Manual</ulink>.</para>
    </section>
    <section id="gospanel-564">
      <title>Show Desktop Button</title>
      <indexterm>
        <primary>buttons</primary>
        <secondary>Minimize Windows</secondary>
      </indexterm>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>Minimize
Windows button</secondary>
      </indexterm>
      <indexterm>
        <primary>Minimize Windows
button</primary>
      </indexterm>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/show_desktop_button.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Show Desktop icon.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <para>You can use the <guibutton>Show Desktop</guibutton> button to minimize all open windows and show the desktop.</para>
      <para>To add a <guibutton>Show Desktop</guibutton> button to a panel, right-click
on any vacant space on the panel. Choose <guimenu>Add to Panel</guimenu>, then 
choose <application>Show Desktop</application> from the Add to Panel dialog. 
See <xref linkend="panels-addobject"/> for more on this.</para>
      <para>To minimize all windows and show the desktop, click on the 
      <guibutton>Show Desktop</guibutton> button. To restore all windows to 
      their previous state, click it again.</para>
    </section>
  </section>
  <section id="panel-menus">
    <title>Menus</title>

    <!-- Desktop Overview / Menus -->
    <anchor id="gosoverview-42"/>
    <anchor id="gospanel-37"/>
    <indexterm>
      <primary>menus</primary>
      <secondary>adding to panel</secondary>
    </indexterm>
    <indexterm>
      <primary>panel objects</primary>
      <secondary>menus</secondary>
    </indexterm>
    <para>You can add the following types of menu to your panels: </para>
    <itemizedlist>
      <listitem>
        <para><guimenu>Menu Bar</guimenu>: You can access almost
all of the standard applications, commands, and configuration options from
the menus in the Menu Bar. It contains the <guimenu>Applications</guimenu>, 
<guimenu>Places</guimenu>, and <guimenu>System</guimenu> menus.</para>
        <para>To add a <guimenu>Menu Bar</guimenu> to a panel, right-click
on any vacant space on the panel. Choose <guimenu>Add to Panel</guimenu>, then 
choose <application>Menu Bar</application> from the Add to Panel dialog. 
See <xref linkend="panels-addobject"/> for more on this.</para>
      </listitem>
      <listitem>
        <para><guimenu>Main Menu</guimenu>: The Main Menu contains the same 
        items as the Menu Bar, but organizes them into one menu instead of three. 
        It takes up less space on the panels as a result.</para>
        <para>To add a <guimenu>Main Menu</guimenu> to a panel, right-click
on any vacant space on the panel. Choose <guimenu>Add to Panel</guimenu>, then 
choose <application>Main Menu</application> from the Add to Panel dialog. 
See <xref linkend="panels-addobject"/> for more on this.</para>
      </listitem>
      <listitem>
        <para><guimenu>Submenus</guimenu>: You can add a submenu of the Menu Bar 
        or Main Menu directly to the panel. For example, you can add the <guimenu>Games</guimenu> 
        submenu of the <guimenu>Applications</guimenu> menu to the panel.</para>
        <para>To add a submenu to a panel, open the submenu, right-click on a launcher, then choose 
<menuchoice><guimenu>Entire menu</guimenu><guimenuitem>Add this as menu to panel</guimenuitem></menuchoice>. </para>
      </listitem>
    </itemizedlist>

  </section>
  <section id="gospanel-18">
    <title>Drawers</title>
    <indexterm>
      <primary>panel objects</primary>
      <secondary>drawers</secondary>
      <see>drawers</see>
    </indexterm>
    <para>A drawer is an extension of a panel. You
can open and close a drawer in the same way that you can show and hide a panel.
A drawer can contain all panel objects, including launchers, menus, applets, 
and other drawers. When you open a drawer, you can use
the objects in the same way that you use objects on a panel. </para>
    <para>The following figure shows an open drawer that contains two panel objects. </para>
    <screenshot>
      <mediaobject>
        <imageobject>
          <imagedata fileref="figures/open_drawer.png" format="PNG"/>
        </imageobject>
        <textobject>
          <phrase>Open drawer. The context describes the graphic.</phrase>
        </textobject>
      </mediaobject>
    </screenshot>
    <para>The arrow on the icon indicates that it represents a drawer
or menu.</para>
    <para>You can add, move, and remove objects from drawers in the same way that
you add, move, and remove objects from panels. </para>
    <section id="gospanel-42">
      <title>To Open and Close a Drawer</title>
      <indexterm>
        <primary>drawers</primary>
        <secondary>opening</secondary>
      </indexterm>
      <indexterm>
        <primary>drawers</primary>
        <secondary>closing</secondary>
      </indexterm>
      <para>To open a drawer, click on the drawer's icon in a panel. You can close
a drawer in the following ways: </para>
      <itemizedlist>
        <listitem>
          <para>Click on the drawer's icon.</para>
        </listitem>
        <listitem>
          <para>Click on the drawer hide button.</para>
        </listitem>
      </itemizedlist>
    </section>
    <section id="gospanel-420">
      <title>To Add a Drawer to a Panel</title>
      <indexterm>
        <primary>drawers</primary>
        <secondary>adding to panel</secondary>
      </indexterm>
      <para>You can add a drawer to a panel in the following ways: </para>
      <variablelist>
      <varlistentry>
        <term>From the panel popup menu</term>
        <listitem>
          <orderedlist>
            <listitem><para>Right-click on any vacant space on the panel, then choose
            <guimenuitem>Add to Panel</guimenuitem>.</para></listitem>
            <listitem><para>In the <application>Add to Panel</application> dialog, select
            <guilabel>Drawer</guilabel>.  Click <guibutton>Add</guibutton>, then click
            <guibutton>Close</guibutton>.</para></listitem>
          </orderedlist>
        </listitem>
      </varlistentry>
      <varlistentry>
        <term>From any menu</term>
        <listitem>
          <para>You can add a menu as a drawer object to a panel.</para>
          <para>To add a menu as a drawer to a panel, open the menu from the panel.
Right-click on any launcher in the menu, then choose <menuchoice><guimenu>Entire menu</guimenu><guimenuitem>Add this as drawer to panel</guimenuitem></menuchoice>.</para>
        </listitem>
      </varlistentry>
      </variablelist>
    </section>
    <section id="gospanel-54">
      <title>To Add an Object to a Drawer</title>
      <indexterm>
        <primary>drawers</primary>
        <secondary>adding objects to</secondary>
      </indexterm>
      <para>You add an object to a drawer in the same way that you add
objects to panels. For more information, see <xref linkend="panels-addobject"/>.</para>
    </section>
    <section id="gospanel-550">
      <title>To Modify Drawer Properties</title>
      <indexterm>
        <primary>drawers</primary>
        <secondary>modifying properties</secondary>
      </indexterm>
      <para>You can modify the properties of each drawer individually. For 
      example, you can change the visual appearance of the drawer and whether 
      it has hide buttons.</para>
      <para>To modify properties for a drawer perform the following steps: </para>
      <orderedlist>
        <listitem>
          <para>Right-click on the drawer, then choose 
          <guimenuitem>Properties</guimenuitem> to display the <guilabel>Drawer Properties</guilabel> dialog.
The dialog displays the <guilabel>General</guilabel> tabbed section.</para>
        </listitem>
        <listitem>
          <para>Select the properties for the drawer in the dialog. The following
table describes the elements on the <guilabel>General</guilabel> tabbed section:</para>
          <informaltable frame="topbot">
            <tgroup cols="2" colsep="0" rowsep="0">
              <colspec colname="colspec0" colwidth="28.57*"/>
              <colspec colname="colspec1" colwidth="71.43*"/>
              <thead>
                <row rowsep="1">
                  <entry>
                    <para>Dialog Element</para>
                  </entry>
                  <entry>
                    <para>Description </para>
                  </entry>
                </row>
              </thead>
              <tbody>
                <row>
                  <entry colname="colspec0">
                    <para>
                      <guilabel>Size</guilabel>
                    </para>
                  </entry>
                  <entry colname="colspec1">
                    <para>Specify the width of the drawer when it is open.</para>
                  </entry>
                </row>
                <row>
                  <entry colname="colspec0">
                    <para>
                      <guilabel>Icon</guilabel>
                    </para>
                  </entry>
                  <entry colname="colspec1">
                    <para>Choose an icon to represent the drawer. Click
on the <guibutton>Icon</guibutton> button to display an icon selector dialog.
Choose an icon from the dialog and click <guibutton>OK</guibutton> to confirm your choice.</para>
                  </entry>
                </row>
                <row>
                  <entry valign="top">
                    <para>
                      <guilabel>Show hide buttons</guilabel>
                    </para>
                  </entry>
                  <entry valign="top">
                    <para>Select this option to display hide buttons on your
drawer. When you click one of the buttons, the drawer will close.</para>
                  </entry>
                </row>
                <row>
                  <entry valign="top">
                    <para>
                      <guilabel>Arrows on hide buttons</guilabel>
                    </para>
                  </entry>
                  <entry valign="top">
                    <para>Select this option to display arrows on the hide
buttons, if the hide buttons are enabled.</para>
                  </entry>
                </row>
              </tbody>
            </tgroup>
          </informaltable>
        </listitem>
        <listitem>
          <para>You can use the <guilabel>Background</guilabel> tabbed section
to set the background for the drawer. For information on how to complete the <guilabel>Background</guilabel> tabbed section, see <xref linkend="panel-properties"/>. You can also drag a color or image on to a drawer
to set the color or image as the background of the drawer. For more information,
 see <xref linkend="panel-properties-background"/>.</para>
        </listitem>
        <listitem>
          <para>Click <guibutton>Close</guibutton> to close the <guilabel>Drawer Properties</guilabel> dialog.</para>
        </listitem>
      </orderedlist>
    </section>
  </section>
  <section id="panel-default">
    <!-- a temporary home for things that should one day be in a greater list of panel objects -->
    <title>Default Panel Objects</title>
    
    <para>This section covers the panel objects that appear in the default GNOME desktop.</para>
    
    <section id="panel-windowselector"> 
      <title>Window Selector Applet</title>
      <!-- preserve for backwards compatibility: 2.12 -->
      <anchor id="gosmetacity-27"/>   
      <indexterm>
        <primary>top edge panel</primary>
        <secondary>window selector icon</secondary>
      </indexterm>
      <indexterm>
        <primary>window selector</primary>
        <secondary>top edge panel</secondary>
      </indexterm>
      <para>You can view a list of all windows
that are currently open. You can also choose a window to give focus to. To
view the window list, click on the <application>Window Selector</application>
applet. The following figure shows an example of the <application>Window Selector</application> applet:</para>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/openwindows_menu.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Window selector applet displayed from the top edge panel.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <para>To give focus to a window, select the window from the <application>Window Selector</application> applet.</para>
      <para>The <application>Window Selector</application> lists the windows in
all workspaces. The windows in all workspaces other than the current workspace 
are listed under a separator line.</para>
    </section>  

    <section id="panels-notification-area">
      <title>Notification Area Applet</title>
      <!-- preserve id for backwards compatibility: 2.12 -->
      <anchor id="gospanel-567"/>         
      <indexterm>
        <primary>applets</primary>
        <secondary>Notification Area</secondary>
      </indexterm>
      <indexterm>
        <primary>panel objects</primary>
        <secondary>Notification
Area applet</secondary>
      </indexterm>
      <indexterm>
        <primary>Notification Area applet</primary>
      </indexterm>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/notification_area_icon.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Notification Area icon.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <para>The <application>Notification Area</application> applet displays icons
from various applications to indicate activity in the application. For example,
when you use the <application>CD Player</application> application to play
a CD, a CD icon is displayed in the <application>Notification Area</application>
applet. The graphic above illustrates the CD icon in the <application>Notification
Area</application> applet. </para>
    </section>
     
    <section id="goseditmainmenu-65">
      <title>Menu Bar</title>
      <screenshot>
        <mediaobject>
          <imageobject>
            <imagedata fileref="figures/menu_bar_applet.png" format="PNG"/>
          </imageobject>
          <textobject>
            <phrase>Menu Bar applet. Menus: Applications, Places, System.</phrase>
          </textobject>
        </mediaobject>
      </screenshot>
      <para>The <application>Menu Bar</application> contains the 
      <guimenu>Applications</guimenu>, <guimenu>Places</guimenu>, and 
      <guimenu>System</guimenu> menus. You can access
  almost all of the standard applications, commands, and configuration options
  from the <application>Menu Bar</application>. For more on using the Menu Bar, see <xref linkend="menubar"/>.</para>
    </section>

<!-- This has been pasted from the Window List manual so that the Window List applet help is integrated into the GUG. -->
<!-- This section needs gross refactoring (making task-based for starters) -->

 <section id="windowlist">
  <title>Window List</title>

	 <para>The <application>Window List</application> applet enables you to manage the windows that are open on the GNOME desktop. Window List uses a button to represent each window or group of windows that is open. The state of the buttons in the applet varies depending on the state of the window that the button represents. The following table explains the possible states of the <application>Window List</application> buttons.</para>
	<informaltable>
	<tgroup cols="2">
	<colspec colname="col1"/>
	<colspec colname="col2"/>
	<thead>
	<row valign="top">
	<entry colname="col1"><para>State</para></entry>
	<entry colname="col2"><para>Indicates...</para></entry>
	</row>
	</thead>
	<tbody>
	<row valign="top">
	<entry colname="col1"><para>The button is pressed in.</para></entry>
	<entry colname="col2"><para>The window has focus.</para></entry>
	</row>
	<row valign="top">
	<entry colname="col1"><para>The button appears faded. The button text is surrounded by square brackets.</para></entry>
	<entry colname="col2"><para>The window is minimized.</para></entry>
	</row> 
	<row valign="top">
	<entry colname="col1"><para>The button is not pressed in, and is not faded.</para></entry>
	<entry colname="col2"><para>The window is displayed on the desktop and is not minimized.</para></entry>
	</row>
	<row valign="top">
	<entry colname="col1"><para>There is a number in parentheses at the end of the button title.</para></entry>
	<entry colname="col2"><para>The button represents a group of buttons. </para></entry>
	</row>
	</tbody>
	</tgroup>
	</informaltable>

<!-- ================ Usage ================================ -->
  <section id="windowlist-usage"> 
	 <title>Usage</title> 
	 <para>You can use <application>Window List</application> to perform the following tasks:</para>
	<itemizedlist>
	<listitem>
	<para>To give focus to a window</para>
	<para>If you click on the Window List button that represents a window that is on the desktop but does not have focus, the applet gives focus to the window. </para>
	</listitem>
	<listitem>
	<para>To minimize a window</para>
	<para>If you click on the Window List button that represents the window that has focus, the applet minimizes the window. </para>
	</listitem>
	<listitem>
	<para>To restore a minimized window</para>
	<para>If you click on the Window List button that represents a minimized window, the applet restores the window.</para>
	</listitem>
	</itemizedlist>
	
	<para>You can change the order of the Window List buttons by dragging a button to a different location on the Window List.</para>
	
  </section>
<!-- ============= Preferences ============================= -->
  <section id="windowlist-prefs"> 
	 <title>Preferences</title> 
	 <para>To configure the <application>Window List</application>, right-click 
	 on the handle to the left of the window buttons, then choose <guimenuitem>Preferences</guimenuitem>. 
	 The following preferences can be changed:</para>
    
    <!-- Maintained for compatibility -->
    <anchor id="windowlist-prefs-behavior"/>
    <anchor id="windowlist-prefs-size"/>
    
	 <variablelist>
	 <varlistentry><term><guilabel>Window List Content</guilabel> </term>
	 <listitem>
	 <para>To specify which windows to display in the Window List, select one of the following options: </para>
	 	<itemizedlist>
	 	<listitem>
	 	<para><guilabel>Show windows from current workspace</guilabel></para>
	 	<para>Select this option to only show the windows that are open in the current workspace.</para>
	 	</listitem>
	 	<listitem><para><guilabel>Show windows from all workspaces</guilabel></para>
	 	<para>Select this option to show the windows that are open in all workspaces.</para>
	 	</listitem>
	 	</itemizedlist>
	 </listitem>
	 </varlistentry>
	 
	 <varlistentry><term><guilabel>Window Grouping</guilabel> </term>
	 <listitem>
	 <para>To specify when the Window List should group windows that belong to the same application, select one of the following options: </para>
		<itemizedlist>
	 	<listitem>
	 	<para><guilabel>Never group windows</guilabel></para>
	 	<para>Select this option to never group windows of the same application under one button.</para>
		</listitem>
	 	<listitem>
	 	<para><guilabel>Group windows when space is limited</guilabel></para>
	 	<para>Select this option to group windows of the same application under one button when the space on the panel is restricted.</para>
		</listitem>
	 	<listitem>
	 	<para><guilabel>Always group windows</guilabel></para>
	 	<para>Select this option to always group windows of the same application under one button.</para>
		</listitem>
		</itemizedlist>
	 </listitem>
	 </varlistentry>
	 
	 <varlistentry><term><guilabel>Restoring Minimized Windows</guilabel> </term>
	 <listitem>
	 <para>To define how the Window List behaves when you restore windows, select one of the following options.</para>
	 	<itemizedlist>
	 	<listitem>
	 	<para><guilabel>Restore to current workspace</guilabel></para>
	 	<para>Select this option to restore a window from the applet to the current workspace, even if the window did not previously reside in the current workspace.</para>
	 	</listitem>
	 	<listitem><para><guilabel>Restore to native workspace</guilabel></para>
	 	<para>Select this option to switch to the workspace in which a window originally resided when you restore the window from the applet. </para>
	 	</listitem>
	 	</itemizedlist>
	 <para>These options are only available if <guilabel>Show windows from all workspaces</guilabel> is selected in the <guilabel>Window List Content</guilabel> section of the dialog.</para>
	 </listitem>
	 </varlistentry>
	 </variablelist>

  </section>
 </section>

  </section>
</chapter>