summaryrefslogtreecommitdiffstats
path: root/introduction-to-gnome/C/introduction-to-gnome.xml
blob: 6d10fab9ef5d084a2d5a5dddfd829b5951626326 (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
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
<?xml version="1.0"?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" 
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
  <!ENTITY legal SYSTEM "legal.xml">
  <!ENTITY appversion "2.0">
  <!ENTITY manrevision "2.0">
  <!ENTITY date "June 2002">
  <!-- Information about the entities
       The legal.xml file contains legal information, there is no need to edit the file. 
       Use the appversion entity to specify the version of the application.
       Use the manrevision entity to specify the revision number of this manual.
       Use the date entity to specify the release date of this manual.
       Use the app entity to specify the name of the application. -->
]>
<article id="index" lang="en">
  <articleinfo> 
  <title>Introduction to GNOME V&manrevision;</title>
    <copyright> 
      <year>2001</year> 
      <year>2002</year> 
      <holder>Alexander Kirillov</holder> 
    </copyright>
    <copyright> 
      <year>2000</year> 
      <year>2001</year> 
      <holder>Red Hat, Inc.</holder> 
    </copyright>
    <copyright> 
      <year>2000</year> 
      <year>2001</year> 
      <holder>David A. Wheeler</holder> 
    </copyright>
    <publisher> 
      <publishername> GNOME Documentation Project </publishername> 
    </publisher> 

   &legal;

 <authorgroup>
   <author>
    <firstname>Alexander</firstname>
    <surname>Kirillov</surname>		
	<affiliation> 
	  <orgname>GNOME Documentation Project</orgname> 
	  <address> <email>kirillov@math.sunysb.edu</email> </address> 
	</affiliation> 
      </author>
   <author>
    <firstname>David</firstname>
    <surname>Mason</surname>		
	<affiliation> 
	  <orgname>Red Hat, Inc.</orgname> 
	  <address> <email>dcm@redhat.com</email> </address> 
	</affiliation> 
      </author>
      <author>
	<firstname>David</firstname>
	<surname>Wheeler</surname>		
      </author>
    </authorgroup>
    <revhistory>
      <revision> 
	<revnumber>Introduction to GNOME V&manrevision;</revnumber> 
	<date>&date;</date> 
	<revdescription> 
	  <para role="author">
               Alexander Kirillov
	    	<email>kirillov@math.sunysb.edu</email>,
	    David C. Mason,  David A. Wheeler
	  </para>
	  <para role="publisher">GNOME Documentation Project</para>
	  <para>Updated for GNOME 2.0. Some descriptions and
	  screenshots are borrowed from <citetitle>GNOME Desktop 2.0
	  User Guide</citetitle> (May 2002), by Sun GNOME
	  Documentation Team <email>gdocteam@sun.com></email>,
	  published by GNOME Documentation Project</para>
	</revdescription> 
      </revision> 
      <revision> 
	<revnumber>Introduction to GNOME</revnumber> 
	<date>April 2001</date> 
	<revdescription> 
	  <para role="author">Alexander Kirillov
	    <email>kirillov@math.sunysb.edu</email>, 
            David C. Mason,  David A. Wheeler
	  </para>
	  <para role="publisher">GNOME Documentation Project</para>
	  <para>This version described GNOME 1.4</para>
	</revdescription> 
      </revision> 
    </revhistory> 



  <releaseinfo>
      This document was  last updated in June 2002. It describes GNOME
      2.0.   
    </releaseinfo>
    <legalnotice> <title>Feedback</title> <para> To report a bug or
      make a suggestion regarding this document, follow the directions
      in the <ulink url="ghelp:gnome-feedback" type="help">GNOME
      Feedback Page</ulink>.
      </para>
    </legalnotice> 

  </articleinfo>

<!-- ==================Section: ======================== -->
<sect1 id="whatisGnome">
    <title>What Is GNOME?</title>
    <para>    
      GNOME is a user-friendly graphical desktop environment for UNIX and
      UNIX-like systems.  GNOME includes a panel (for starting
      applications and displaying status), a desktop (where data and
      applications can be placed), a set of standard desktop tools and
      applications, and a set of conventions that make it easy for
      applications to cooperate and be consistent with each other.
      Users of other operating systems or environments should feel
      right at home using the powerful graphics-driven environment
      GNOME provides. GNOME runs on a number of UNIX-like operating
      systems, including Linux, FreeBSD, and Solaris. 
    </para>
   <para> GNOME is completely open source (free software) developed by
      hundreds of programmers around the world. Both the source code
      and ready-to-run binaries of GNOME are available for download on
      the Internet; they are distributed under the terms of the <ulink
      type="help" url="ghelp:gpl"> GNU General Public
      License</ulink> (and its cousins, <ulink type="help"
      url="ghelp:lgpl">Lesser General Public License</ulink> and
      <ulink type="help" url="ghelp:fdl">Free Documentation
      License</ulink> for libraries and documentation
      respectively). In particular, this means that everyone is free
      to use, copy or distribute GNOME. If you would like to learn
      more about the GNOME project please visit the <ulink
      url="http://www.gnome.org" type="http">GNOME website</ulink>.
   </para>
   <para>
      GNOME is highly configurable, enabling you to set your desktop
      the way you want it to look and feel.  GNOME supports many human
      languages, and more are added every month.  GNOME even supports
      several drag and drop protocols for maximum interoperability
      with non-GNOME applications.
   </para>

   <para>
    GNOME comes from the acronym for the GNU Network Object Model
    Environment (GNOME).  GNOME is a part of the larger GNU project,
    started in 1984 to develop a completely free UNIX-like operating
    system.  For more information, visit the <ulink
    url="http://www.gnu.org" type="http">GNU website</ulink>.  
    </para>
    <para>
      This guide describes GNOME 2.0 which is the latest (as of June 
      2002) release of GNOME. 
    </para>
  </sect1>

<!-- ==================Section: ======================== -->
<sect1 id="about">
    <title>Purpose of This Document</title>
    <para>
      This document gives you a short introduction to GNOME. It is not
      intended to cover all details of GNOME; if you need more
      information, you should read the detailed manuals listed in <xref
      linkend="otherinfo"/>. Also, this document assumes you already have
      GNOME installed; if you need help installing GNOME, please check
      the instructions on the <ulink url="http://www.gnome.org"
      type="http">GNOME website</ulink>.
    </para>
 
    <para> This document was written by the members of the GNOME
      Documentation Project (GDP). If you have any comments or
      suggestions about this document or if you can offer any other
      help in improving or translating GNOME documentation, please
      send an e-mail to <email>docs@gnome.org</email>, or visit the <ulink
      url="http://developer.gnome.org/projects/gdp/" type="http">GDP
      website</ulink>.
    </para>
    <para> The authors of this document assume that you are
      using the default configuration of GNOME (that is, default GTK
      theme and <application>Sawfish</application> window manager with
      <guilabel>Crux</guilabel> theme). GNOME is highly
      configurable, so it is easy to change not only the look but also
      the behavior of GNOME; however, we recommend that you do so only
      after you already have some experience with GNOME.
    </para>
  </sect1>
