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
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
|
<!-- <?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN"
"dtd/kdex.dtd">
To edit or validate this document separately, uncomment this prolog
Be sure to comment it out again when you are done -->
<chapter id="menu-items">
<chapterinfo>
<authorgroup>
<author>
<firstname>Neil</firstname>
<surname>Lucock</surname>
<affiliation>
<address><email>neil@nlucock.freeserve.co.uk</email></address>
</affiliation>
</author>
<author>
<firstname>Krishna</firstname>
<surname>Tateneni</surname>
<affiliation>
<address><email>tateneni@pluto.njcc.com</email></address>
</affiliation>
</author>
<author>
<firstname>Anne-Marie</firstname>
<surname>Mahfouf</surname>
<affiliation>
<address><email>annemarie.mahfouf@free.fr</email></address>
</affiliation>
</author>
<!-- TRANS:ROLES_OF_TRANSLATORS -->
</authorgroup>
</chapterinfo>
<title>The Menu and Toolbar Items</title>
<para>&kpresenter; presents different types of interfaces for you to interact
with the program. Perhaps the most familiar type of interface is the
menu which appears on the top of the &kpresenter; window.</para>
<para>Clicking on the menu items gives you a list of commands from which you
can choose the one you want. Many of the commands can also be accessed
directly by holding down &Ctrl; or &Alt; and pressing another key on
your keyboard. In the next section, each of the menu commands is
described in brief.</para>
<sect1 id="toolbars">
<title>The Toolbars</title>
<sect2 id="manipulating-toolbars">
<title>Manipulating the Toolbars</title>
<para>In addition to the menus, &kpresenter; also has a set of toolbars. Each
toolbar consists of a collection of icons. A toolbar icon often presents
a convenient shortcut to a command that is found in one of the menus.</para>
<screenshot>
<screeninfo>The toolbars</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="barstyle1.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>The toolbars</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>You can move the toolbar around by dragging the handle, shown here in red. Toolbars can
be <quote>docked</quote> or attached to any side of the &kpresenter;
window. If you like, you can also have the toolbar <quote>float</quote> in
its own window, separated from the main &kpresenter; window as shown in the
screenshot below:</para>
<screenshot>
<screeninfo>Floating toolbar</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="barstyle3.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Floating toolbar</phrase>
</textobject>
</mediaobject>
</screenshot>
<para> If you don't like dragging toolbars around,
<mousebutton>right</mousebutton> click on the handle and a menu pops up as shown
in the screenshot below: </para>
<screenshot>
<screeninfo>Toolbar context menu</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="barstyle4.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Toolbar context menu</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The first few items in the popup menu have to do with the placement of
the toolbar. You can choose any of the four sides of the &kpresenter;
window, or have the toolbar <quote>float</quote> in a separate
window. Choosing <guimenuitem>Flat</guimenuitem> hides the toolbar.
To unflat a hidden toolbar, &LMB; click on its handle.
</para>
<para>
Choosing the next item in the menu, <guisubmenu>Text Position</guisubmenu>, leads
to an additional menu which lets you control the appearance of the items
in toolbar. This additional cascading menu is shown in the screenshot
below:
</para>
<screenshot>
<screeninfo>The toolbar modes menu</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="barstyle5.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>The toolbar modes menu</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The default view of the toolbar is icons only. In this view, if you
don't know what a particular icon means, you can hold the mouse over the
icon, and after a second or so, a little hint pops up in a highlighted
text box as shown in the screenshot below:
</para>
<screenshot>
<screeninfo>Tooltips</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="barstyle6.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Tooltips</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
You can choose to display the toolbar items as text instead of icons, or
even to combine both icons and text. If you want both text and icons,
the cascading menu allows you to select whether the text appears beside
the icons or below them. All four styles of displaying toolbar items are
shown in the screenshot below:
</para>
<screenshot>
<screeninfo>The toolbar styles</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="barstyle7.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>The toolbar styles</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>
The &kpresenter; menus are discussed in the following sections.
</para>
</sect2>
</sect1>
<sect1 id="file-menu">
<title><guimenu>File</guimenu> Menu</title>
<variablelist>
<varlistentry>
<term><menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>N</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>New</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Begins a new presentation.</action> The
startup dialog will open, allowing you to choose a
template for your presentation.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>O</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu>
<guimenuitem>Open...</guimenuitem>
</menuchoice></term>
<listitem>
<para>
<action>Opens an existing presentation.</action> A standard &tde; file
open dialog will appear, allowing you to choose a file to open.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guisubmenu>Open Recent</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>
<action>Displays a list of recently opened files for you to choose
from.</action>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycombo action="simul">
&Ctrl;<keycap>S</keycap>
</keycombo></shortcut>
<guimenu>File</guimenu>
<guimenuitem>Save</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Saves the currently open presentation.</action> If you have not
previously saved it, you will be asked to name the file. If you have
previously saved the presentation, it will be resaved with the same name.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Save As...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Saves the currently open presentation with a new name.</action>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Reload</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Reload the currently active file.
<!-- FIXME: What's a situation when you might want to do this? -->
</para>
</listitem>
</varlistentry>
<varlistentry>
<term><menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Import...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Import a presentation that was previously created in
one of several common formats.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Export...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Export the currently open presentation to one of several common
formats for use in another application, or for exchange with someone
who does not have access to &kpresenter;.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Mail...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Open</action> a new email message in your selected email client with the current &kpresenter; document attached.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Create HTML Slideshow...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Starts the HTML wizard</action>, which is described in the
section <xref linkend="html-wizard"/>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Create Memory Stick Slideshow...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Starts the Memory Stick dialog</action>, which is described in the
section <xref linkend="ms-export"/>.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Template Manager</guimenu>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to save the current slide as a
template.</action> In future the template will be available for you to
use to build slides with. Creating a template is further discussed in
section <xref linkend="creating-templates"/>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Use Current Slide as Default Template</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Sets the current slide as your default template</action>.
Especially useful if you have created a template of your own to fit into
corporate style guidelines, or if you just use a particular layout very
often.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycombo
action="simul">&Ctrl;<keycap>P</keycap></keycombo></shortcut>
<guimenu>File</guimenu>
<guimenuitem>Print...</guimenuitem>
</menuchoice></term>
<listitem>
<para><action>Prints the presentation</action>. More precisely, it opens the
print settings dialog, where you can adjust the settings before printing
your presentation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Print Preview...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Displays the presentation</action> with a &PostScript; viewer,
exactly as it would look if printed.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu>
<guimenuitem>Document Information</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to enter information about the document.</action>
This includes information about the author, and an abstract on the
documents contents.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>W</keycap></keycombo></shortcut>
<guimenu>File</guimenu>
<guimenuitem>Close</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Close the current presentation.</action> You will be given an
opportunity to save any changes first.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>Q</keycap></keycombo></shortcut>
<guimenu>File</guimenu>
<guimenuitem>Quit</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Close</action> &kpresenter;. You will be given an opportunity
to save all changes in all open presentations first.</para>
</listitem>
</varlistentry>
</variablelist>
</sect1>
<sect1 id="edit-menu">
<title><guimenu>Edit</guimenu> Menu</title>
<variablelist>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>Z</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Undo: <replaceable>Last task</replaceable></guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Undo the last action you performed.</action></para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;&Shift;<keycap>Z</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Redo: <replaceable>Last undone
task</replaceable></guimenuitem>
</menuchoice></term>
<listitem>
<para><action>Redo the last action you undid.</action> If you have not undone
any actions, or the last undo action is not reversible, this menu item
is disabled.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycombo
action="simul">&Ctrl;<keycap>X</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Cut</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Copy the selected item to the clipboard, and remove it from the
document.</action></para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>C</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Copy</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Copy the selected item to the clipboard, while leaving it intact
in your presentation.</action></para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>V</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Paste</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Insert the contents of the clipboard into your
presentation.</action></para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>Delete</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Delete</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Remove the currently selected item from your
presentation.</action></para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>A</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Select All</guimenuitem>
</menuchoice></term>
<listitem>
<para>
<action>Select all the objects and text on the current slide.</action>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;&Shift;<keycap>A</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Deselect</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Deselect any currently selected objects.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>F</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu>
<guimenuitem>Find...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Search for text within the presentation.</action>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycap>F3</keycap>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Find Next</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Find the next occurrence of a piece of text within a presentation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Shift;<keycap>F3</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Find Previous</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Find the previous occurrence of a piece of text within a
presentation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>R</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Replace...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Replace one or more occurrences of a piece of text in
your presentation with a different piece of text.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Edit</guimenu>
<guimenuitem>Copy Slide</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Copy the current slide to the clipboard.</action></para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Edit</guimenu>
<guimenuitem>Duplicate Slide</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Insert an exact copy of the current slide.</action></para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Edit</guimenu>
<guimenuitem>Delete Slide</guimenuitem>
</menuchoice></term>
<listitem>
<para><action>Delete the current page from the presentation.</action> You
will be asked to confirm this action.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Edit</guimenu>
<guimenuitem>Duplicate Object...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Create a duplicate of the currently selected object. A dialog will
display allowing you to set some options for the duplicate, ⪚ if it
should be rotated, or scaled, or offset to a new position on the
slide.</para>
</listitem>
</varlistentry>
</variablelist>
</sect1>
<sect1 id="view-menu">
<title><guimenu>View</guimenu> Menu</title>
<variablelist>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>New View</guimenuitem>
</menuchoice></term>
<listitem>
<para><action>Opens another window with the same presentation loaded</action>
so you can work on more than one slide at a time.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;&Shift;<keycap>W</keycap></keycombo></shortcut>
<guimenu>View</guimenu>
<guimenuitem>Close All Views</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Close all views on the presentation.</action> You will be given
a chance to save any changes, or to cancel closing.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Split View</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Splits the window into two (or more) views on the same
presentation.</action> The default split is horizontal.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Remove View</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Close only the currently active view</action>. The
presentation, and any other views you have open, remain open, and any
changes you have made remain unsaved.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guisubmenu>Splitter Orientation</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>Toggle the split view</action> between
<guimenuitem>Horizontal</guimenuitem> (the default) and
<guimenuitem>Vertical</guimenuitem>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Show Sidebar</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Toggle the display of the sidebar</action> where you can
see an overview of all the slides in your presentation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Show Notebar</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Toggle the display of the notebar</action> where you can
see an overview of all the notes in your presentation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Slide Master</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Toggle the display of the slide master</action> where you can put objects that you want to appear on each slide in your presentation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Formatting Characters</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Show a visual representation of <quote>non-printing
characters</quote>, such as tabs and paragraph markers. This can be
a useful aid to precisely positioning text.</para>
<para>This item can be toggled. If enabled, formatting characters are
visible; if disabled, they are not.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Guide Lines</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>When working in &kpresenter; you can drag a <quote>guide
line</quote> from either the horizontal or vertical ruler onto your
document. This guide-line will not print or display in the finished
presentation, it is simply to help you align objects on screen. If
this item is enabled, these guide lines will be visible. If this is
disabled, they will not be visible.</para>
<para>Guide lines work across slides, allowing you to align objects the
same way across multiple slides.</para>
<para>Disabling (hiding) guide lines does not delete them. If you have
created guide lines, and then disabled this item, enabling it again
will retain the guide lines you created.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Add Guide Line...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
Opens a dialog to select the <guilabel>Orientation</guilabel>
(<guilabel>Horizontal</guilabel> or <guilabel>Vertical</guilabel>)
and choose a <guilabel>Position:</guilabel>
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guimenuitem>Show/Hide Grid</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>If enabled, &kpresenter; will display a grid of dots
representing the intersections of imaginary horizontal and vertical
lines. You can use these dots to precisely position objects on the
slide.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><menuchoice><guimenu>View</guimenu><guimenuitem>
Snap to Grid</guimenuitem></menuchoice>
</term>
<listitem><para>If this is enabled, when dropping or moving objects on the
slide the top left corner of the object will <quote>snap</quote> or
move, to the nearest grid point.</para>
<para>This does reduce your freedom to freely position objects on the
slide, however it also helps to line up objects precisely. It is
easily disabled or enabled with this menu entry, allowing you the best
of both worlds.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu>
<guisubmenu>Zoom</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>This submenu allows you to zoom in or out of the
slide. Several predefined zoom levels are available, including
<guimenuitem>Whole Slide</guimenuitem> to scale the entire slide so as
to be visible in the size window you have open, and
<guimenuitem>Width</guimenuitem> to scale the slide so it fills the
entire width of the window, although you may now have to scroll
vertically. There are also several other scaling choices, from
<guimenuitem>33%</guimenuitem> up to
<guimenuitem>500%</guimenuitem>.</para>
</listitem>
</varlistentry>
</variablelist>
</sect1>
<sect1 id="insert-menu">
<title><guimenu>Insert</guimenu> Menu</title>
<variablelist>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Alt;&Shift;<keycap>C</keycap></keycombo>
</shortcut>
<guimenu>Insert</guimenu>
<guimenuitem>Special Character...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Insert a special character. This might be a character
you don't have a key for on your keyboard layout, for instance ü
on a US Keyboard.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu>
<guisubmenu>Variable</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>Here you can insert a variable that is filled in with a
value that may be updated as you update the document.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu>
<guimenuitem>Link...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Insert a hyperlink to a file, a website, or an email
address. This enables these locations to be linked to directly from within active presentations, with resources being handled as appropriately by other applications installed on your system.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu>
<guimenuitem>Comment...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Enter a small note that does not display during the
real presentation. You might use this to comment on a colleague's
text, or to leave a note for yourself about something to do
later.</para>
<!-- FIXME: How do you display these again? -->
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycap>F2</keycap></shortcut>
<guimenu>Insert</guimenu>
<guimenuitem>Slide...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>
<action>Add a new page to your presentation.</action> A dialog will open
allowing you to choose a template, and whether to insert the new page
before or after the currently selected page.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu><guimenuitem>File...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Insert an already existing presentation.</action> A standard &tde; file
open dialog will appear, allowing you to choose a <guilabel>&kpresenter; Document</guilabel> (.kpr) or a
<guilabel>OASIS OpenDocument Presentation</guilabel> (.odp), which will be inserted after the last slide in your current presentation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycap>F10</keycap></shortcut>
<guimenu>Insert</guimenu><guimenuitem>Text</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Add a new text object. Click and drag to create a frame where
you wish the text to appear.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu>
<guimenuitem>Chart</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Insert a chart. Click and drag to define the size of the
chart. Some default data will be displayed. Double click to edit the
data and choose the type of chart to display, using the embedded
&kchart; editor.</para>
<!--<para>FIXME: KChart has it's own help file, but a brief overview of
charting in this doc wouldn't go astray either.</para>-->
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycap>F5</keycap></shortcut>
<guimenu>Insert</guimenu><guimenuitem>Table</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Insert a table. Click and drag to define the size of
the table.</para>
<para>A &kspread; open dialog will display. You may import a
spreadsheet that you have saved in one of many formats, including
plain text files. You may also choose to create a new and empty
table.</para>
<para>Double clicking on the table will allow you to edit the
contents.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu>
<guisubmenu>Object</guisubmenu>
</menuchoice>
</term>
<listitem>
<!--<para>FIXME: This needs a section of it's own</para>-->
<para>An object is an embeddable file, in one of many formats.</para>
<para>A common use of this action is to insert scaleable clipart in
vector format.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Shift;<keycap>F5</keycap></keycombo>
</shortcut>
<guimenu>Insert</guimenu>
<guimenuitem>Picture...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Insert a raster image.</action> These are not as easily
scaleable as vector images or <quote>clipart</quote>. &kpresenter;
currently understands many formats, including <literal
role="extension">.tiff</literal>, <literal
role="extension">.jpg</literal>, <literal
role="extension">.png</literal> and many more.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu>
<guisubmenu>Line</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>You can insert several types of lines. Line drawing is described
further in the drawing tools<!-- FIXME: Make a drawing tools section --> section.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu>
<guisubmenu>Shape</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>You can insert several prepared shapes, in vector format. These are
editable just like lines you have drawn yourself. Using the drawing
tools is described in detail in the drawing tools
section.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu>
<guimenuitem>Scan Image...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Scan an image with a scanner.</action> This requires you have a
scanner installed. It opens the <guilabel>Acquire Image</guilabel> dialog to allow the use of the scanner.<!--FIXME: Document how to set up a scanner that &kpresenter; can
use.--></para>
</listitem>
</varlistentry>
</variablelist>
</sect1>
<sect1 id="format-menu">
<title><guimenu>Format</guimenu> Menu</title>
<variablelist>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guimenuitem>Select</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>If you have been using a tool such as the line drawing tool which does
not allow you to select other objects, you can use this menu item to
return to the normal selection cursor.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guimenuitem>Rotate</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Changes the cursor to a double headed curved arrow. Click with the &LMB; onto an object
and keep the button pressed.Drag with the cursor to rotate the object on the slide around its center. When you are
happy with the position of the object, release the mousebutton to stop
rotating.</para>
<para>If you change your mind and wish to cancel the rotation, use
<menuchoice><guimenu>Edit</guimenu><guimenuitem>Undo</guimenuitem>
</menuchoice> to later undo it.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guimenuitem>Zoom</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Allow you to zoom in or out in the current slide. You can see the zoom factor in the <guilabel>Edit</guilabel> toolbar, in the zoom indicator.</para>
<screenshot>
<screeninfo>The <guilabel>zoom factor</guilabel> indicator</screeninfo>
<mediaobject>
<imageobject>
<imagedata format="PNG" fileref="zoomfactor.png"/>
</imageobject>
<textobject>
<phrase>The <guilabel>zoom factor</guilabel> indicator</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>Left clicking on the slide will <guimenuitem>Zoom In</guimenuitem>. Right clicking on the current slide will present you a menu to allow you to <guimenuitem>Zoom In</guimenuitem>, to <guimenuitem>Zoom Out</guimenuitem>, to <guimenuitem>Zoom Entire Slide</guimenuitem>, to <guimenuitem>Zoom Slide Width</guimenuitem> or <guimenuitem>Zoom Slide Height</guimenuitem>, to <guimenuitem>Zoom Selected Objects</guimenuitem> or <guimenuitem>Zoom All Objects</guimenuitem> which put back all objects in your view.
</para>
<para>This action has the same effect as <menuchoice><guimenu>View</guimenu><guimenuitem>Zoom</guimenuitem>
</menuchoice> on another form.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guimenuitem>Properties</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Open</action> the <guilabel>Properties</guilabel> dialog for the currently selected object on your slide.</para>
<screenshot>
<screeninfo>The <guilabel>Properties</guilabel> dialog</screeninfo>
<mediaobject>
<imageobject>
<imagedata format="PNG" fileref="properties.png"/>
</imageobject>
<textobject>
<phrase>The <guilabel>Properties</guilabel>dialog</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>The <guilabel>Properties</guilabel> dialog for an object allows you to manipulate it in a
very detailed manner. You can change several properties for the selected object, like the text color if the object is text or the depth if the object is a picture.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guisubmenu>Arrange Objects</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>This is where you can manipulate the stacking order of
objects on the slide.</para>
<para>An object that is on top will cover, either partially or fully
depending on its size, all other objects beneath it. Meanwhile an
object on the bottom of the stack may not be visible at all, as it is
covered up by other objects. An object in the middle may be partially
covered by other objects, while partially covering yet more objects
itself.</para>
<para>You can send the selected object down or up a layer, or directly
to the top or bottom of the stack.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guisubmenu>Align Objects</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>In the submenu you can quickly align all the currently
selected objects with a side of the slide, or center them either
vertically or horizontally.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>G</keycap></keycombo>
</shortcut>
<guimenu>Format</guimenu>
<guimenuitem>Group Objects</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>If you are drawing, you might want to make something out of
several objects. Arrange the individual parts where you
want them, select one, then hold down the &Ctrl; key
as you click in the others you want to group together. Click
<guimenuitem>Group Objects</guimenuitem> and from then on they act as
if they are just one thing. It glues things together.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;&Shift;<keycap>G</keycap></keycombo>
</shortcut>
<guimenu>Format</guimenu>
<guimenuitem>Ungroup Objects</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>If you decide that you want to alter an object that is made out
of several pieces, you can unglue it with this tool. Click somewhere
away from the object to deselect it, then click to select one of its
parts.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guimenuitem>Shadow Objects...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>This puts a colored copy of either text or a drawn object behind
it. You can make nice <quote>dropped shadows</quote> for logos with
this tool. To enable this item, ensure that you have object(s)
selected (you will see the six small black boxes around the
outline.) You choose the color, select which way the shadow is going to
fall and select a distance. For text it looks nice if you set the
distance to two or three. Click <guibutton>Apply</guibutton>
to see the result of your settings for all selected objects on the slide
without leaving the dialog.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guimenuitem>Page Layout...</guimenuitem>
</menuchoice></term>
<listitem>
<para>Allows you to set the page details. You can specify the margins,
the orientation, either portrait (higher than wide) or Landscape
(wider than high) formats. There are many templates, such as screen,
A4, US legal.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guimenuitem>Enable/Disable Document Header</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Toggle the display of the header field</action> on the current slide. Header content can only be added in the master slide but you can choose to display the header only on some slides with this action.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guimenuitem>Enable/Disable Document Footer</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Toggle the display of the footer field</action> on the current slide. Footer content can only be added in the master slide but you can choose to display the footer only on some slides with this action.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu>
<guimenuitem>Slide Background...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Allows you to alter the background to your presentation
slides. Your options are <guilabel>Color/Gradient</guilabel>, (which lets you
set either a plain color or one of many gradients)
or <guilabel>Picture</guilabel>, which gives a dialog box to find the picture
you want. Set the <guilabel>View mode:</guilabel> for this picture
to <guilabel>Scaled</guilabel>, <guilabel>Centered</guilabel>,
or <guilabel>Tiled</guilabel>.</para>
<para> If you want a plain color, click in the box to select
it. Gradients only work when you have chosen two colors. The picture
option allows you to center the picture, zoom it to cover the entire
slide (if it is smaller than the screen, this is very useful) or tile
it. This is used when you want a small pattern to repeat across the
page. It's probably best used with patterns rather than pictures of
logos.</para>
<para>You can get rid of a picture by selecting another one or
choosing a color/gradient.</para>
</listitem>
</varlistentry>
</variablelist>
</sect1>
<sect1 id="text-menu">
<title><guimenu>Text</guimenu> Menu</title>
<para>This menu modifies selected text and provides a few tools familiar from
word processing applications for your convienience for when you are making
presentations with large amounts
of text in them. The <guimenu>Text</guimenu> menu will only effect selected or
highlighted text.</para>
<variablelist>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guimenuitem>Default Format</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Restores selected text to the system default font size, style and
formatting.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guimenuitem>Font...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>The <guilabel>Select Font</guilabel> dialog contains options for selected
segments of text:</para>
<screenshot>
<screeninfo>The <guilabel>Select Font</guilabel> dialog</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="textmenu1.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>The <guilabel>Select Font</guilabel> dialog</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>With this dialog, you can <action>change the font, style and size of
selected text</action>. The <interface>preview box</interface> at the bottom
allows you to <action>approximate changes before you make them</action>. </para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">
&Ctrl;&Alt;<keycap>P</keycap>
</keycombo>
</shortcut>
<guimenu>Text</guimenu>
<guimenuitem>Paragraph...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>The <guilabel>Paragraph Settings</guilabel> dialog contains settings for
larger blocks of text, such as paragraphs. Using this dialog, you can set
indenting, line spacing, bullet/numbered list and border settings.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guimenuitem>Color...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Use the <guilabel>Select Color</guilabel> dialog to have precise control
over the color of selected text:</para>
<screenshot>
<screeninfo>The <guilabel>Select Color</guilabel> dialog</screeninfo>
<mediaobject>
<imageobject>
<imagedata format="PNG" fileref="textmenu2.png"/>
</imageobject>
<textobject>
<phrase>The <guilabel>Select Color</guilabel> dialog</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>Using the <interface>color spectrum box</interface> on the left,
<action>colors can be precisely defined</action> for use in your document. The
color tone can then be adjusted using the <interface>scale</interface> to the
right of the spectrum box. The <interface>input boxes</interface> below the
color spectrum allow <action>color values to be entered</action>, so that exact
colors can be specified.</para>
<tip>
<para>Use the color picker to select colors from elsewhere in your document
(⪚ images).</para>
</tip>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;&Alt;<keycap>S</keycap></keycombo>
</shortcut>
<guimenu>Text</guimenu>
<guimenuitem>Style Manager</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>The <guilabel>Style Manager</guilabel> allows you to create an entire set of
attributes that will be applied to selected text all at once. See Working With Styles</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guimenuitem>Import Styles...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Here you can import styles that you have defined in another &kpresenter;
document.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guisubmenu>Style</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>Using this submenu, you can apply a style that you have previously defined
to the currently selected text.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guimenuitem>Create Style From Selection</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Copy the properties of the currently selected text and
save them as a style that you may apply to other text.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guisubmenu>Align</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><guisubmenu>Align</guisubmenu> has a submenu with several options:
<guimenuitem>Align Left</guimenuitem> (<keycombo action="simul">&Alt;<keycap>L</keycap></keycombo>),
<guimenuitem>Align Center</guimenuitem> (<keycombo action="simul">&Alt;<keycap>C</keycap></keycombo>),
<guimenuitem>Align Right</guimenuitem> (<keycombo action="simul">&Alt;<keycap>R</keycap></keycombo>), and
<guimenuitem>Align Block</guimenuitem> (<keycombo action="simul">&Alt;<keycap>J</keycap></keycombo>)
which is also commonly known as <quote>Justify</quote>.</para>
<para>Text is by default left-aligned.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guisubmenu>Type</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>Using this submenu, you can format the currently selected text as a list,
either of the numbered or bulleted type. If you choose numbered, you can then
select a numbering style, and likewise if you choose bulleted, you can
choose the style of bullets to use.</para>
<para>To change a list back to plain text, select
<guimenuitem>None</guimenuitem> as the style.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>+</keycap></keycombo>
</shortcut>
<guimenu>Text</guimenu>
<guimenuitem>Increase Depth</guimenuitem>
</menuchoice>
</term>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>-</keycap></keycombo>
</shortcut>
<guimenu>Text</guimenu>
<guimenuitem>Decrease Depth</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><guimenuitem>Increase Depth</guimenuitem> and <guimenuitem>Decrease
Depth</guimenuitem> move paragraphs in a list either to the right
(<guimenuitem>Increase Depth</guimenuitem>) or back to the left
(<guimenuitem>Decrease Depth</guimenuitem>).</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guimenuitem>Extend Contents to Object Height</guimenuitem>
</menuchoice></term>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guimenuitem>Extend Object to Fit Contents</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><guimenuitem>Extend Contents to Object Height</guimenuitem> and
<guimenuitem>Extend Object to Fit Contents</guimenuitem> help to
resize text within the text box or make the text box fit the text you have typed
or pasted into it.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guimenuitem>Insert Slide Number</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Insert a dynamically-updated slide number. This page number will
automatically update when slides are added or removed from your presentation to
reflect the correct slide value.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guimenuitem>Change Case...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Presents a dialog that provides a variety of different case/capitalization
options for the currently selected text.</para>
<para>You may choose between several styles of capitalization,
including all lower or uppercase, book style capitalization where each
word except conjunctions has an initial capital letter, and sentence
style capitalization where the first word in a sentence is capitalized. You can
also toggle the case, so that uppercase becomes lowercase, and vice
versa.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guisubmenu>Spellcheck</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>Use this submenu to utilize the spellcheck options. If you enable
<guimenuitem>Autospellcheck</guimenuitem>, &kpresenter; will automatically check
text that you enter for spelling errors.</para>
<para>If you prefer to check spelling explicitly, rather than automatically, you
can also force a <guimenuitem>Spelling...</guimenuitem> check here.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Text</guimenu>
<guisubmenu>Autocorrection</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>Use this submenu to utilize autocorrection options. If you
<guimenuitem>Enable Autocorrection</guimenuitem>, common spelling errors will be
corrected as you type. For example, if you entered <userinput>Teh</userinput>,
it would be autocorrected to <userinput>The</userinput>.</para>
<para>If the autocorrection feature is not active, you can also
<guimenuitem>Apply Autocorrection</guimenuitem> check here.</para>
</listitem>
</varlistentry>
</variablelist>
</sect1>
<sect1 id="slide-show-menu">
<title><guimenu>Slide Show</guimenu> Menu</title>
<variablelist>
<varlistentry>
<term>
<menuchoice>
<guimenu>Slide Show</guimenu>
<guimenuitem>Configure Slide Show...</guimenuitem>
</menuchoice>
</term>
<listitem>
<!--<para>
FIXME: Write a working with slideshows section
</para>-->
<para>You can set up the properties for the entire slide show here,
including whether to show the duration on screen, which of the slides
in a presentation to include, and several other global settings.</para>
<!--<para>This is discussed in detail in the FIXME: link to presentation
section.</para>-->
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Slide Show</guimenu>
<guimenuitem>Edit Object Effect...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Choose what effect you want to apply for the highlighted object. This is where
you can set the order of appearance, how the object will appear, if you want a sound while the object appears and if you want some disappearance effects too.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Slide Show</guimenu>
<guimenuitem>Edit Slide Transition...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Apply transition effects to the currently open slide. This is where
you can choose how the transition from one slide to the next
will be handled.</para>
<para>The transition effects you select here are applied on the
transition <emphasis>from</emphasis> this slide
<emphasis>to</emphasis> the next.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycap>F12</keycap></shortcut>
<guimenu>Slide Show</guimenu>
<guimenuitem>Start</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Begin the slideshow from the current slide.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Slide Show</guimenu>
<guimenuitem>Start From First Slide</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Begin the slideshow from the first slide.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Slide Show</guimenu>
<guimenuitem>Custom Slide Show...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Opens a dialog to <guibutton>Add...</guibutton>, <guibutton>Modify...</guibutton>,
<guibutton>Remove</guibutton> and <guibutton>Copy</guibutton> slides and
<guibutton>Test</guibutton> the slide show in full screen mode.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycap>Home</keycap></shortcut>
<guimenu>Slide Show</guimenu>
<guimenuitem>Go to Start</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Go directly to the first slide in the slide show.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycap>PageUp</keycap></shortcut>
<guimenu>Slide Show</guimenu>
<guimenuitem>Previous Slide</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Go back to the previous slide in the slide show.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycap>PageDown</keycap></shortcut>
<guimenu>Slide Show</guimenu>
<guimenuitem>Next Slide</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Go to the next slide in the slide show.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<shortcut><keycap>End</keycap></shortcut>
<guimenu>Slide Show</guimenu>
<guimenuitem>Go to End</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Go immediately to the final slide in the slide show.</para>
</listitem>
</varlistentry>
</variablelist>
</sect1>
<sect1 id="settingsmenu">
<title><guimenu>Settings</guimenu> Menu</title>
<para>The <guimenu>Settings</guimenu> menu allows you to customize
&kpresenter;.</para>
<variablelist>
<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu>
<guisubmenu>Toolbars</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>The items in this submenu can be toggled, that is, you can both enable and
disable the display of specific toolbars here.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Configure Autocorrection...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Autocorrection is &kpresenter;'s ability to correct
common typing errors or expand abbreviations independently of the spell
checking function. There are several common typing errors entered for
you by default such as replacing <userinput>teh</userinput> with
<userinput>the</userinput> and you can add as many more as you
like.</para>
<para>The ability to expand abbreviations can save you a lot of typing
time, if you often repeat text whether in the same presentation or in
multiple presentations.</para>
<para>For instance, if you work for <quote>Company with a really really
long name Inc.</quote> then you might define an autocorrection entry so
that whenever you type <userinput>myJob</userinput> or some other piece
of unique text, it will be replaced with <quote>Company with a really
really long name Inc.</quote>.</para>
<para>Autocorrection can be applied automatically as you type, or only
on demand when you choose it from the <guimenu>Text</guimenu>
menu.</para>
<para>Please see the <link
linkend="configure-autocorrection">Configure Autocorrection</link> section for a complete explanation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Configure Completion...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Autocompletion allows you to type the first few letters of a commonly used word (often technical or job specific), and tells &kpresenter; to finish typing the word for you.</para>
<para>Please see the <link
linkend="configure-completion">Configure Completion</link> section for a complete explanation.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Configure Shortcuts...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><guimenuitem>Configure Shortcuts</guimenuitem> allows you to
assign a keyboard shortcut to actions that &kpresenter; menus or icons
contain.</para>
<screenshot>
<screeninfo>Customize Shortcuts</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="settings03.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Customizing the shortcuts</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>If you try to assign a shortcut that is already used, it will
give you a warning message. Highlight what you want to do (in the
picture, I have chosen to make a keyboard shortcut to <guilabel>About
TDE</guilabel>).</para>
<para>Click the radio button to the <guilabel>Custom</guilabel> key setting and type the
key you want to use. I assigned <keycap>Control</keycap> key and
<keycap>Y</keycap> to bring up the <quote>About TDE</quote> dialog
box.</para>
<para>The button shows what has been assigned. Click
<guibutton>OK</guibutton> to make the changes, click
<guibutton>Default</guibutton> to restore whatever was assigned as
default, click <guibutton>Cancel</guibutton> to do nothing and leave
the dialog.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Configure Toolbars...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Configure Toolbars allows you to add or delete icons on each of
the toolbars.</para>
<screenshot>
<screeninfo>Configuring &kpresenter; toolbars</screeninfo>
<mediaobject>
<imageobject>
<imagedata fileref="settings04.png" format="PNG"/>
</imageobject>
<textobject>
<phrase>Configuring &kpresenter; toolbars</phrase>
</textobject>
</mediaobject>
</screenshot>
<para>At the top is a drop down box to enable you to choose which
toolbar you want to modify. In the picture the <guilabel>Format</guilabel> toolbar is
selected. If I want to add the <guiicon>Spelling</guiicon> icon to
that toolbar, I click the entry in the left window. The arrow pointing
right becomes available, if I click the arrow the <guiicon>Spelling</guiicon>
entry is added to the selected toolbar. The left arrow
is available when you click in the right side window. It allows you to
remove an icon from a toolbar. The up and down arrows become active
when an item on the wright side is selected. You can also move the highlight in
the right side window up and down with the keyboard arrow keys. By
clicking on the arrows with the mouse you can change the order of the entries
in the menu.
<!--The <guimenuitem>Configure
&kpresenter;...</guimenuitem> menu entry gives two menu boxes. -->
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu>
<guimenuitem>Configure &kpresenter;...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>See the <link
linkend="configure-dialog">configure &kpresenter;</link> section for a complete explanation of all &kpresenter; settings.</para>
</listitem>
</varlistentry>
</variablelist>
</sect1>
<sect1 id="helpmenu">
<title><guimenu>Help</guimenu> Menu</title>
&help.menu.documentation;
</sect1>
</chapter>
|