summaryrefslogtreecommitdiffstats
path: root/doc/en/index.docbook.in
blob: aaf35475f73a30b9e3a7645966cfec73b26a58be (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
<?xml version="1.0" ?>
<!DOCTYPE book PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" "dtd/kdex.dtd" [
  <!ENTITY kbfxconfigapp "<application>KBFX Configurator @APPLICATION_VERSION@</application>">
  <!ENTITY kappname "&kbfxconfigapp;"><!-- Do *not* replace kappname-->
  <!ENTITY package "kde-module"><!-- tdebase, tdeadmin, etc -->
  <!ENTITY % addindex "IGNORE">
  <!ENTITY % English "INCLUDE"><!-- change language only here -->


  <!-- Do not define any other entities; instead, use the entities
       from kde-genent.entities and $LANG/user.entities. -->
]>

<!-- ................................................................ -->

<!-- The language must NOT be changed here. -->

<book lang="&language;">

<bookinfo>
	<title>The &kbfxconfigapp; Handbook</title>

	<authorgroup>
		<author>
			<firstname>Siraj</firstname>
			<othername></othername>
			<surname>Razick</surname>
			<affiliation>
				<address><email>siraj@kdemail.net</email></address>
			</affiliation>
		</author>

		<author>
			<firstname></firstname>
			<othername></othername>
			<surname>PhobosK</surname>
			<affiliation>
				<address><email>phobosk@mail.kbfx.org</email></address>
			</affiliation>
		</author>

		<author>
			<firstname>Mensur</firstname>
			<othername>Nookie</othername>
			<surname>Zahirovic</surname>
			<affiliation>
				<address><email>nookie@mail.kbfx.org</email></address>
			</affiliation>
		</author>

		<author>
			<firstname>Nathanael</firstname>
			<othername></othername>
			<surname>Gogniat</surname>
			<affiliation>
				<address><email>nathanael@mail.kbfx.org</email></address>
			</affiliation>
		</author>
	</authorgroup>

	<!-- TRANS:ROLES_OF_TRANSLATORS -->

	<copyright>
		<year>2007</year>
		<holder><link linkend="kbfx_team">KBFX Team</link></holder>
	</copyright>

	<!-- Translators: put here the copyright notice of the translation -->
	<!-- Put here the FDL notice.  Read the explanation in fdl-notice.docbook
	     and in the FDL itself on how to use it. -->
	<legalnotice>&FDLNotice;</legalnotice>

	<!-- Date and version information of the documentation
	Don't forget to include this last date and this last revision number, we
	need them for translation coordination !
	Please respect the format of the date (YYYY-MM-DD) and of the version
	(V.MM.LL), it could be used by automation scripts.
	Do NOT change these in the translation. -->

	<date>@APPLICATION_DATE@</date>
	<releaseinfo>@APPLICATION_VERSION@</releaseinfo>

	<!-- Abstract about this handbook -->

	<abstract>
		<para>
			KBFX is an alternative to the classical K-Menu button and it's menu.
		</para>

		<para>
			It improves the user experience by enabling the user to set a bigger (and
			thus more visible) start button and by finally replacing the Win95-like K-Menu.
			But if you still want the old menu, because you're used to it, it is still
			available as an option in KBFX. We recommend, however, that you give the Spinx
			bar a try.
		</para>
	</abstract>

	<!-- This is a set of Keywords for indexing by search engines.
	Please at least include KDE, the KDE package it is in, the name
	 of your application, and a few relevant keywords. -->

	<keywordset>
		<keyword>KDE</keyword>
		<keyword>kbfxconfigapp</keyword>
		<keyword>KBFX</keyword>
		<keyword>Menu</keyword>
		<keyword>Configurator</keyword>
	</keywordset>
</bookinfo>

<!-- The contents of the documentation begin here. -->

<chapter id="introduction">
	<title>Introduction</title>

	<para>
		KBFX is an alternative to the classical K-Menu button and it's menu.
		It improves the user experience by enabling the user to set a bigger (and
		thus more visible) start button and by finally replacing the Win95-like K-Menu.
		But if you still want the old menu, because you're used to it, it is still
		available as an option in KBFX. We recommend, however, that you give the Spinx
		bar a try.
	</para>

	<para>&#160;</para>

	<sect1 id="kbfx-features">
		<title>KBFX features</title>

		<para>
			Main KBFX features:
		</para>

		<orderedlist>
			<listitem>
				<para>
					Using Plugins.
				</para>
			</listitem>

			<listitem>
				<para>
					Selecting an Application Group.
				</para>
			</listitem>

			<listitem>
				<para>
					Scroll up and down the application list.
				</para>
			</listitem>

			<listitem>
				<para>
					Type and locate an Application.
				</para>
			</listitem>

			<listitem>
				<para>
					Logout of the Desktop.
				</para>
			</listitem>

			<listitem>
				<para>
					Lock the Desktop.
				</para>
			</listitem>

			<listitem>
				<para>
					Launch the KBFX Configurator (the KBFX settings manager).
				</para>
			</listitem>
		</orderedlist>

		<para>
			Extra KBFX features:
		</para>

		<orderedlist>
			<listitem>
				<para>
					Double buffered Widgets to minimize flicker.
				</para>
			</listitem>

			<listitem>
				<para>
					Animated scroll bars.
				</para>
			</listitem>

			<listitem>
				<para>
					New Tooltip.
				</para>
			</listitem>

			<listitem>
				<para>
					New Control Manager.
				</para>
			</listitem>

			<listitem>
				<para>
					Drag &#038; Drop Applications' Items support.
				</para>
			</listitem>

		</orderedlist>
	</sect1>

	<sect1 id="kbfx-history">
		<title>KBFX History</title>

		<para>
			KBFX was started on June 5th 2005 as a hobbyist project by Siraj Razick, born out of a spontaneous idea.
		</para>

		<para>
			The reason was that Siraj didn't like the old K-Menu, which was quite a clone of the old Win95 Start menu. So he started coding.
			The first step provided merely the possibility to call the K-Menu via a button, that could have a different shape and size than the original K-Menu button, which has always been an icon of a square size. To change the default KBFX button, one still had to copy an image file to a certain location.
			After the first post in mid-June 05, KBFX has spread rapidly and it was nice to see that until end of June, there were already a dozen posts on kde-look with buttons and builds.
		</para>

		<para>
			Mensur Zahirovic (called Nookie) joined Siraj on 5th of august, after Siraj met him on yahoo. Nookie is responsible for the Web-development and the Q&#038;A. He also arranged the site www.kbfx.org, that replaces the previous site www.linuxlots.com/~siraj/plugin/kde.
		</para>

		<para>
			After that, things began to speed up.
			Now KBFX is no longer just another button design for the K-Menu, but provides an alternative to it, that is in fact more sophisticated than the XP-Start menu.
		</para>
	</sect1>

	<sect1 id="kbfx-development">
		<title>KBFX Development</title>

		<para>
			KBFX version 0.4.9.3 is a complete rewrite of the old KBFX code eliminating all the negative points of the previous versions.
		</para>

		<para>
			At the start we had a list of end requirements for version 0.4.9.3 and we developed each of the feature units, testing each and every class as it was developed.
			Apart from unit testing, the quality assurance managers periodically checked the quality of the product and the new releases that were made to the KBFX source repository.
			The Q&#038;A always checked the product against the requirements that we had set to maximize quality.
			This way of development helped us to discover tons of bugs and fix them instantly, and so we debut with a rather clean and bug free KBFX.
		</para>

		<para>
			It was really helpful to see many users around the world checking out the development release of KBFX from SVN, reporting and posting problems encountered and helping to add more stability and compatibility between distributions.
			Because of this, we know the supported platforms even before KBFX is 0.4.9.3 is released.
		</para>

		<para>
			KBFX has been tested to work with all GCC3.x and GCC4.x compilers.
			It has been tested on systems running the distributions of Gentoo, Debian, Ubuntu, Suse, Slackware, Mango, Mandrake, PCLinuxOS and Fedora core.
			Unfortunately, compiling on FreeBSD systems is yet to be tested, but we plan to port KBFX to FreeBSD and PcBSD.
		</para>
	</sect1>

	<sect1 id="kbfx-concepts">
		<title>KBFX Concepts</title>

		<para>
			The KBFX Spinx Menu does not try to copy the WinXP Start menu.
			It is based on a different approach and concept.
			Following, the concepts of the traditional hierarchical structure and the new, flat indexed menu are described and compared, although the new menu structure is quite intuitive.
		</para>

		<para>&#160;</para>

		<sect2>
			<title>Hierarchical (Traditional) menu structure</title>

			<para>
				The KDE K-Menu is a good example of a flat hierarchical menu.
				It organizes application shortcuts in a tree link structure, where it can expand and open a submenu, with entries displayed based on some logical order.
				This order may be task oriented, type oriented or just ordered alphabetically.
				To find and launch an application, the user needs to navigate through the submenus, until he reaches the leaf (leaf node).
				This approach is a direct adoption of the Microsoft Windows Start Menu. They introduced it with Windows 95/98/ME/NT/2000. This was certainly a huge usability advantage compared to the Windows 3.1 System with the program manager, but a lot has changed since these days. The Windows XP Start Menu is still based on this concept, although it is enhanced by the functionalities to pin applications to the left column and the automatically pinned most used applications.
				But still, a user must move the mouse over the half screen, if his menu has many submenus with other submenus, and the application is not one of his most used or pinned applications.
			</para>

			<para>&#160;</para>
		</sect2>


		<sect2>
			<title>Flat indexed menu structure</title>

			<para>
				The KBFX Spinx Menu uses a different approach – the flat indexed menu.
				With this type of menu it's very easy to navigate.
				On the left hand side, you are given the application categories.
				They can be task oriented or type oriented. On the right (middle) side of the menu, there are all the available applications listed that belong to the activated category.
				The advantage is evident - the menu reduces the mouse paths, so you can locate your applications very fast. The user sees all the categories at a glance and he can pick it without having to travel along a long list until he finds the end leaf.
				The speed of use is further enhanced by moving the most used and recently used applications on the top index, so that the most used applications are just one click away.
			</para>
		</sect2>
	</sect1>