<!-- ==================Section: ======================== -->
<sect1 id="conventions">
    <title>Mouse Conventions Used in This Document</title> 
    <para>
      Before  describing GNOME, let us introduce some terms used not 
      only in this guide but in all GNOME documents. Most importantly,
      we need to clarify the use of mouse buttons and clicks. 
    </para>
    <para>
      Most GNOME documents assume that you are using a standard (for
      UNIX) 3-button mouse and talk about left, right, and middle
      mouse buttons; if a document says <quote>click</quote> without
      explicitly specifying the button, the left button is
      assumed. <!-- Some documents use notations <quote>mouse button
      1</quote>, <quote>mouse button 2</quote> and <quote>mouse button
      3</quote> (or MB1, MB2, MB3 for short) for left, middle, and
      right buttons respectively. -->
    </para>
    <para>
      If you are using a two-button mouse, you can emulate the middle
      mouse button by pressing left and right buttons simultaneously;
      if you have a wheel mouse, the wheel can be used in place of the
      middle mouse button.
    </para>
    <para>
      You can switch the roles of the buttons using the <application>Mouse
      preference tool</application> in the <guisubmenu>Desktop
      Preferences</guisubmenu> submenu of
      <guimenu>Applications</guimenu> menu. Many left-handers
      choose to reverse the right and left buttons. If you have done
      so, you need to use the right mouse button whenever a document
      instructs you to click, and use the <emphasis>left</emphasis> mouse
      button whenever a document talks about
      <quote>right-clicking</quote> or mouse button 3.
    </para>
    <para>
      If you use a mouse with an unusual placement of buttons, a
      trackball, or some other input device, you need to find out
      which buttons correspond to <quote>right</quote>,
      <quote>left</quote> and <quote>middle</quote>; this information
      can usually be found in the manual which came with your
      device. Usually, the <quote>left</quote> button (MB1) is the one
      under your index finger. 
    </para>

  </sect1>


<!-- ==================Section: ======================== -->
<sect1 id="firstglance">
    <title>First Glance at GNOME: Desktop and Panel</title> 
    <para>
      <xref linkend="desktop-fig"/> shows an example of GNOME
      running. GNOME is very configurable, so your screen may look
      quite different.
    </para>
<!-- figure -->
    <figure id="desktop-fig">
     <title>Sample GNOME Display.</title>
     <screenshot>	  
	<mediaobject> 
	  <imageobject><imagedata
		fileref="figures/typical_anno_desktop.png" format="PNG"/> 
	  </imageobject>
	  <textobject> 
	    <phrase>Figure of GNOME desktop, with menu panel, usual
	    panel, Nautilus window, and standard desktop icons: home
	    folder, Start here and Trash </phrase>
	  </textobject>
	</mediaobject>
    </screenshot>
   </figure>
<!-- /figure --> 
<!-- =======Subsection ============ -->
<sect2 id="panel">
      <title>Panel</title>
      <para>
	The two long bars at the top and bottom of <xref
	linkend="desktop-fig"/> are <emphasis>panels</emphasis>. The
	top one is called the menu panel, the bottom one is an edge
	panel (you can have more than one  edge panel). 
	  Panels can contain a number of useful objects, such as 
      </para>
      <variablelist>
        <!-- ############## -->
	<varlistentry>
	  <term><guibutton>GNOME Menu</guibutton> button</term>
	  <listitem>
	    <para>This is the button with the stylized footprint (in
	      the example of <xref linkend="desktop-fig"/>, it is the
	      left-most button on the top panel). Clicking this button
	      brings up a menu containing all GNOME applications and
	      commands, including the logout command.
	    </para> 
	  </listitem>
	</varlistentry>
        <!-- ############## -->
	<varlistentry>
	  <term>Other menus</term>
	  <listitem>
	    <para>
	      Panels can also contain other menus, either submenus of
	    the <guimenu>GNOME Menu</guimenu> or menus created by
	    the user. In the example above, the top panel contains
	    <guimenu>Applications</guimenu> and
	    <guimenu>Actions</guimenu> menus. Both are
	    actually submenus of the  <guimenu>GNOME Menu</guimenu>.
	    </para> 
	  </listitem>
	</varlistentry>

        <!-- ############## -->
	<varlistentry>
	  <term>Application launchers</term>
	  <listitem>
	    <para>These buttons start various programs.
	    </para> 
	  </listitem>
	</varlistentry>
        <!-- ############## -->
	<varlistentry>
	  <term>Panel applets</term>
	  <listitem>
	    <para>These are tiny programs designed to
	      work inside the panel. For example, the
	      <application>clock</application> applet on the far right
	      of the top panel    shows the current time, and the
	      <application>Window List</application> applet (in the
	      left side of the bottom panel) shows the list of all application
	      windows  on your desktop (this will be discussed in
	      detail in <xref linkend="tasklist"/>). 
	    </para> 
	  </listitem>
	</varlistentry>
      </variablelist>
      


      <para> As with all GNOME components, panels are highly
	configurable: you can add or remove application launchers and
	applets, edit the <guimenu>GNOME Menu</guimenu>, change the panel
	background, or even remove and create new panels. This will be
	discussed in <xref linkend="customizing-panel"/>. 
      </para>
      <note>
	<title>NOTE</title>
	<para>
	  The top panel in <xref linkend="desktop-fig"/> is called the
	  <emphasis>menu</emphasis> panel and has slightly different
	  properties than other panels. For example, you can not move
	  it to a different location.
	 </para>
	</note>
      <para>
	To configure an object, get help on it, or remove it
	from the panel, right-click on it and select the appropriate
	item from the popup menu. To hide the panel when you are not
	using it, click on one of the <guibutton>Hide
	buttons</guibutton>.  They are the small arrows at the ends of the
	panel.
      </para>
      <para>More panel operations are available from the
	<guimenu>Panel</guimenu> menu, which you can open by
	right-clicking in any vacant space on the panel (for example,
	in the hide arrows) and selecting
	<guisubmenu>Panel</guisubmenu> from the menu. The
	<guimenu>Panel</guimenu> menu also contains the <ulink type="help"
	url="ghelp:panel">Panel manual</ulink>, which describes
	all these options in detail.  </para>
    </sect2>
<!-- =======Subsection ============ -->
    <sect2 id="desktop"> 
      <title>Desktop</title> 
      <para>
	Everything outside the panel is called the 
	<quote>desktop</quote>. You can place icons for files, applications,
        and other items on the desktop (a default collection of icons is
        installed with GNOME).  You can then double-click on an item
        to use it:
      </para>
      <itemizedlist mark="bullet">
	<listitem>
	  <para>   
	    If the item is a program, that program will start.
	  </para>
	</listitem>
	<listitem>
	  <para>
	    If it is a data file, the appropriate program will start
	    up with that data loaded.
	  </para>
	</listitem>
	<listitem>  

	  <para>
	    If it is a folder (directory), the <application>File
	    Manager</application> will start and show the contents of
	    that directory. Your desktop will probably have an icon
	    showing a house and labeled as 
	    <guilabel><replaceable>yourname</replaceable>'s
	    Home</guilabel>. Double-clicking on this icon will start
	    the <application>File Manager</application> in your home
	    directory.
	  </para>
	</listitem>
      </itemizedlist>
      <para>
	The easiest way to place an item on the desktop is to drag a
	file from a file manager window, as described in detail in
	the <ulink type="help" url="ghelp:nautilus">Nautilus
	manual</ulink>. Once the item is placed on the desktop, you
	can move it around the desktop using the left mouse button, or
	you can click on it with the right mouse button to bring up
	the popup menu which allows you to delete the item or change
	its properties.
    </para>
    </sect2>

