summaryrefslogtreecommitdiffstats
path: root/doc/kword/mbtb.docbook
blob: 6ba5d5d00c1cbc44db2da573a6709b837a16af9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
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
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
<!-- <?xml version="1.0" ?>
<!DOCTYPE chapter PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd">

To work on this document standalone, uncomment the prolog.
Comment it out again when you are done -->
	
<chapter id="menu-items">
<chapterinfo>
<authorgroup>
<author>
<firstname>Mike</firstname>
<surname>McBride</surname>
</author>
<!-- TRANS:ROLES_OF_TRANSLATORS -->
</authorgroup>
</chapterinfo>
<title>The Menu Items/Toolbars</title>

<sect1 id="menu-intro">
<title>Introduction to the Menubar and Toolbars</title>

<para>The key to getting the most out of &kword;, is found in the menu
bars and the toolbars.</para>

<para>The menubar is organized into groups of functions (&eg; file
functions, table functions, &etc;).  Below each of these groups, is a
submenu of actions.  Some of these submenus will have sub menus of
their own.</para>

<para>The toolbars are also organized into groups.  Each toolbar
consists of a set of buttons.  Each button performs a specific
function.  The toolbars are designed to act as shortcuts for more
commonly used functions.</para>

<para>The first part of this section of the manual discusses the
manipulation of &kword;'s toolbars to suit your needs.</para>

<para>The second part of this section, takes a detailed look at each
menubar function, and each standard toolbar button, and provides you with a
brief summary of its action.  Many of these sections  also provide you with a link to more detailed
information located elsewhere in the &kword; Handbook.</para>

</sect1>

<sect1 id="toolbars">
<title>Hiding, Changing, and Moving Toolbars</title>
<indexterm><primary>toolbars</primary><secondary>hiding</secondary></indexterm>

<para>&kword; offers the user great flexibility when it comes to
toolbars.  This first section will show you some of the many options
you have for relocating, reformatting and removing toolbars.</para>

<sect2 id="hide-toolbar">
<title>Hiding Toolbars </title>

<para>When you start &kword; for the first time, several toolbars
are visible.  If you don't think you will need a toolbar, and want to
reclaim that desktop space, you can hide any or all of the toolbars</para>

<para>To hide a toolbar, Select <menuchoice>
<guimenu>Settings</guimenu><guimenuitem>Toolbars</guimenuitem></menuchoice> from
the menubar.  This will bring up a submenu.  All of the toolbars are
listed.  Simply select the toolbar you want to hide or restore.</para>

</sect2>

<sect2 id="move-toolbar">
<title>Moving Toolbars around</title>
<indexterm><primary>toolbars</primary><secondary>moving</secondary></indexterm>

<para>Toolbars can be located on the screen in 5 places.</para>

<orderedlist numeration="arabic">
<listitem><para>Top</para></listitem>
<listitem><para>Bottom</para></listitem>
<listitem><para>Left</para></listitem>
<listitem><para>Right</para></listitem>
<listitem><para>Floating</para></listitem>
</orderedlist>

<para><guilabel>Top</guilabel>, <guilabel>Bottom</guilabel>,
<guilabel>Left</guilabel> and <guilabel>Right</guilabel> refer to the
edges of the &kword; screen.</para>

<para>By locating a toolbar in the <guilabel>Bottom</guilabel>
position, for example, you move the toolbar into a horizontal position
below the Document Area, and along the bottom of the &kword;
window. By locating a toolbar in the <guilabel>Left</guilabel>
position,however, you move the toolbar into a vertical position to the
left of the Document Area, and along the left edge of the &kword;
window.</para>

<para>Multiple toolbars can be located at each of these points in the
screen.  (You could, for instance, move all the toolbars to the top of
the screen).  &kword; will shuffle toolbars around, to fit in the most
compact way at that location.</para>

<para>There are two ways to move any toolbar.</para>

<itemizedlist>

<listitem>
<para>Click on the striped area of the toolbar with the &LMB; and hold
the button down.  Drag the toolbar to the desired location.  You will
see a rectangular shape indicating the position and orientation of the
toolbar.  When at the desired location, release the &LMB; and the
toolbar will be inserted there.</para>

<para>or</para>
</listitem>

<listitem>
<para>Click on the toolbar with the &RMB;. A
popup menu will appear.  Select
<guimenuitem>Orientation</guimenuitem>. A small submenu will
appear.  Select <guimenuitem>Top</guimenuitem>,
<guimenuitem>Bottom</guimenuitem>, <guimenuitem>Left</guimenuitem>, 
<guimenuitem>Right</guimenuitem>, <guimenuitem>Floating</guimenuitem> or
<guimenuitem>Flat</guimenuitem>.</para>
</listitem>
</itemizedlist>

<para>If you select <guilabel>Floating</guilabel> for any toolbar, a new window will be created just for that toolbar.  This window can be moved independently from the &kword; window.</para>

<para>Finally, if you select <guilabel>Flat</guilabel> for any toolbar, the toolbar will be reduced to a horizontal section of lines located directly below the menubar.  To restore this menubar, simply double click with the &LMB; on the flattened toolbar and the toolbar will be restored to its original size and position.</para>
</sect2>

<sect2 id="toolbar-options">
<title>Changing the look of your toolbars</title>
<indexterm><primary>toolbars</primary><secondary>formatting</secondary></indexterm>

<para>Toolbars can have their buttons displayed different ways.  Below
are examples of the four options for the <emphasis>File</emphasis>
toolbar.</para>

<informaltable>
<tgroup cols="2">
<tbody>
<row>
<entry>Icons Only</entry>
<entry><inlinemediaobject><imageobject> <imagedata fileref="tb1.png"
format="PNG"/></imageobject></inlinemediaobject></entry>
</row>

<row>
<entry>Text Only</entry>
<entry><inlinemediaobject><imageobject> <imagedata fileref="tb2.png"
format="PNG"/></imageobject></inlinemediaobject></entry>
</row>

<row>
<entry>Text Aside Icons</entry>
<entry><inlinemediaobject><imageobject> <imagedata fileref="tb3.png"
format="PNG"/></imageobject></inlinemediaobject></entry>
</row>

<row>
<entry>Text Under Icons</entry>
<entry><inlinemediaobject><imageobject> <imagedata fileref="tb4.png"
format="PNG"/></imageobject> </inlinemediaobject></entry>
</row>
</tbody>
</tgroup>
</informaltable>

<para>To change the appearance of a toolbar, place the cursor over on
the toolbar you want to change, and click with the &RMB;.</para>

<para>A small menu will appear at the mouse cursor.  Select
<guimenuitem>Text Position</guimenuitem>. This will open a submenu,
select your preference from the list.</para>

<sect3 id="toolbar-options-size">
<title>Changing Icon Size</title>
<indexterm><primary>toolbars</primary><secondary>changing size</secondary></indexterm>

<para>You can also select the size of the icons by clicking on the
toolbar with the &RMB;.  A small popup menu will appear.  Select
<guimenuitem>Icon Size</guimenuitem> and then your preferred icon
size.</para>

<note> 
<para>Setting the look of one toolbar does not alter the look
of another toolbar.</para> 
</note>

</sect3>

</sect2>

</sect1>

<sect1 id="basic-menubar">
<title>Menubar</title>
     
<para>The Menubar contains all commands available to &kword;.  It is
divided into 10 general categories.</para>

<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="basic.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>
     
<sect2 id="file">
<title><guimenu>File</guimenu> Menu</title>

<para>By clicking on the <guimenu>File</guimenu> menu, you can begin
new documents, load previously edited documents, print your documents,
close the current document (so you can load another document), or quit
&kword; entirely.</para>

<variablelist>

<varlistentry>
<term id="menu-new">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>N</keycap></keycombo>
</shortcut>
<guimenu>File</guimenu><guimenuitem>New</guimenuitem></menuchoice></term>
<listitem>
<para><action> Allows you to open new files for editing.</action> For
Step by Step instructions see <link linkend="new-doc">Beginning a New
Document</link>.</para>