</chapter>


<chapter id="using-kbfx">
	<title>Using KBFX</title>

	<para>&#160;</para>

	<sect1 id="howto-button">
		<title>Starting KBFX</title>

		<para>
			The KBFX menu button is a starting point for the menu. It first has to be added to a kicker's panel.
			To add the KBFX Menu to a panel, proceed as following:
		</para>

		<procedure>
			<step>
				<para>
					Right-click on the kicker's panel, on which you want to place the KBFX button.
				</para>
			</step>

			<step>
				<para>
					Select "Add Applet to Panel..." in the context menu.
				</para>
			</step>

			<step>
				<para>
					Select "KBFX Spinx".
				</para>
			</step>

			<step>
				<para>
					A tooltip appears "KBFX Spinx Added".
				</para>
			</step>

			<step>
				<para>
					If you move your mouse over the button, a tooltip appears (turned off
					in the default configuration).
				</para>
			</step>

			<step>
				<para>
					If you want to skin the KBFX Start Button see <link linkend="kbfx_button">this section</link>.
				</para>
			</step>

			<step>
				<para>
					If you want to, you can now remove the K-Menu button and move the KBFX to the desired place on the panel. To open the menu, just click on the button.
				</para>
			</step>
		</procedure>
	</sect1>

	<sect1 id="howto-menu">
		<title>Using the Spinx Menu</title>

		<screenshot>
			<screeninfo>Here's a screenshot of the Spinx Menu</screeninfo>

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

				<textobject>
					<phrase>Screenshot of the the Spinx Menu</phrase>
				</textobject>
			</mediaobject>
		</screenshot>

		<para>
			The Spinx Menu looks (depending on the skin) like the picture above.
			It consists of following elements.
			<orderedlist>
				<listitem>
					<para>
						The picture in the upper left corner is your "dude" icon.
					</para>
				</listitem>

				<listitem>
					<para>
						In the left and right columns of the menu, the plugins are displayed.
						Click on a plugin section, to display it's content in the middle column.
						If you click on the plugin's name you can contract its sections.
					</para>
				</listitem>

				<listitem>
					<para>
						In the middle column of the menu, the menu items of the selected plugin section are displayed.
						Usually the menu items are grouped.
						If you click on a group it will contract.
						There is an <link linkend="kbfx_layout">option</link> in the KBFX Configurator to start all these groups contracted.
					</para>
					<para>
						You CAN drag and drop items FROM this part of the menu to your desktop, konqueror etc.
					</para>
					<para>
						You CAN NOT drag and drop items TO this part of the menu.
					</para>
				</listitem>

				<listitem>
					<para>
						The arrows above and below the middle column are used to scroll up and down in the middle column.
					</para>
				</listitem>

				<listitem>
					<para>
						In the upper right corner, you find a search field, which can help you finding a menu item.
						It is "search as you tipe" field.
						If you want to clear the search (or the search term) double click on the search icon in the field.
						If you type a command in the search field and press "Enter", the command will be started as if it has been typed in the "Run command..." dialog of K-menu.
					</para>
				</listitem>

				<listitem>
					<para>
						In the lower right corner, you find two buttons, one to log out and one to lock the desktop.
					</para>
				</listitem>
			</orderedlist>
		</para>
	</sect1>

	<sect1 id="howto-configure">
		<title>How to configure KBFX</title>

		<para>
			Here you can find how to use the KBFX Configurator.
		</para>

		<para>&#160;</para>

		<sect2>
			<title><anchor id="kbfx_themes" />Choose the KBFX Theme</title>

			<screenshot>
				<screeninfo>Here's a screenshot of the Themes Section of the KBFX Configurator</screeninfo>

				<mediaobject>
					<imageobject>
						<imagedata fileref="../common/kbfx-themes.jpg" format="JPG"/>
					</imageobject>

					<textobject>
						<phrase>Screenshot of the Themes Section of the KBFX Configurator</phrase>
					</textobject>
				</mediaobject>
			</screenshot>

			<para>
				<variablelist>
					<varlistentry>
						<term>Select default folder</term>
						<listitem>
							<para>
								Here you can select the folder in which you keep all your themes.
							</para>
						</listitem>
					</varlistentry>
				</variablelist>
			</para>

			<para>
				The other options are self explanatory and have tooltips that can help you use them.
			</para>

			<para>&#160;</para>
		</sect2>

		<sect2>
			<title><anchor id="kbfx_button" />Skin the KBFX Button</title>

			<screenshot>
				<screeninfo>Here's a screenshot of the Start Button Section of the KBFX Configurator</screeninfo>

				<mediaobject>
					<imageobject>
						<imagedata fileref="../common/kbfx-startbutton.jpg" format="JPG"/>
					</imageobject>

					<textobject>
						<phrase>Screenshot of the Start Button Section of the KBFX Configurator</phrase>
					</textobject>
				</mediaobject>
			</screenshot>

			<para>
				Here you can skin the button. There are three fields to fill.
				The first field is the field for the path to the picture for the default button state (Normal).
				The second field is for the picture of the button in pressed state (Pressed).
				The third field is for the picture of the button in hovered state (Hover).
				You can drag and drop images on the "Preview" place or on the file selector field of each button.
				The selected design can be seen in the preview area. Press the "Apply" button to apply the selected look.
			</para>

			<tip>
				<para>
					You can skin the KBFX Start Button by selecting three images (Normal, Pressed and Hover) in any file manager, drag and drop them on the KBFX Start Button. In order this to work the images have to have in their name the respective state of the button, i.e. "pressed", "hover" or "normal". Here is an example of valid file names for the button: my_hover_dButton.png, my_pressed_dButton.png, my_normal_dButton.png .
				</para>
			</tip>

			<variablelist>
				<varlistentry>
					<term>Button Fade Transition Effect</term>
					<listitem>
						<para>
							This allows you to turn ON or OFF the fade effect for the KBFX button. This effect makes transitions between the three images (normal, hover, pressed) animated. Here you can set the time for the fade effect in msec. This time should be greater than 20 msec and less than 1000 msec. If set to 0 the effect will be disabled.
						</para>
					</listitem>
				</varlistentry>
			</variablelist>

			<para>&#160;</para>

			<para>
				The other options are self explanatory and have tooltips that can help you use them.
			</para>

			<para>&#160;</para>
		</sect2>

		<sect2>
			<title><anchor id="kbfx_fonts" />Set the Fonts of the KBFX Theme</title>

			<screenshot>
				<screeninfo>Here's a screenshot of the Fonts Section of the KBFX Configurator</screeninfo>

				<mediaobject>
					<imageobject>
						<imagedata fileref="../common/kbfx-fonts.jpg" format="JPG"/>
					</imageobject>

					<textobject>
						<phrase>Screenshot of the Fonts Section of the KBFX Configurator</phrase>
					</textobject>
				</mediaobject>
			</screenshot>

			<para>
				Here you can configure all the fonts (colors, points, style etc.) for the current theme.
			</para>

			<para>
				<variablelist>
					<varlistentry>
						<term>EXPORT KBFXFONTRC FILE</term>
						<listitem>
							<para>
								Use this button to export your font settings in order to share it with other KBFX users or if you want to create a theme by yourself (how to create your own themes you can find out in <link linkend="howto-themes">this chapter</link>).
							</para>
						</listitem>
					</varlistentry>
				</variablelist>
			</para>

			<important>
				<para>
					In the font settings for the tooltip only "Font Name" and "Font Color" are used.
					The other settings like "Font Style" and "Font size" are not used.
					This may change in future versions.
				</para>
			</important>

			<para>
				The other options are self explanatory and have tooltips that can help you use them.
			</para>

			<para>&#160;</para>
		</sect2>

		<sect2>
			<title><anchor id="kbfx_layout" />Set the Layout of the KBFX Theme</title>

			<screenshot>
				<screeninfo>Here's a screenshot of the Layout Section of the KBFX Configurator</screeninfo>

				<mediaobject>
					<imageobject>
						<imagedata fileref="../common/kbfx-layout.jpg" format="JPG"/>
					</imageobject>

					<textobject>
						<phrase>Screenshot of the Layout Section of the KBFX Configurator</phrase>
					</textobject>
				</mediaobject>
			</screenshot>

			<para>
				Here you can configure all the layout options for the current theme.
			</para>

			<para>
				<variablelist>
					<varlistentry>
						<term>Make it 2/3 Panels buttons</term>
						<listitem>
							<para>
								Use these buttons to force KBFX to auto-configure the current theme to the listed layouts.
							</para>
						</listitem>
					</varlistentry>

					<varlistentry>
						<term>EXPORT KBFXLAYOUTRC FILE</term>
						<listitem>
							<para>
								Use this button to export your layout settings in order to share it with other KBFX users or if you want to create a theme by yourself (how to create your own themes you can find out in <link linkend="howto-themes">this chapter</link>).
							</para>
						</listitem>
					</varlistentry>
				</variablelist>
			</para>

			<para>
				The other options are self explanatory and have tooltips that can help you use them.
			</para>

			<para>&#160;</para>
		</sect2>

		<sect2>
			<title><anchor id="kbfx_plugins" />Set the KBFX Plugins</title>

			<screenshot>
				<screeninfo>Here's a screenshot of the Plugins Section of the KBFX Configurator</screeninfo>

				<mediaobject>
					<imageobject>
						<imagedata fileref="../common/kbfx-plugins.jpg" format="JPG"/>
					</imageobject>

					<textobject>
						<phrase>Screenshot of the Plugins Section of the KBFX Configurator</phrase>
					</textobject>
				</mediaobject>
			</screenshot>

			<para>
				Here you can configure the plugins KBFX will use and where to place them - on  the left or on the right column of the KBFX Menu.
			</para>

			<para>
				The other options are self explanatory and have tooltips that can help you use them.
			</para>

			<para>&#160;</para>
		</sect2>

		<sect2>
			<title><anchor id="kbfx_tooltip" />Set the Tooltip of the KBFX Button</title>

			<screenshot>
				<screeninfo>Here's a screenshot of the Tooltip Section of the KBFX Configurator</screeninfo>

				<mediaobject>
					<imageobject>
						<imagedata fileref="../common/kbfx-tooltip.jpg" format="JPG"/>
					</imageobject>

					<textobject>
						<phrase>Screenshot of the Tooltip Section of the KBFX Configurator</phrase>
					</textobject>
				</mediaobject>
			</screenshot>

			<para>
				Here you can select if the tooltip is on or off and if the tooltip animation is on or off.
				In the field for the Tooltip text, you can change the tooltip text that will appear in the Tooltip balloon.
			</para>

			<para>
				The other options are self explanatory and have tooltips that can help you use them.
			</para>

			<para>&#160;</para>
		</sect2>

		<sect2>
			<title><anchor id="kbfx_style" />Set the Style of the KBFX Menu</title>

			<screenshot>
				<screeninfo>Here's a screenshot of the Menu Style Section of the KBFX Configurator</screeninfo>

				<mediaobject>
					<imageobject>
						<imagedata fileref="../common/kbfx-style.jpg" format="JPG"/>
					</imageobject>

					<textobject>
						<phrase>Screenshot of the Menu Style Section of the KBFX Configurator</phrase>
					</textobject>
				</mediaobject>
			</screenshot>

			<para>
				Here you can select, whether you want to work with the KBFX SPINX or the KDE MENU.
				You just have to select the according option and press the "Apply" button.
			</para>
		</sect2>
	</sect1>