<!-- =======Subsection ============ -->
    <sect2 id="mouse"> 
      <title>Using the Mouse</title> 
      <para>    
	As you have already seen, you can do almost anything just by
	clicking with your mouse. Here are some conventions which work
	almost anywhere in GNOME:
      </para> 

      <itemizedlist mark="bullet"> 
	<listitem><para> 
	    Clicking on  an item with the left mouse button selects
	    (hilights) it. If you need to select several objects, hold down
	    the <keycap>Ctrl</keycap> key while clicking. 
	  </para></listitem>
	<listitem><para> 
	    Double-clicking on an item runs the default action for
	    this item (running an application, opening the file, etc.) 
	  </para></listitem> 
	<listitem><para> 
	    Clicking on an item with the right mouse button brings up
	    the context menu, which contains all the commands and
	    information available for this item. If you have selected
	    a group of items, right-clicking on any of them will bring
	    up the context menu which applies to all of these items.
	  </para></listitem>
	<listitem><para>
	    You can
	    select text anywhere on the screen using the left mouse
	    button, and then insert this text into any other place on
	    the screen which accepts text input, by clicking with the
	    <link linkend="conventions">middle mouse button</link>.
	  </para></listitem>
      </itemizedlist>
      <para>
	In addition, right-clicking on any vacant
	place on your desktop brings up the <guimenu>Desktop
	Background</guimenu> menu, which allows you to change the desktop
	background or other properties, or add a new object to the
	desktop. Clicking on the desktop with the middle mouse button
	produces the <guimenu>Root</guimenu> menu, provided by the
	window manager (see <xref linkend="windows"/>).  </para>
    </sect2>

<!-- =======Subsection:Logging out ============ -->
    <sect2 id="logout"> 
      <title>Logging Out</title> 
      
      <para> To log out of GNOME, click on the <guimenu>GNOME Menu</guimenu>
	button and select <guimenuitem>Log out</guimenuitem>. GNOME
	will prompt you for confirmation; it will also give you an
	option to save the session &mdash; that is, information about
	currently open applications and their location on the screen
	will be saved, so that when you login next time, the same
	applications will be in the same places (this only works for
	applications which are fully GNOME-compliant).
      </para>
    </sect2>
	
  </sect1>

<!-- ==================Section: working with windows =============== -->
<sect1 id="windows">
    <title>Working With Windows</title>
    <para>
      The X
      Window System, a graphical system used by all UNIX-like 
      operating systems, allows you to have several windows on your
      screen, with a different application running in each window. By
      itself, however, the X Window System can only do very low-level
      operations, so it is always used in combination with another
      piece of software, called a <emphasis>window manager</emphasis>. A
      window manager provides windows' frames, titlebar, and buttons.
      It also allows you to move, close, and resize windows. GNOME can
      work with many window managers. The most popular are <ulink
      type="http" url="http://sawmill.sourceforge.net">
      <application>Sawfish</application></ulink> (included as part of
      the GNOME distribution) and <ulink type="http"
      url="http://www.gnome.org/softwaremap/projects/Metacity">
      <application>Metacity</application></ulink>. Each window manager
      can use many different styles of window decorations and buttons.
      (This is referred to as the <quote>window manager
      theme</quote>.)  Since it is impossible to cover them all, in
      this section we only describe the default window manager shipped
      with GNOME, <application>Sawfish</application>, and its default
      theme, <guilabel>Crux</guilabel>. An example of the window
      titlebar using the <guilabel>Crux</guilabel> theme is shown in <xref
      linkend="cruxborder"/>
    </para>

<!-- figure -->
    <figure id="cruxborder">
     <title>Window Titlebar Using  Crux Theme.</title>
     <screenshot>
	<mediaobject> 
	  <imageobject><imagedata
		fileref="figures/titlebar_anno_window.png" format="PNG"/> 
	  </imageobject>
	  <textobject> 
	    <phrase>Titlebar in Crux style, focused. Close button in
	    the left side, minimize, maximize, and shade buttons on
	    the right. </phrase>
	  </textobject>
	</mediaobject>

    </screenshot>
   </figure>