<para>Typing <keycombo
action="simul">&Ctrl;<keycap>N</keycap></keycombo> or clicking
<inlinemediaobject><imageobject>
<imagedata fileref="filenew2.png"
format="PNG"/></imageobject></inlinemediaobject> is equivalent to
using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-open">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>O</keycap></keycombo></shortcut>
<guimenu>File</guimenu><guimenuitem>Open...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action> For opening previously created</action> &kword; files.
For Step by Step instructions see <link linkend="loading">Retrieving a
Saved Document</link>.</para>
<para>Typing <keycombo
action="simul">&Ctrl;<keycap>O</keycap></keycombo> or clicking
<inlinemediaobject><imageobject> <imagedata fileref="fileopen.png"
format="PNG"/> </imageobject></inlinemediaobject> is equivalent to
using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-save">
<menuchoice>
<guimenu>File</guimenu><guisubmenu>Open
Recent</guisubmenu></menuchoice></term>
<listitem>
<para><action>For opening the most recently edited files. Once you
have clicked on this option, a list of recently edited files will
appear. Select the file you want and &kword; will open the
file. </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 your current file to disk.</action>  If you have
not saved the file yet, you will be prompted for a filename. For more
details, see <link linkend="saving">Saving a Document</link>.</para> 
<para>Typing <keycombo
action="simul">&Ctrl;<keycap>S</keycap></keycombo> or clicking
<inlinemediaobject><imageobject><imagedata fileref="filefloppy.png"
format="PNG"/> 
</imageobject></inlinemediaobject> is equivalent to
using the menubar. </para> 
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>File</guimenu><guimenuitem>Save
As...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to save your file under another name or another
format.</action>  For more details, see <link linkend="command-save-as">Saving a
Document</link>.</para> 
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-reload">
<menuchoice>
<guimenu>File</guimenu><guimenuitem>Reload</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Reloads the current file from disk, erasing any changes to the document since the last time it was saved.</action></para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-import">
<menuchoice>
<guimenu>File</guimenu><guimenuitem>Import...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Will load a file from another application.</action> &kword; attempts to decipher as much of the file as it can.  For many files, some information will be lost.  For more 
information on the ability to import files from other applications, see the section on <link linkend="filters">filters</link> at the end of this documentation.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-export">
<menuchoice>
<guimenu>File</guimenu><guimenuitem>Export...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Will save a file using the format of another application.</action> &kword; attempts to save as much of the file as it can.  For many files, some information will be lost.  For more 
information on the ability to export files to other applications, see the section on <link linkend="filters">filters</link> at the end of this documentation.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-send-file">
<menuchoice>
<guimenu>File</guimenu><guimenuitem>Mail...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Launches your email client so you can send the current file as an attachment.  The file must have been saved once before this option can be selected.</action></para> 
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-template-create">
<menuchoice>
<guimenu>File</guimenu><guimenuitem>Create Template From
Document...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to save your file as a template, to use as a
starting point for future documents.</action> For more details, see
<link linkend="template-creation">Creating a new template</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-statistics">
<menuchoice>
<guimenu>File</guimenu><guimenuitem>Statistics</guimenuitem>
</menuchoice>
</term>
<listitem>

<para><action>Opens a window that counts the sentences, words,
characters and syllables in your document.</action></para> <para>The
number of sentences is not always absolutely correct, as &kword; has
to guess if a dot really starts a new sentence or not. The number of
syllables is estimated, &kword; therefore assumes that the text is
written in English.</para>

<para>The <guilabel>Flesch reading ease:</guilabel> score is a number
between 0 and 100 which estimates how readable a text is. The higher
the number, the easier the text can be read. Text with a score of
70-80 should have fairly good readability.</para>

<para>The Flesch formula uses the number of words per sentences and
the number of syllables per word. It assumes that the use of short
words and short sentences increases the readability of a text. It says
nothing about grammar or meaning. As both the number of sentences and
the number of syllables is estimated, the result is not absolutely
precise. The text should be at least 200 words long, if it isn't the
score will be marked as approximated.</para>

<para>The Flesch score is defined for English text only, but the basic
idea should work for many other languages, too.</para>

<para>Click <guibutton>OK</guibutton> to dismiss the
window.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-print">
<menuchoice>
<shortcut><keycombo
action="simul">&Ctrl;<keycap>P</keycap></keycombo></shortcut>
<guimenu>File</guimenu><guimenuitem>Print...</guimenuitem>
</menuchoice></term>
<listitem>
<para><action>Print the file.</action>  For an overview of printing
options see <link linkend="printing">Printing a Document</link>.</para> 

<para>Typing <keycombo
action="simul">&Ctrl;<keycap>P</keycap></keycombo> or clicking
<inlinemediaobject><imageobject><imagedata fileref="fileprint.png" format="PNG"/>
</imageobject></inlinemediaobject> are equivalent to using
the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-print-preview">
<menuchoice>
<guimenu>File</guimenu><guimenuitem>Print Preview...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Print the file, but sends the output to your postscript
viewer, for your confirmation before sending it to the printer.  The
operation of your postscript viewer will vary depending on which viewer
you use.  Refer to the help files for your viewer for
help.</action></para> 

<para>Clicking <inlinemediaobject><imageobject>
<imagedata fileref="fileprint2.png" format="PNG"/></imageobject></inlinemediaobject> is equivalent to using
the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-doc-info">
<menuchoice>
<guimenu>File</guimenu><guimenuitem>Document Information</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Opens a window that lets you enter information related to
the document</action> (such as author's name, address, phone numbers,
document abstract, &etc;). This information is saved with the document for later
classification.</para> 
<para>For more information, see <link linkend="documentinfo">Document Information</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-close">
<menuchoice>
<shortcut><keycombo
action="simul">&Ctrl;<keycap>W</keycap></keycombo></shortcut>
<guimenu>File</guimenu><guimenuitem>Close</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Close the file you are currently working on. If you have
not saved your most recent changes, you will be
prompted.</action></para>
<para>Typing <keycombo action="simul">&Ctrl;<keycap>W</keycap></keycombo>
is equivalent to using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-quit">
<menuchoice>
<shortcut><keycombo
action="simul">&Ctrl;<keycap>Q</keycap></keycombo></shortcut>
<guimenu>File</guimenu><guimenuitem>Quit</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Quits</action> &kword;.</para> 
<para>Typing <keycombo action="simul">&Ctrl;<keycap>Q</keycap></keycombo> is equivalent to
using the menubar. </para>
</listitem>
</varlistentry>
</variablelist>

</sect2>

<sect2 id="edit">
<title><guimenu>Edit</guimenu> Menu</title>

<para>By clicking on the <guimenu>Edit</guimenu> menu, you can
cut/copy/paste text, undo or redo edits and perform searches and text
replacement.</para>

<variablelist>
<varlistentry>
<term id="menu-undo">
<menuchoice>
<shortcut><keycombo
action="simul">&Ctrl;<keycap>Z</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu><guimenuitem>Undo</guimenuitem>
</menuchoice>
</term>
<listitem>

<para><action>Reverses the last action you performed.</action> Not all
actions can be reversed.  If you are not able to Undo the last action,
the <guimenuitem>Undo</guimenuitem> option will be displayed gray and is
not accessible.  For a more thourough
discussion of Undo/Redo, <link linkend="undo-redo">click
here</link>.</para>

<para>Typing <keycombo
action="simul">&Ctrl;<keycap>Z</keycap></keycombo> or clicking
<inlinemediaobject><imageobject><imagedata fileref="undo.png" format="PNG"/>
</imageobject></inlinemediaobject> is equivalent to using
the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-redo">
<menuchoice><shortcut><keycombo
action="simul">&Ctrl;<keycap>&Shift;</keycap><keycap>Z</keycap></keycombo></shortcut>
<guimenu>Edit</guimenu><guimenuitem>Redo</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Reverses the last Undo performed.</action> If the Redo
option is unavailable, the Toolbar will display this items gray. For a more thourough discussion of Undo/Redo,
<link linkend="undo-redo">click here</link>.</para>
<para>Typing <keycombo
action="simul">&Ctrl;<keycap>&Shift;</keycap><keycap>Z</keycap></keycombo> 
or clicking <inlinemediaobject><imageobject>
<imagedata fileref="redo.png" format="PNG"/>
</imageobject></inlinemediaobject> is
equivalent to using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-cut">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>X</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Cut</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Deletes the highlighted text from the document, and places
a copy in the clipboard.</action>  For a more complete directions on
cutting and pasting, and a full description of the clipboard, <link
linkend="clipboard">click here</link>.</para>

<para>Typing <keycombo
action="simul">&Ctrl;<keycap>X</keycap></keycombo> or clicking
<inlinemediaobject><imageobject>
<imagedata fileref="editcut.png" format="PNG"/>
</imageobject></inlinemediaobject>
 is equivalent to using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-copy">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>C</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Copy</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Places a copy of the highlighted text in the clipboard,
without changing the text in the document.</action>  For a more complete
directions on cutting and pasting, and a full description of the
clipboard, <link linkend="clipboard">click here</link>.</para>
 
<para>Typing <keycombo
action="simul">&Ctrl;<keycap>C</keycap></keycombo> or clicking
<inlinemediaobject><imageobject><imagedata fileref="editcopy.png" format="PNG"/></imageobject></inlinemediaobject> is equivalent to using
the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-paste">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>V</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Paste</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Inserts a copy of the clipboard into the current cursor
position.</action> If there is highlighted text, &kword; replaces
replaces all highlighted text with the contents of the clipboard.  The
clipboard is not altered.  For a more complete directions on cutting and pasting, 
and a full description of the clipboard, <link
linkend="clipboard">click here</link>.</para>