</chapter>

<chapter id="faq">
	<title>Questions and Answers</title>

	<qandaset id="faqlist">
		<qandaentry>
			<question>
				<para>
					I have a question that is not covered by this documentation. Where I can get an answer?
				</para>
			</question>

			<answer>
				<para>
					You can search the <ulink url="http://www.kbfx.org/forum">KBFX Forum</ulink> for an answer OR you can ask your question in the forum.
				</para>
			</answer>
		</qandaentry>

		<qandaentry>
			<question>
				<para>
					How can I contact you live?
				</para>
			</question>

			<answer>
				<para>
					Come to the #kbfx channel on irc.freenode.org
				</para>
			</answer>
		</qandaentry>
	</qandaset>
</chapter>


<chapter id="kbfx_about">
	<title>Authors, Credits and License</title>

	<para>
		&kbfxconfigapp;
	</para>

	<para>&#160;</para>

	<para>
		Program Copyright (c) 2007 <link linkend="kbfx_team">KBFX Team</link>.
	</para>

	<para>&#160;</para>

	<para>
		<anchor id="kbfx_team" />KBFX Team Managers:
		<itemizedlist>
			<listitem>
				<para>
					Siraj Razick <email>siraj@kdemail.net</email>
				</para>
			</listitem>

			<listitem>
				<para>
					PhobosK <email>phobosk@kdemail.net</email>
				</para>
			</listitem>

			<listitem>
				<para>
					Mensur Zahirovic <email>nookie@mail.kbfx.org</email>
				</para>
			</listitem>


			<listitem>
				<para>
					Nathanael Gogniat <email>nathanael@mail.kbfx.org</email>
				</para>
			</listitem>
		</itemizedlist>
	</para>

	<para>&#160;</para>

	<para>
		Translations:
		<itemizedlist>
			<listitem>
				<para>
					Ferenc Stelcz <email>ferenc@stelcz.hu</email> - Hungary (HU)
				</para>
			</listitem>

			<listitem>
				<para>
					Divilinux <email>divilinux@mail.kbfx.org</email> - Italy (IT)
				</para>
			</listitem>

			<listitem>
				<para>
					Lexus <email>lexus@mail.kbfx.org</email> - Bulgaria (BG)
				</para>
			</listitem>

			<listitem>
				<para>
					PhobosK <email>phobosk@kdemail.net</email> - Bulgaria (BG)
				</para>
			</listitem>

			<listitem>
				<para>
					Monkey 9 <email>monkey9@iae.nl</email> - Netherlands (NL)
				</para>
			</listitem>
		</itemizedlist>
	</para>

	<para>&#160;</para>

	<para>
		Contributors and Credits:
		<itemizedlist>
			<listitem>
				<para>
					Darwin M. Bautista <email>djclue917@gmail.com</email> - 001.patch
				</para>
			</listitem>

			<listitem>
				<para>
					Revaline C. Regendra <email>regendra_mail7@yahoo.com</email> -
					Author of the Launch button in the default "KBFX Silk TTP" theme.
				</para>

				<para>
					Copyright (c) 2006 Revaline^Studio

					<ulink url="http://www.kde-look.org/content/show.php?content=36399">
						Revaline's Launch Menu v4.0
					</ulink>
				</para>
			</listitem>

			<listitem>
				<para>
					Petri Damstén <email>damu@iki.fi</email> - Author of the KMFFontChooser class.
					<ulink url="http://www.iki.fi/damu/software/kmediafactory/">KMediaFactory</ulink>
				</para>
			</listitem>
		</itemizedlist>
	</para>

	<para>&#160;</para>

	<para>
		Documentation Copyright (c) 2007 PhobosK <email>phobosk@mail.kbfx.org</email>
	</para>

	<para>&#160;</para>

	<!-- TRANS:CREDIT_FOR_TRANSLATORS -->

	&underFDL;               <!-- FDL: do not remove -->

	<para>&#160;</para>

	&underGPL;        	 <!-- GPL License -->