<!-- /figure --> 
    <para>
      So, what can you do with windows?
    </para>
      <variablelist>
	<varlistentry>
	  <term>
	  Closing, Minimizing, and Maximizing Windows
          </term>     
	  <listitem>
	    <para> To <emphasis>close</emphasis> a window, click on
	      the <guibutton>Close Window</guibutton> button (with the
	      small <quote>x</quote>) in the window titlebar. If the
	      application has any unsaved data, it will prompt you to
	      save it.
	    </para>
	    <para>
	      To <emphasis>maximize</emphasis> a window, i.e. make it
	      fill the entire screen (except for the part taken by the
	      panels), click on the <guibutton>Maximize</guibutton>
	      button (middle button on the right side). Clicking on
	      this button once again will restore the window to its
	      original size.
	    </para>
	    <para> To <emphasis>minimize</emphasis> (sometimes also
	      called hide or iconify) a window, click on the
	      <guibutton>Minimize</guibutton> button. The window will
	      disappear from the screen. However, it is not lost: the
	      application in this window continues running, no data is
	      lost &mdash; it is just temporarily hidden. All
	      minimized windows are shown in the <link
	      linkend="tasklist"><application>Window List</application>
	      applet</link> and can be restored as described below.
	    </para>
	    <para> A convenient alternative to minimizing windows is
	      <emphasis>shading</emphasis> them. When you shade a window, it
	      <quote>rolls up</quote> into its own titlebar, so the
	      titlebar is the only part of the window left on the
	      screen. To shade a window, click on the 
	      <guibutton>Shade</guibutton> button; to unshade, click
	      on this button again. You can also shade and unshade a 
	      window by  double-clicking on the titlebar.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term>
	     Raising and Lowering Windows
          </term>     
	  <listitem>
	    <para> Windows on your screen can overlap, so that one of
	      the windows is <quote>on top</quote> of another. You can
	      <quote>raise</quote> a window (i.e., put it on top of
	      all others) by clicking on the window titlebar. You can
	      also switch a window from raised to lowered and back by
	      right-clicking in the titlebar, or by right-clicking
	      anywhere inside the window while holding down the 
	      <keycap>Alt</keycap> key.
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term>
	     Focus
          </term>     
	  <listitem>
	    <para> Of all the windows on your screen, only one is active
              (in computer parlance, <quote>focused</quote>), which means
              that anything you type on the keyboard will be sent to the
              application running in that window. (It does not mean that the
	      applications in other windows are idle &mdash; they can
	      be running as well.) To help you see which window has
	      focus, the titlebar of this window has a different color
	      (the left side is blue, as opposed to gray for all other
	      windows). To change the focus to another window, just click
	      anywhere in that window. You can also click in the
	      window titlebar to focus and raise the window
	      simultaneously.
	  </para>
	  <para>
	    You can also use the <keycombo><keycap>Alt</keycap>
	    <keycap>Tab</keycap> </keycombo> shortcut to switch
	    between windows. This cyclically switches all existing
	    windows. The window to which you switch is raised and
	    given focus.
	  </para>
	</listitem>
      </varlistentry>
      <varlistentry>
	  <term>
	     Moving and Resizing Windows
          </term>     
	  <listitem>
	    <para> To move a window, drag its titlebar to a new
	      location using the left mouse button (i.e., click in the
	      title bar and move the mouse without releasing the
	      button). You can also move a window by clicking anywhere
	      inside the window while holding down the
	      <keycap>Alt</keycap> key.
	    </para>
	    <para> 
	      To resize a window, place the mouse cursor on any of the
	      window borders  or corners. The
	      mouse cursor will change to an arrow pushing a line or
	      corner, allowing you to drag the border or corner to a new
	      position. 
	    </para>
	  </listitem>
	</varlistentry>
    </variablelist>


    <sect2 id="tasklist">
      <title>Window List Applet</title>
      <para>
	All the windows on your desktop (including the minimized ones)
	are shown in the <application>Window List</application>
	applet, located on your panel. For each window, a mini-icon
	and the beginning of the window title is shown. To restore a
	minimized window, just click on its title in the
	<application>Window List</application>
	applet. Right-clicking on the window title brings up the
	popup menu which allows you to shade a
	window, close it, etc. <!-- NEEDS WORK 
        or kill the application running in the
	window. The last option should only be used when an
	application is frozen and does not respond to <quote>close
	window</quote> command. If you kill an application, you lose
	all unsaved data! -->
      </para>
    </sect2>
    
    <sect2 id="wm-menus">
      <title>Window  Menu</title>
      <para>
	<application>Sawfish</application> also provides a menu for
	each window; this menu contains all the operations for this
	window described above, and then some. To access this menu,
	right-click on the <guibutton>Close</guibutton> button, or
	click anywhere inside the window with  the <link
	linkend="conventions">middle mouse button</link> while holding
	down the <keycap>Alt</keycap> key.
      </para>
    </sect2>
    <sect2 id="wm-desktop-menu">
      <title>Root Menu</title>
      <para>
        Finally, <application>Sawfish</application> also provides a 
	so-called <guimenu>Root</guimenu> menu. It can be accessed by
	clicking on any empty space of the desktop with the <link
	linkend="conventions">middle mouse button</link>. It contains
	the following items:
      </para>
      <variablelist> 
	<varlistentry>
	  <term>
	    <guimenuitem>Windows</guimenuitem>
          </term>     
	  <listitem>
	    <para>
	      Provides list of all windows, including minimized
	      ones. Selecting one of these windows restores it (if it
	      was minimized), and raises it over other windows. Very
	      convenient if you have so many windows that the one you
	      need is completely covered by others.  
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term>
	    <guimenuitem>Workspaces</guimenuitem>
          </term>     
	  <listitem>
	    <para>Allows you to switch from one workspace to another,
	    create and delete workspaces. See the <citetitle>GNOME Desktop
	    User Guide</citetitle>  for details. 
	    </para>
	  </listitem> 
	</varlistentry>
	<varlistentry>
	  <term>
	    <guimenuitem>Programs</guimenuitem>
          </term>     
	  <listitem>
	    <para>
	      Same as the <guisubmenu>Applications</guisubmenu> submenu
	      of the <guimenu>GNOME Menu</guimenu>.   
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term>
	    <guimenuitem>Customize</guimenuitem>
          </term>     
	  <listitem>
	    <para>
	      Allows the user to customize
	      <application>Sawfish</application> (see <xref
	      linkend="customizing-wm"/> for details).
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term>
	    <guimenuitem>Help</guimenuitem>
          </term>     
	  <listitem>
	    <para>
	      Provides links to the <application>Sawfish</application>
	      website, the <application>Sawfish</application> manual
	      (beware: this is not a user's manual but rather a manual
	      for people who write extensions/customizations to
	      <application>Sawfish</application> using the LISP
	      programming language), link to the <citetitle>GNOME User
	      Guide</citetitle>, and to the <ulink type="http"
	      url="http://www.gnome.org">GNOME website</ulink>.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>
    </sect2>
	      
  </sect1>

<!-- ==================Section: ======================== -->
<sect1 id="nautilus">
    <title>Nautilus: GNOME File Manager</title>
    <para>
      GNOME includes a <quote>graphical shell</quote>,
      <application>Nautilus</application>. It combines a file manager,
      a web browser, an FTP client, and much more. It also provides access
      to tools for customizing GNOME (thus replacing the 
      <application>GNOME Control Center</application> which was
      included in GNOME 1.4 and earlier releases).
    </para>

    <para>To open a new <application>Nautilus</application> window,
      choose the <menuchoice><guimenu>Applications</guimenu>
      <guimenuitem>Home folder</guimenuitem></menuchoice> in the
      <guimenu>GNOME Menu</guimenu>, or double-click on any folder
      icon on your desktop, such as the <guiicon>Home</guiicon> icon.
    </para>

    <sect2 id="nautilus-fm">
      <title>Managing Your Files With Nautilus</title>
<!-- figure -->
    <figure id="figure-nautilus">
     <title>Nautilus Window</title>
     <screenshot>
	<mediaobject> 
	  <imageobject><imagedata
		fileref="figures/naut_iconview_window.png" format="PNG"/> 
	  </imageobject>
	  <textobject> 
	    <phrase>Nautilus Window, in icon mode</phrase>
	  </textobject>
	</mediaobject>

    </screenshot>
   </figure>
