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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>KGlobalSettings</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<link rel="stylesheet" type="text/css" href="../common/doxygen.css" />
<link rel="stylesheet" media="screen" type="text/css" title="KDE Colors" href="../common/kde.css" />
</head>
<body>
<div id="container">
<div id="header">
<div id="header_top">
<div>
<div>
<img alt ="" src="../common/top-kde.jpg"/>
KDE 4.9 PyKDE API Reference
</div>
</div>
</div>
<div id="header_bottom">
<div id="location">
<ul>
<li>KDE's Python API</li>
</ul>
</div>
<div id="menu">
<ul>
<li><a href="../modules.html">Overview</a></li>
<li><a href="http://techbase.kde.org/Development/Languages/Python">PyKDE Home</a></li>
<li><a href="http://kde.org/family/">Sitemap</a></li>
<li><a href="http://kde.org/contact/">Contact Us</a></li>
</ul>
</div>
</div>
</div>
<div id="body_wrapper">
<div id="body">
<div id="right">
<div class="content">
<div id="main">
<div class="clearer"> </div>
<h1>KGlobalSettings Class Reference</h1>
<code>from PyKDE4.kdeui import *</code>
<p>
Inherits: QObject<br />
<h2>Detailed Description</h2>
<p>Access the KDE global configuration.
</p>
<p>
<dl class="author" compact><dt><b>Author:</b></dt><dd> David Faure <faure@kde.org> </dd></dl>
</p>
<table border="0" cellpadding="0" cellspacing="0"><tr><td colspan="2"><br><h2>Enumerations</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="#ActivateOption">ActivateOption</a> </td><td class="memItemRight" valign="bottom">{ ApplySettings, ListenForChanges }</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="#ChangeType">ChangeType</a> </td><td class="memItemRight" valign="bottom">{ PaletteChanged, FontChanged, StyleChanged, SettingsChanged, IconChanged, CursorChanged, ToolbarStyleChanged, ClipboardConfigChanged, BlockShortcuts, NaturalSortingChanged }</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="#Completion">Completion</a> </td><td class="memItemRight" valign="bottom">{ CompletionNone, CompletionAuto, CompletionMan, CompletionShell, CompletionPopup, CompletionPopupAuto }</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="#GraphicEffect">GraphicEffect</a> </td><td class="memItemRight" valign="bottom">{ NoEffects, GradientEffects, SimpleAnimationEffects, ComplexAnimationEffects }</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="#SettingsCategory">SettingsCategory</a> </td><td class="memItemRight" valign="bottom">{ SETTINGS_MOUSE, SETTINGS_COMPLETION, SETTINGS_PATHS, SETTINGS_POPUPMENU, SETTINGS_QT, SETTINGS_SHORTCUTS, SETTINGS_LOCALE, SETTINGS_STYLE }</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="#TearOffHandle">TearOffHandle</a> </td><td class="memItemRight" valign="bottom">{ Disable, ApplicationLevel, Enable }</td></tr>
<tr><td colspan="2"><br><h2>Signals</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#appearanceChanged">appearanceChanged</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#blockShortcuts">blockShortcuts</a> (int data)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#cursorChanged">cursorChanged</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#iconChanged">iconChanged</a> (int group)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#kdisplayFontChanged">kdisplayFontChanged</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#kdisplayPaletteChanged">kdisplayPaletteChanged</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#kdisplayStyleChanged">kdisplayStyleChanged</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#naturalSortingChanged">naturalSortingChanged</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#settingsChanged">settingsChanged</a> (int category)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#toolbarAppearanceChanged">toolbarAppearanceChanged</a> (int a0)</td></tr>
<tr><td colspan="2"><br><h2>Methods</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#KGlobalSettings">__init__</a> (self)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#activate">activate</a> (self)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#activate">activate</a> (self, <a href="../kdeui/KGlobalSettings.html">KGlobalSettings.ActivateOptions</a> options)</td></tr>
<tr><td colspan="2"><br><h2>Static Methods</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QColor </td><td class="memItemRight" valign="bottom"><a class="el" href="#activeTextColor">activeTextColor</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QColor </td><td class="memItemRight" valign="bottom"><a class="el" href="#activeTitleColor">activeTitleColor</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#allowDefaultBackgroundImages">allowDefaultBackgroundImages</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="#autoSelectDelay">autoSelectDelay</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><a class="el" href="#autostartPath">autostartPath</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="#buttonLayout">buttonLayout</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#changeCursorOverIcon">changeCursorOverIcon</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a href="../kdeui/KGlobalSettings.html#Completion">KGlobalSettings.Completion</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="#completionMode">completionMode</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="#contextMenuKey">contextMenuKey</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="#contrast">contrast</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">float </td><td class="memItemRight" valign="bottom"><a class="el" href="#contrastF">contrastF</a> (KSharedPtr<KSharedConfig> config=KSharedConfigPtr())</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QPalette </td><td class="memItemRight" valign="bottom"><a class="el" href="#createApplicationPalette">createApplicationPalette</a> (KSharedPtr<KSharedConfig> config=KSharedConfigPtr())</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QPalette </td><td class="memItemRight" valign="bottom"><a class="el" href="#createNewApplicationPalette">createNewApplicationPalette</a> (KSharedPtr<KSharedConfig> config=KSharedConfigPtr())</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QRect </td><td class="memItemRight" valign="bottom"><a class="el" href="#desktopGeometry">desktopGeometry</a> (QPoint point)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QRect </td><td class="memItemRight" valign="bottom"><a class="el" href="#desktopGeometry">desktopGeometry</a> (QWidget w)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><a class="el" href="#desktopPath">desktopPath</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="#dndEventDelay">dndEventDelay</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><a class="el" href="#documentPath">documentPath</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><a class="el" href="#downloadPath">downloadPath</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="#emitChange">emitChange</a> (<a href="../kdeui/KGlobalSettings.html#ChangeType">KGlobalSettings.ChangeType</a> changeType, int arg=0)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="#fixedFont">fixedFont</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="#generalFont">generalFont</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a href="../kdeui/KGlobalSettings.html">KGlobalSettings.GraphicEffects</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="#graphicEffectsLevel">graphicEffectsLevel</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a href="../kdeui/KGlobalSettings.html">KGlobalSettings.GraphicEffects</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="#graphicEffectsLevelDefault">graphicEffectsLevelDefault</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QColor </td><td class="memItemRight" valign="bottom"><a class="el" href="#inactiveTextColor">inactiveTextColor</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QColor </td><td class="memItemRight" valign="bottom"><a class="el" href="#inactiveTitleColor">inactiveTitleColor</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a href="../kdeui/KGlobalSettings.html#TearOffHandle">KGlobalSettings.TearOffHandle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="#insertTearOffHandle">insertTearOffHandle</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#isMultiHead">isMultiHead</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="#largeFont">largeFont</a> (QString text=QString())</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="#menuFont">menuFont</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a href="../kdeui/KGlobalSettings.KMouseSettings.html">KGlobalSettings.KMouseSettings</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="#mouseSettings">mouseSettings</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><a class="el" href="#musicPath">musicPath</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#naturalSorting">naturalSorting</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#opaqueResize">opaqueResize</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><a class="el" href="#picturesPath">picturesPath</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a href="../kdeui/KGlobalSettings.html">KGlobalSettings</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="#self">self</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#shadeSortColumn">shadeSortColumn</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#showContextMenusOnPress">showContextMenusOnPress</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#showFilePreview">showFilePreview</a> (<a href="../kdecore/KUrl.html">KUrl</a> a0)</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#showIconsOnPushButtons">showIconsOnPushButtons</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#singleClick">singleClick</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="#smallestReadableFont">smallestReadableFont</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#smoothScroll">smoothScroll</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QRect </td><td class="memItemRight" valign="bottom"><a class="el" href="#splashScreenDesktopGeometry">splashScreenDesktopGeometry</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="#taskbarFont">taskbarFont</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="#toolBarFont">toolBarFont</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QString </td><td class="memItemRight" valign="bottom"><a class="el" href="#videosPath">videosPath</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="#wheelMouseZooms">wheelMouseZooms</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">QFont </td><td class="memItemRight" valign="bottom"><a class="el" href="#windowTitleFont">windowTitleFont</a> ()</td></tr>
</table>
<hr><h2>Signal Documentation</h2><a class="anchor" name="appearanceChanged"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> appearanceChanged</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Emitted when the application has changed either its GUI style, its font or its palette
in response to a kdisplay request. Normally, widgets will update their styles
automatically, but you should connect to this to program special
behavior.
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("appearanceChanged()"), target_slot)</code></dd></dl></div></div><a class="anchor" name="blockShortcuts"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> blockShortcuts</td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>data</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>Emitted by BlockShortcuts
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("blockShortcuts(int)"), target_slot)</code></dd></dl></div></div><a class="anchor" name="cursorChanged"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> cursorChanged</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Emitted when the cursor theme has been changed.
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("cursorChanged()"), target_slot)</code></dd></dl></div></div><a class="anchor" name="iconChanged"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> iconChanged</td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>group</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>Emitted when the global icon settings have been changed.
</p><dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign="top"><em>group</em> </td><td> the new group
</td></tr>
</table></dl>
<p>
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("iconChanged(int)"), target_slot)</code></dd></dl></div></div><a class="anchor" name="kdisplayFontChanged"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> kdisplayFontChanged</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Emitted when the application has changed its font in response to a KControl request.
</p>
<p>
Normally widgets will update their fonts automatically, but you should
connect to this to monitor global font changes, especially if you are
using explicit fonts.
</p>
<p>
Note: If you derive from a QWidget-based class, a faster method is to
reimplement QWidget.changeEvent() and catch QEvent.FontChange.
This is the preferred way to get informed about font updates.
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("kdisplayFontChanged()"), target_slot)</code></dd></dl></div></div><a class="anchor" name="kdisplayPaletteChanged"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> kdisplayPaletteChanged</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Emitted when the application has changed its palette due to a KControl request.
</p>
<p>
Normally, widgets will update their palette automatically, but you
should connect to this to program special behavior.
</p>
<p>
Note: If you derive from a QWidget-based class, a faster method is to
reimplement QWidget.changeEvent() and catch QEvent.PaletteChange.
This is the preferred way to get informed about palette updates.
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("kdisplayPaletteChanged()"), target_slot)</code></dd></dl></div></div><a class="anchor" name="kdisplayStyleChanged"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> kdisplayStyleChanged</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Emitted when the application has changed its GUI style in response to a KControl request.
</p>
<p>
Normally, widgets will update their styles automatically (as they would
respond to an explicit setGUIStyle() call), but you should connect to
this to program special behavior.
</p>
<p>
Note: If you derive from a QWidget-based class, a faster method is to
reimplement QWidget.changeEvent() and catch QEvent.StyleChange.
This is the preferred way to get informed about style updates.
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("kdisplayStyleChanged()"), target_slot)</code></dd></dl></div></div><a class="anchor" name="naturalSortingChanged"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> naturalSortingChanged</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Emitted when the natural sorting has been changed.
<dl class="since" compact><dt><b>Since:</b></dt><dd> 4.4
</dd></dl>
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("naturalSortingChanged()"), target_slot)</code></dd></dl></div></div><a class="anchor" name="settingsChanged"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> settingsChanged</td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>category</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>Emitted when the global settings have been changed.
KGlobalSettings takes care of calling reparseConfiguration on KGlobal.config()
so that applications/classes using this only have to re-read the configuration
</p><dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign="top"><em>category</em> </td><td> the category among the SettingsCategory enum.
</td></tr>
</table></dl>
<p>
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("settingsChanged(int)"), target_slot)</code></dd></dl></div></div><a class="anchor" name="toolbarAppearanceChanged"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> toolbarAppearanceChanged</td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>a0</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>Emitted when the settings for toolbars have been changed. KToolBar will know what to do.
</p><dl compact><dt><b>Signal syntax:</b></dt><dd><code>QObject.connect(source, SIGNAL("toolbarAppearanceChanged(int)"), target_slot)</code></dd></dl></div></div><hr><h2>Method Documentation</h2><a class="anchor" name="KGlobalSettings"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">__init__</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>self</em> )</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"></div></div><a class="anchor" name="activate"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> activate</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname"><em>self</em> )</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>
<dl class="since" compact><dt><b>Since:</b></dt><dd> 4.6
</dd></dl>
</p></div></div><a class="anchor" name="activate"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> activate</td>
<td>(</td>
<td class="paramtype"> <em>self</em>, </td>
<td class="paramname"></td>
</tr><tr>
<td class="memname"></td>
<td></td>
<td class="paramtype"><a href="../kdeui/KGlobalSettings.html">KGlobalSettings.ActivateOptions</a> </td>
<td class="paramname"><em>options</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>
<dl class="since" compact><dt><b>Since:</b></dt><dd> 4.6
</dd></dl>
</p></div></div><hr><h2>Static Method Documentation</h2><a class="anchor" name="activeTextColor"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QColor activeTextColor</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The default color to use for active texts.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the active text color
</dd></dl>
</p></div></div><a class="anchor" name="activeTitleColor"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QColor activeTitleColor</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The default color to use for active titles.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the active title color
</dd></dl>
</p></div></div><a class="anchor" name="allowDefaultBackgroundImages"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool allowDefaultBackgroundImages</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns if default background images are allowed by the color scheme.
A "default" background image is just that, i.e. the user has not
actively selected a background image to use.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> true if default background images may be used
</dd></dl>
</p></div></div><a class="anchor" name="autoSelectDelay"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">int autoSelectDelay</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the KDE setting for the auto-select option.
</p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the auto-select delay or -1 if auto-select is disabled.
</dd></dl>
</p></div></div><a class="anchor" name="autostartPath"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QString autostartPath</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The path to the autostart directory of the current user.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the path of the autostart directory
</dd></dl>
</p></div></div><a class="anchor" name="buttonLayout"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">int buttonLayout</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The layout scheme to use for dialog buttons
</p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> Returns the number of the scheme to use.
</dd></dl>
</p></div></div><a class="anchor" name="changeCursorOverIcon"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool changeCursorOverIcon</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Checks whether the cursor changes over icons.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the KDE setting for "change cursor over icon"
</dd></dl>
</p></div></div><a class="anchor" name="completionMode"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"><a href="../kdeui/KGlobalSettings.html#Completion">KGlobalSettings.Completion</a> completionMode</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the preferred completion mode setting.
</p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> Completion. Default is <b>CompletionPopup.</b>
</dd></dl>
</p></div></div><a class="anchor" name="contextMenuKey"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">int contextMenuKey</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the KDE setting for the shortcut key to open
context menus.
</p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the key that pops up context menus.
</dd></dl> <dl class="deprecated" compact><dt><b>Deprecated:</b></dt><dd> Simply reimplement QWidget.contextMenuEvent() instead.
</dd></dl>
</p></div></div><a class="anchor" name="contrast"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">int contrast</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the contrast for borders.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the contrast (between 0 for minimum and 10 for maximum
contrast)
</dd></dl>
</p></div></div><a class="anchor" name="contrastF"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">float contrastF</td>
<td>(</td>
<td class="paramtype">KSharedPtr<KSharedConfig> </td>
<td class="paramname"><em>config=KSharedConfigPtr()</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>Returns the contrast for borders as a floating point value.
</p><dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign="top"><em>config</em> </td><td> pointer to the config from which to read the contrast
setting (the default is to use KGlobal.config())
</td></tr> </table></dl>
<p> <dl class="return" compact><dt><b>Returns:</b></dt><dd> the contrast (between 0.0 for minimum and 1.0 for maximum
contrast)
</dd></dl>
</p></div></div><a class="anchor" name="createApplicationPalette"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QPalette createApplicationPalette</td>
<td>(</td>
<td class="paramtype">KSharedPtr<KSharedConfig> </td>
<td class="paramname"><em>config=KSharedConfigPtr()</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>Used to obtain the QPalette that will be used to set the application palette.
</p>
<p>
This is only useful for configuration modules such as krdb and should not be
used in normal circumstances.
</p><dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign="top"><em>config</em> </td><td> KConfig from which to load the colors (passed as-is to
.KColorScheme).
</td></tr>
</table></dl>
<p> <dl class="return" compact><dt><b>Returns:</b></dt><dd> the QPalette
</dd></dl>
</p></div></div><a class="anchor" name="createNewApplicationPalette"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QPalette createNewApplicationPalette</td>
<td>(</td>
<td class="paramtype">KSharedPtr<KSharedConfig> </td>
<td class="paramname"><em>config=KSharedConfigPtr()</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>Used to obtain the QPalette that will be used to set the application palette.
</p>
<p>
This is only useful for configuration modules such as krdb and should not be
used in normal circumstances.
</p><dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign="top"><em>config</em> </td><td> KConfig from which to load the colors (passed as-is to
.KColorScheme).
</td></tr>
</table></dl>
<p> <dl class="note" compact><dt><b>Note:</b></dt><dd> The difference between this and the previous is that this never caches.
</dd></dl> <dl class="since" compact><dt><b>Since:</b></dt><dd> 4.6.3
</dd></dl> </p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the QPalette
</dd></dl>
</p></div></div><a class="anchor" name="desktopGeometry"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QRect desktopGeometry</td>
<td>(</td>
<td class="paramtype">QPoint </td>
<td class="paramname"><em>point</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>This function returns the desktop geometry for an application that needs
to set the geometry of a widget on the screen manually. It takes into
account the user's display settings (number of screens, Xinerama, etc),
and the user's preferences (if KDE should be Xinerama aware).
</p>
<p>
</p><dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign="top"><em>w</em> </td><td> the widget in question. This is used to determine which screen
to use in Xinerama or multi-head mode.
</td></tr>
</table></dl>
<p> <dl class="return" compact><dt><b>Returns:</b></dt><dd> the geometry to use for the desktop. Note that it might not
start at (0,0).
</dd></dl>
</p></div></div><a class="anchor" name="desktopGeometry"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QRect desktopGeometry</td>
<td>(</td>
<td class="paramtype">QWidget </td>
<td class="paramname"><em>w</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>This function returns the desktop geometry for an application that needs
to set the geometry of a widget on the screen manually. It takes into
account the user's display settings (number of screens, Xinerama, etc),
and the user's preferences (if KDE should be Xinerama aware).
</p>
<p>
</p><dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign="top"><em>w</em> </td><td> the widget in question. This is used to determine which screen
to use in Xinerama or multi-head mode.
</td></tr>
</table></dl>
<p> <dl class="return" compact><dt><b>Returns:</b></dt><dd> the geometry to use for the desktop. Note that it might not
start at (0,0).
</dd></dl>
</p></div></div><a class="anchor" name="desktopPath"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QString desktopPath</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The path to the desktop directory of the current user.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the user's desktop directory
</dd></dl>
</p></div></div><a class="anchor" name="dndEventDelay"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">int dndEventDelay</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns a threshold in pixels for drag & drop operations.
As long as the mouse movement has not exceeded this number
of pixels in either X or Y direction no drag operation may
be started. This prevents spurious drags when the user intended
to click on something but moved the mouse a bit while doing so.
</p>
<p>
For this to work you must save the position of the mouse (oldPos)
in the QWidget.mousePressEvent().
When the position of the mouse (newPos)
in a QWidget.mouseMoveEvent() exceeds this threshold
you may start a drag
which should originate from oldPos.
</p>
<p>
Example code:
<pre class="fragment">
void KColorCells.mousePressEvent( QMouseEvent *e )
{
mOldPos = e->pos();
}
void KColorCells.mouseMoveEvent( QMouseEvent *e )
{
if( !(e->state() && LeftButton)) return;
int delay = KGlobalSettings.dndEventDelay();
QPoint newPos = e->pos();
if(newPos.x() > mOldPos.x()+delay || newPos.x() < mOldPos.x()-delay ||
newPos.y() > mOldPos.y()+delay || newPos.y() < mOldPos.y()-delay)
{
// Drag color object
int cell = posToCell(mOldPos); // Find color at mOldPos
if ((cell != -1) && colors[cell].isValid())
{
KColorDrag *d = KColorDrag.makeDrag( colors[cell], this);
d->dragCopy();
}
}
}
</pre>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the threshold for drag & drop in pixels
</dd></dl>
</p></div></div><a class="anchor" name="documentPath"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QString documentPath</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The path where documents are stored of the current user.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the path of the document directory
</dd></dl>
</p></div></div><a class="anchor" name="downloadPath"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QString downloadPath</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The path where download are stored of the current user.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the path of the download directory
</dd></dl>
</p></div></div><a class="anchor" name="emitChange"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"> emitChange</td>
<td>(</td>
<td class="paramtype"><a href="../kdeui/KGlobalSettings.html#ChangeType">KGlobalSettings.ChangeType</a> </td>
<td class="paramname"><em>changeType</em>, </td>
</tr>
<tr>
<td class="memname"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>arg=0</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>Notifies all KDE applications on the current display of a change.
</p>
<p>
This is typically called by kcontrol modules after changing the corresponding
config file. Do not call this from a normal KDE application.
</p></div></div><a class="anchor" name="fixedFont"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QFont fixedFont</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the default fixed font.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the default fixed font.
</dd></dl>
</p></div></div><a class="anchor" name="generalFont"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QFont generalFont</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the default general font.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the default general font.
</dd></dl>
</p></div></div><a class="anchor" name="graphicEffectsLevel"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"><a href="../kdeui/KGlobalSettings.html">KGlobalSettings.GraphicEffects</a> graphicEffectsLevel</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>This function determines the desired level of effects on the GUI.
</p>
<p>
<dl class="since" compact><dt><b>Since:</b></dt><dd> 4.1
</dd></dl>
</p></div></div><a class="anchor" name="graphicEffectsLevelDefault"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"><a href="../kdeui/KGlobalSettings.html">KGlobalSettings.GraphicEffects</a> graphicEffectsLevelDefault</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>This function determines the default level of effects on the GUI
depending on the system capabilities.
</p>
<p>
<dl class="since" compact><dt><b>Since:</b></dt><dd> 4.1
</dd></dl>
</p></div></div><a class="anchor" name="inactiveTextColor"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QColor inactiveTextColor</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The default color to use for inactive texts.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the inactive text color
</dd></dl>
</p></div></div><a class="anchor" name="inactiveTitleColor"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QColor inactiveTitleColor</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The default color to use for inactive titles.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the inactive title color
</dd></dl>
</p></div></div><a class="anchor" name="insertTearOffHandle"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"><a href="../kdeui/KGlobalSettings.html#TearOffHandle">KGlobalSettings.TearOffHandle</a> insertTearOffHandle</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns whether tear-off handles are inserted in KMenus.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> whether tear-off handles are inserted in KMenus.
</dd></dl>
</p></div></div><a class="anchor" name="isMultiHead"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool isMultiHead</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns if the user specified multihead. In case the display
has multiple screens, the return value of this function specifies
if the user wants KDE to run on all of them or just on the primary
On Windows, settings are retrieved from the system.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> true if the user chose multi head
</dd></dl>
</p></div></div><a class="anchor" name="largeFont"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QFont largeFont</td>
<td>(</td>
<td class="paramtype">QString </td>
<td class="paramname"><em>text=QString()</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>Returns a font of approx. 48 pt. capable of showing <b>text.</b>
</p><dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td></td><td valign="top"><em>text</em> </td><td> the text to test
</td></tr> </table></dl>
<p> <dl class="return" compact><dt><b>Returns:</b></dt><dd> the font that is capable to show the text with 48 pt
</dd></dl>
</p></div></div><a class="anchor" name="menuFont"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QFont menuFont</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the default menu font.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the default menu font.
</dd></dl>
</p></div></div><a class="anchor" name="mouseSettings"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"><a href="../kdeui/KGlobalSettings.KMouseSettings.html">KGlobalSettings.KMouseSettings</a> mouseSettings</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>This returns the current mouse settings.
On Windows, settings are retrieved from the system.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the current mouse settings
</dd></dl>
</p></div></div><a class="anchor" name="musicPath"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QString musicPath</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The path where music are stored of the current user.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the path of the music directory
</dd></dl>
</p></div></div><a class="anchor" name="naturalSorting"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool naturalSorting</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns true, if user visible strings should be sorted in a natural way:
image 1.jpg
image 2.jpg
image 10.jpg
image 11.jpg
If false is returned, the strings are sorted by their unicode values:
image 1.jpg
image 10.jpg
image 11.jpg
image 2.jpg
</p>
<p>
<dl class="since" compact><dt><b>Since:</b></dt><dd> 4.4
</dd></dl>
</p></div></div><a class="anchor" name="opaqueResize"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool opaqueResize</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Whether the user wishes to use opaque resizing. Primarily
intended for QSplitter.setOpaqueResize()
</p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> Returns true if user wants to use opaque resizing.
</dd></dl>
</p></div></div><a class="anchor" name="picturesPath"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QString picturesPath</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The path where pictures are stored of the current user.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the path of the pictures directory
</dd></dl>
</p></div></div><a class="anchor" name="self"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname"><a href="../kdeui/KGlobalSettings.html">KGlobalSettings</a> self</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Return the KGlobalSettings singleton.
This is used to connect to its signals, to be notified of changes.
</p></div></div><a class="anchor" name="shadeSortColumn"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool shadeSortColumn</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns if the sorted column in a K3ListView shall be drawn with a
shaded background color.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> true if the sorted column shall be shaded
</dd></dl>
</p></div></div><a class="anchor" name="showContextMenusOnPress"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool showContextMenusOnPress</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the KDE setting for context menus.
</p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> whether context menus should be shown on button press
or button release (click).
</dd></dl>
</p></div></div><a class="anchor" name="showFilePreview"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool showFilePreview</td>
<td>(</td>
<td class="paramtype"><a href="../kdecore/KUrl.html">KUrl</a> </td>
<td class="paramname"><em>a0</em></td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td>
<td></td>
<td width="100%"> </td>
</tr></table>
</div>
<div class="memdoc"><p>This function determines if the user wishes to see previews
for the selected url
</p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> Returns true if user wants to show previews.
</dd></dl>
</p></div></div><a class="anchor" name="showIconsOnPushButtons"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool showIconsOnPushButtons</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>This function determines if the user wishes to see icons on the
push buttons.
</p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> Returns true if user wants to show icons.
</dd></dl>
</p></div></div><a class="anchor" name="singleClick"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool singleClick</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns whether KDE runs in single (default) or double click
mode.
see http://developer.kde.org/documentation/standards/kde/style/mouse/index.html
<dl class="return" compact><dt><b>Returns:</b></dt><dd> true if single click mode, or false if double click mode.
</dd></dl>
</p></div></div><a class="anchor" name="smallestReadableFont"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QFont smallestReadableFont</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the smallest readable font. This can be used in dockers,
rulers and other places where space is at a premium.
</p></div></div><a class="anchor" name="smoothScroll"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool smoothScroll</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns if item views should force smooth scrolling.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> true if smooth scrolling is enabled for item view, false otherwise.
</dd></dl> <dl class="since" compact><dt><b>Since:</b></dt><dd> 4.2
</dd></dl>
</p></div></div><a class="anchor" name="splashScreenDesktopGeometry"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QRect splashScreenDesktopGeometry</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>This function returns the desktop geometry for an application's splash
screen. It takes into account the user's display settings (number of
screens, Xinerama, etc), and the user's preferences (if KDE should be
Xinerama aware).
</p>
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the geometry to use for the desktop. Note that it might not
start at (0,0).
</dd></dl>
</p></div></div><a class="anchor" name="taskbarFont"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QFont taskbarFont</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the default taskbar font.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the default taskbar font.
</dd></dl>
</p></div></div><a class="anchor" name="toolBarFont"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QFont toolBarFont</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the default toolbar font.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the default toolbar font.
</dd></dl>
</p></div></div><a class="anchor" name="videosPath"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QString videosPath</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>The path where videos are stored of the current user.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the path of the video directory
</dd></dl>
</p></div></div><a class="anchor" name="wheelMouseZooms"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">bool wheelMouseZooms</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Typically, QScrollView derived classes can be scrolled fast by
holding down the Ctrl-button during wheel-scrolling.
But QTextEdit and derived classes perform zooming instead of fast
scrolling.
</p>
<p>
This value determines whether the user wants to zoom or scroll fast
with Ctrl-wheelscroll.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> true if the user wishes to zoom with the mouse wheel,
false for scrolling
</dd></dl>
</p></div></div><a class="anchor" name="windowTitleFont"></a>
<div class="memitem">
<div class="memproto">
<table class="memname"><tr>
<td class="memname">QFont windowTitleFont</td>
<td>(</td>
<td class="paramtype"> </td>
<td class="paramname">)</td>
<td width="100%"> </td>
</tr>
</table>
</div>
<div class="memdoc"><p>Returns the default window title font.
<dl class="return" compact><dt><b>Returns:</b></dt><dd> the default window title font.
</dd></dl>
</p></div></div><hr><h2>Enumeration Documentation</h2><a class="anchor" name="ActivateOption"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr><td class="memname">ActivateOption</td>
</tr>
</table>
</div>
<div class="memdoc"><p>Specifies options passed to activate().
</p>
<p>
<dl class="since" compact><dt><b>Since:</b></dt><dd> 4.6
</dd></dl>
</p><dl compact><dt><b>Enumerator: </b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0"><tr><td valign="top"><em>ApplySettings</em> = 0x1</td><td><tr><td valign="top"><em>ListenForChanges</em> = 0x2</td><td></table>
</dl>
</div></div><p><a class="anchor" name="ChangeType"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr><td class="memname">ChangeType</td>
</tr>
</table>
</div>
<div class="memdoc"><p>An identifier for change signals.
<dl class="see" compact><dt><b>See also:</b></dt><dd> emitChange
</dd></dl>
</p><dl compact><dt><b>Enumerator: </b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0"><tr><td valign="top"><em>PaletteChanged</em> = 0</td><td><tr><td valign="top"><em>FontChanged</em> </td><td><tr><td valign="top"><em>StyleChanged</em> </td><td><tr><td valign="top"><em>SettingsChanged</em> </td><td><tr><td valign="top"><em>IconChanged</em> </td><td><tr><td valign="top"><em>CursorChanged</em> </td><td><tr><td valign="top"><em>ToolbarStyleChanged</em> </td><td><tr><td valign="top"><em>ClipboardConfigChanged</em> </td><td><tr><td valign="top"><em>BlockShortcuts</em> </td><td><tr><td valign="top"><em>NaturalSortingChanged</em> </td><td></table>
</dl>
</div></div><p><a class="anchor" name="Completion"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr><td class="memname">Completion</td>
</tr>
</table>
</div>
<div class="memdoc"><p>This enum describes the completion mode used for by the KCompletion class.
See <a href="http://developer.kde.org/documentation/standards/kde/style/keys/completion.html">
the styleguide</a>.
</p><dl compact><dt><b>Enumerator: </b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0"><tr><td valign="top"><em>CompletionNone</em> = 1</td><td><tr><td valign="top"><em>CompletionAuto</em> </td><td><tr><td valign="top"><em>CompletionMan</em> </td><td><tr><td valign="top"><em>CompletionShell</em> </td><td><tr><td valign="top"><em>CompletionPopup</em> </td><td><tr><td valign="top"><em>CompletionPopupAuto</em> </td><td></table>
</dl>
</div></div><p><a class="anchor" name="GraphicEffect"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr><td class="memname">GraphicEffect</td>
</tr>
</table>
</div>
<div class="memdoc"><dl compact><dt><b>Enumerator: </b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0"><tr><td valign="top"><em>NoEffects</em> = 0x0000</td><td><tr><td valign="top"><em>GradientEffects</em> = 0x0001</td><td><tr><td valign="top"><em>SimpleAnimationEffects</em> = 0x0002</td><td><tr><td valign="top"><em>ComplexAnimationEffects</em> = 0x0006</td><td></table>
</dl>
</div></div><p><a class="anchor" name="SettingsCategory"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr><td class="memname">SettingsCategory</td>
</tr>
</table>
</div>
<div class="memdoc"><p>Valid values for the settingsChanged signal
</p><dl compact><dt><b>Enumerator: </b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0"><tr><td valign="top"><em>SETTINGS_MOUSE</em> </td><td><tr><td valign="top"><em>SETTINGS_COMPLETION</em> </td><td><tr><td valign="top"><em>SETTINGS_PATHS</em> </td><td><tr><td valign="top"><em>SETTINGS_POPUPMENU</em> </td><td><tr><td valign="top"><em>SETTINGS_QT</em> </td><td><tr><td valign="top"><em>SETTINGS_SHORTCUTS</em> </td><td><tr><td valign="top"><em>SETTINGS_LOCALE</em> </td><td><tr><td valign="top"><em>SETTINGS_STYLE</em> </td><td></table>
</dl>
</div></div><p><a class="anchor" name="TearOffHandle"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr><td class="memname">TearOffHandle</td>
</tr>
</table>
</div>
<div class="memdoc"><p>This enum describes the return type for insertTearOffHandle() whether to insert
a handle or not. Applications who independently want to use handles in their popup menus
should test for Application level before calling the appropriate function in KMenu.
</p><dl compact><dt><b>Enumerator: </b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0"><tr><td valign="top"><em>Disable</em> = 0</td><td><tr><td valign="top"><em>ApplicationLevel</em> </td><td><tr><td valign="top"><em>Enable</em> </td><td></table>
</dl>
</div></div><p>
</div>
</div>
</div>
<div id="left">
<div class="menu_box">
<div class="nav_list">
<ul>
<li><a href="../allclasses.html">Full Index</a></li>
</ul>
</div>
<a name="cp-menu" /><div class="menutitle"><div>
<h2 id="cp-menu-project">Modules</h2>
</div></div>
<div class="nav_list">
<ul><li><a href="../akonadi/index.html">akonadi</a></li>
<li><a href="../dnssd/index.html">dnssd</a></li>
<li><a href="../kdecore/index.html">kdecore</a></li>
<li><a href="../kdeui/index.html">kdeui</a></li>
<li><a href="../khtml/index.html">khtml</a></li>
<li><a href="../kio/index.html">kio</a></li>
<li><a href="../knewstuff/index.html">knewstuff</a></li>
<li><a href="../kparts/index.html">kparts</a></li>
<li><a href="../kutils/index.html">kutils</a></li>
<li><a href="../nepomuk/index.html">nepomuk</a></li>
<li><a href="../phonon/index.html">phonon</a></li>
<li><a href="../plasma/index.html">plasma</a></li>
<li><a href="../polkitqt/index.html">polkitqt</a></li>
<li><a href="../solid/index.html">solid</a></li>
<li><a href="../soprano/index.html">soprano</a></li>
</ul></div></div>
</div>
</div>
<div class="clearer"/>
</div>
<div id="end_body"></div>
</div>
<div id="footer"><div id="footer_text">
This documentation is maintained by <a href="mailto:simon@simonzone.com">Simon Edwards</a>.<br />
KDE<sup>®</sup> and <a href="../images/kde_gear_black.png">the K Desktop Environment<sup>®</sup> logo</a> are registered trademarks of <a href="http://ev.kde.org/" title="Homepage of the KDE non-profit Organization">KDE e.V.</a> |
<a href="http://www.kde.org/contact/impressum.php">Legal</a>
</div></div>
</body>
</html>
|