File indexing completed on 2025-04-20 08:12:11
0001 #! /bin/sh 0002 # 0003 # kdedoxygen.sh 0004 # Copyright 2008,2010,2012 by Allen Winter <winter@kde.org> 0005 # 0006 # This program is free software; you can redistribute it and/or modify 0007 # it under the terms of the GNU General Public License as published by 0008 # the Free Software Foundation; either version 2 of the License, or 0009 # (at your option) any later version. 0010 # 0011 # This program is distributed in the hope that it will be useful, 0012 # but WITHOUT ANY WARRANTY; without even the implied warranty of 0013 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 0014 # GNU General Public License for more details. 0015 # 0016 # You should have received a copy of the GNU General Public License along 0017 # with this program; if not, write to the Free Software Foundation, Inc., 0018 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 0019 # 0020 0021 # A program to generate API html pages for KDE modules using doxygen. 0022 0023 usage="`basename $0` - generates API html pages for KDE modules using doxygen" 0024 help="Simply chdir to the directory containing your code and run this program. The output html can be found in apidocs/html, and the processing log is in doxygen.log" 0025 0026 HELP() { 0027 echo ""; echo $usage; echo ""; echo $help; echo "" 0028 } 0029 0030 while getopts "h" options; do 0031 case $options in 0032 h ) HELP; exit 1;; 0033 \? ) HELP; exit 1;; 0034 * ) HELP; exit 1;; 0035 0036 esac 0037 done 0038 0039 ( cat <<EOF ) | doxygen - 0040 #--------------------------------------------------------------------------- 0041 # Project related configuration options 0042 #--------------------------------------------------------------------------- 0043 PROJECT_NAME = KDE 0044 PROJECT_NUMBER = 4.12 0045 OUTPUT_DIRECTORY = apidocs 0046 CREATE_SUBDIRS = NO 0047 OUTPUT_LANGUAGE = English 0048 BRIEF_MEMBER_DESC = YES 0049 REPEAT_BRIEF = YES 0050 ABBREVIATE_BRIEF = "The \$name class" \ 0051 "The \$name widget" \ 0052 "The \$name file" \ 0053 is \ 0054 provides \ 0055 specifies \ 0056 contains \ 0057 represents \ 0058 a \ 0059 an \ 0060 the 0061 ALWAYS_DETAILED_SEC = NO 0062 INLINE_INHERITED_MEMB = NO 0063 FULL_PATH_NAMES = NO 0064 STRIP_FROM_PATH = 0065 STRIP_FROM_INC_PATH = 0066 SHORT_NAMES = NO 0067 JAVADOC_AUTOBRIEF = NO 0068 MULTILINE_CPP_IS_BRIEF = NO 0069 INHERIT_DOCS = YES 0070 SEPARATE_MEMBER_PAGES = NO 0071 TAB_SIZE = 8 0072 OPTIMIZE_OUTPUT_FOR_C = NO 0073 OPTIMIZE_OUTPUT_JAVA = NO 0074 BUILTIN_STL_SUPPORT = NO 0075 DISTRIBUTE_GROUP_DOC = NO 0076 SUBGROUPING = YES 0077 #--------------------------------------------------------------------------- 0078 # Build related configuration options 0079 #--------------------------------------------------------------------------- 0080 EXTRACT_ALL = NO 0081 EXTRACT_PRIVATE = YES 0082 EXTRACT_STATIC = YES 0083 EXTRACT_LOCAL_CLASSES = YES 0084 EXTRACT_LOCAL_METHODS = NO 0085 HIDE_UNDOC_MEMBERS = NO 0086 HIDE_UNDOC_CLASSES = NO 0087 HIDE_FRIEND_COMPOUNDS = YES 0088 HIDE_IN_BODY_DOCS = NO 0089 INTERNAL_DOCS = YES 0090 CASE_SENSE_NAMES = YES 0091 HIDE_SCOPE_NAMES = NO 0092 SHOW_INCLUDE_FILES = YES 0093 INLINE_INFO = YES 0094 SORT_MEMBER_DOCS = YES 0095 SORT_MEMBERS_CTORS_1ST = YES 0096 SORT_BRIEF_DOCS = YES 0097 SORT_BY_SCOPE_NAME = NO 0098 GENERATE_TODOLIST = YES 0099 GENERATE_TESTLIST = YES 0100 GENERATE_BUGLIST = YES 0101 GENERATE_DEPRECATEDLIST = YES 0102 ENABLED_SECTIONS = 0103 MAX_INITIALIZER_LINES = 30 0104 SHOW_USED_FILES = YES 0105 FILE_VERSION_FILTER = 0106 #--------------------------------------------------------------------------- 0107 # configuration options related to warning and progress messages 0108 #--------------------------------------------------------------------------- 0109 QUIET = NO 0110 WARNINGS = YES 0111 WARN_IF_UNDOCUMENTED = YES 0112 WARN_IF_DOC_ERROR = YES 0113 WARN_NO_PARAMDOC = YES 0114 WARN_FORMAT = "\$file:\$line: \$text" 0115 WARN_LOGFILE = doxygen.log 0116 #--------------------------------------------------------------------------- 0117 # configuration options related to the input files 0118 #--------------------------------------------------------------------------- 0119 INPUT = . 0120 FILE_PATTERNS = *.cpp \ 0121 *.cc \ 0122 *.cxx \ 0123 *.h \ 0124 *.hh \ 0125 *.hxx \ 0126 *.hpp \ 0127 *.dox 0128 RECURSIVE = YES 0129 EXCLUDE = 0130 EXCLUDE_SYMLINKS = NO 0131 EXCLUDE_PATTERNS = */.svn/* \ 0132 */.git/* \ 0133 */cmake/* \ 0134 *.moc.* \ 0135 moc* \ 0136 *.all_cpp.* \ 0137 *unload.* \ 0138 */test/* \ 0139 */tests/* \ 0140 *_p.cpp 0141 EXAMPLE_PATH = 0142 EXAMPLE_PATTERNS = * 0143 EXAMPLE_RECURSIVE = NO 0144 IMAGE_PATH = $PWD 0145 INPUT_FILTER = 0146 FILTER_PATTERNS = 0147 FILTER_SOURCE_FILES = NO 0148 #--------------------------------------------------------------------------- 0149 # configuration options related to the alphabetical class index 0150 #--------------------------------------------------------------------------- 0151 ALPHABETICAL_INDEX = NO 0152 COLS_IN_ALPHA_INDEX = 1 0153 IGNORE_PREFIX = 0154 #--------------------------------------------------------------------------- 0155 # do NOT generate any formats other than html 0156 #--------------------------------------------------------------------------- 0157 SOURCE_BROWSER = NO 0158 GENERATE_HTML = YES 0159 GENERATE_LATEX = NO 0160 GENERATE_RTF = NO 0161 GENERATE_XML = NO 0162 GENERATE_AUTOGEN_DEF = NO 0163 GENERATE_PERLMOD = NO 0164 DISABLE_INDEX = YES 0165 #--------------------------------------------------------------------------- 0166 # configuration options related to the HTML output 0167 #--------------------------------------------------------------------------- 0168 GENERATE_HTML = YES 0169 HTML_OUTPUT = html 0170 HTML_FILE_EXTENSION = .html 0171 HTML_HEADER = 0172 HTML_FOOTER = 0173 HTML_STYLESHEET = 0174 GENERATE_HTMLHELP = NO 0175 CHM_FILE = 0176 HHC_LOCATION = 0177 GENERATE_CHI = NO 0178 BINARY_TOC = NO 0179 TOC_EXPAND = NO 0180 DISABLE_INDEX = NO 0181 ENUM_VALUES_PER_LINE = 4 0182 GENERATE_TREEVIEW = NO 0183 TREEVIEW_WIDTH = 250 0184 #--------------------------------------------------------------------------- 0185 # Configuration options related to the preprocessor 0186 #--------------------------------------------------------------------------- 0187 ENABLE_PREPROCESSING = YES 0188 MACRO_EXPANSION = YES 0189 EXPAND_ONLY_PREDEF = NO 0190 SEARCH_INCLUDES = YES 0191 INCLUDE_PATH = 0192 INCLUDE_FILE_PATTERNS = 0193 PREDEFINED = 0194 EXPAND_AS_DEFINED = 0195 SKIP_FUNCTION_MACROS = YES 0196 #--------------------------------------------------------------------------- 0197 # Configuration::additions related to external references 0198 #--------------------------------------------------------------------------- 0199 ALLEXTERNALS = NO 0200 EXTERNAL_GROUPS = YES 0201 PERL_PATH = /usr/bin/perl 0202 #--------------------------------------------------------------------------- 0203 # Configuration options related to the dot tool 0204 #--------------------------------------------------------------------------- 0205 CLASS_DIAGRAMS = YES 0206 HIDE_UNDOC_RELATIONS = YES 0207 HAVE_DOT = YES 0208 CLASS_GRAPH = YES 0209 COLLABORATION_GRAPH = NO 0210 GROUP_GRAPHS = NO 0211 UML_LOOK = NO 0212 TEMPLATE_RELATIONS = NO 0213 INCLUDE_GRAPH = YES 0214 INCLUDED_BY_GRAPH = YES 0215 CALL_GRAPH = NO 0216 CALLER_GRAPH = NO 0217 GRAPHICAL_HIERARCHY = YES 0218 DIRECTORY_GRAPH = YES 0219 DOT_IMAGE_FORMAT = png 0220 DOT_PATH = 0221 DOTFILE_DIRS = 0222 MAX_DOT_GRAPH_DEPTH = 1000 0223 DOT_TRANSPARENT = NO 0224 DOT_MULTI_TARGETS = NO 0225 GENERATE_LEGEND = YES 0226 DOT_CLEANUP = YES 0227 #--------------------------------------------------------------------------- 0228 # Configuration::additions related to the search engine 0229 #--------------------------------------------------------------------------- 0230 SEARCHENGINE = YES 0231 SERVER_BASED_SEARCH = NO 0232 0233 0234 ### KDE Settings 0235 ALIASES = \ 0236 "intern=\par<b>Internal use only.</b>" \ 0237 "reimp=\par<b>Reimplemented from superclass.</b>" \ 0238 "obsolete=@deprecated" \ 0239 "feature=\xrefitem features \"Feature(s)\" \"Features\"" \ 0240 "maintainer=\xrefitem maintainers \"Maintainer(s)\" \"Maintainers\"" \ 0241 "unmaintained=\xrefitem unmaintained \"Unmaintained\" \"Unmaintained\"" \ 0242 "requirement=\xrefitem requirements \"Requirement(s)\" \"Requirements\"" \ 0243 "faq=\xrefitem FAQ \"F.A.Q.\" \"F.A.Q.\"" \ 0244 "authors=\xrefitem authors \"Author(s)\" \"Authors\"" \ 0245 "maintainers=\xrefitem maintainers \"Maintainer(s)\" \"Maintainers\"" \ 0246 "port4=\xrefitem port4 \"KDE 4 Porting Guide\" \"KDE 4 Porting Guide\"" \ 0247 "glossary=\xrefitem glossary \"KDE 4 Glossary\" \"KDE 4 Glossary\"" \ 0248 "acronym=\b "\ 0249 "licenses=\xrefitem licenses \"License(s)\" \"Licenses\"" \ 0250 "short=@brief "\ 0251 "FIXME=\xrefitem fixme \"Fixme\" \"Fixme\"" \ 0252 "bc=\xrefitem bc \"Binary Compatible\" \"Binary Compatible\"" \ 0253 "artistic=<a href=\"http://www.opensource.org/licenses/artistic-license.php\">Artistic</a>" \ 0254 "bsd=<a href=\"http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5\">BSD</a>" \ 0255 "x11=<a href=\"http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3\">X11</a>" \ 0256 "gpl=<a href=\"http://www.fsf.org/licensing/licenses/gpl.html#SEC1\">GPL</a>" \ 0257 "lgpl=<a href=\"http://www.fsf.org/licensing/licenses/lgpl.html#SEC1\">LGPL</a>" \ 0258 "qpl=<a href=\"http://www.trolltech.com/products/qt/licenses\">QPL</a>" 0259 0260 PREDEFINED = DOXYGEN_SHOULD_SKIP_THIS \ 0261 K_DOXYGEN \ 0262 AKONADI_CONTACT_EXPORT="" \ 0263 AKONADI_CONTACT_TESTS_EXPORT="" \ 0264 AKONADI_EXPORT="" \ 0265 AKONADI_FILESTORE_EXPORT="" \ 0266 AKONADI_KABC_EXPORT="" \ 0267 AKONADI_KCAL_EXPORT="" \ 0268 AKONADI_KCAL_NEXT_EXPORT="" \ 0269 AKONADI_KMIME_EXPORT="" \ 0270 AKONADI_KMIME_TEST_EXPORT="" \ 0271 AKONADI_NEXT_EXPORT="" \ 0272 AKONADI_TESTS_EXPORT="" \ 0273 AKONADI_XML_EXPORT="" \ 0274 AKREGATOR_EXPORT="" \ 0275 AKREGATORINTERFACES_EXPORT="" \ 0276 AKREGATORPART_EXPORT="" \ 0277 BTCORE_EXPORT="" \ 0278 CANTOR_EXPORT="" \ 0279 COMPOUNDVIEWER_EXPORT="" \ 0280 EVENTVIEWS_EXPORT="" \ 0281 GEOLOCATION_EXPORT="" \ 0282 GPGMEPP_EXPORT="" \ 0283 GWENVIEWLIB_EXPORT="" \ 0284 GWSOAP_EXPORT="" \ 0285 INCIDENCEEDITORS_EXPORT="" \ 0286 INCIDENCEEDITORS_NG_EXPORT="" \ 0287 ION_EXPORT="" \ 0288 JABBER_EXPORT="" \ 0289 KABC_DIR_EXPORT="" \ 0290 KABC_EXPORT="" \ 0291 KABC_FILE_CORE_EXPORT="" \ 0292 KABC_GROUPWISE_EXPORT="" \ 0293 KABC_LDAPKIO_EXPORT="" \ 0294 KABC_NET_EXPORT="" \ 0295 KADDRESSBOOK_EXPORT="" \ 0296 KALARM_CAL_EXPORT="" \ 0297 KALARM_RESOURCES_EXPORT="" \ 0298 KASTENCONTROLLERS_EXPORT="" \ 0299 KASTENCORE_EXPORT="" \ 0300 KASTENGUI_EXPORT="" \ 0301 KATEINTERFACES_EXPORT="" \ 0302 KATEPART_TESTS_EXPORT="" \ 0303 KAUDIODEVICELIST_EXPORT="" \ 0304 KBLOG_EXPORT="" \ 0305 KBOOKMARKMODEL_EXPORT="" \ 0306 KCALCORE_EXPORT="" \ 0307 KCALCORE_TEST_EXPORT="" \ 0308 KCAL_EXPORT="" \ 0309 KCAL_GROUPWISE_EXPORT="" \ 0310 KCAL_RESOURCEBLOG_EXPORT="" \ 0311 KCAL_RESOURCEREMOTE_EXPORT="" \ 0312 KCAL_TEST_EXPORT="" \ 0313 KCALUTILS_EXPORT="" \ 0314 KCALUTILS_TEST_EXPORT="" \ 0315 KCDDB_EXPORT="" \ 0316 KCM_KNODE_EXPORT="" \ 0317 KCM_KORGANIZER_EXPORT="" \ 0318 KCM_KRESOURCES_EXPORT="" \ 0319 KCMUTILS_EXPORT="" \ 0320 KDE3SUPPORT_EXPORT="" \ 0321 KDECORE_EXPORT="" \ 0322 KDEEDUUI_EXPORT="" \ 0323 KDE_EXPORT="" \ 0324 KDEGAMES_EXPORT="" \ 0325 KDEMULTIMEDIA_EXPORT="" \ 0326 KDEPIM_COPY_EXPORT="" \ 0327 KDEPIMDBUSINTERFACES_EXPORT="" \ 0328 KDEPIM_EXPORT="" \ 0329 KDESU_EXPORT="" \ 0330 KDEUI_EXPORT="" \ 0331 KDEWEBKIT_EXPORT="" \ 0332 KDNSSD_EXPORT="" \ 0333 KEDUVOCDOCUMENT_EXPORT="" \ 0334 KEMOTICONS_EXPORT="" \ 0335 KEPHAL_EXPORT="" \ 0336 KERFUFFLE_EXPORT="" \ 0337 KEXIV2_EXPORT="" \ 0338 KFILE_EXPORT="" \ 0339 KFONTINST_EXPORT="" \ 0340 KGET_EXPORT="" \ 0341 KGGZGAMES_EXPORT="" \ 0342 KGGZMOD_EXPORT="" \ 0343 KGGZNET_EXPORT="" \ 0344 KHOLIDAYS_EXPORT="" \ 0345 KHTML_EXPORT="" \ 0346 KICKOFF_EXPORT="" \ 0347 KIDLETIME_EXPORT="" \ 0348 KIMAP_EXPORT="" \ 0349 KIMPANELRUNTIME_EXPORT="" \ 0350 KIMPROXY_EXPORT="" \ 0351 KIO_EXPORT="" \ 0352 KIOSLAVE_FILE_EXPORT="" \ 0353 KIRCCLIENT_EXPORT="" \ 0354 KIRC_EXPORT="" \ 0355 KJSAPI_EXPORT="" \ 0356 KLDAP_EXPORT="" \ 0357 KLEO_EXPORT="" \ 0358 KLEOPATRACLIENTCORE_EXPORT="" \ 0359 KLEOPATRACLIENTGUI_EXPORT="" \ 0360 KLINKSTATUS_EXPORT="" \ 0361 KMAHJONGGLIB_EXPORT="" \ 0362 KMAIL_EXPORT="" \ 0363 KMEDIAPLAYER_EXPORT="" \ 0364 KMIME_EXPORT="" \ 0365 KMINDEXREADER_EXPORT="" \ 0366 KNEWSTUFF_EXPORT="" \ 0367 KNODE_EXPORT="" \ 0368 KNOTIFYCONFIG_EXPORT="" \ 0369 KNTLM_EXPORT="" \ 0370 KOLFLIB_EXPORT="" \ 0371 KOLOURPAINT_LGPL_EXPORT="" \ 0372 KOMMANDERCORE_EXPORT="" \ 0373 KOMMANDERWIDGETS_EXPORT="" \ 0374 KONQ_TESTS_EXPORT="" \ 0375 KONQUERORPRIVATE_EXPORT="" \ 0376 KONSOLEPRIVATE_EXPORT="" \ 0377 KONTACT_EXPORT="" \ 0378 KONTACTINTERFACE_EXPORT="" \ 0379 KOPETEADDACCOUNTWIZARD_EXPORT="" \ 0380 KOPETECHATWINDOW_SHARED_EXPORT="" \ 0381 KOPETE_CONTACT_LIST_EXPORT="" \ 0382 KOPETE_EXPORT="" \ 0383 KOPETE_IDENTITY_EXPORT="" \ 0384 KOPETE_OTR_SHARED_EXPORT="" \ 0385 KOPETEPRIVACY_EXPORT="" \ 0386 KOPETE_STATUSMENU_EXPORT="" \ 0387 KORGANIZER_CALENDAR_EXPORT="" \ 0388 KORGANIZER_CORE_EXPORT="" \ 0389 KORGANIZER_EVENTVIEWER_EXPORT="" \ 0390 KORGANIZER_INTERFACES_EXPORT="" \ 0391 KORGANIZERPRIVATE_EXPORT="" \ 0392 KORG_STDPRINTING_EXPORT="" \ 0393 KPARTS_EXPORT="" \ 0394 KPGP_EXPORT="" \ 0395 KPIMIDENTITIES_EXPORT="" \ 0396 KPIMTEXTEDIT_EXPORT="" \ 0397 KPIMUTILS_EXPORT="" \ 0398 KPRINTUTILS_EXPORT="" \ 0399 KPTY_EXPORT="" \ 0400 KRESOURCES_EXPORT="" \ 0401 KRICHTEXTEDITPART_EXPORT="" \ 0402 KROSSCORE_EXPORT="" \ 0403 KROSS_EXPORT="" \ 0404 KROSSUI_EXPORT="" \ 0405 KSIEVE_EXPORT="" \ 0406 KSPEECH_EXPORT="" \ 0407 KTEXTEDITOR_CODESNIPPETS_CORE_EXPORT="" \ 0408 KTEXTEDITOR_EXPORT="" \ 0409 KTNEF_EXPORT="" \ 0410 KUNITCONVERSION_EXPORT="" \ 0411 KUNITTEST_EXPORT="" \ 0412 KUPNP_EXPORT="" \ 0413 KWALLETBACKEND_EXPORT="" \ 0414 KXMLRPCCLIENT_EXPORT="" \ 0415 LANCELOT_EXPORT="" \ 0416 LIBDOLPHINPRIVATE_EXPORT="" \ 0417 LIBGROUPWISE_EXPORT="" \ 0418 LIBKCARDGAME_EXPORT="" \ 0419 LIBKDCRAW_EXPORT="" \ 0420 LIBKIPI_EXPORT="" \ 0421 LIBKONQ_EXPORT="" \ 0422 LIBKSANE_EXPORT="" \ 0423 LIBKYAHOO_EXPORT="" \ 0424 LIBOSCAR_EXPORT="" \ 0425 MAILDIR_EXPORT="" \ 0426 MAILTRANSPORT_EXPORT="" \ 0427 MBOX_EXPORT="" \ 0428 MESSAGECOMPOSER_EXPORT="" \ 0429 MESSAGECORE_EXPORT="" \ 0430 MESSAGELIST_EXPORT="" \ 0431 MESSAGEVIEWER_EXPORT="" \ 0432 MICROBLOG_EXPORT="" \ 0433 MOBILEUI_EXPORT="" \ 0434 MOLLETNETWORK_EXPORT="" \ 0435 NEPOMUK_EXPORT="" \ 0436 NEPOMUKQUERY_EXPORT="" \ 0437 OKTETACORE_EXPORT="" \ 0438 OKTETAGUI_EXPORT="" \ 0439 OKTETAKASTENCONTROLLERS_EXPORT="" \ 0440 OKTETAKASTENCORE_EXPORT="" \ 0441 OKTETAKASTENGUI_EXPORT="" \ 0442 OKULAR_EXPORT="" \ 0443 OSCAR_EXPORT="" \ 0444 PIMSTRIGI_ANALYZER_EXPORT="" \ 0445 PLASMACLOCK_EXPORT="" \ 0446 PLASMA_COMIC_EXPORT="" \ 0447 PLASMA_EXPORT="" \ 0448 PLASMAGENERICSHELL_EXPORT="" \ 0449 PLASMA_POTD_EXPORT="" \ 0450 PLASMAWEATHER_EXPORT="" \ 0451 PROXYMODELTESTSUITE_EXPORT="" \ 0452 QGPGME_EXPORT="" \ 0453 QQ_EXPORT="" \ 0454 RTM_EXPORT="" \ 0455 SCIENCE_EXPORT="" \ 0456 SM_EXPORT="" \ 0457 SOLIDCONTROL_EXPORT="" \ 0458 SOLIDCONTROLIFACES_EXPORT="" \ 0459 SUPERKARAMBA_EXPORT="" \ 0460 SYNDICATION_EXPORT="" \ 0461 SYSTEMSETTINGSVIEW_EXPORT="" \ 0462 TASKMANAGER_EXPORT="" \ 0463 TEMPLATEPARSER_EXPORT="" \ 0464 THREADWEAVER_EXPORT="" \ 0465 YAHOO_EXPORT="" \ 0466 \ 0467 AKONADI_EXPORT_DEPRECATED="" \ 0468 AKONADI_KCAL_NEXT_EXPORT_DEPRECATED="" \ 0469 AKONADI_KMIME_EXPORT_DEPRECATED="" \ 0470 AKONADI_NEXT_EXPORT_DEPRECATED="" \ 0471 AKREGATOR_EXPORT_DEPRECATED="" \ 0472 AKREGATORINTERFACES_EXPORT_DEPRECATED="" \ 0473 BTCORE_EXPORT_DEPRECATED="" \ 0474 CANTOR_EXPORT_DEPRECATED="" \ 0475 COMPOUNDVIEWER_EXPORT_DEPRECATED="" \ 0476 EVENTVIEWS_EXPORT_DEPRECATED="" \ 0477 GEOLOCATION_EXPORT_DEPRECATED="" \ 0478 GPGMEPP_EXPORT_DEPRECATED="" \ 0479 INCIDENCEEDITORS_EXPORT_DEPRECATED="" \ 0480 INCIDENCEEDITORS_NG_EXPORT_DEPRECATED="" \ 0481 ION_EXPORT_DEPRECATED="" \ 0482 KABC_DIRECTORY_EXPORT_DEPRECATED="" \ 0483 KABC_EXPORT_DEPRECATED="" \ 0484 KABC_FILE_CORE_EXPORT_DEPRECATED="" \ 0485 KABC_GROUPWISE_EXPORT_DEPRECATED="" \ 0486 KABC_LDAPKIO_EXPORT_DEPRECATED="" \ 0487 KABC_NET_EXPORT_DEPRECATED="" \ 0488 KADDRESSBOOK_EXPORT_DEPRECATED="" \ 0489 KALARM_CAL_EXPORT_DEPRECATED="" \ 0490 KALARM_RESOURCES_EXPORT_DEPRECATED="" \ 0491 KASTENCONTROLLER_EXPORT_DEPRECATED="" \ 0492 KASTENCORE_EXPORT_DEPRECATED="" \ 0493 KASTENGUI_EXPORT_DEPRECATED="" \ 0494 KAUDIODEVICELIST_EXPORT_DEPRECATED="" \ 0495 KBOOKMARKMODEL_EXPORT_DEPRECATED="" \ 0496 KCALCORE_EXPORT_DEPRECATED="" \ 0497 KCAL_EXPORT_DEPRECATED="" \ 0498 KCAL_GROUPWISE_EXPORT_DEPRECATED="" \ 0499 KCAL_RESOURCEREMOTE_EXPORT_DEPRECATED="" \ 0500 KCALUTILS_EXPORT_DEPRECATED="" \ 0501 KCDDB_EXPORT_DEPRECATED="" \ 0502 KCM_KORGANIZER_EXPORT_DEPRECATED="" \ 0503 KCM_KRESOURCES_EXPORT_DEPRECATED="" \ 0504 KDE3SUPPORT_EXPORT_DEPRECATED="" \ 0505 KDECORE_EXPORT_DEPRECATED="" \ 0506 KDE_DEPRECATED="" \ 0507 KDEEDUUI_EXPORT_DEPRECATED="" \ 0508 KDEGAMES_EXPORT_DEPRECATED="" \ 0509 KDEMULTIMEDIA_EXPORT_DEPRECATED="" \ 0510 KDEPIM_COPY_EXPORT_DEPRECATED="" \ 0511 KDEPIM_EXPORT_DEPRECATED="" \ 0512 KDEUI_EXPORT_DEPRECATED="" \ 0513 KDEWEBKIT_EXPORT_DEPRECATED="" \ 0514 KEDUVOCDOCUMENT_EXPORT_DEPRECATED="" \ 0515 KEPHAL_EXPORT_DEPRECATED="" \ 0516 KERFUFFLE_EXPORT_DEPRECATED="" \ 0517 KEXIV2_EXPORT_DEPRECATED="" \ 0518 KFILE_EXPORT_DEPRECATED="" \ 0519 KGGZGAMES_EXPORT_DEPRECATED="" \ 0520 KGGZMOD_EXPORT_DEPRECATED="" \ 0521 KGGZNET_EXPORT_DEPRECATED="" \ 0522 KHOLIDAYS_EXPORT_DEPRECATED="" \ 0523 KHTML_EXPORT_DEPRECATED="" \ 0524 KICKOFF_EXPORT_DEPRECATED="" \ 0525 KIMPANELRUNTIME_EXPORT_DEPRECATED="" \ 0526 KIO_EXPORT_DEPRECATED="" \ 0527 KIOSLAVE_FILE_EXPORT_DEPRECATED="" \ 0528 KJSAPI_EXPORT_DEPRECATED="" \ 0529 KLEO_EXPORT_DEPRECATED="" \ 0530 KLINKSTATUS_EXPORT_DEPRECATED="" \ 0531 KMAHJONGGLIB_EXPORT_DEPRECATED="" \ 0532 KMAIL_EXPORT_DEPRECATED="" \ 0533 KMIME_EXPORT_DEPRECATED="" \ 0534 KNEWSTUFF_EXPORT_DEPRECATED="" \ 0535 KNODE_EXPORT_DEPRECATED="" \ 0536 KNTLM_EXPORT_DEPRECATED="" \ 0537 KOLFLIB_EXPORT_DEPRECATED="" \ 0538 KOLOURPAINT_LGPL_EXPORT_DEPRECATED="" \ 0539 KOMMANDERCORE_EXPORT_DEPRECATED="" \ 0540 KOMMANDERWIDGETS_EXPORT_DEPRECATED="" \ 0541 KONQUERORPRIVATE_EXPORT_DEPRECATED="" \ 0542 KONTACT_EXPORT_DEPRECATED="" \ 0543 KORGANIZER_CALENDAR_EXPORT_DEPRECATED="" \ 0544 KORGANIZER_CORE_EXPORT_DEPRECATED="" \ 0545 KORGANIZER_EVENTVIEWER_EXPORT_DEPRECATED="" \ 0546 KORGANIZER_INTERFACES_EXPORT_DEPRECATED="" \ 0547 KORGANIZERPRIVATE_EXPORT_DEPRECATED="" \ 0548 KORG_STDPRINTING_EXPORT_DEPRECATED="" \ 0549 KPGP_EXPORT_DEPRECATED="" \ 0550 KPINTERFACES_EXPORT_DEPRECATED="" \ 0551 KPTY_EXPORT_DEPRECATED="" \ 0552 KRESOURCES_EXPORT_DEPRECATED="" \ 0553 KROSSCORE_EXPORT_DEPRECATED="" \ 0554 KROSS_EXPORT_DEPRECATED="" \ 0555 KSIEVE_EXPORT_DEPRECATED="" \ 0556 KTEXTEDITOR_EXPORT_DEPRECATED="" \ 0557 KTNEF_EXPORT_DEPRECATED="" \ 0558 KUNITCONVERSION_EXPORT_DEPRECATED="" \ 0559 KUNITTEST_EXPORT_DEPRECATED="" \ 0560 KUPNP_EXPORT_DEPRECATED="" \ 0561 LANCELOT_EXPORT_DEPRECATED="" \ 0562 LIBKCARDGAME_EXPORT_DEPRECATED="" \ 0563 LIBKDCRAW_EXPORT_DEPRECATED="" \ 0564 LIBKIPI_EXPORT_DEPRECATED="" \ 0565 LIBKONQ_EXPORT_DEPRECATED="" \ 0566 LIBKSANE_EXPORT_DEPRECATED="" \ 0567 MAILDIR_EXPORT_DEPRECATED="" \ 0568 MAILTRANSPORT_EXPORT_DEPRECATED="" \ 0569 MBOX_EXPORT_DEPRECATED="" \ 0570 MOLLETNETWORK_EXPORT_DEPRECATED="" \ 0571 NEPOMUKQUERY_EXPORT_DEPRECATED="" \ 0572 NEPOMUK_SERVER_EXPORT_DEPRECATED="" \ 0573 OKTETACORE_EXPORT_DEPRECATED="" \ 0574 OKTETAGUI_EXPORT_DEPRECATED="" \ 0575 OKTETAKASTENCONTROLLER_EXPORT_DEPRECATED="" \ 0576 OKTETAKASTENCORE_EXPORT_DEPRECATED="" \ 0577 OKTETAKASTENGUI_EXPORT_DEPRECATED="" \ 0578 PLASMACLOCK_EXPORT_DEPRECATED="" \ 0579 PLASMA_EXPORT_DEPRECATED="" \ 0580 PLASMAGENERICSHELL_EXPORT_DEPRECATED="" \ 0581 PLASMAWEATHER_EXPORT_DEPRECATED="" \ 0582 QGPGME_EXPORT_DEPRECATED="" \ 0583 RTM_EXPORT_DEPRECATED="" \ 0584 SCIENCE_EXPORT_DEPRECATED="" \ 0585 SM_EXPORT_DEPRECATED="" \ 0586 SOLID_EXPORT_DEPRECATED="" \ 0587 SUPERKARAMBA_EXPORT_DEPRECATED="" \ 0588 SYSTEMSETTINGSVIEW_EXPORT_DEPRECATED="" \ 0589 TASKMANAGER_EXPORT_DEPRECATED="" \ 0590 \ 0591 Q_WS_X11="" \ 0592 Q_WS_WIN="" \ 0593 Q_WS_MAC="" \ 0594 Q_WS_QWS="" \ 0595 Q_WS_MAEMO_5="" \ 0596 Q_OS_LINUX="" \ 0597 Q_OS_UNIX="" \ 0598 Q_OS_WIN="" \ 0599 Q_OS_MAC="" \ 0600 Q_OS_MACX="" \ 0601 Q_OS_DARWIN="" \ 0602 Q_OS_FREEBSD="" \ 0603 Q_OS_NETBSD="" \ 0604 Q_OS_OPENBSD="" \ 0605 Q_OS_BSD4="" \ 0606 Q_OS_SOLARIS="" \ 0607 Q_OS_IRIX="" \ 0608 \ 0609 Q_SLOTS="slots" \ 0610 Q_SIGNALS="signals" 0611 0612 EOF 0613