<!-- /figure --> 

      <para>
	As most modern graphic file managers,
        <application>Nautilus</application> shows the contents of a
        selected folder using icons to represent files and
        subfolders. Double-clicking on any file or folder opens it
        (for data files, it starts the appropriate application which
        opens this file, as configured in the <application>File Types and
        Programs </application> preference tool). Right-clicking on a
        file or folder produces a popup menu.  Using this menu, you
        can delete or rename the file, view and change file properties
        or permissions, and more.
      </para>

      <para> <application>Nautilus</application> also provides an easy
	way to move and copy files between folders. To move a file
	from one folder to another, open these folders in separate
	<application>Nautilus</application> windows (you can use the
	<menuchoice><guimenu>File</guimenu><guimenuitem>New
	window</guimenuitem></menuchoice> command).  Select the file
	you want to move, and drag it from one window into another
	using the mouse. You can also drag a file or folder to the
	desktop. To copy a file, press-and-hold the <keycap>Ctrl</keycap>
	key while dragging the file.
      </para>
      <para>
	To delete files, drag them to the trash can icon on your
	desktop. 
      </para>
      <para> <application>Nautilus</application> provides many more
	tools to manipulate your files. It is also highly
	customizable, so you can easily change the way files are
	displayed (for example, you can choose a custom icon for a
	given file). For a detailed description of all these
	possibilities, read the <citetitle>Nautilus manual</citetitle>,
	available from the <guimenu>Help</guimenu> menu of
	<application>Nautilus</application>. 
      </para>
    </sect2>

    <sect2 id="nautilus-floppies">
      <title>
	Accessing Floppies and Other Removable Media</title>
      <para>
	To access files on floppy disks, CD-ROMs and other removable
	media, right-click on any vacant spot on the desktop and
	choose the required media from the
	<guisubmenu>Disks</guisubmenu> submenu of the 
	<guimenu>Desktop Background</guimenu> menu.  (This assumes your
	system is correctly configured, that is, you have the
	appropriate entry in <filename>/etc/fstab</filename>
	file.)  This will open a <application>Nautilus</application>
	window showing the contents of the selected media. 
      </para>
      <warning>
	<title>WARNING</title> 
	<para>
	  Before removing a floppy disk or other removable media
	  from the drive, you must
	  <orderedlist>
	    <listitem>
	      <para>
		   Close all windows  accessing files on this
		disk, including <application>Nautilus</application>
		windows, terminal windows, and others
	      </para>
	  </listitem>
	    <listitem>
	      <para>
		Unmount the disk by right-clicking on the disk icon on
		the desktop and choosing <guimenuitem>Unmount
		volume</guimenuitem> from the popup menu. 
	      </para>
	    </listitem>
	  </orderedlist>
	  If you remove the disk without unmounting it first, you may
	  lose data!
	</para>
      </warning>
    </sect2>
    <sect2 id="nautilus-cool">
      <title>Other Features of Nautilus</title>
      <para>
	In addition to the basic features listed above,
	<application>Nautilus</application> has many other advanced
	and exciting capabilities. Here we list some of them,
	referring the reader to the <citetitle>>Nautilus
	manual</citetitle> for detailed descriptions.
      </para>
      <itemizedlist>
	<listitem>
	  <para><application>Nautilus</application> can be customized
	    in many ways. In particular, you can change the background and
	    icons used for files and folders, and the fonts used for captions.
	  </para>
	</listitem>
	<listitem>
	  <para>You can assign a custom icon to a specific file, or
	    rescale the icon for a specific file, so that the most
	    important files really stand out. 
	  </para>
	</listitem>
	<listitem>
	  <para>You can assign an <quote>emblem</quote> (such as
	    <guilabel>New</guilabel> or <guilabel>Favorite</guilabel>)
	    to a file, which will be put on top of the file icon.
	  </para>
	</listitem>
	<listitem>
	  <para>Files can be sorted by name, type, modification date,
	    or the emblem you assigned to them. 
	  </para>
	</listitem>
	<listitem>
	  <para><application>Nautilus</application> can also be used
	    as a Web browser (with limited capabilities) and FTP client:
	    just enter the URL (for example,
	    <systemitem>ftp://ftp.gnome.org</systemitem>) in the
	    <guilabel>Go To</guilabel> field.
	  </para>
	</listitem>
	<listitem>
	  <para>
	    <application>Nautilus</application> can also be used
	    as a music player: just open a folder containing music files
	    in MP3 format, and  <application>Nautilus</application>
	    switches to music player  mode. 
	  </para>
	</listitem>
      </itemizedlist>
    </sect2>
  </sect1>


<!-- ==================Section: ======================== -->
<sect1 id="customizing">
    <title>Customizing GNOME</title>
    <para>
      GNOME is highly configurable &mdash; you can change almost
      anything: background color, key bindings, location of panels,
      contents of the <guimenu>GNOME Menu</guimenu>, and more. To see
      examples of different customizations of the GNOME desktop, take a
      look at the screenshots on the <ulink type="http"
      url="http://www.gnome.org/start/2.0/screenshots/index.html">GNOME
      website</ulink> and notice how different they look.
    </para>
    <para>The following sections list
      some of the most common customizations.  In addition, you can
      change properties of various items &mdash; most notably, panels
      and icons on your desktop &mdash; by clicking on them with the
      right mouse button and selecting
      <guimenuitem>Properties</guimenuitem> from the popup menu.
    </para>
    <para>
      Almost every GNOME application has its own preferences settings
      (look for <guimenu>Preferences</guimenu> or
      <guimenu>Settings</guimenu> in the menus), so you can change,
      for example, colors used by the <application>GNOME
      Terminal</application> or make it transparent &mdash; the
      possibilities are unlimited!
    </para>
    <sect2 id="customizing-desktop">
      <title>Desktop Preferences</title>
      <para>
	To customize the appearance of your desktop and user
	interface, use special <emphasis>desktop preference
	tools</emphasis>, which can be found in the <guisubmenu>Desktop
	Preferences</guisubmenu> submenu of the <guimenu>Applications
	</guimenu> menu. You can also access the preferences tools by
	double-clicking on the <guiicon>Start Here</guiicon> icon on your
	desktop. This will open a <application>Nautilus</application>
	window. Double-click on <guiicon>Preferences</guiicon> and
	then on the tool you require.
    </para>
    <para>
      Here we would like to give  an overview of the most commonly
      used preferences tools.
    </para>
    <variablelist>
      <varlistentry>
	<term>Background</term>
	<listitem> 
	<para>
	    This tool allows you to change desktop background. You can
	    select solid color, gradient (visual effect where one
	    color blends gradually into another color), or an image
	    file.  
	</para>
	  <tip>
	    <title>TIP</title>
	    <para>
	      You can also change the desktop background color by
	      right-clicking on the desktop background and choosing
	      <guimenuitem>Change Desktop Background</guimenuitem>, or
	      by dragging a color from another window or dialog to
	      the desktop background. 
	    </para>
	  </tip> 
      </listitem>
      </varlistentry>
      <varlistentry>
	  <term><guilabel>Theme</guilabel>
	  </term>
	  <listitem> 
	    <para>
	      This tool allows you to change the desktop theme (to be
	      precise, the GTK2 theme). A <emphasis>theme</emphasis> is a
	      collection of settings that determine the look of all menus,
	      panels, toolbars, scrollbars, checkbuttons and other elements
	      of graphical user interface for all GNOME applications. 
	    </para>
	    <para>
	      You can select one of the themes installed as part of your
	      GNOME distribution, or download and install more themes
	      from the Internet. In particular, you can find many GTK
	      themes at the <ulink type="http"
		url="http://sunshineinabag.co.uk/">Sunshine In a
		Bag</ulink> website (look for GTK2 themes).
	    </para>
	    <para>
	      Please note that a GTK2 theme will not change the appearance
	      of the window decorations,  (the borders, titlebars, and buttons in
	      window titlebar); this is determined by your window
	      manager settings and can be changed as described in <xref
		linkend="customizing-wm"/>. Also, a GTK 2 theme only
	      controls GNOME 2 applications. If you are using GNOME 1.x
	      applications in GNOME 2, their appearance will not be
	      affected (it is determined by a GTK1 theme which is
	      configured independently from the GTK2 themes).
	  </para>
	  </listitem>
	</varlistentry>

	<varlistentry>
	<term><guilabel>Font</guilabel>
	  </term>
	  <listitem> 
	  <para>
	      This tool allows you to choose the default font which will
	      be used by all menus, dialogs, and other user interface
	      elements. This overrides the font specified by your
	      desktop theme.   
	    </para>
	  </listitem>
	</varlistentry>
<!--	<varlistentry>
	<term><guilabel>Session</guilabel></term>
	  <listitem> 
	    <para>NEEDS WORK
	      In this section you can define
	      the startup programs (that is, programs that are run every
	      time you log in), enable or disable login hints and logout
	      confirmation dialog. 
	</para>
      </listitem>
      </varlistentry> -->
    </variablelist>
    </sect2>
    <sect2 id="customizing-wm">
      <title>Customizing the Window Manager</title>
      <para>
	To customize the <application>Sawfish</application> window
	manager, middle-click on the desktop and choose the
	<guimenuitem>Customize</guimenuitem> submenu. This submenu
	contains a number of customization tools. The same tools can
	also be accessed using <menuchoice>
	<guimenu>Applications</guimenu> 
	  <guisubmenu>Desktop Preferences</guisubmenu> 
	  <guisubmenu>Advanced</guisubmenu>
	  <guisubmenu>Sawfish</guisubmenu>
	</menuchoice>.
      </para>
      <para>
	The most popular customization tool is
	<guilabel>Appearance</guilabel>, which allows you to select
	the window manager theme (which determines the appearance of
	the window frame, titlebar, and buttons) and the font to use in the window
	titlebar. Other tools (such as the <guilabel>Bindings</guilabel>
	tool which allows you to specify keybindings for various
	window operations) are only recommended for advanced users.
      </para>
    </sect2>
    <sect2 id="customizing-panel">
      <title>Customizing Panels</title>
      <para>
	You can customize the GNOME panels as follows:
	<itemizedlist>
	  <listitem><para>
	      To remove a panel, right-click on a vacant space on the
	      panel and choose <guimenuitem>Remove this
	      panel</guimenuitem> from the panel popup menu. 
	    </para></listitem>
	  <listitem><para>
	      To create a new panel, right-click on a vacant space on
	      any existing panel and choose <guimenuitem>Create 
	      panel</guimenuitem> from the panel popup menu.
	    </para></listitem>
	  <listitem><para>
	      To move an existing panel to a new location, drag it
	      with the middle mouse button. 
	    </para>
	    <note>
	      <title>NOTE</title>
	      <para>The menu panel can not be  moved.</para>
	    </note>
	  </listitem>
	  <listitem><para>
	      To modify a panel's properties (background, size,
	      auto-hide),  right-click on a vacant space on the
	      panel and choose <guimenuitem>Properties</guimenuitem>
	      from the panel popup menu. 
	    </para></listitem>
	  <listitem><para>
	      To remove an object (menu, applet, or application launcher),
	      from the panel, right-click on the object and choose
	      <guimenuitem>Remove from panel</guimenuitem> from the
	      object popup menu. 
	    </para></listitem>
	  <listitem><para>
	      To add a new object to the panel, right-click on a
	      vacant space on the panel and choose
	      <guimenuitem>Add to panel</guimenuitem> 
	      from the panel popup menu. Alternatively, to add an
	      application from one of the menus as a launcher to the
	      panel,  right-click on the menu
	      item and choose <guimenuitem>Add this launcher to
	      panel</guimenuitem> from the popup menu.  
	    </para></listitem>
	  <listitem><para>
	      To move a panel object, drag it with the middle mouse
	      button. You can even drag an object from one panel to
	      another. 
	    </para></listitem>
	  <listitem><para>
	      To configure a panel object, right-click on it and choose
	      <guimenuitem>Properties</guimenuitem> from the popup
	      menu. 
	    </para></listitem>
	</itemizedlist>
      </para>
    </sect2>

  </sect1>

