-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
2764 lines (2764 loc) · 101 KB
/
help.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=iso-8859-1">
<TITLE>XFce 3.7 Online Manual</TITLE>
<META NAME="GENERATOR" CONTENT="StarOffice/5.2 (Linux)">
<META NAME="AUTHOR" CONTENT="Olivier Fourdan ([email protected]">
<META NAME="CREATED" CONTENT="20001012;13552700">
<META NAME="CHANGEDBY" CONTENT="Ruediger Arp">
<META NAME="CHANGED" CONTENT="20001012;17001600">
<STYLE>
<!--
TH P { color: #000000 }
TD P { color: #000000 }
P { color: #000000 }
-->
</STYLE>
</HEAD>
<BODY TEXT="#000000" BGCOLOR="#ffffff">
<P ALIGN=CENTER><A NAME="XFce 34"></A><FONT SIZE=7><FONT COLOR="#000000">XFce
3.7</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="slogan.jpg" NAME="Grafik1" ALIGN=BOTTOM WIDTH=430 HEIGHT=80 BORDER=0>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm; line-height: 100%"><I><FONT SIZE=1><FONT COLOR="#000000">XFce
version 3.7 (c) 1997-2000 Olivier Fourdan ([email protected])</FONT></FONT></I>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm; line-height: 100%"><BR>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm; text-decoration: none"><A NAME="TOC"></A>
<FONT COLOR="#280099"><FONT SIZE=4><B>Xfce Help - Table of Contents</B></FONT></FONT></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Preamble"><SPAN STYLE="font-weight: medium"><U><FONT SIZE=2>Preamble</FONT></U></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><FONT SIZE=4><B>USER GUIDE</B></FONT></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#The main panel"><B><U><FONT SIZE=2>The
main panel</FONT></U></B></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Popup menus"><B><U><FONT SIZE=2>Popup
menus</FONT></U></B></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Setup & parameters"><B><U><FONT SIZE=2>Setup
& parameters</FONT></U></B></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Palette tabfolder"><SPAN STYLE="font-weight: medium"><U><I><FONT SIZE=2>Palette
tabfolder</FONT></I></U></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#XFce tabfolder"><SPAN STYLE="font-weight: medium"><U><I><FONT SIZE=2>XFce
tabfolder</FONT></I></U></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Windows tabfolder"><SPAN STYLE="font-weight: medium"><U><I><FONT SIZE=2>Windows
tabfolder</FONT></I></U></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Startup tabfolder"><SPAN STYLE="font-weight: medium"><U><I><FONT SIZE=2>Startup
tabfolder</FONT></I></U></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#The Window Manager"><B><U><FONT SIZE=2>The
Window Manager</FONT></U></B></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><U><FONT SIZE=2><A HREF="help.html#Main menu"><SPAN STYLE="font-weight: medium"><I>Main
menu</I></SPAN></A><SPAN STYLE="font-weight: medium"> </SPAN></FONT></U>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Window Menu"><SPAN STYLE="font-weight: medium"><U><I><FONT SIZE=2>Window
Menu</FONT></I></U></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Keyboard shortcuts"><SPAN STYLE="font-weight: medium"><I><FONT SIZE=2>Keyboard
shortcuts</FONT></I></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Mouse bindings"><SPAN STYLE="font-weight: medium"><I><FONT SIZE=2>Mouse
bindings</FONT></I></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><FONT SIZE=4><B>Other Xfce
Tools</B></FONT></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#The file Manager XFTree"><SPAN STYLE="text-decoration: none"><B><U><FONT SIZE=2>The
file Manager, XFTree</FONT></U></B></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Usage"><SPAN STYLE="text-decoration: none"><SPAN STYLE="font-weight: medium"><U><I><FONT SIZE=2>Usage</FONT></I></U></SPAN></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Keyboard shortcut"><SPAN STYLE="text-decoration: none"><SPAN STYLE="font-weight: medium"><U><I><FONT SIZE=2>Keyboard
shortcuts</FONT></I></U></SPAN></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#XFMouse"><SPAN STYLE="font-weight: medium"><SPAN STYLE="font-style: normal"><FONT SIZE=2>XFMouse</FONT></SPAN></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#XFSound"><SPAN STYLE="text-decoration: none"><SPAN STYLE="font-weight: medium"><U><SPAN STYLE="font-style: normal"><FONT SIZE=2>XFSound</FONT></SPAN></U></SPAN></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#XFPager"><SPAN STYLE="text-decoration: none"><SPAN STYLE="font-weight: medium"><U><SPAN STYLE="font-style: normal"><FONT SIZE=2>XFPager</FONT></SPAN></U></SPAN></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#XFbd"><SPAN STYLE="text-decoration: none"><SPAN STYLE="font-weight: medium"><U><SPAN STYLE="font-style: normal"><FONT SIZE=2>XFbd</FONT></SPAN></U></SPAN></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#xfgnome"><SPAN STYLE="text-decoration: none"><SPAN STYLE="font-weight: medium"><U><SPAN STYLE="font-style: normal"><FONT SIZE=2>xfgnome</FONT></SPAN></U></SPAN></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#xfterm"><SPAN STYLE="text-decoration: none"><SPAN STYLE="font-weight: medium"><U><SPAN STYLE="font-style: normal"><FONT SIZE=2>xfterm</FONT></SPAN></U></SPAN></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm; font-weight: medium; text-decoration: none">
<FONT SIZE=2><B><FONT SIZE=4>Technical Documentation</FONT></B> </FONT>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Compilation"><SPAN STYLE="text-decoration: none"><B><U><FONT SIZE=2>Compilation</FONT></U></B></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Installation"><SPAN STYLE="text-decoration: none"><B><U><FONT SIZE=2>Installation</FONT></U></B></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#XFwm commands"><SPAN STYLE="text-decoration: none"><B><U><FONT SIZE=2>XFwm
commands</FONT></U></B></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Advanced configuration options for xfwm"><I><FONT SIZE=2>Advanced
configuration options for xfwm</FONT></I></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><SPAN STYLE="text-decoration: none"><SPAN STYLE="font-weight: medium"><FONT SIZE=2><A HREF="help.html#Preparing the configuration file"><I>Preparing
the configuration file</I></A><I> </I></FONT></SPAN></SPAN>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Adding new entries"><I><FONT SIZE=2>Adding
new entries/submenus to the root menu</FONT></I></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#Removing existing keyboard shortcuts"><SPAN STYLE="text-decoration: none"><SPAN STYLE="font-weight: medium"><U><I><FONT SIZE=2>Removing
existing keyboard shortcuts</FONT></I></U></SPAN></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#License"><SPAN STYLE="text-decoration: none"><B><U><FONT SIZE=4><FONT COLOR="#000080">License</FONT></FONT></U></B></SPAN></A></P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><A HREF="help.html#GNU GENERAL PUBLIC LICENSE"><SPAN STYLE="text-decoration: none"><B><U><FONT SIZE=2>GNU
GENERAL PUBLIC LICENSE</FONT></U></B></SPAN></A></P>
<P ALIGN=LEFT STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=LEFT STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=LEFT STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=LEFT STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=LEFT STYLE="margin-bottom: 0cm"><BR>
</P>
<P ALIGN=CENTER><A NAME="Preamble"></A><FONT SIZE=2><U><B>Preamble</B></U></FONT></P>
<P><FONT SIZE=2><FONT COLOR="#000000">The XFce project was first
started because I needed a simple, light and efficient environment
for my Linux System.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">There are now a lot of good
environments and interfaces for Unix based systems, but most are
either too heavy, too expensive or even both !</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">I wanted something easy to use
and configure, stable, fast, and last but not least, visually
appealing...</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">I believe that the desktop
environment should increase user productivity. Therefore, the goal is
to keep most system resources for the applications and not to consume
all memory and CPU usage for what is used to display them.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">From version to version, XFce
has become more and more user configurable. As XFce is made for the
user, it has to be very simple to configure. That's why everything is
driven by the mouse, using buttons, drag and drop, etc., and the
configuration files are hidden from the user, although they are plain
text.</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_snap.jpg" NAME="Grafik2" ALIGN=BOTTOM WIDTH=512 HEIGHT=384 BORDER=0>
</P>
<P ALIGN=CENTER><FONT SIZE=1><I>Typical XFce desktop</I></FONT></P>
<P><A NAME="UserGuide"></A><A NAME="User Guide"></A><B><U><FONT SIZE=4><FONT COLOR="#000000">User
Guide</FONT></FONT></U></B>
</P>
<P><A NAME="main panel"></A><A NAME="The main panel"></A><B><U><FONT SIZE=2><FONT COLOR="#000000">The
main panel</FONT></FONT></U></B>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_panel.jpg" NAME="Grafik3" ALIGN=BOTTOM WIDTH=488 HEIGHT=42 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">The functions of the main panel
are:</FONT></FONT> <BR>
</P>
<UL>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Launch
applications</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Open
popup menus</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Switch
virtual desktop</FONT></FONT>
</P>
<LI><P><FONT SIZE=2><FONT COLOR="#000000">Give access to the
configuration of the desktop</FONT></FONT>
</P>
</UL>
<P><BR><FONT SIZE=2><FONT COLOR="#000000">The clock has no special
function, except showing the date as a tooltip, while the icons are
used to launch applications. You can select an analog or
digital clock by clicking with the left mouse button on the clock.</FONT></FONT>
<BR> <BR>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">To modify an icon on the main
panel, or associate a command to an icon, click on the corresponding
icon with the right mouse button.</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_action.jpg" NAME="Grafik4" ALIGN=BOTTOM WIDTH=201 HEIGHT=96 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">To change the label of a
virtual screen button, click on the button using the right mouse
button :</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_screen.jpg" NAME="Grafik5" ALIGN=BOTTOM WIDTH=169 HEIGHT=64 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">Note : The number of virtual
desktops is user configurable, from 2 to 10 desktops. See the
configuration section later in this manual for more details.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">On top of each icon, there is a
little tiny arrow. Each of these buttons opens a popup menu.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">Note : Some text based
applications, such as "vi" require a terminal (xterm) to be
opened. You can use the keyword "term" to start a terminal
before running the command</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">e.g.:</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">Command line : <TT>term vi</TT></FONT></FONT>
</P>
<P><A NAME="Popup menus"></A><B><U><FONT SIZE=2><FONT COLOR="#000000">Popup
menus</FONT></FONT></U></B>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_popup.jpg" NAME="Grafik6" ALIGN=BOTTOM WIDTH=132 HEIGHT=120 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">Popup menus are another way of
launching applications from the XFce panel.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">Each entry is associated with
an application that is launched when the menu entry is selected.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">Drag and drop from various file
managers (XFTree included, of course) is supported. For example, you
can drag a C source file onto the X-Edit entry and xedit will be
started and open the specified file.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">The item on the top of the
menu, called "Add icon...", is used to add new entries to
menu. Drag and drop is also supported, but it does not trigger the
same action. In fact, when you drop a file (preferably an executable)
an entry is automatically added to the corresponding menu with a
default icon. You can later change this icon by using the left mouse
button.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">The little tiny button at the
bottom of the menu is only visible if the option "Use tear-off
menu" is enabled. By clicking on this button you can "detach"
the menu. Once a menu is detached you can move it around your screen
and it stays opened even if an entry is selected, which is very
convenient.</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_popup_detached.jpg" NAME="Grafik7" ALIGN=BOTTOM WIDTH=82 HEIGHT=84 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">An existing entry can be
modified by using the right mouse button :</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_modify.jpg" NAME="Grafik8" ALIGN=BOTTOM WIDTH=258 HEIGHT=111 BORDER=0></P>
<P><A NAME="Setup & parameters"></A><B><U><FONT SIZE=2><FONT COLOR="#000000">Setup
& parameters</FONT></FONT></U></B>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">As stated before, XFce is very
intuitive. All customization can be performed through its graphical
user interface.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">For this purpose XFce provides
a setup dialog with 4 tabfolders : "Palette", "XFce",
"Windows" and "Startup".</FONT></FONT>
</P>
<P><A NAME="Palette tabfolder"></A><B><U><I><FONT SIZE=2><FONT COLOR="#000000">Palette
tabfolder</FONT></FONT></I></U></B>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">As XFce is based on the popular
GTK+ toolkit, it uses the .gtkrc style hidden configuration file
located in the user's directory. This enables all GTK+ applications
to share the same color scheme. While .gtkrc is usually copied from a
theme or written by hand, XFce is able to automatically generate the
.gtkrc file from the color values and font selected by the user in
the palette setup screen.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">XFce is able to determine
whether the .gtkrc file is customized by the user or not. If one
wants to build his own .gtkrc style or if one uses a style from GNOME
Control Center (gnomecc), XFce won't override it (as a result, if you
curently have a .gtkrc file in your home directory and you want XFce
to manage the style for you, you should remove or rename your current
~/.gtkrc file).</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">But if there is no .gtkrc file
in user's home directory or if it is empty, XFce will generate a
.gtkrc file so all GTK+ applications, including GNOME applications,
will share exactly the same look.</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_setup1.jpg" NAME="Grafik9" ALIGN=BOTTOM WIDTH=216 HEIGHT=214 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">A palette, from XFce's point of
view, is made of 8 colors and a font name. Each color is used to
display specific items in the XFce desktop: like the mouse pointer,
the default window background, the text fields, etc.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">The color you select for this
palette are shared by all XFce aware applications (XFTree, XFClock,
XFwm, etc.)</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">By clicking on one of the
colors, you can change it using the color selector :</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_colorsel.jpg" NAME="Grafik10" ALIGN=BOTTOM WIDTH=235 HEIGHT=140 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">The palette can be saved to
disk using the "Save..." button. You can retrieve it later
using the "Load..." button.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">You don't necessarily need to
save your palette to disk unless you want to share it with other
users. The current palette is automatically saved to a file in the
user's home directory so that XFce will have the same color scheme
when you restart it.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">The font used for displaying
text in XFce is selected in the XFce tabfolder.</FONT></FONT>
</P>
<P><A NAME="XFce tabfolder"></A><B><U><I><FONT SIZE=2><FONT COLOR="#000000">XFce
tabfolder</FONT></FONT></I></U></B>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_setup2.jpg" NAME="Grafik11" ALIGN=BOTTOM WIDTH=216 HEIGHT=299 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">This dialog gives access to all
XFce options :</FONT></FONT> <BR>
</P>
<UL>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Set
the delay before tooltips appear.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Let
XFce repaint the root window with the color of the screen button.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Use
a gradient instead of plain color (only available if previous option
is selected). This option has no effect on terminals with less that
256 colors, to reduce color usage.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Use
tear-off menus (see popup menus, earlier in this manual)</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">The
number of virtual screens available in XFce panel. From 2 to 10
screens are available.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">The
number of popup menus : You can choose to have from 0 up to 12 popup
menus in XFce panel !</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">The
size if icons displayed on the panel. If your pixmaps are larger
than the values specified, the images are automatically scaled to
fit the button.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">The
size of the icons in the popup menus. Same as above.</FONT></FONT>
</P>
<LI><P><FONT SIZE=2><FONT COLOR="#000000">The font used in XFce
applications (as for the palette, this font is shared by all XFce
applications)</FONT></FONT>
</P>
</UL>
<P><BR><U><FONT SIZE=2><FONT COLOR="#000000">Notes :</FONT></FONT></U>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">1. The option "repaint
root window" overrides any other application trying to use the
root window. As a result, if you specify a backdrop in xfbd, XFce's
backdrop manager, make sure you disable this option.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">2. By changing the size of the
icons, along with the number of popup menus available in XFce panel,
you can adapt XFce to all types of screens including small screens.</FONT></FONT>
</P>
<P><A NAME="Windows tabfolder"></A><B><U><I><FONT SIZE=2><FONT COLOR="#000000">Windows
tabfolder</FONT></FONT></I></U></B>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">This tabfolder is for managing
XFwm, the window manager, options.</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_setup3.jpg" NAME="Grafik12" ALIGN=BOTTOM WIDTH=216 HEIGHT=299 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">The behavior of the windows can
be tuned by using the following options :</FONT></FONT> <BR>
</P>
<UL>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Click
to focus windows : If you enable this option, you will have to click
inside a window to give it the keyboard focus. Otherwise the
keyboard focus will be given to the window below the mouse pointer.
If you move the pointer the focus moves accordingly.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">When
Autoraise window is enabled (this option is not available if "Click
to focus" is enabled) the windows with keyboard focus are
automatically raised, i.e. placed on top of all other windows.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Show
contents of windows during move/resize defines whether the whole
window or just an outline shadow should be shown during move/resize
operations. The outline shadow (ie if this option is not selected)
gives additional informations about the window position and
geometry. Please note that opaque move and resize can load your
system or your network if using Xfce on a remote X terminal,
by causing a lot of window exposure events.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Set
the size of the snap grid for windows. Window snapping is a very
convenient feature : When a window is moved such that it touches
another window or the screen edge it holds that position for a
moment. Using this feature, you can align windows quite easily by
just moving them till they hold then releasing them.</FONT></FONT>
<BR><FONT SIZE=2><FONT COLOR="#000000">"Snapsize" option
also drives the autodesk switch feature. <B>By setting a snapsize
lower or equal to 5, the autodesk switch is disabled.</B></FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">The
title bar of the active window can be painted using a solid or a
gradient color. Just select "Use gradient color for active
window" to use a gradient color.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">"Use
gradient color for inactive windows" is similar for inactive
windows. Please note that these options have no effect on terminals
with 256 colors or less.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">XFwm
automatically arrange the iconified windows on the screen. You can
specify where to place the icons by selecting top, left, bottom or
right.</FONT></FONT>
</P>
<LI><P><FONT SIZE=2><FONT COLOR="#000000">The 3 last fields are for
changing the fonts used by the window manager :</FONT></FONT> <BR><FONT SIZE=2><FONT COLOR="#000000">1.
Font used for titles.</FONT></FONT> <BR><FONT SIZE=2><FONT COLOR="#000000">2.
Font used for menus.</FONT></FONT> <BR><FONT SIZE=2><FONT COLOR="#000000">3.
Font used for icons.</FONT></FONT></P>
</UL>
<P><A NAME="Startup tabfolder"></A><BR><B><U><I><FONT SIZE=2><FONT COLOR="#000000">Startup
tabfolder</FONT></FONT></I></U></B>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">Using the options from this
screen you can adjust which XFce core modules (daemons/services) you
want to start when XFce starts.</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfce_setup4.jpg" NAME="Grafik13" ALIGN=BOTTOM WIDTH=216 HEIGHT=214 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">For example, if you don't want
the pager to be launched on startup, just unselect the option. Beware
that if a module is not started, the corresponding feature won't be
enabled : If you don't start xfsound, you won't get any sound in
XFce.</FONT></FONT>
</P>
<P><A NAME="The Window Manager"></A><B><U><FONT SIZE=2><FONT COLOR="#000000">The
Window Manager</FONT></FONT></U></B>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">XFwm is the window manager that
comes with XFce.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">It is fully integrated to the
environment, providing a homogeneous interface with all XFce
applications.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">Moreover, XFwm is able to
handle the most common window hints shared by popular applications
such as Motif, SUN Openwindows, KDE and GNOME applications.</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">Most user options are handled
through XFce setup and do not require any script customization
(although you'll find a description of XFwm functions in the
technical documentation of XFce).</FONT></FONT>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">Without any specific
customization XFwm provides a set of built-in menus and functions.</FONT></FONT>
</P>
<P><A NAME="Main menu"></A><B><U><I><FONT SIZE=2><FONT COLOR="#000000">Main
menu</FONT></FONT></I></U></B>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">The main menu can be obtained
by clicking on the root window with the right mouse button or by
pressing [Alt+F2]</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfwm_menu1.jpg" NAME="Grafik14" ALIGN=BOTTOM WIDTH=48 HEIGHT=93 BORDER=0></P>
<P><FONT SIZE=2><FONT COLOR="#000000">This menu provides an access to
the most common operations.</FONT></FONT> <BR>
</P>
<UL>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">New
window : Opens an xterm</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Shuffle
Up : Moves focus to the next window (but does not raise it)</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Shuffle
Down : Moves focus to the previous window (does not raise it either)</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Refresh
: Force a repaint of all mapped windows.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Arrange
Icons : Arrange icons on the current desktop according to the
position selected in XFce options (i.e. top, left, right, bottom)</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Mouse
: Opens XFMouse, the mouse configuration utility</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Backdrop
: Opens XFbd, the backdrop selector.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Sound
: Opens XFSound, XFce sound configurator.</FONT></FONT>
</P>
<LI><P><FONT SIZE=2><FONT COLOR="#000000">Quit XFwm : Opens a
sub-menu for restarting the window manager (and its modules such as
XFPager or XFce panel) or quit.</FONT></FONT>
</P>
</UL>
<P ALIGN=CENTER><BR><IMG SRC="xfwm_menu3.jpg" NAME="Grafik15" ALIGN=BOTTOM WIDTH=28 HEIGHT=33 BORDER=0></P>
<P><A NAME="Window Menu"></A><B><U><I><FONT SIZE=2><FONT COLOR="#000000">Window
Menu</FONT></FONT></I></U></B>
</P>
<P><FONT SIZE=2><FONT COLOR="#000000">The window menu can be obtained
by clicking on the root window with the middle mouse button (or both
left and right button, if you have only 2 mouse buttons) or by
pressing [Alt+F1]</FONT></FONT>
</P>
<P ALIGN=CENTER><IMG SRC="xfwm_menu2.jpg" NAME="Grafik16" ALIGN=BOTTOM WIDTH=47 HEIGHT=89 BORDER=0></P>
<UL>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Move
: Move the window around the screen. If no window is selected you
will be prompted to selected a window first.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Resize
: Change the size of a window</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000"> Iconify/Deiconify
: Hide the window and display a little icon in place.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Stick/Unstick
: When a window is "sticky" it stays on the screen even if
you switch to another desktop.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Shade/Unshade
: pull up the window and display just the title bar.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Maximize/Unmaximize
: Enlarge the window so it occupies all screen.</FONT></FONT>
</P>
<LI><P STYLE="margin-bottom: 0cm"><FONT SIZE=2><FONT COLOR="#000000">Close
: Close the window. If it is the main window of an application the
corresponding application is terminated. When an application is
overloaded it can refuse to respond this event.</FONT></FONT>
</P>
<LI><P><FONT SIZE=2><FONT COLOR="#000000">Send to : Send the window
to another workspace</FONT></FONT>
</P>
</UL>
<P ALIGN=CENTER><BR><IMG SRC="xfwm_menu4.jpg" NAME="Grafik17" ALIGN=BOTTOM WIDTH=50 HEIGHT=94 BORDER=0></P>
<UL>
<LI><P><FONT SIZE=2><FONT COLOR="#000000">Switch to : Display a list
of running applications and let you choose which one to focus</FONT></FONT>
</P>
</UL>
<P ALIGN=CENTER><BR><IMG SRC="xfwm_menu5.jpg" NAME="Grafik18" ALIGN=BOTTOM WIDTH=214 HEIGHT=182 BORDER=0></P>
<P STYLE="margin-bottom: 0cm"><A NAME="Keyboard shortcuts"></A><B><U><I><FONT SIZE=2><FONT COLOR="#000000">Keyboard
shortcuts</FONT></FONT></I></U></B> <BR>
</P>
<CENTER>
<TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0 BGCOLOR="#33ccff">
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+Tab</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Switch application (Next window)</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Alt+Tab</FONT></P>
</TD>
<TD>
<P ALIGN=RIGHT><FONT SIZE=2>Switch application (Previous window)</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Shift+Alt+arrow keys</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Move pointer (fast)</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Shift+Ctrl+arrow keys</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Move pointer (slow)</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F1</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Open window menu</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F2</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Open main menu</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F3</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Lower window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F4</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Close window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F5</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Next window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F6</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Previous window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F7</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Move window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F8</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Resize window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F9</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Iconify window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Alt+F10</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Maximize window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=53%>
<P><FONT SIZE=2>Ctrl+F1 to F10</FONT></P>
</TD>
<TD WIDTH=47%>
<P ALIGN=RIGHT><FONT SIZE=2>Switch to desktop 1 to 10</FONT></P>
</TD>
</TR>
</TABLE>
</CENTER>
<P><A NAME="Mouse bindings"></A><B><U><I><FONT SIZE=2><FONT COLOR="#000000">Mouse
bindings</FONT></FONT></I></U></B>
</P>
<P ALIGN=CENTER STYLE="margin-bottom: 0cm"><IMG SRC="title_legend.jpg" NAME="Grafik19" ALIGN=BOTTOM WIDTH=400 HEIGHT=80 BORDER=0></P>
<CENTER>
<TABLE WIDTH=100% CELLPADDING=0 CELLSPACING=0 BGCOLOR="#33ccff">
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P ALIGN=CENTER><FONT SIZE=2><U><B>Mouse button</B></U></FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2><U><B>Click</B></U></FONT></P>
</TD>
<TD WIDTH=19%>
<P ALIGN=CENTER><FONT SIZE=2><U><B>Context</B></U></FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=CENTER><FONT SIZE=2><U><B>Action</B></U></FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Button 1</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Open window's operations menu</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Double</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Button 1</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Close window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Left</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Button 1</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Open window's operations menu</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Button 3</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Stick/unstick window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Title bar</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Raise/move window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Double</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Title bar</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Maximize window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Left</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Title bar</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>shade/unshade window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Button 6</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>iconify window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Left</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Button 6</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>iconify window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Button 4</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Maximize/un-maximize window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Left</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Button 4</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Maximize/un-maximize window</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Left</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Button 5</FONT></P>
</TD>
<TD>
<P ALIGN=RIGHT><FONT SIZE=2>Shade/unshade window</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Button 5</FONT></P>
</TD>
<TD>
<P ALIGN=RIGHT><FONT SIZE=2>Shade/unshade window</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Left</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Button 2</FONT></P>
</TD>
<TD>
<P ALIGN=RIGHT><FONT SIZE=2>Close window</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Button 2</FONT></P>
</TD>
<TD>
<P ALIGN=RIGHT><FONT SIZE=2>Close window</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Left</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Single+Shift key</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Button 2</FONT></P>
</TD>
<TD>
<P ALIGN=RIGHT><FONT SIZE=2>Destroy window</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Single+Shift key</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Button 2</FONT></P>
</TD>
<TD>
<P ALIGN=RIGHT><FONT SIZE=2>Destroy window</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Root window</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Open main menu</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Middle</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Root window</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Open window's operations menu</FONT></P>
</TD>
</TR>
<TR VALIGN=TOP>
<TD WIDTH=21%>
<P><FONT SIZE=2>Left</FONT></P>
</TD>
<TD WIDTH=14%>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD WIDTH=19%>
<P><FONT SIZE=2>Root window</FONT></P>
</TD>
<TD WIDTH=46%>
<P ALIGN=RIGHT><FONT SIZE=2>Display list of running applications</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Middle</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Single</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Window border</FONT></P>
</TD>
<TD>
<P ALIGN=RIGHT><FONT SIZE=2>Move window</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Single+Shift key</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Window border</FONT></P>
</TD>
<TD>
<P ALIGN=RIGHT><FONT SIZE=2>Move window</FONT></P>
</TD>
</TR>
<TR>
<TD>
<P><FONT SIZE=2>Right</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Single+Shift key</FONT></P>
</TD>
<TD>
<P><FONT SIZE=2>Window border</FONT></P>
</TD>
<TD>