<para>Typing <keycombo
action="simul">&Ctrl;<keycap>V</keycap></keycombo> or clicking
<inlinemediaobject><imageobject><imagedata fileref="editpaste.png" format="PNG"/></imageobject></inlinemediaobject> is equivalent to using
the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-select-all">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>A</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Select All</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Immediately highlights all text of the current
frameset.</action></para>

<para>Typing <keycombo
action="simul">&Ctrl;<keycap>A</keycap></keycombo> is equivalent to
using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-select-all-frames">
<menuchoice>

<guimenu>Edit</guimenu><guimenuitem>Select All Frames</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Immediately selects all frames in the current document.</action></para>

</listitem>

</varlistentry>
<varlistentry>
<term>
<menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Select Frame</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Selects the current text frame in the document.</action></para>

</listitem>
</varlistentry>

<varlistentry>
<term id="menu-find">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>F</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Find...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to search for a series of characters.</action>
The find features of &kword; are covered in more detail under <link
linkend="search-and-replace">Searching for Text</link>.</para>

<para>Typing <keycombo
action="simul">&Ctrl;<keycap>F</keycap></keycombo> or clicking
<inlinemediaobject><imageobject><imagedata fileref="find.png" format="PNG"/></imageobject></inlinemediaobject> is equivalent to
using the menubar.</para></listitem></varlistentry>

<varlistentry>
<term id="menu-findnext">
<menuchoice>
<shortcut>
<keycombo action="simul"><keycap>F3</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Find Next</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Repeat the last search for characters starting at the current cursor position.</action>
The find features of &kword; are covered in more detail under <link
linkend="search-and-replace">Searching for Text</link>.</para>

<para>Typing <keycombo action="simul"><keycap>F3</keycap></keycombo> is equivalent to
using the menubar.</para></listitem></varlistentry>

<varlistentry>
<term id="menu-findprev">
<menuchoice>
<shortcut>
<keycombo action="simul">&Shift;<keycap>F3</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Find Previous</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Repeat the last search for characters starting at the current cursor position and moving backwards.</action>
The find features of &kword; are covered in more detail under <link
linkend="search-and-replace">Searching for Text</link>.</para>

<para>Typing <keycombo action="simul">&Shift;<keycap>F3</keycap></keycombo> is equivalent to
using the menubar.</para></listitem></varlistentry>


<varlistentry>
<term id="menu-replace">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>R</keycap></keycombo>
</shortcut>
<guimenu>Edit</guimenu><guimenuitem>Replace...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to replace one or more characters with
another set of characters.</action>  The find and replace features of &kword; are covered
in more detail under <link linkend="replace">Replacing
Text</link>.</para>
<para>Typing <keycombo
action="simul">&Ctrl;<keycap>R</keycap></keycombo> is equivalent to
using the menubar.</para></listitem>
</varlistentry>

<varlistentry>
<term id="menu-del-page">
<menuchoice>
<guimenu>Edit</guimenu><guimenuitem>Delete Page</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Delete the current page.</action>  </para></listitem>
</varlistentry>
</variablelist>
</sect2>

<sect2 id="view">
<title><guimenu>View</guimenu> Menu</title><variablelist>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guimenuitem>New View</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will create a new view of your document.</action>
For more information on views, refer to the section entitled <link
linkend="views">Using Multiple Views</link>.</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>This will close all views including the current view. This will also quit &kword;.</action> 
For more information on views, refer to the section
entitled <link linkend="views">Using Multiple Views</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guimenuitem>Split View</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will split the current view.</action>  The orientation of the
split is determined by the <guimenuitem>Splitter
Orientation</guimenuitem>.  For more information on views, refer to the
section entitled <link linkend="views">Using Multiple
Views</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guimenuitem>Remove View</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will close the current view.</action>  For more
information on views, refer to the section entitled <link
linkend="views">Using Multiple Views</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guisubmenu>Splitter Orientation</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>This determines whether split views are oriented
horizontally or vertically.</action>  Click on this option, and you are
presented with a submenu with 2 options:
<guimenuitem>Vertical</guimenuitem> and
<guimenuitem>Horizontal</guimenuitem>. For more information on views,
refer to the section entitled <link linkend="views">Using Multiple
Views</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guisubmenu>Display Mode</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>When this option is selected, a submenu opens with 3 options:</para>
<simplelist>
<member><guilabel>Page Mode</guilabel> - &kword; will show you how your page looks in a WYSIWYG environment.  This is the standard view
for editing your document.</member>
<member><guilabel>Preview Mode</guilabel> - This changes &kword; from a single page view, to a multiple page view suitable for evaluating document flow and formatting. 
The number of pages shown in preview mode <link linkend="opt-ui">can be adjusted</link>.</member>
<member><guilabel>Text Mode</guilabel> - When this option is selected, &kword; will only show the text of your document.</member>
</simplelist></listitem>
</varlistentry>

<varlistentry>
<term id="view-formatting-menu">
<menuchoice>
<guimenu>View</guimenu><guimenuitem>Formatting Characters</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Clicking on this option toggles the display of formatting
characters.  Selecting this option will display non-printable characters
(spaces, character returns, and tab stops).  Selecting this option again
will turn the display of these characters off.</action></para>
<para>Which formatting characters are visible can be configured in the 
<link linkend="opt-misc">&kword; configuration dialog</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guimenuitem>Frame Borders</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Clicking on this option toggles the display of the borders
to frames.  Normally, &kword; draws a gray line around each frame, so
you can see the borders of the frames.  If you want this option turned
off, you can select this option.  Selecting this option again will turn
the borders back on.  </action></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guimenuitem>Show/Hide Doc Structure</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Clicking on this option toggles the display of the document
structure window.</action> For more information, refer to the section entitled
<link linkend="doc-structure">Document Structure</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guimenuitem>Show/Hide Rulers</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Selecting this option will toggle the rulers off.</action>
Selecting this option again will turn rulers on.  More
information on rulers can be found under <link
linkend="rulers">Using rulers</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guimenuitem>Show/Hide Grid</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Selecting this option will toggle the grid on.</action>
Selecting this option again will turn grid off.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>View</guimenu><guimenuitem>Snap to Grid</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Selecting this option will toggle the snap to grid on.</action>
Selecting this option again will turn snap to grid off. A checkmark before
the menu entry will show you the current status of this option.</para>
</listitem>
</varlistentry>


<varlistentry>
<term id="menu-zoom">
<menuchoice>
<guimenu>View</guimenu><guisubmenu>Zoom</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>Selecting this option will let you increase or decrease
the page magnification.  Selecting a zoom value larger than 100 percent
causes the text and pictures to appear larger.  Selecting a zoom value
smaller than 100 percent will cause the text and pictures to appear
smaller.</action></para>

<important>
<para>The zoom value does not affect the final output of the text or
pictures.  This option is intended to help you edit and layout your
documents.</para>
</important>
</listitem>
</varlistentry>
</variablelist>
</sect2>

<sect2 id="insert">
<title><guimenu>Insert</guimenu> Menu</title>
<variablelist>
<varlistentry>
<term id="menu-insert-special-character">
<menuchoice>
<shortcut>
<keycombo action="simul">&Alt; &Shift; <keycap>C</keycap></keycombo>
</shortcut>
<guimenu>Insert</guimenu><guimenuitem>Special Character...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Opens a dialog box which allows you to select characters
not found on the keyboard.</action></para> 
<para>Typing <keycombo action="simul">&Alt; &Shift;
<keycap>C</keycap></keycombo> is equivalent to using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-insert-hard-frame-break">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;<keycap>Return</keycap></keycombo>
</shortcut>
<guimenu>Insert</guimenu><guimenuitem>Page Break</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will enter a special character which will force text
into the next connected text frame (Page Layout Templates) or the next page (Text Oriented Templates).</action> More information can be
found at <link linkend="hard-break">Page Breaks</link> located in the <link linkend="frames">Working with Frames</link>
section.</para>