<!-- ==================Section: ======================== -->
<sect1 id="apps">
    <title>GNOME Applications and Utilities</title>
    <para>
      GNOME comes with many applications and utilities; in addition,
      GNOME allows you to use any third party applications such as
      <application>Netscape</application>), KDE applications, or other
      applications and utilities installed on your system. You can
      also use  GNOME 1.x applications under GNOME 2 (if you have
      installed appropriate GNOME 1.x libraries).
    </para>

    <para>
      Below is a partial list of some of the most useful tools and
      applications found in the <guimenu>GNOME Menu</guimenu>.
    </para>
    <note>
      <title>NOTE</title>
      <para>
	The contents of the <guimenu>GNOME Menu</guimenu> depends on the
	applications installed on your system. In addition, if you are
	using a copy of GNOME packaged by someone other than the GNOME
	project (for example, packaged as part of your Linux
	distribution), the menu is likely to be slightly different
	from the one described here. For example, distributors can add
	some distribution-specific applications to the menu, or even
	completely reorganize the menus. In this case refer to the
	documentation that came with your distribution. 
      </para>
    </note>

  
  <sect2 id="actions">
      <title>Actions Menu</title>
      <para>
	This submenu contains the following utilities. 
      </para>
      
      
      <variablelist>	
	<!-- ########## -->
	<varlistentry>
	  <term><guimenuitem>Run Program</guimenuitem>
	  </term>     
	  <listitem>
	    <para> 
	      This allows you to manually enter a command to run,
	      saving you from starting full-blown terminal emulator.  
	    </para>
	    <tip>
	      <title>TIP</title>
	      <para>
		You can also start the <application>Run
		Program</application> dialog by using the <keycombo>
		<keycap>Alt</keycap><keycap>F2</keycap></keycombo>
		shortcut.
	      </para>
	    </tip>
	  </listitem>
	</varlistentry>
	<!-- ########## -->
	<varlistentry>
	  <term><guimenuitem>Search for Files</guimenuitem>
	  </term>     
	  <listitem>
	    <para>This utility allows you to search for files and
	    folders on your system.  
	    </para>
	  </listitem>
	</varlistentry>
	<!-- ########## -->
	<varlistentry>
	  <term><guimenuitem>Screenshot</guimenuitem>
	  </term>     
	  <listitem>
	    <para> 
	      This utility takes a screenshot of your desktop and saves it in a
	      file. 
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>
    </sect2>

    <sect2 id="applications">
      <title>Applications Menu</title>

	
      <variablelist>	
	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>Accessories</guisubmenu>
	  </term>     
	  <listitem>
	    <para> These include office and productivity applications
	    such as:
            </para>     
	    <itemizedlist>

	  <!--     <listitem><para>
		  <application>Gnumeric</application>,
		  a full-featured Excel-compatible spreadsheet.
		</para>
                This is not under accessories.  On my menu this goes
		under Other.  Moving this to under Other.
	      </listitem>
	     <listitem><para>
		  <application>AbiWord</application>, a lightweight
		  word processing application.
		</para>
	      </listitem>    -->

	      <listitem><para>
		  <application>GNOME Calculator</application>
		</para>
	      </listitem>
	      <listitem><para> Several text editors, from the simple and
		  easy to use <application>Gnome editor</application>
		  (gedit), to (arguably) the most powerful text
		  editor ever created, <application>Emacs</application>
		  (which is not a GNOME application)
		</para>
	      </listitem>
	      <listitem><para>
		  <application>Dictionary</application>, allowing you
		  to look up a word in one of the many freely available
		  dictionaries on the Internet. 
		</para></listitem>

	    </itemizedlist>
	  </listitem>
	</varlistentry>


	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>Desktop Preferences</guisubmenu></term>     
	  <listitem>
	    <para>
	      This submenu contains preferences tools used to
	      customize your desktop; see <xref
	      linkend="customizing"/> for details. 
	    </para>
	  </listitem>
	</varlistentry>
	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>Games</guisubmenu></term>     
	  <listitem>
	    <para>	
	      Lots of them &mdash; just try!
	    </para>
	  </listitem>
	</varlistentry>
	<!--########## -->
	<varlistentry>
	  <term><guisubmenu>Graphics</guisubmenu>
	  </term>     
	  <listitem>
	    <itemizedlist>
	      <listitem><para> 
		  <application>Gimp</application> &mdash;
		  an image editing program for power users; it rivals
		  <application>Photoshop</application>.
		</para>
	      </listitem>
	      <listitem>
		<para>Image viewers such as <application>Eye of
		    GNOME</application>, <application>GQview</application> and
		  <application>gThumb</application>.
		</para>
	      </listitem>
	      <listitem>
		<para>
		  <application>GNOME Postscript Viewer</application>,
		  which can also be used for viewing PDF files. 
		</para>
	      </listitem>
	    </itemizedlist>
	  </listitem>
	</varlistentry>
	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>Internet</guisubmenu></term>     
	  <listitem>
	    <para>
	      Here you will find the <application>Galeon</application> web
	      browser. If you haven't used it before, give it a try
	      &mdash; you will never go back to
	      <application>Netscape</application>. 
	    </para>
	    <para>Depending on the
	      software installed on your system, you are also likely to find
	      here:
	    </para>
	    <itemizedlist>
	      <listitem>
		<para>		
                 <application>Netscape</application> web
	      browser
		</para>
	      </listitem>
	      <listitem><para> <application>X-Chat</application>, an 
		  Internet Relay Chat (IRC) client.
		</para></listitem>
		  <listitem><para>
		  <application>GNOME-ICU</application> for talking
		  with other people using ICQ protocol.
		</para></listitem> 
	      <listitem><para>
		  <application>gftp</application>, a graphical
		  tool for file transfers, supporting FTP, HTTP, and
		  SSH protocols. Note that the GNOME file manager,
		  <application>Nautilus</application>, also has
		  built-in FTP capabilities.
		</para>
	      </listitem>
	    </itemizedlist>
	  </listitem>
	</varlistentry>
	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>Other</guisubmenu></term>     
	  <listitem>
	    <para>
	      Shows all applications which do not belong to one of the
	      other categories. In particular, this submenu is likely
	      to contain many GNOME 1.x applications  such as
	      <application>AbiWord</application>, a lightweight word
	      processing application and
	      <application>Gnumeric</application>, 
                  a full-featured Excel-compatible spreadsheet. 
            </para>
	  </listitem>
        <!-- Hopefully I did the formatting is corrrectly. -->
	</varlistentry>

	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>Programming</guisubmenu></term>     
	  <listitem> 
	    <para><application>Bug report tool</application>.  Use this
	    tool to make suggestions and report bugs in GNOME
	    applications.
	    </para>
	  </listitem>
	</varlistentry>
	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>Sound &amp; Video</guisubmenu></term>     
	  <listitem>
	  <para>
	    Here you will find a <application>CD player</application>,
	    <application>Volume Control</application>, and an MP3
	    player <application>XMMS</application>.
	  </para>
	  </listitem>
	</varlistentry>
	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>System Tools</guisubmenu></term>     
	  <listitem>
	    <para>
	      This submenu contains various tools used for managing
	      your system, such as:
	    </para>
	    <itemizedlist>
	      <listitem>
		<para><application>System Monitor</application>. This
		  application can be used to view all processes (tasks)
		  currently running on your system and the resources
		  (memory and processor time)
		  they use. You can also use the <application>System
		    Monitor</application> to kill a frozen or otherwise
		  misbehaving application. 
		</para>
	      </listitem>
	      <listitem>
		<para>
		  <application>Configuration
		  Editor</application>. This tool is only recommended
		  for advanced users. It allows you to change
		  <emphasis>all</emphasis> settings used by GNOME
		  applications (unlike <link
		  linkend="customizing-desktop">preferences
		  tools</link> which only cover some of the
		  settings). However, it provides little assistance
		  or safeguards; it can easily make your system
		  completely unusable if you do not know what you are
		  doing.   
		</para>
	      </listitem>

	      <listitem>
		<para>
		  <application>Archive Generator</application>, a tool
		  for creating archive files. 
		  </para>
	      </listitem>

	      <listitem>
		<para>
		  <application>Floppy Formatter</application>, a tool 
                  for formatting floppy disks.
		  </para>
	      </listitem>
	    </itemizedlist>

	  <para> This submenu also contains tools for managing
	      software installed on your system, namely
	      <application>GnoRPM</application> and <application>Red
	      Carpet</application> (if you are using the distribution
	      of GNOME prepared by Ximian, Inc.).
	      <application>GnoRPM</application> allows you to view all
	      software packages installed on your system (if you are
	      using a distribution of Linux based on RPM packages,
	      such as Red Hat, SuSe, or Mandrake); it also allows you
	      to remove, update, or install new packages.
	      <application>Red Carpet</application> provides an
	      extremely easy, almost one-click, way to update your
	      GNOME installation.  Both of these utilities, however,
	      require that you have system administrator (root)
	      privileges.
	    </para>

	    <para>
	      And finally, the same submenu also contains various
	      terminal emulators (<application>xterm</application>,
	      <application>Color xterm</application>, and
	      <application>GNOME Terminal</application>) letting you use
	      the most powerful (but not the most user friendly) interface
	      ever created &mdash; the command line prompt. 
	    </para>

	  </listitem>
	</varlistentry>
	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>Help</guisubmenu></term>     
	  <listitem>
	    <para>
	      This starts the GNOME help browser,
	      <application>Yelp</application>, described in <xref
	      linkend="Gnome-docs"/>. 
	     </para>
	  </listitem>
	</varlistentry>
	<!-- ########## -->
	<varlistentry>
	  <term><guisubmenu>Home Folder</guisubmenu></term>     
	  <listitem>
	    <para>
	      This opens a new <application>Nautilus</application>
	      window showing the contents of your home folder.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>
    </sect2>
  </sect1>