</chapter>

<appendix id="installation">
	<title>Installation</title>

	<sect1 id="getting-kbfxconfigapp">
		<title>How to obtain KBFX</title>

		<para>
			KBFX can be downloaded from <ulink url="http://sourceforge.net/project/showfiles.php?group_id=141258">SourceForge project pages</ulink>.
		</para>

		<para>
			Sometimes development versions are uploaded in a <ulink url="http://kbfx.sourceforge.net/testing/">separate space on SourceForge</ulink>.
		</para>

		<para>
			The SVN address of the KBFX project is on the <ulink url="svn://anonsvn.kde.org/home/kde/trunk/playground/base/kbfx_plasma">KDE SVN servers</ulink>.
		</para>
	</sect1>

	<sect1 id="requirements">
		<title>Requirements</title>

		<para>
			In order to successfully compile and use KBFX, you need at least &kde; 3.4.X and also you need:
		</para>

		<itemizedlist>
			<listitem>
				<para>
					<ulink url="http://www.cmake.org">Cmake</ulink> - min. version 2.4.2
				</para>
			</listitem>

			<listitem>
				<para>
					KDE3 and Qt3 sources - header files/devel packages
				</para>
			</listitem>

			<listitem>
				<para>
					<ulink url="http://strigi.sf.net">Strigi</ulink> -this package is OPTIONAL and is used for files inline search
				</para>
			</listitem>
		</itemizedlist>

		<para>&#160;</para>

		<para>
			You can find the most recent KBFX's list of changes at <ulink url="http://websvn.kde.org/trunk/playground/base/kbfx_plasma/doc/ChangeLog?view=markup">KDE SVN</ulink>.
		</para>
	</sect1>

	<sect1 id="compilation">
		<title>Compilation and Installation</title>

		<procedure>
			<step>
				<para>
					Unpack the sources of KBFX with (x.y.z-XXXXXXXX represents the version of
		the KBFX package, for example 0.4.9.3-20070117):
				</para>
				<screen>
> tar xjvf kbfx-x.y.z-XXXXXXXX.tar.bz2
				</screen>
			</step>

			<step>
				<para>
					Change into the new directory:
				</para>

				<screen>
> cd kbfx-x.y.z-XXXXXXXX/
				</screen>
			</step>

			<step>
				<para>
					Start the configuration and the compilation using the command:
				</para>

				<screen>