<para>Typing <keycombo
action="simul">&Ctrl;<keycap>Return</keycap></keycombo> is equivalent to
using the menubar. </para> 
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-insert-page">
<menuchoice>
<guimenu>Insert</guimenu><guimenuitem>Page</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This option will insert a new page at the current cursor position.</action></para></listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu><guimenuitem>Footnote/Endnote...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will insert a footnote or endnote at the current cursor
position.</action>  More detailed information can be found in <link
linkend="endnotes-and-footnotes">Footnotes and Endnotes</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu><guimenuitem>Table of Contents</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will insert or update a table of contents at the current cursor
position.</action>  More detailed information can be found in <link
linkend="toc">Table of Contents</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu><guisubmenu>Variable</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>Selecting this option will allow you to insert page
numbers, date, time, author information, &etc;</action> You can find
specific information about page numbers <link
linkend="page-number">here</link>.  More information about Date and
Times can be found under <link linkend="date-time">Inserting the Date
and Time</link>. More information on other variables can be found in <link
linkend="variables">Document Variables</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu><guisubmenu>Expression</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>Selecting this option will allow you to insert common
phrases.</action> The phrases are organized into categories. For
information on using and adding expressions refer to the section
entitled <link linkend="expressions">Expressions</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu><guimenuitem>Link...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to connect text to an external web page,
email address or files</action>
For more information refer to the section entitled
<link linkend="links">Document Links</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu><guimenuitem>Comment...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to add comments to selected text.</action>
For more information refer to the section entitled
<link linkend="comments">Document Comments</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu><guimenuitem>File...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to insert another &kword; file within the document.</action>
For more information refer to the section entitled
<link linkend="insert-file">Inserting Files</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Insert</guimenu><guimenuitem>Bookmark...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to mark your place in the document for easy retrieval.</action>
For more information refer to the section entitled
<link linkend="bookmarks">Document Bookmarks</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-create-table">
<menuchoice>
<shortcut>
<keycombo action="simul"><keycap>F5</keycap></keycombo>
</shortcut>
<guimenu>Insert</guimenu><guimenuitem>Table...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will allow you to create a table in the current 
cursor location.</action> For more information, please see the section entitled <link 
linkend="tables">Tables</link>.</para> 

<para>Typing <keycombo action="simul"><keycap>F5</keycap></keycombo> or
clicking <inlinemediaobject><imageobject><imagedata
fileref="part-kspread.png" format="PNG"/></imageobject></inlinemediaobject> are 
equivalent to using the
menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-insert-picture">
<menuchoice>
<shortcut>
<keycombo action="simul">&Shift;<keycap>F5</keycap></keycombo>
</shortcut>
<guimenu>Insert</guimenu><guimenuitem>Picture...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action> This option will let you create a new frame, and
automatically insert a picture from a file into the new frame.</action>
After selecting this menu item or toolbar button, a dialog box will be
opened, so you may select the picture file from your system. (For help
with this dialog box, please see <link
linkend="insert-graphics">Inserting Graphics</link>.)  Once you have
selected the file you want, click on the <guibutton>OK</guibutton>
button.  &kword; will close the dialog box, and your cursor will change
to cross hairs.  Locate the cursor on the page where you would like to
locate one corner of your picture.  Click and hold the
&LMB;, then drag the mouse.
This will create a border which represents the final size of the picture
in your document.  When you are happy with the size of the picture,
release the mouse button and the picture will be inserted in your new
frame.</para>
<para>Typing <keycombo action="simul">&Shift;<keycap>F5</keycap></keycombo> or
clicking <inlinemediaobject><imageobject><imagedata fileref="fpicture.png" 
format="PNG"/></imageobject></inlinemediaobject>
is equivalent to using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-create-text-frame">
<menuchoice>
<shortcut>
<keycombo action="simul"><keycap>F10</keycap></keycombo>
</shortcut>
<guimenu>Insert</guimenu><guimenuitem>Text Frame</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>To create a new text frame.</action>  After selecting this
option, your cursor will change to cross hairs.  Choose the location of
one corner of your new text frame.  Click on the
&LMB; and hold the button down.
Drag the mouse, until you have the desired text frame.  When you have
the correct shape and size, release the mouse button. &kword; will now
bring up a dialog box with options to connect this text frame to other
frames in your document.  For more information on this subject, see
<link linkend="frames">Working with Frames</link>.</para> 

<para>Typing <keycombo action="simul"><keycap>F10</keycap></keycombo> or
clicking <inlinemediaobject><imageobject><imagedata
fileref="tfcreatebut.png" format="PNG"/></imageobject></inlinemediaobject> is equivalent to using the
menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-create-formula">
<menuchoice>
<shortcut>
<keycombo action="simul"><keycap>F4</keycap></keycombo>
</shortcut>
<guimenu>Insert</guimenu><guimenuitem>Formula</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Insert a formula into the document.</action>  More
information on formulas in &kword; can be found <link
linkend="formulas">here</link>.</para> 

<para>Typing <keycombo action="simul"><keycap>F4</keycap></keycombo> or
clicking <inlinemediaobject><imageobject><imagedata
fileref="part-kformula.png" format="PNG"/></imageobject></inlinemediaobject> are 
equivalent to using
the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-create-part">
<menuchoice>
<guimenu>Insert</guimenu><guisubmenu>Object Frame</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>Creates a new frame, and opens a dialog box listing each
of the &koffice; applications. This will allow you to insert any data
into your &kword; document.</action></para>
<para>Clicking <inlinemediaobject><imageobject><imagedata fileref="kpart.png"
format="PNG"/></imageobject></inlinemediaobject> is equivalent to
using the menubar. </para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-scan-image">
<menuchoice>
<guimenu>Insert</guimenu><guimenuitem>Scan Image...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to access your scanner for inserting pictures into your document.</action> For more information see 
the section entitled <link linkend="scan-graphics">Using a picture from a scanner</link>.</para>
</listitem>
</varlistentry>
</variablelist>

</sect2>

<sect2 id="format">
<title><guimenu>Format</guimenu> Menu</title><variablelist>

<varlistentry>
<term id="format-default">
<menuchoice>

<guimenu>Format</guimenu><guimenuitem>Default Format</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action> Automatically changes all formating back to the 
default settings for the selected text.</action></para>
<para>The default format can be set with the <link linkend="opt-document">Document Configuration</link> options.</para>
</listitem>
</varlistentry>


<varlistentry>
<term id="format-font">
<menuchoice>
<shortcut>
<keycombo action="simul">&Alt;&Ctrl;<keycap>F</keycap></keycombo>
</shortcut>
<guimenu>Format</guimenu><guimenuitem>Font...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action> Allows you to change the formatting characteristics of
the selected text.</action> For more details, go to <link
linkend="format-characters">Formating Characters</link></para>

<para>Typing <keycombo
action="simul">&Alt;&Ctrl;<keycap>F</keycap></keycombo> is equivalent to
using the menubar. </para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<shortcut>
<keycombo action="simul">&Alt;&Ctrl;<keycap>P</keycap></keycombo>
</shortcut>
<guimenu>Format</guimenu>
<guimenuitem>Paragraph...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>To change the indenting, spacing between paragraphs, text flow,
tab stops, numbering and borders.</action> For more details, go to <link
linkend="format-para">Formating Paragraphs</link>.</para>
<para>Typing <keycombo
action="simul">&Alt;&Ctrl;<keycap>P</keycap></keycombo> is equivalent to
using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu><guimenuitem>Footnote...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to change the look of your footnotes.</action>
For more information see <link linkend="endnotes-and-footnotes">
Footnotes</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu><guisubmenu>Formula</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to format the selected formula.</action>  For
more information go to <link linkend="formulas">Formulas</link></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu><guisubmenu>Style</guisubmenu>
</menuchoice>
</term>
<listitem>
<para>Allows you to select a style for the selected text.  Selecting this option shows a submenu
listing all available paragraphs styles. Select the correct style and the paragraph style will be changed.</para>
<para>For more
information go to <link linkend="styles">Text Styles</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-format-stylist">
<menuchoice>
<shortcut>
<keycombo action="simul">&Alt;&Ctrl;<keycap>S</keycap></keycombo>
</shortcut>
<guimenu>Format</guimenu><guimenuitem>Style Manager...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Opens a dialog to allow you to format, add and delete
styles.</action> For more information go to <link
linkend="styles">Styles</link></para><para>Typing <keycombo
action="simul">&Alt;&Ctrl;<keycap>S</keycap></keycombo> is equivalent to
using the menubar. </para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-import-style">
<menuchoice>
<guimenu>Format</guimenu><guimenuitem>Import Styles...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to import a style.</action> For more information go to <link
linkend="styles">Text Styles</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu><guimenuitem>Create Style From Selection...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Uses the currently selected text to create a new style.</para>
<para>For more
information go to <link linkend="style-add-text">Text Styles</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu><guimenuitem>Page Layout...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Use this to alter the properties of the printed page,
including size, headers and footers.</action> For more details, go to
<link linkend="page-format">Formating the Page</link></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu><guimenuitem>Enable/Disable Document Headers</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Selecting this option will toggle headers on.</action>
Selecting this option again will turn headers off. More
information on headers and footers can be found under <link
linkend="headers-and-footers">Headers and Footers</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Format</guimenu><guimenuitem>Enable/Disable Document Footers</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Selecting this option will toggle footers on.</action>
Selecting this option again will turn footers off. More
information on headers and footers can be found under <link
linkend="headers-and-footers">Headers and Footers</link>.</para>
</listitem>
</varlistentry>