<!-- ==================Section: ======================== -->
<sect1 id="trouble">
    <title>Help &mdash;  I Am in Trouble!</title>
    <para>
      Everyone runs into trouble sooner or later. Here is some
      advice on how to handle the  most common problems:
    </para>
    
    <sect2 id="kill-an-app">
      <title>Killing a Stalled Application</title>
      <para>
	If an application is stalled or frozen &mdash; that is, if it
	does not respond to your mouse clicks and keyboard commands,
	you can either wait and hope that it wakes up, or kill it. If
	you decide to kill it (NOTE: You will lose all unsaved data),
	start the <application>GNOME System monitor</application>
	(from <menuchoice> <guimenu>GNOME Menu</guimenu>
	<guisubmenu>Applications</guisubmenu> <guisubmenu>Sytem
	Tools</guisubmenu> </menuchoice>). Select the application you
	want to kill and click on <guibutton>End process</guibutton>
	button at the bottom. You can also right-click on the
	application name and choose <guimenuitem>End
	process</guimenuitem>; if it doesn't help, right-click and
	choose <guimenuitem>Kill process</guimenuitem>. Using the
	<application>GNOME System monitor</application> also allows
	you to find and kill all helper processes started by this
	application.
	</para>
      <para>
	If a GNOME application freezes or crashes (unexpectedly dies)
	repeatedly, you should file a bug report as described in the
	<ulink type="help" url="ghelp:gnome-feedback">GNOME feedback
	page</ulink>.
      </para>
    </sect2>
    <sect2 id="kill-X11">
      <title>My Whole System Froze!</title> 

      <para> If your whole system is frozen and is not responding, do not
      hurry to push the power  button on the computer
      &mdash; this is usually the worst solution. Most probably, it is
      not the operating system itself that is frozen (UNIX systems are
      known for stability), but just the graphical part, the X Window
      System. In this case, you can try to restart the X Window System by
      simultaneously pressing
     <keycombo>
    <keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>Backspace</keycap>
   </keycombo>.   This should work for
      the implementation of the X Window system used on Linux and *BSD,
      XFree86 (unless it was disabled by your system
      administrator). Of course, in this way you also lose all unsaved
      data, but at least you do not risk harming the whole file
      system.
      </para>
    </sect2>