> ./build.sh
				</screen>
			</step>
		</procedure>

		<para>&#160;</para>

		<note>
			<title>Note for Mandriva &#060; 2007 users:</title>

			<para>
				    The build script (by default) enables the use of <command>menudrake</command>
				    instead of <command>kmenuedit</command>.
				    If you want to prevent this behavior then pass ONE of these options to the build script: <command>--menudrake-off</command> OR <command>-m</command>
			</para>
		</note>

		<para>&#160;</para>

		<note>
			<title>Other building options:</title>

			<itemizedlist>
				<listitem>
					<para>
						<command>--prefix</command> OR <command>-p</command> to install KBFX in a different than the default folder (default is KDE install folder) for example:
						<screen>
> ./build.sh -p /home/user
						</screen>
					</para>
				</listitem>

				<listitem>
					<para>
						<command>--strigi</command> OR <command>-s</command> to enable Strigi support in KBFX (default is no Strigi support)
					</para>
				</listitem>

				<listitem>
					<para>
						<command>--kde4</command> OR <command>-k</command> to build KBFX for KDE4 (default is for KDE3)
					</para>
				</listitem>

				<listitem>
					<para>
						<command>--verbose</command> OR <command>-v</command> to make the build script give more verbose information
					</para>
				</listitem>

				<listitem>
					<para>
						<command>--nocheck</command> OR <command>-n</command> to make the build script not to check if an old KBFX version is installed (default is to check)
					</para>
				</listitem>
			</itemizedlist>
		</note>
	</sect1>

	<sect1 id="checkinstall">
		<title>Using <command>checkinstall</command></title>

		<para>
			<command>checkinstall</command> is an application used to build distribution specific packages from sources.
		</para>

		<para>
			<command>checkinstall</command> DOES NOT work with cmake correctly up to this moment. :(
		</para>

		<para>
			It can be used with additional commands in order to "work properly".
			Here is the procedure to follow as user (NOT as ROOT) in order to obtain
			the necessary distribution package.
		</para>

		<note>
			<itemizedlist>
				<listitem>
					<para>
						x.y.z-XXXXXXXX represents the version of the KBFX package, in this example it is: 0.4.9.3-20070117
					</para>
				</listitem>

				<listitem>
					<para>
						In the example here the version string is replaced only in the checkinstall command but you have to do that everywhere the "x.y.z-XXXXXXXX" string is met.
					</para>
				</listitem>
			</itemizedlist>
			<para>
			</para>
		</note>

		<screen>
> cd /tmp
> tar xjvf kbfx-x.y.z-XXXXXXXX.tar.bz2
> cd kbfx-x.y.z-XXXXXXXX/
> mkdir -p build/package
> cd build
> export DESTDIR=/tmp/kbfx-x.y.z-XXXXXXXX/build/package
> cmake  ../ -DCMAKE_INSTALL_PREFIX=`tde-config --prefix`
> make install DESTDIR=/tmp/kbfx-x.y.z-XXXXXXXX/build/package
> find package/|sed s#^package/#./# > installed_files.txt
> cd package/
> su
> checkinstall -nodoc --pkgname="kbfx" --pkgversion="0.4.9.3" \
--pkgrelease="20070117" --exclude="/" --include=../installed_files.txt \
--pakdir=/tmp/kbfx-0.4.9.3-20070117 sleep 1
		</screen>

		<para>
			When ready, "checkinstall" will show you the folder where the prepared package is, like in this Mandriva Example:
		</para>

		<screen>
**********************************************************************

Done. The new package has been saved to

/tmp/kbfx-0.4.9.3-20070117/kbfx-0.4.9.3-20070117.i386.rpm
You can install it in your system anytime using:

rpm -i kbfx-0.4.9.3-20070117.i386.rpm

**********************************************************************
		</screen>

		<para>
			Of course the best way to make RPM packages is to use the "kbfx.spec" file provided in the KBFX sources like described bellow.
		</para>
	</sect1>

	<sect1 id="rpmbuilding">
		<title>RPM Building Instructions (Mandriva, Fedora, Suse)</title>

		<para>
			If you prefer manipulate a RPM, you can build it with the following commands:
		</para>

		<procedure>
			<step>
				<para>
					<anchor id="rpm_1" />Build the RPM:
				</para>

				<screen>
> rpmbuild -tb kbfx-x.y.z-XXXXXXXX.tar.bz2
				</screen>

				<para>or (for Mandriva)</para>

				<screen>
> rpmbuild --rebuild kbfx-x.y.z-XXXXXXXX-mdv20070.src.rpm
				</screen>

				<para>or (for Fedora)</para>

				<screen>
> rpmbuild --rebuild kbfx-x.y.z-XXXXXXXX-FCx.src.rpm
				</screen>

				<para>or (for SuSe)</para>

				<screen>
> rpmbuild --rebuild kbfx-x.y.z-XXXXXXXX-suseXXX.src.rpm
				</screen>
			</step>

			<step>
				<para>
					<anchor id="rpm_2" />If succeed, you will found the rpm in /usr/src/rpm/RPMS (for Mandriva) or /usr/src/redhat/RPMS (for Fedora) or /usr/src/packages/RPMS (for Suse) according to the platform you have.
				</para>
			</step>

			<step>
				<para>
					<anchor id="rpm_3" />Install the rpm as usually by:
				</para>

				<screen>
> rpm -Uvh kbfx-x.y.z-XXXXXXXX.rpm
				</screen>
			</step>
		</procedure>

		<para>&#160;</para>

		<note>
			<title>Building RPM from KBFX SVN versions:</title>

			<itemizedlist>
				<listitem>
					<para>
						Follow these commands in the sources directory:
					</para>
					<screen>
> ./build.sh
					</screen>

					<para>
						Answer "N" to the question if you want to install KBFX.
					</para>

					<screen>
> cd build
> make dist
					</screen>
				</listitem>

				<listitem>
					<para>
						A file "kbfx-x.y.z-XXXXXXXX.tar.bz2" will be created in the build directory.
					</para>
				</listitem>

				<listitem>
					<para>
						Proceed with the steps described in <link linkend="rpm_1">1.</link>, <link linkend="rpm_2">2.</link>, <link linkend="rpm_3">3</link>.
					</para>
				</listitem>
			</itemizedlist>
		</note>
	</sect1>

	<sect1 id="gentoo">
		<title>Gentoo users</title>

		<para>
			In order to use the strigi engine in KBFX you have to do these steps:
		</para>

		<procedure>
			<step>
				<para>
					Copy the "strigi-X.X.X.ebuild" and the "kbfx-0.4.9.X.ebuild" (from the sources directory) to your local portage tree as needed OR use the "kbfx-0.4.9.X-portage-overlay.tar.bz2"
				</para>
			</step>

			<step>
				<para>
					Set the flag "strigi" for the kbfx ebuild
				</para>
			</step>

			<step>
				<para>
					Emerge "clucene"
				</para>
			</step>

			<step>
				<para>
					Emerge "kbfx"
				</para>
			</step>
		</procedure>

		<para>&#160;</para>

		<para>
			There is a Layman overlay resource on the SourceForge SVN.
			You can add it by this command:
		</para>

		<screen>
> layman -f -o https://kbfx.svn.sourceforge.net/svnroot/kbfx/layman/kbfx-overlay.xml \
  -a kbfx
		</screen>

		<para>
			After you add the "kbfx" overlay you can use it as usual.
		</para>

	</sect1>

	<sect1 id="svn">
		<title>SVN version</title>

		<para>
			To download the latest development source, you need to go to <ulink url="svn://anonsvn.kde.org/home/kde/trunk/playground/base/kbfx_plasma">KDE SVN</ulink> and download it from there. The current SVN address of the repository is: <ulink url="svn://anonsvn.kde.org/home/kde/trunk/playground/base/kbfx_plasma">svn://anonsvn.kde.org/home/kde/trunk/playground/base/kbfx_plasma</ulink>
		</para>

		<para>
			Here are the instructions on how to get a copy of the SVN Repository:
		</para>

		<procedure>
			<step>
				<para>
					Install your distribution's package named "subversion" OR download and install it from <ulink url="http://subversion.tigris.org">subversion's homepage</ulink>
				</para>
			</step>

			<step>
				<para>
					Create a folder where you will compile/install KBFX and enter in it. For example do this:
				</para>

				<screen>
> mkdir -p ~/usr/src/svn
> cd ~/usr/src/svn
				</screen>
			</step>

			<step>
				<para>
					Checkout the SVN version of KBFX in this way and proceed as follows:
				</para>

				<screen>
> svn co svn://anonsvn.kde.org/home/kde/trunk/playground/base/kbfx_plasma
> cd  kbfx_plasma
				</screen>
			</step>

			<step>
				<para>
					Proceed with the compilation/installation of KBFX:
				</para>

				<screen>
> ./build.sh
				</screen>
			</step>

			<step>
				<para>
					If you want always to have the latest version of KBFX you may leave the folder "~/usr/src/svn/kbfx_plasma" intact for future use.
					When you want to update the source files of KBFX you just need to do <command>svn up</command> in this folder, delete the folder "~/usr/src/svn/kbfx_plasma/build" and start the <command>./build.sh</command> script i.e:
				</para>

				<screen>
> cd ~/usr/src/svn/kbfx_plasma
> svn up
> rm -fR build
> ./build.sh
				</screen>
			</step>
		</procedure>
	</sect1>
</appendix>

<appendix id="kbfx-howto">
	<title>How To</title>


	<sect1 id="kbfx-howto-themes">
		<title><anchor id="howto-themes" />How to create themes for KBFX</title>

		<para>
			So you want to create your own themes for KBFX 0.4.9.3?
		</para>

		<para>
			The guide is done in a simple manner and we hope that you will easily and
			simply create themes for KBFX 0.4.9.3. If you don't like something in this
			guide, please feel free to contact us at IRC on irc.freenode.org
			on channel #kbfx
		</para>

		<important>
			<itemizedlist>
				<listitem>
					<para>
						The values for Width and Height are only our suggested values.
						You can use whatever values you feel are appropriate for your theme.
					</para>
				</listitem>

				<listitem>
					<para>
						If ANY of these images are missing KBFX will use the image with the
						same name from the "default" theme.
					</para>
				</listitem>

				<listitem>
					<para>
						In order to be used by the Configurator and by KBFX, every theme for
						0.4.9.3 MUST HAVE a file in it's folder named "version-2" !
					</para>
				</listitem>
			</itemizedlist>
		</important>

		<para>&#160;</para>

		<sect2 id="kbfx-howto-images">
			<title>Images in KBFX</title>

			<screenshot>
				<screeninfo>Here's a screenshot of all the images used in KBFX Menu</screeninfo>

				<mediaobject>
					<imageobject>
						<imagedata fileref="../common/kbfx-maindescription.jpg" format="JPG"/>
					</imageobject>

					<textobject>
						<phrase>Screenshot of all the images used in KBFX Menu</phrase>
					</textobject>
				</mediaobject>
			</screenshot>

			<para>
				This image is showing you all the images which are used in KBFX 0.4.9.3.
				The most simple way to create a theme at this point is to take some of the images from the "default" theme and just change colors on some and see how that effects your menu.
			</para>

			<important>
				<para>
					DO NOT EVER CHANGE ANY IMAGE IN THE DEFAULT FOLDER!
				</para>

				<para>
					The images there are used as fallback when there is a missing image in your own theme.
					We suggest rather to work with a copy folder of the default theme (the name of the folder containing your theme of course should be not "default" ;) ).
				</para>
			</important>

			<para>&#160;</para>

			<variablelist>
				<varlistentry>
					<term>topbg.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="topbg.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>topbg.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is an image that is at the top of the menu.
						</para>

						<para>
							Width = 504px and Height = 95px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>dudebox.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="dudebox.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>dudebox.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the background image where your personal image is displayed.
						</para>

						<para>
							Width = 95px and Height = 88px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>menu_top_image_person.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="menu_top_image_person.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>menu_top_image_person.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This image is used for theme's default personal image.
						</para>

						<para>
							Width = 48px and Height = 48px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>find.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="find.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>find.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is a small image displayed in the search field.
						</para>

						<para>
							Width = 22px and Height = 21px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term><anchor id="rhstile" />rhstile.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="rhstile.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>rhstile.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is normal image displayed in categories.
						</para>

						<para>
							Width = 132px and Height = 23px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>rhshovertile.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="rhshovertile.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>rhshovertile.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is a hover image for categories. Used as hover image for <link linkend="rhstile">rhstile.png</link>
						</para>

						<para>
							Width = 132px and Height = 23px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>scrollnormal.png / scrollnormalbot.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="scrollnormal.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>scrollnormal.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							These images are used as top and bottom scrollbars.
						</para>

						<para>
							Width = 240px and Height = 10px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>separator.png / indexseparator.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="separator.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>separator.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							These are the separator images which separate your different subcategories.
						</para>

						<para>
							Width = 240px and Height = 27px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>tilenormal.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="tilenormal.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>tilenormal.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the normal image where your applications are showed.
						</para>

						<para>
							Width = 240px and Height = 46px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>tilehover.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="tilehover.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>tilehover.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the hover image where your applications are showed.
						</para>

						<para>
							Width = 240px and Height = 46px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>listboxbg.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="listboxbg.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>listboxbg.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the background under the categories.
							It can be viewed on description on both sides of the menu.
						</para>

						<para>
							Width = 108px and Height = 23px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>middleboxbg.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="middleboxbg.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>middleboxbg.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the background of the middle part of the menu.
						</para>

						<para>
							Width = 200px and Height = 270px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>botbg.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="botbg.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>botbg.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the background image at the bottom of the menu.
						</para>

						<para>
							Width = 504px and Height = 38px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>lock.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="lock.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>lock.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the lock image.
						</para>

						<para>
							Width = 84px and Height = 38px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>lockhover.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="lockhover.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>lockhover.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the lock hover image.
						</para>

						<para>
							Width = 84px and Height = 38px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>logout.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="logout.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>logout.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the logout image.
						</para>

						<para>
							Width = 84px and Height = 38px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>logouthover.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="logouthover.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>logouthover.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is the logout hover image.
						</para>

						<para>
							Width = 84px and Height = 38px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>mask.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="mask.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>mask.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is deciding what size your menu will have when users install it and which will be the transparent parts of the menu (through the alpha mask of the png image).
							Of course the size can be controlled later by the configuration of KBFX.
						</para>

						<para>
							Width = 504px and Height = 513px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>logo.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="logo.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>logo.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This is used as a theme's or author's logo shown in the Information box of the KBFX Configurator.
							You can put whatever image you want and it will be scaled to 100px width by 100px height.
						</para>

						<para>
							Width = 100px and Height = 100px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>preview.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="preview.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>preview.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							This should be a snapshot of the working KBFX theme.
							It is used in the configuration application in order the user to see what the theme will look like.
						</para>

						<para>
							Width = 170px and Height = 205px
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>

				<varlistentry>
					<term>normal.png / hover.png / pressed.png</term>

					<listitem>
						<para>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="normal.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>normal.png</phrase>
								</textobject>
							</inlinemediaobject>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="hover.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>hover.png</phrase>
								</textobject>
							</inlinemediaobject>
							<inlinemediaobject>
								<imageobject>
									<imagedata fileref="pressed.png" format="PNG" />
								</imageobject>
								<textobject>
									<phrase>pressed.png</phrase>
								</textobject>
							</inlinemediaobject>
						</para>

						<para>
							These are the KBFX Buttons for the kicker panel that are used in the theme.
							Width and Height - as you like, but preferably Height not to be too much.
						</para>

						<para>&#160;</para>
					</listitem>
				</varlistentry>
			</variablelist>

			<para>
				More information can be found on our homepage <ulink url="http://www.kbfx.org/staticpages/index.php?page=howto0493">here</ulink>
			</para>

			<para>&#160;</para>
		</sect2>

		<sect2 id="kbfx-howto-rcfiles">
			<title>"kbfxfontrc" and "kbfxlayoutrc" files</title>

			<para>
				Every theme MAY have two configuration files named:
			</para>

			<itemizedlist>
				<listitem>
					<para>
						<link linkend="kbfx-kbfxfontrc">kbfxfontrc</link> - configures the fonts properties that the theme uses.
					</para>
				</listitem>

				<listitem>
					<para>
						<link linkend="kbfx-kbfxlayoutrc">kbfxlayoutrc</link> - configures the layout of the theme, the KBFX button and some other properties of the theme.
					</para>
				</listitem>
			</itemizedlist>


			<para>
				If one or both of these files don't exist, KBFX internal configuration
				options will be used for fonts and layout.
				All the properties and values are separated between different Sections
				in the way showed below:
			</para>

			<literallayout>
	[Section]
	property = value
			</literallayout>

			<para>
				When you want to prepare a theme, have in mind that every change that you make in the "KBFX Configurator" is kept in files in your home KDE directory.
			</para>

			<para>
				Usually these files are in the folder <emphasis>~/.kde/share/apps/kbfx/themerc</emphasis>
				and are named:
			</para>

			<itemizedlist>
				<listitem>
					<para>
						THEMENAME_layoutrc
					</para>
				</listitem>

				<listitem>
					<para>
						THEMENAME_fontrc
					</para>
				</listitem>
			</itemizedlist>


			<para>
				So if you want to ship your theme settings from the "KBFX Configurator", the best
				thing to do is to use the buttons:
				"EXPORT KBFXFONTRC FILE" (<link linkend="kbfx_fonts">"Fonts" section of the Configurator</link>)
				and
				"EXPORT KBFXLAYOUTRC FILE" (<link linkend="kbfx_layout">"Layout section" of the Configurator</link>)
				and put the exported files in your theme folder.
			</para>

			<important>
				<itemizedlist>
					<listitem>
						<para>
							Pay close attention to the case of the properties and Sections names
				because the configuration is CASE SENSITIVE!
						</para>
					</listitem>

					<listitem>
						<para>
							The order of the sections in the file is not important!
						</para>
					</listitem>

					<listitem>
						<para>
							Have in mind that the Layout of the theme also depends on the sizes of the images!
						</para>
					</listitem>
				</itemizedlist>
			</important>

			<para>&#160;</para>

			<sect3 id="kbfx-kbfxfontrc">
				<title>File kbfxfontrc</title>

				<important>
					<itemizedlist>
						<listitem>
							<para>
								It's best the colors to be represented in RGB format.
							</para>
						</listitem>

						<listitem>
							<para>
								Font Properties should constrain to QFont class representation.
							</para>
						</listitem>

						<listitem>
							<para>
								The values bellow are the default ones.
							</para>
						</listitem>
					</itemizedlist>
				</important>

				<literallayout>
	[Fonts]
	TooltipText=0,0,0
	TooltipTextFont=Arial,8,-1,5,50,0,0,0,0,0
	ApplicationText=0,0,0
	ApplicationTextFont=Arial,8,-1,5,50,0,0,0,0,0
	CommentText=128,125,0
	CommentTextFont=Arial,8,-1,5,50,0,0,0,0,0
	GroupText=0,0,0
	GroupTextFont=Arial,8,-1,5,50,0,0,0,0,0
	UserName=255,255,255
	UserNameFont=Arial,10,-1,5,75,0,0,0,0,0
	SeparatorColor=0,0,0
	SeparatorFont=Arial,8,-1,5,50,0,0,0,0,0
	PluginColor=0,0,0
	PluginFont=Arial,8,-1,5,50,0,0,0,0,0
	LineColor=255,220,125
	# This is if the font when you hover on an item will be bold
	HoverBold = false
				</literallayout>

				<para>&#160;</para>
			</sect3>

			<sect3 id="kbfx-kbfxlayoutrc">
				<title>File kbfxlayoutrc</title>

				<important>
					<itemizedlist>
						<listitem>
							<para>
								The values bellow are the default ones.
							</para>
						</listitem>
					</itemizedlist>
				</important>

				<literallayout>
	[KbfxButton]
	# Time in msec for which the button
	# to fade in/out
	FadeTime=75
	# The three properties below describe the
	# paths to the theme's buttons.
	# KBFX uses the normal.png/hover.png/pressed.png
	# that are in the theme's folder by default.
	# So we recommend NOT to use the below three
	# properties!
	Normal = KBFX Normal Button Full Path
	Hover = KBFX Hover Button Full Path
	Press = KBFX Pressed Button Full Path

	[TopBar]
	# Face Position X
	DudeX=-1
	# Face Position Y
	DudeY=-1
	# Face Box Height
	FaceH=64
	# Face Box Width
	FaceW=65
	# Face Box Position X
	FaceX=27
	# Face Box Position Y
	FaceY=8
	# User Name Position X
	UserNameX=130
	# User Name Position Y
	UserNameY=32
	# Hide User Name
	DisableUserName=false
	# Top Bar Height
	Height=95
	# THE PROPERTIES BELOW ARE NOT USED FOR NOW
	# Top Bar Width
	Width=504
	# Top Bar Position X
	X=0
	# Top Bar Position Y
	Y=0

	[BottomBar]
	# Bottom Bar Height
	Height=38
	# THE PROPERTIES BELOW ARE NOT USED FOR NOW
	# Bottom Bar Width
	Width=504
	# Bottom Bar Position X
	X=0
	# Bottom Bar Position Y
	Y=428

	[Scrollbars]
	# THIS SECTION IS NOT USED FOR NOW
	# Bottom Scroll Bar Position X
	ScrollBarBotX=108
	# Bottom Scroll Bar Position Y
	ScrollBarBotY=95
	# Top Scroll Bar Position X
	ScrollBarTopX=108
	# Top Scroll Bar Position Y
	ScrollBarTopY=95

	[ListBox]
	# List Box Position X
	X=0
	# List Box Position Y
	Y=95
	# List Box Width
	Width=132
	# THE PROPERTIES BELOW ARE NOT USED FOR NOW
	# List Box Height
	Height=275

	[SearchBox]
	# Search Box Height
	Height=22
	# Search Box Width
	Width=240
	# Search Box Position X
	X=130
	# Search Box Position Y
	Y=48

	[ItemView]
	# Item Position X
	X=132
	# Item Position Y
	Y=95
	# Item Width
	Width=240
	# THE PROPERTIES BELOW ARE NOT USED FOR NOW
	# Item Height
	Height=275

	[ItemProperties]
	# Comment Margin in Item
	CommentMargin=66
	# Icon Size in Item
	IconSize=32
	# No Comments in Item
	NoComments=false

	[ToolBar]
	# THIS SECTION IS NOT USED FOR NOW
	# Tool Bar Button Normal Size
	ButtonNormalSize=48
	# Tool Bar Button Pressed Size
	ButtonPressedSize=48

	[MainMenu]
	# Main Menu Height
	UserMenuHeight=513
	# Main Menu Width
	UserMenuWidth=504
	# Contracted Menues
	ContractedMenu=false

				</literallayout>

				<para>&#160;</para>
			</sect3>

		</sect2>

		<sect2 id="kbfx-howto-versionfile">
			<title>"version-2" file</title>

			<important>
				<itemizedlist>
					<listitem>
						<para>
							This file is OBLIGATORY to exist, though it can be empty.
							It is used to designate that the theme is in the new format and the properties that are in the file are used in the KBFX Configurator for showing the user some info about the theme.
						</para>
					</listitem>

					<listitem>
						<para>
							The values in this file cannot be overwritten by the KBFX Configurator.
						</para>
					</listitem>

					<listitem>
						<para>
							If existing, the file should contain information about the theme's version, author's name, author's email and a homepage for the theme.
						</para>
					</listitem>

					<listitem>
						<para>
							The unspecified fields are replaced with the string - "Not Specified".
						</para>
					</listitem>

					<listitem>
						<para>
							The values bellow are self explanatory and are just an example.
						</para>
					</listitem>
				</itemizedlist>
			</important>

			<literallayout>
	[ThemeGeneral]
	ThemeVersion=0.51
	AuthorName=Nookie
	AuthorEmail=nookie@no_spam.org
	Homepage=http://www.kbfx.org
			</literallayout>

			<para>&#160;</para>

			<para>
				Now we wish you all good luck when creating themes.
				We are looking forward to all your good looking themes out there for the KBFX!
			</para>

			<para>&#160;</para>
		</sect2>
	</sect1>

	<sect1 id="kbfx-howto-kbfxthemefile">
		<title>How to create a ".kbfxtheme" file</title>

		<para>
			The ".kbfxtheme" file is a simple archive file (.tar.gz or .tar.bz2) that should contain at least these elements:
		</para>

		<itemizedlist>
			<listitem>
				<para>
					One or more theme folders with all the necessary images/files inside.
					Have in mind that the name of the theme is the name of the folder.
				</para>
			</listitem>

			<listitem>
				<para>
					In the theme(s) folder(s) there should be an image named "preview.png" that serves as a live preview of the look of the theme.
				</para>
			</listitem>

			<listitem>
				<para>
					In the theme(s) folder(s) there should be a file named "version-2"
				</para>
			</listitem>

			<listitem>
				<para>
					The extension of the archive should be ".kbfxtheme"
				</para>
			</listitem>
		</itemizedlist>

		<para>
			You can create ".kbfxtheme" file following these instructions (there is an option in Konqueror's rightclick "Actions" menu for preparing KBFX Theme Package OR you can create the ".kbfxtheme" file manually as described bellow):
		</para>

		<procedure>
			<step>
				<para>
					Create a folder with a name that is identical to the name you want for your theme.
				</para>
			</step>

			<step>
				<para>
					Put the necessary images/files inside it (see the above instructions for the images part).
				</para>
			</step>

			<step>
				<para>
					Create an archive of the folder (with ark/tar etc).
				</para>
			</step>

			<step>
				<para>
					Rename the archive file to ".kbfxtheme" and you are ready.
				</para>
			</step>
		</procedure>
	</sect1>

	<sect1 id="kbfx-howto-helpus">
		<title>How to help us out for KBFX</title>

		<para>
			You can help us for the KBFX releases with the translation of the interface.
			For this purpose please download the <ulink url="http://prdownloads.sourceforge.net/kbfx/kbfxconfigapp.pot?download">kbfxconfigapp.pot</ulink> file from SourceForge and use <ulink url="http://kbabel.kde.org/">KBabel</ulink> or <ulink url="http://www.poedit.org/">poEdit</ulink> to make the translation.
		</para>

		<para>
			Next send the .po file to my mail <email>phobosk@mail.kbfx.org</email>.
		</para>

		<tip>
			<para>
				Another way to get a .pot file is to use the command: <command>make package-messages</command> just after the configuration of the compilation process is done.
			</para>
		</tip>

		<para>&#160;</para>

		<para>
			Thanks in advance for this help.
		</para>
	</sect1>
</appendix>

<appendix id="kbfx-links">
	<title>Useful links</title>

	<para>
		<ulink url="http://www.kbfx.org">KBFX Homepage</ulink>
	</para>

	<para>
		<ulink url="http://sourceforge.net/projects/kbfx">KBFX SourceForge project page</ulink>
	</para>

	<para>
		<ulink url="http://sourceforge.net/project/showfiles.php?group_id=141258">KBFX Releases</ulink>
	</para>

	<para>
		<ulink url="http://www.kbfx.org/forum/">KBFX Forum</ulink>
	</para>

	<para>
		<ulink url="http://bugs.kbfx.org">KBFX Bugs</ulink>
	</para>
</appendix>
&documentation.index;
</book>

<!--
Local Variables:
mode: sgml
sgml-minimize-attributes:nil
sgml-general-insert-case:lower
sgml-indent-step:0
sgml-indent-data:nil
End:

vim:tabstop=2:shiftwidth=2:expandtab
-->