</variablelist>

</sect2>

<sect2 id="menu-frames">
<title><guimenu>Frames</guimenu> Menu</title>

<variablelist>
<varlistentry>
<term id="reconnect-frame">
<menuchoice>
<guimenu>Frames</guimenu><guimenuitem>Frame/Frameset Properties...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to configure basic formating options for the
frameset.</action> More information on this subject can be found in
<link linkend="format-frame">Setting properties for
frames</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Frames</guimenu><guimenuitem>Delete Frame</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will allow you to delete the entire frame, and all of
the text and objects contained within the frame.</action></para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-raise-frame">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;&Shift;<keycap>R</keycap></keycombo>
</shortcut>
<guimenu>Frames</guimenu><guimenuitem>Raise Frame</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will allow you to raise the frame up one level.</action> For more information see the section entitled
<link linkend="raise-frame">Raise and Lower frames</link>.</para>
<para>Typing <keycombo action="simul">&Ctrl;&Shift;<keycap>R</keycap></keycombo> is equivalent to
using the menubar. </para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-lower-frame">
<menuchoice>
<shortcut>
<keycombo action="simul">&Ctrl;&Shift;<keycap>L</keycap></keycombo>
</shortcut>
<guimenu>Frames</guimenu><guimenuitem>Lower Frame</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will allow you to lower the frame down one level.</action> For more information see the section entitled
<link linkend="raise-frame">Raise and Lower frames</link>.</para>
<para>Typing <keycombo action="simul">&Ctrl;&Shift;<keycap>L</keycap></keycombo> is equivalent to
using the menubar. </para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-raise-front">
<menuchoice>
<guimenu>Frames</guimenu><guimenuitem>Bring to Front</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This raises the currently selected frame to the top of all overlapping frames.</action> For more information see the section entitled
<link linkend="raise-frame">Raise and Lower frames</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-lower-back">
<menuchoice>
<guimenu>Frames</guimenu><guimenuitem>Send to Back</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This lowers the currently selected frame to the bottom of all overlapping frames.</action> For more information see the section entitled
<link linkend="raise-frame">Raise and Lower frames</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-create-linked">
<menuchoice>
<guimenu>Frames</guimenu><guimenuitem>Create Linked Copy</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Creates a duplicate frame.  The contents of the new frame will automatically be updated to match the contents of the old frame.  As you continue to edit the document, changes to one of these frames will result in the same changes to the other frame.</action></para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-create-tb">
<menuchoice>
<guimenu>Frames</guimenu><guimenuitem>Convert to Text Box</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Selected text is removed from the current frame.  A new frame is created to allow the selected text to be inserted, and the new text frame is inserted into the current document.  This is an easy way to remove a section of text and place it in a text box of its own.</action></para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-framestylist">
<menuchoice>
<guimenu>Frames</guimenu><guimenuitem>Frame Style Manager...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to edit the frame styles.</action> For more information see the section entitled
<link linkend="framestyles">Using frame styles</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-framestyle-create">
<menuchoice>
<guimenu>Frames</guimenu><guimenuitem>Create Framestyle From Frame...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Create a new framestyle based on the currently selected frame.</action> For more information see the section entitled
<link linkend="framestyles">Using Framestyles</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-framestyle">
<menuchoice>
<guimenu>Frames</guimenu><guisubmenu>Framestyle</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to format the selected frame(s) with a predefined framestyle.</action> For more information see the section entitled
<link linkend="framestyles">Using frame styles</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Frames</guimenu><guimenuitem>Frame Background Color...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will allow you to change the background color of the current frame.</action></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Frames</guimenu><guisubmenu>Configure Frame Border</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>This will allow you to change the border surrounding the current frame.  When selected, a submenu will 
appear with all available border styles.  Select the correct style and the borders are instantly changed.</action></para>
</listitem>
</varlistentry>

</variablelist>

<para>
 <anchor id="MenuCrTF"/>
</para>

</sect2>

<sect2 id="table">
<title><guimenu>Table</guimenu> Menu</title>

<variablelist>

<varlistentry>
<term id="menu-table-properties">
<menuchoice>
<guimenu>Table</guimenu><guimenuitem>Properties</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to change the number of rows and columns in a table.</action> For more
on tables, <link linkend="tables">click here</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-insert-row">
<menuchoice>
<guimenu>Table</guimenu><guisubmenu>Row</guisubmenu><guimenuitem>Insert Row...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to insert a row into a table.</action> For more
on tables, <link linkend="tables">click here</link>.</para>
<para>Clicking <inlinemediaobject><imageobject><imagedata
fileref="rowin.png" format="PNG"/></imageobject></inlinemediaobject> is
equivalent to using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-delete-row">
<menuchoice>
<guimenu>Table</guimenu><guisubmenu>Row</guisubmenu><guimenuitem>Delete Selected Rows...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Delete a row from a table.</action> For more on tables,
<link linkend="tables">click here</link>.</para>

<para>Clicking <inlinemediaobject><imageobject><imagedata
fileref="rowout.png" format="PNG"/></imageobject></inlinemediaobject>
is equivalent to using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-insert-column">
<menuchoice>
<guimenu>Table</guimenu><guisubmenu>Column</guisubmenu><guimenuitem>Insert Column...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to insert a column into a table.</action> For
more on tables, <link linkend="tables">click here</link>.</para>
<para>Clicking <inlinemediaobject><imageobject><imagedata
fileref="colin.png" format="PNG"/></imageobject></inlinemediaobject> is
equivalent to using the menubar.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-delete-column">
<menuchoice>
<guimenu>Table</guimenu><guisubmenu>Column</guisubmenu><guimenuitem>Delete Selected Columns...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Delete a column from a table.</action> For more on tables,
<link linkend="tables">click here</link>.</para> 
<para>Clicking <inlinemediaobject><imageobject><imagedata
fileref="colout.png" format="PNG"/></imageobject></inlinemediaobject>
is equivalent to using the menubar.</para> 
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-resize-column">
<menuchoice>
<guimenu>Table</guimenu><guisubmenu>Column</guisubmenu><guimenuitem>Resize Column...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Change the width of the currently selected column.</action> For more on changing column widths,
<link linkend="table-resize-column">click here</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Table</guimenu><guisubmenu>Cell</guisubmenu><guimenuitem>Join Cells</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will convert two (or more) separate cells into a
single cell.</action> For more on tables, <link linkend="tables">click
here</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Table</guimenu><guisubmenu>Cell</guisubmenu><guimenuitem>Split Cell...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This will split one cell into multiple smaller cells.</action>  For more on tables, <link linkend="tables">click
here</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Table</guimenu><guisubmenu>Cell</guisubmenu><guimenuitem>Protect Cells</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This prevent changes to the data in the selected cells.</action>  For more on tables, <link linkend="tables">click
here</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Table</guimenu><guimenuitem>Ungroup Table</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Converts a table into a grid of individual frames.</action> These individual frames are not connected and can be moved independently around the page.  For more on tables, <link
linkend="tables">click here</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Table</guimenu><guimenuitem>Delete Table</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Deletes the table the cursor is in.</action>  You can
find more about tables in the section entitled <link linkend="tables">Tables</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Table</guimenu><guimenuitem>Table Style Manager...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Lets you edit tablestyles.</action>  You can
find more about tables in the section entitled <link linkend="tablestyle">Using Tablestyle</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-tablestyle">
<menuchoice>
<guimenu>Table</guimenu><guisubmenu>Tablestyle</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>Lets you format the currently selected table using a preformatted template.</action>  You can
find more about tables in the section entitled <link linkend="tablestyle">Using Tablestyle</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-table-to-text">
<menuchoice>
<guimenu>Table</guimenu><guimenuitem>Convert Table to Text</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Converts data that is currently in the selected table to regular text.</action>.</para>
</listitem>
</varlistentry>

</variablelist>
</sect2>

<sect2 id="tools">
<title><guimenu>Tools</guimenu> Menu</title>

<variablelist>

<varlistentry>
<term id="menu-auto-spell">
<menuchoice>
<guimenu>Tools</guimenu><guisubmenu>Spellcheck</guisubmenu><guimenuitem>Autospellcheck</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Will toggle <link linkend="auto-spell-check">automatic spellchecking</link> of the document on and off.</para>
</listitem>
</varlistentry>