<!--    <sect2 id="icons-messedup">
      <title>My GNOME Desktop Icons Are All Messed up!</title>
      <para> 
	This sometimes happens when upgrading from an older version of
	GNOME. In this case, try this trick: delete the file
	<filename>~/.GNOME/metadata.db</filename> (note the dot!), where
	<filename>~</filename> is your home directory, then log out and
	login again. If this didn't help, read on.
      </para>
    </sect2> -->

    <sect2 id="Gnome-messedup">
      <title>My Whole GNOME Configuration Is Messed Up!</title>
      <para> 
	If you have a serious  problem with your GNOME settings &mdash;
	for example, if your panel is missing &mdash; the radical solution
	is to remove all your GNOME configuration files and start from
	scratch. This is an emergency solution, as you lose all
	configuration settings and will need to configure your menus,
	panels, etc. again from scratch, that is, from the default GNOME
	configuration. However, this only affects your GNOME configuration,
	so your data files and settings for non-GNOME applications
	remain intact. 
      </para>
      <para> To remove all your GNOME configuration settings and return
	to the original GNOME configuration, logout then log in again
	holding down the keys <keycap>Ctrl</keycap> and
	<keycap>Shift</keycap>. (Do so immediately after entering your
	password in the login dialog.)  You will be presented with a dialog,
	offering you the choice of resetting the saved session (that is,
        the applications open when you last logged out); resetting
        your GNOME configuration settings; or both.  
      </para>
      <para>
	Finally, if you have really severe problems and your system
	freezes or becomes otherwise unusable as soon as you login,
	you have one last option. You can  select the
	<guimenuitem>Failsafe</guimenuitem> session type instead of
	the default <guimenuitem>GNOME</guimenuitem> in the login
	screen. Both GNOME and KDE Login Managers support this. In
	this session type, GNOME is not started; instead, you are
	presented with a single terminal window. This is almost
	guaranteed to start, and if you know how to use
	command-line tools to find and fix your problem, you have a
	chance. Otherwise, ask an expert.
      </para> 
    </sect2>
  </sect1>

<!-- ==================Section: ======================== -->
<sect1 id="otherinfo">
    <title>Where to Find More Information</title>
    <sect2 id="Gnome-docs">
      <title>GNOME Help System</title>
      <para>
	GNOME includes detailed documentation for the majority
	of applications, utilities and other components, such as the panel
	or the Nautilus file manager. To view a manual for an application,
	choose the <guimenu>Help</guimenu> menu in the application; to
	view help about the  panel or panel objects, right-click on it
	and choose <guimenuitem>Help</guimenuitem> from the popup
	menu. This will automatically launch the GNOME help browser,
	<application>Yelp</application>, showing the appropriate
	manual. 
      </para>
      <para>
	You can also start  <application>Yelp</application>  by
	choosing <menuchoice><guimenu>Applications</guimenu>
	  <guisubmenu>Help</guisubmenu> </menuchoice>. This will show the
	top-level help system page, listing all GNOME documents
	conveniently organized by topic.
      </para>

      <para> In addition to the manuals for individual applications,
	GNOME documentation also includes:
      </para>
      <variablelist> 
	<varlistentry>
	  <term>
	    <ulink type="help" url="ghelp:gnome2-user-guide">
	    <citetitle>GNOME Desktop 2.0 User Guide</citetitle>
	     </ulink>
          </term>     
	  <listitem>
	    <para> This user
	    guide provides a general overview of GNOME and detailed
	    documentation for core GNOME
	    components (such as the desktop, panel, Nautilus, and desktop
	    preferences tools).  
	    </para>
	  </listitem>
	</varlistentry>
	<varlistentry>
	  <term> <ulink type="help" url="gnome-help:unix-primer">
	    <citetitle>If you are new to UNIX/Linux...</citetitle>
	    </ulink>
	  </term>     
	  <listitem>
	    <para>
	      This short document gives the minimal necessary
	      information about UNIX and UNIX-like operating systems,
	      including such things as filenames, paths and
	      directories, permissions, symbolic links and most
	      confusing of them all, the notion of
	      <quote>mounting</quote>. If you have never used a UNIX system
	      before, be sure to read this.
	    </para>
	  </listitem>
	</varlistentry>
      </variablelist>

      <para><application>Yelp</application> can also be used for
      viewing non-GNOME documentation, such as man pages and info
	pages (see below).  
      </para>

    </sect2>
    <sect2 id="gnome-www"> 
      <title> GNOME Resources on the Internet</title>
      <para> 
	In addition to documentation shipped with GNOME, there is also
	a wealth of information available on the Internet. A good
	starting point is the <ulink type="http"
        url="http://www.gnome.org">GNOME website</ulink>. There you
        will find instructions for installing GNOME, reviews and tips,
        developer information, and more.
      </para>
      <para>
	If you can not find an answer to your question there, you
	may ask other GNOME users and developers on the GNOME mailing list
        (subscription instructions can be found <ulink type="http"
	url="http://mail.gnome.org/mailman/listinfo/gnome-list">here</ulink>).
	Note, however, that this list is for GNOME-related questions
        only (do not ask how to configure the X Window System, for instance),
        and it is impolite (to say the least) to ask a question without
        first checking if this question has already been answered in other 
        available documents such as the <ulink type="ghelp"
	url="ghelp:gnome2-user-guide">GNOME User Guide</ulink>. 
     </para>
      <para>
	Finally, if you use IRC (Internet Relay Chat), you can find
	other GNOME users and developers and ask questions on the 
	<systemitem>#gnome</systemitem> and
	<systemitem>#gnome-help</systemitem>  channels on
	<systemitem>irc.gnome.org</systemitem>.
      </para>
    </sect2>
    <sect2 id="not-Gnome-docs">
      <title>Everything Not GNOME</title>
      <para>
	You should realize that GNOME is just part of your computer
	system. If you want to unleash the full potential of your
	computer, you need to understand not just GNOME but also the
	underlying operating system (UNIX/Linux/FreeBSD), various
	tools and utilities included with it, and its graphics system
	(the X Window System). Each of these components usually comes with
	its own documentation. Most of UNIX commands and utilities are
        documented in so-called <quote>manual pages</quote>, or man pages
        for short. You can view them using the
	<application>Yelp</application> help browser
        (see <xref linkend="Gnome-docs"/>). This documentation is usually
        very detailed and more technical than most users would like.
        Another documentation format used by utilities from the
	GNU project is called <quote>info pages</quote>. They, too,
	can be viewed using <application>Yelp</application>. Many
	applications also have documentation in other formats. Sometimes
        it is not easy to find documentation for a given application &mdash;
        try looking in the directories  <filename>/usr/share/doc</filename>
	and <filename>/usr/doc</filename>.
      </para>
      <para> Documentation for the operating system itself varies from one
        system to another. The best advice is to check the printed manual
        which came with your system. For Linux, a good source of information
        is the Linux Documentation Project (LDP); you can read  their
        documentation on the Internet at <ulink type="http"
	url="http://www.linuxdoc.org">http://www.linuxdoc.org</ulink>.
	Virtually all Linux distributions also include copies of LDP
	documents; usually they are found at
	<filename>/usr/share/doc/LDP</filename> or
	<filename>/usr/share/doc/HOWTO</filename>.
      </para>
      <para> 
	And of course, there are a number of books available about all
	flavors of UNIX/Linux, GNOME, and about anything else you might
        be interested in. Check your local bookstore. 
      </para> 
    </sect2>
    <sect2 id="feedback">
      <title>Feedback</title>
      <para>
	If you have found a bug in one of the GNOME applications, or have
	some comments or suggestions regarding GNOME applications or
	documentation, please let us know! Instructions for submitting
	bug reports and comments are given in the <ulink type="help"
	url="ghelp:gnome-feedback">GNOME Feedback Page</ulink>. 
      </para>
    </sect2>
  </sect1>
</article>