<varlistentry>
<term id="menu-spell">
<menuchoice>
<guimenu>Tools</guimenu><guisubmenu>Spellcheck</guisubmenu><guimenuitem>Spelling...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Will <link linkend="spell-check"><action>check the spelling of</action></link> the document.</para>
<para>Clicking <inlinemediaobject><imageobject><imagedata
fileref="spell.png" format="PNG"/></imageobject></inlinemediaobject> is
equivalent to using the menubar. </para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Tools</guimenu><guisubmenu>Autocorrection</guisubmenu><guimenuitem>Disable/Enable Autocorrection</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Toggles autocorrection on and off.</action>  
For more information see the section entitled
<link linkend="autocorrect">Autocorrection</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Tools</guimenu><guisubmenu>Autocorrection</guisubmenu><guimenuitem>Apply Autocorrection</guimenuitem>
</menuchoice>
</term>
<listitem><para><action>&kword; will format your document according to specific rules.</action>
For more information see <link linkend="autoformat">Manually Applying Autocorrection</link>.</para></listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Tools</guimenu><guimenuitem>Change Case...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to set the case of all selected text.</action>
For more information see <link linkend="change-font-case">
Changing Font Case</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Tools</guimenu><guimenuitem>Sort Text...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Alphabetizes the selected paragraphs.  You will be given the option to sort in ascending or decending order</action>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Tools</guimenu><guimenuitem>Edit Personal Expressions...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This is for adding and editing expressions. </action>
For information on using and adding expressions
refer to the section entitled <link linkend="expressions">Expressions</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Tools</guimenu><guimenuitem>Add Expression</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Creates a new personal expression with the selected text.</action> For more information on personal expresions, 
refer to the section entitled <link linkend="expressions">Expressions</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Tools</guimenu><guimenuitem>Custom Variables...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>This is for editing custom document variables. </action>
For information on using and adding expressions
refer to the section entitled <link linkend="variables">Document variables</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Tools</guimenu><guimenuitem>Select Bookmark...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Jump to, rename or delete bookmarks.  For more information see the section entitled 
<link linkend="bookmarks">Document Bookmarks</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Tools</guimenu><guimenuitem>Configure Mail Merge...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para>Displays the <link linkend="mail-merge">Mail Merge Setup</link> Dialog.</para>
</listitem>
</varlistentry>

</variablelist>

</sect2>

<sect2 id="settings">
<title><guimenu>Settings</guimenu> Menu</title>

<variablelist>

<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu><guisubmenu>Toolbars</guisubmenu>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to hide or reveal toolbars individually.</action>  For more information see 
the section entitled <link linkend="toolbars">Hiding, Changing and Moving Toolbars</link>.</para>
</listitem>
</varlistentry>
<!--
<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu><guimenuitem>Type Anywhere Cursor</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>
<indexterm><primary>Type Anywhere Cursor</primary></indexterm>
Toggles the cursor between two distinct behaviors.</action></para>  
<para>When Type Anywhere Cursor is not selected, and you click in an area of the document that does not currently have any text or whitespace, &kword; moves the cursor to the end of the previous line of text that exists.  This prevents the addition of whitespace where it is not needed.</para>  
<para>When Type Anywhere Cursor is selected, &kword; inserts whitespace characters to make it possible for you to begin typing at that exact location.</para>
</listitem>
</varlistentry>
-->
<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu><guimenuitem>Configure Autocorrection...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to modify the autocorrection options.</action>
For more on Autocorrection, <link linkend="autocorrect">click
here</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu><guimenuitem>Configure Completion...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to modify the autocompletion options.</action>
For more see the section on <link linkend="autocomplete">Autocompletion</link>.</para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu><guimenuitem>Configure Shortcuts...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to change the keyboard shortcuts.</action> For
details, click <link linkend="options-keybindings">here</link></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu><guimenuitem>Configure Toolbars...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to change the toolbars.</action> For details,
click <link linkend="options-toolbars">here</link></para>
</listitem>
</varlistentry>

<varlistentry>
<term>
<menuchoice>
<guimenu>Settings</guimenu><guimenuitem>Configure &kword;...</guimenuitem>
</menuchoice>
</term>
<listitem>
<para><action>Allows you to change miscellaneous</action> &kword;
options.For details, click <link linkend="options-kword">here</link>.</para>
</listitem>
</varlistentry>

</variablelist>

</sect2>

<sect2 id="help">
<title><guimenu>Help</guimenu> Menu</title>

&help.menu.documentation;

</sect2>
</sect1>


<sect1 id="file-toolbar">
<title><guilabel>File</guilabel> Toolbar</title>

<para>The <guilabel>File</guilabel> toolbar consists of 5 buttons.  Each button performs a
task from the menubar.  Click on that task for more details. </para>

<screenshot>
<mediaobject>
<imageobject><imagedata fileref="filetb.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>

<informaltable>
<tgroup cols="2">
<thead>
<row><entry>Button</entry><entry>Command</entry></row>
</thead>
<tbody>
<row><entry>
<link linkend="menu-new"><inlinemediaobject><imageobject><imagedata fileref="filenew2.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-new">Open New File</link>
</entry></row>
<row><entry>
<link linkend="menu-open"><inlinemediaobject><imageobject><imagedata fileref="fileopen.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-open">Open Saved File</link>
</entry></row>
<row><entry>
<link linkend="menu-save"><inlinemediaobject><imageobject><imagedata fileref="filefloppy.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-save">Save File</link>
</entry></row>
<row><entry>
<link linkend="menu-print"><inlinemediaobject><imageobject><imagedata fileref="fileprint.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-print">Print File</link>
</entry></row>
<row><entry>
<link linkend="menu-print-preview"><inlinemediaobject><imageobject><imagedata fileref="fileprint2.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-print-preview">Print Preview</link>
</entry></row>
</tbody></tgroup>
</informaltable>
</sect1>

<sect1 id="char-format-toolbar">
<title><guilabel>Format</guilabel> ToolBar</title>

<para>The <guilabel>Format</guilabel> toolbar consists of 9 buttons.  Each button
performs a task from the <link linkend="change-font-dialog">format
character dialog</link>.</para>

<screenshot>
<mediaobject>
<imageobject><imagedata fileref="cftb.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>

<informaltable>
<tgroup cols="2">
<thead>
<row><entry>Button</entry><entry>Command</entry></row>
</thead>
<tbody>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="chfontbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Select Font Face</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="chsizebut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Character Size</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="bold.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Bold Text</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="ital.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Italics</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="undl.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Underline</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="stkout.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Strikeout</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="supscbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Superscript Text</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="subscbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Subscript Text</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="chcolorbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry><para>Change Font Color</para>
<para>Clicking on the letter changes the selected text to the color previewed in the underline.  Clicking the arrow to the right of the letter will let you select a new color.</para></entry></row>
</tbody></tgroup>
</informaltable>
</sect1>


<sect1 id="insert-toolbar">
<title><guilabel>Insert</guilabel> Toolbar</title>

<para>The <guilabel>Insert</guilabel> toolbar consists of 5 buttons.  Each button performs a
task from the menubar.  Click on that task for more details. </para>

<screenshot>
<mediaobject>
<imageobject><imagedata fileref="instb.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>

<informaltable>
<tgroup cols="2">
<thead>
<row><entry>Button</entry><entry>Command</entry></row>
</thead>
<tbody>
<row><entry>
<link linkend="menu-create-table"><inlinemediaobject><imageobject><imagedata fileref="part-kspread.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-create-table">Insert Table</link>
</entry></row>
<row><entry>
<link linkend="menu-insert-picture"><inlinemediaobject><imageobject><imagedata fileref="fpicture.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-insert-picture">Insert Picture</link>
</entry></row>
<row><entry>
<link linkend="menu-create-text-frame"><inlinemediaobject><imageobject><imagedata fileref="tfcreatebut.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-create-text-frame">Insert Text Frame</link>
</entry></row><row><entry>
<link linkend="menu-create-formula"><inlinemediaobject><imageobject><imagedata fileref="part-kformula.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-create-formula">Insert Formula Frame</link>
</entry></row><row><entry>
<link linkend="menu-create-part"><inlinemediaobject><imageobject><imagedata fileref="kpart.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-create-part">Insert Object Frame</link>
</entry></row>
</tbody>
</tgroup>
</informaltable>

</sect1>

<sect1 id="basic-edit-toolbar">
<title><guilabel>Edit</guilabel> Toolbar</title>

<para>The <guilabel>Edit</guilabel> toolbar consists of 8 buttons.  Each 
button performs a task from the menubar.  Click on that
task for more details. </para>

<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="edittb.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>

<informaltable>
<tgroup cols="2">
<thead>
<row><entry>Button</entry><entry>Command</entry></row>
</thead>
<tbody>
<row><entry>
<link linkend="menu-undo"><inlinemediaobject><imageobject><imagedata fileref="undo.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-undo">Undo</link>
</entry></row>
<row><entry>
<link linkend="menu-redo"><inlinemediaobject><imageobject><imagedata fileref="redo.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-redo">Redo</link>
</entry></row>
<row><entry>
<link linkend="menu-cut"><inlinemediaobject><imageobject><imagedata fileref="editcut.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-cut">Cut</link>
</entry></row>
<row><entry>
<link linkend="menu-copy"><inlinemediaobject><imageobject><imagedata fileref="editcopy.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-copy">Copy</link>
</entry></row>
<row><entry>
<link linkend="menu-paste"><inlinemediaobject><imageobject><imagedata fileref="editpaste.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-paste">Paste</link>
</entry></row>
<row><entry>
<link linkend="menu-spell"><inlinemediaobject><imageobject><imagedata fileref="spell.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-spell">Spell Check</link>
</entry></row>
<row><entry>
<link linkend="menu-find"><inlinemediaobject><imageobject><imagedata fileref="find.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-find">Find</link>
</entry></row>
<row><entry>
<link linkend="menu-zoom"><inlinemediaobject><imageobject><imagedata fileref="zoom.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-zoom">Zoom</link>
</entry></row>
</tbody></tgroup>
</informaltable>

</sect1>

<sect1 id="paragraph-toolbar">
<title><guilabel>Paragraph</guilabel> Toolbar</title>

<para>The <guilabel>Paragraph</guilabel> toolbar consists of 9 buttons.  Each button performs
a task from the menubar.</para>

<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="paratb.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>

<informaltable>
<tgroup cols="2">
<thead>
<row><entry>Button</entry><entry>Command</entry></row>
</thead>
<tbody>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="chstylebut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Select Character Style</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="alignLeft.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Left Text Align</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="alignCenter.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Center Text Align</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="alignRight.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Right Text Align</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="alignBlock.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Justify Text</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="numtxtbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Numbered Text paragraphs</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="bullist.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Bulleted Text paragraphs</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="decindbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Reduce paragraph indent</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="incindbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Increase Paragraph Indent</entry></row>
</tbody></tgroup>
</informaltable>
</sect1>

<sect1 id="table-edit-toolbar">
<title><guilabel>Table</guilabel> Toolbar</title>

<para>The <guilabel>Table</guilabel> toolbar consists of 5 buttons.  Each button
performs a task from the menubar.  Click on that task for more
details. </para>

<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="tedittb.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>

<informaltable>
<tgroup cols="2">
<thead>
<row><entry>Button</entry><entry>Command</entry></row>
</thead>
<tbody>
<row><entry>
<link linkend="menu-tablestyle"><inlinemediaobject><imageobject><imagedata fileref="tblsty.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-tablestyle">Set tablestyle</link>
</entry></row>
<row><entry>
<link linkend="menu-insert-row"><inlinemediaobject><imageobject><imagedata fileref="rowin.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-insert-row">Insert Row</link>
</entry></row>
<row><entry>
<link linkend="menu-insert-column"><inlinemediaobject><imageobject><imagedata fileref="colin.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-insert-column">Insert Column</link>
</entry></row>
<row><entry>
<link linkend="menu-delete-row"><inlinemediaobject><imageobject><imagedata fileref="rowout.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-delete-row">Delete Row</link>
</entry></row>
<row><entry>
<link linkend="menu-delete-column"><inlinemediaobject><imageobject><imagedata fileref="colout.png" format="PNG"/></imageobject></inlinemediaobject></link>
</entry><entry>
<link linkend="menu-delete-column">Delete Column</link>
</entry></row>
</tbody></tgroup>
</informaltable>
</sect1>

<sect1 id="border-toolbar">
<title><guilabel>Border</guilabel> Toolbar</title>

<para>The <guilabel>Border</guilabel> toolbar consists of 10 buttons.  Each button performs a
task from the menubar.  Click on that task for more details. </para>

<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="bordtb.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>

<informaltable>
<tgroup cols="2">
<thead>
<row><entry>Button</entry><entry>Command</entry></row>
</thead>
<tbody>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="tblsty.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Set framestyle</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="bord.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle border outline</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="lbord.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Left Frame Border</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="rbord.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Right Frame Border</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="tbord.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Top Frame Border</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="bbord.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Toggle Bottom Frame Border</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="bdsizebut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Select Border Size</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="bdselbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Select Border Style</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="bkgdcolorbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Select Border Color</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="bdcolorbut.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Select Background Color</entry></row>
</tbody></tgroup></informaltable>

</sect1>

<sect1 id="formula-toolbar">
<title><guilabel>Formula</guilabel> Toolbar</title>

<para>The <guilabel>Formula</guilabel> toolbar consists of 26 buttons.</para>

<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="formtb.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>

<informaltable>
<tgroup cols="2">
<thead>
<row><entry>Button</entry><entry>Command</entry></row>
</thead>
<tbody>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formsqrt.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add or Change Square Root</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formfrac.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add Fraction</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formbrac.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add to Brackets</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formsbrac.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add to Square Brackets</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formcbrac.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add to Curly Brackets</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formabs.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Absolute Value</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formover.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add Overline</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formunder.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add Underline</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="forminteg.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Integral</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formsum.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Change to Sum</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formprod.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Change to Product</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formmat.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add Matrix</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formulind.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add Upper Left Index</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formllind.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add Lower Left Index</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formurind.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add Upper Right Index</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formlrind.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Add Lower Right Index</entry></row>
<row><entry>-</entry><entry>Right Facing Characters</entry></row>
<row><entry>-</entry><entry>Left Facing Characters</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="formspecchar.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Special Symbols</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="kforminscol.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Insert Column</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="kformappcol.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Append Column</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="kformremcol.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Remove Column</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="kforminsrow.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Insert Row</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="kformapprow.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Append Row</entry></row>
<row><entry><inlinemediaobject><imageobject><imagedata fileref="kformremrow.png" format="PNG"/></imageobject></inlinemediaobject></entry><entry>Remove Row</entry></row>
</tbody></tgroup></informaltable>

</sect1>

<sect1 id="select-colors">
<title>Selecting Colors from a <guilabel>Select Color</guilabel> dialog</title>
<indexterm><primary>selecting a color</primary></indexterm>

<para>&kword; uses a common dialog box any time the user needs to select a color for an object (text, backgrounds, borders, etc.).</para>
<para>This section will go into some detail on how to use this color dialog to choose the best color for your object.</para>
<para>When it is necessary to select a color, a dialog box appears.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="colorseldlg.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>
<para>The color dialog is an incredibly flexible dialog box, which makes it possible to select colors in one of six different methods:</para>
<variablelist>
<varlistentry>
<term>Spectrum selectors</term>
<listitem><para>The spectrum selectors consists of a square to adjust <glossterm linkend="defhue">Hue</glossterm> and
<glossterm linkend="defsaturation">Saturation</glossterm>, and a tall narrow box to adjust <glossterm linkend="defvalue">Value</glossterm>.</para>
<para>The white cross hairs in the box show the currently selected color on the spectrum.  Drag the cross hairs up to increase
<glossterm linkend="defsaturation">saturation</glossterm>.  Drag down to decrease <glossterm linkend="defsaturation">saturation</glossterm>.  Move the
cross hairs left or right to change the <glossterm linkend="defhue">hue</glossterm>.</para>
<para>To adjust the <glossterm linkend="defvalue">value</glossterm> of the color, use the tall, narrow box to move the black arrow.  Sliding the
arrow up increases the color's <glossterm linkend="defvalue">value</glossterm>.  Sliding the arrow down decreases the color's
<glossterm linkend="defvalue">value</glossterm>.</para>
<para>The currently selected color is visible in the colored square below the <guibutton>Add to Custom Colors</guibutton> button.</para></listitem>
</varlistentry>
<varlistentry>
<term>Hue, Saturation and Value</term>
<listitem><para>Using the three spin boxes labeled <guilabel>H</guilabel>,<guilabel>S</guilabel> and <guilabel>V</guilabel>, a user can
specify the <glossterm linkend="defhue">Hue</glossterm> (Range 0-359), <glossterm linkend="defsaturation">Saturation</glossterm> (Range 0-255) 
and <glossterm linkend="defvalue">Value</glossterm> (Range 0-255)
respectively.</para>
<para>The currently selected color is visible in the colored square below the <guibutton>Add to Custom Colors</guibutton> button.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Red, Green and Blue</term>
<listitem><para>Using the three spin boxes labeled <guilabel>R</guilabel>,<guilabel>G</guilabel> and <guilabel>B</guilabel>, a user can
specify the amount of Red, Green and Blue to be mixed to form the current color.  All three boxes can be set to any value from 0-255.</para>
<para>The currently selected color is visible in the colored square below the <guibutton>Add to Custom Colors</guibutton> button.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Palettes</term>
<listitem><para>A palette is a group of related colors.  These colors are all made available for easy selection according to a meaningful
association.</para>
<para>To select a new palette, click on the combo box at the top of the palette selection area.  
You will be presented with several choices:</para>
<para><guilabel>Recent Colors</guilabel> - This is a list of the most recently used colors in your document.  You can use this palette to
maintain consistency.  As each new color is selected, it is automatically added to the recent colors palette.</para>
<para><guilabel>Custom Colors</guilabel> - You can create your own custom palette.  This is done by selecting a 
color using one of the other
color selection options, and clicking on <guibutton>Add to Custom Colors</guibutton>.  
That color is now added to your custom color palette.</para>
<para><guilabel>Forty Colors</guilabel> - This is a list of 40 commonly used colors.  This is a good palette to choose from if some of the people
viewing your document will be on machines with limited color capability.</para>
<para><guilabel>Web Colors</guilabel> - This is a predefined palette of colors that you might find useful for designing web pages.</para>
<para><guilabel>Royal Colors</guilabel> - This is a predefined palette of colors including numerous shades of purple and yellow.</para>
<para><guilabel>Named Colors</guilabel> - This is a list of color names.  The names are based on standard X server color
names.  The names are designed to give descriptive names to each color.  Simply select the name you want. </para>
<para>Once you have selected a palette, you will be presented with a small square showing each color available in the palette. To 
select a color from the palette, simply click on the square of the desired color.</para>
<para>The currently selected color is visible in the colored square below the <guibutton>Add to Custom Colors</guibutton> button.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Eye dropper</term>
<listitem><para>The eye dropper can be used to sample a color from the screen.  </para>
<para>When the eye dropper button is clicked, the cursor becomes crosshairs.  Simply place the crosshairs over any spot on the screen
and click once.  &kword; will detect the selected color and automatically change the current color to match the selection.</para>
<para>This is especially useful for matching color elements between previously created elements and new items.</para>
<para>The currently selected color is visible in the colored square below the <guibutton>Add to Custom Colors</guibutton> button.</para>
</listitem></varlistentry>
<varlistentry>
<term>HTML code</term>
<listitem><para>If you know the HTML color code you want to use, you can enter it into the text box labeled 
<guilabel>HTML:</guilabel>.</para>
<para>For more information on HTML color codes, visit the
<ulink url="http://hotwired.lycos.com/webmonkey/reference/color_codes/">Web monkey</ulink> color code page.</para>
<para>The currently selected color is visible in the colored square below the <guibutton>Add to Custom Colors</guibutton> button.</para>
</listitem>
</varlistentry>
</variablelist>
<para>Once the color is selected, click <guibutton>OK</guibutton> to make that the current color for your text, border, etc.</para>
<para>Click <guibutton>Cancel</guibutton> to abort the color selection.</para>
</sect1>
<sect1 id="file-dialog">
<title>Selecting files using the file dialog</title>
<indexterm><primary>using file dialog</primary></indexterm>

<para>&kword; uses a common dialog box for all file related actions (saving, loading, or selecting new files 
for insertion into the document). An example is shown below.</para>
<screenshot>
<mediaobject>
<imageobject>
<imagedata fileref="savedlg.png" format="PNG"/></imageobject>
</mediaobject>
</screenshot>
<para>This section  will look more closely at this dialog and provided detailed information on its use.</para>

<para>We will begin at the top of the dialog.</para>

<para><emphasis>Toolbar</emphasis></para>

<para>The current location on the drive is listed at the top-center of the dialog.  This example dialog shows the current folder is <filename
class="directory">/home/mmcbride/kword</filename>. If you click on this drop
down box, you will see common and recently visited folders.  By
selecting one of these folders, you will be immediately moved to
that folder and the dialog box will update the file list.</para>

<para>In the upper left corner, is a blue arrow pointed up.  This
arrow will take you up one level in the folder structure.</para>

<para>The next two buttons are back and forward buttons.  These
buttons work just like those in an Internet browser. You can use the <guiicon>Back</guiicon>
button to travel to the previous folder, and the <guiicon>Forward</guiicon> button to
advance into a folder you just came from.</para>

<para>Next to the arrow buttons, is a <guiicon>Reload</guiicon> button.  Clicking this
button, causes &kword; to reload the current folder if new files have been
added or deleted.</para>

<para>To the right of the <guiicon>Reload</guiicon> button, is a blue file folder with a starburst.  This button
will let you create a new folder and name it.</para>

<para>Next to the new folder button, is a button with a star on it.
This button allows you to set and navigate through bookmarks.  This is
a quick way to jump to commonly accessed folders.  By clicking
this button, a submenu appears which allows you to add bookmarks or
jump to a new bookmark.</para>

<para>Next to the bookmark button, is a button with a wrench on it. 
Clicking this button brings up a sub menu with several entries:</para>
<para>
<variablelist>
<varlistentry>
<term><guimenuitem>Sorting</guimenuitem></term>
<listitem>
<para>If this option is selected, a submenu will appear allowing you to sort your files by name, date or size.  You can sort them forward or reversed.  You can also determine if 
folders should be listed before files, or mixed within the files.</para>
</listitem>
</varlistentry>

<varlistentry>
<term><guimenuitem>Short View</guimenuitem></term>
<listitem>
<para>If this option is selected, only the names of the files and folders will be shown.</para>
<para>Compare this to detailed view.</para>
</listitem>
</varlistentry>

<varlistentry>
<term><guimenuitem>Detailed View</guimenuitem></term>
<listitem>
<para>If this option is selected, the names, sizes, dates, permisions, file owners and group ownerships are shown.</para>
<para>Compare this to short view.</para>
</listitem>
</varlistentry>

<varlistentry>
<term><guimenuitem>Show Hidden Files</guimenuitem></term>
<listitem>
<para>This will toggle between revealing and hiding normally hidden files.  In most cases you will want to leave this option off.</para>
</listitem>
</varlistentry>

<varlistentry>
<term><guimenuitem>Show/Hide Quick Access Navigation Panel</guimenuitem></term>
<listitem>
<para>The tall box along the left side of the dialog with a dark grey backround is the Quick Navigation Panel.  You can use this option to toggle whether it is visible or not.</para>
<para>More detailed information about hte Quick Navigation Panel is avialable further down this page.</para>
</listitem>
</varlistentry>

<varlistentry>
<term><guimenuitem>Show/Hide Preview</guimenuitem></term>
<listitem>
<para>You can use this option to toggle whether the preview panel is visible or not.  Typically, the preview panel is left off, but it can be useful when looking for a picture to insert into a document.</para>
</listitem>
</varlistentry>

<varlistentry>
<term><guimenuitem>Separate Folders</guimenuitem></term>
<listitem>
<para>Use this option to toggle between a 2 pane view of the filesystem and a one pane view of the filesystem.  
Most people will not need to worry about this option as most people prefer the one pane view.</para>
</listitem>
</varlistentry>
</variablelist>
</para>

<para><emphasis>Quick Navigation Bar</emphasis></para>

<para>Along the left side of the dialog box, is a column that contains
several icons. You can think of each of these icons as a shortcut to
another subfolder. If you click on an icon, you will be immediately
moved to that location.</para>

<para>You can add/edit or delete entries from the Location Bar.
Simply click with the &RMB; and a small popup menu will appear.</para>

<para><emphasis>File Name and Filters</emphasis></para>


<para>The text box labeled <guilabel>Location:</guilabel> contains the current filename <filename>Resume.kwd</filename>. This text box will contain the 
filename of the currently selected file when loading new documents or files into
&kword;.  When saving a file, you will enter the desired filename in this text box.</para>

<para>The text box labeled <guilabel>Filter:</guilabel> shows we are only looking
at &kword; files.  By clicking on the combo box, you can select from several
different file formats.  You can also select <guilabel>All Supported Files</guilabel> to display
all files that are supported by &kword;.  The file types available will change depending on
the specific task at hand.</para>

<para>If there is a mark in the checkbox labeled <guilabel>Automatically select filename extension</guilabel>, 
then &kword; will add the correct filename extension based on your selection in the <guilabel>Filter:</guilabel> 
drop down box.  If there is no mark in this box, you are responsible for providing an extension.  Most users 
will leave this box marked.</para>

<para>There is a <guibutton>Cancel</guibutton> button, if you click this
button, the action will be aborted, and you will return to editing the
document.</para>

<para>There is an <guibutton>OK</guibutton> button, which will be used
when we have selected the correct filename.</para>

<para>Using this dialog, you can move through the folder tree to find
any location on your computer.</para>

<para>To enter a folder click on that folder.  To exit that folder,
click the blue up arrow button.</para>

<note><para>This dialog box is used in many different tasks in &kword;.  The task will determine the exact effect
of the information you have entered into this dialog box.  For more information on the exact effect, see the documentation on that task.
</para></note>
</sect1>
</chapter>