| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  | /**************************************************************************** | 
					
						
							|  |  |  | ** | 
					
						
							| 
									
										
										
										
											2015-01-14 18:07:15 +01:00
										 |  |  | ** Copyright (C) 2015 The Qt Company Ltd. | 
					
						
							|  |  |  | ** Contact: http://www.qt.io/licensing | 
					
						
							| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  | ** | 
					
						
							| 
									
										
										
										
											2012-10-02 09:12:39 +02:00
										 |  |  | ** This file is part of Qt Creator | 
					
						
							| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  | ** | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** GNU Free Documentation License | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** Alternatively, this file may be used under the terms of the GNU Free | 
					
						
							|  |  |  | ** Documentation License version 1.3 as published by the Free Software | 
					
						
							|  |  |  | ** Foundation and appearing in the file included in the packaging of this | 
					
						
							|  |  |  | ** file. | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ** | 
					
						
							|  |  |  | ****************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*! | 
					
						
							| 
									
										
										
										
											2013-06-14 14:58:08 +02:00
										 |  |  |     \page extending-index.html | 
					
						
							| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  |     \title Extending Qt Creator Manual | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     Qt Creator is a cross-platform integrated development environment (IDE) | 
					
						
							|  |  |  |     tailored to the needs of Qt developers. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     Qt Creator is extensible in various ways. For example, Qt Creator | 
					
						
							|  |  |  |     architecture is based on a plugin loader, which means that all | 
					
						
							|  |  |  |     functionality beyond plugin | 
					
						
							|  |  |  |     loading is implemented in plugins. However, you can extend and tweak | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     many parts of Qt Creator without the need to resort to coding in C++ and | 
					
						
							|  |  |  |     implementing such a plugin. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     This document gives you an overview of the various ways in which | 
					
						
							|  |  |  |     you can extend Qt Creator, | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     depending on what you want to achieve, and points you to the relevant | 
					
						
							|  |  |  |     documentation. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     \section1 Generating Domain Specific Code and Templates | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     If you regularly need to write the same code, be it little code snippets, | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     whole files or classes spread over multiple files, or complete projects, | 
					
						
							|  |  |  |     you can create code snippets, templates, and wizards for that purpose. | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-27 14:30:17 +02:00
										 |  |  |     \section2 Snippets | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-27 14:30:17 +02:00
										 |  |  |     Typically, snippets consist of a few lines of code (although they | 
					
						
							|  |  |  |     can also be plain text) that you regularly | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     want to insert into a bigger body of code, but do not want to type each | 
					
						
							|  |  |  |     time. For example, \c while and \c for loops, \c if-else and \c try-catch | 
					
						
							|  |  |  |     constructs, and class skeletons. Snippets are triggered in the same way as | 
					
						
							| 
									
										
										
										
											2011-05-27 14:30:17 +02:00
										 |  |  |     normal code completion (see \l{Code Assist}{Providing Code Assist}). | 
					
						
							|  |  |  |     Qt Creator contains a set of preconfigured snippets groups | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     to which you can add your own snippets. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \list | 
					
						
							| 
									
										
										
										
											2015-02-18 10:20:03 +01:00
										 |  |  |     \li \l{http://doc.qt.io/qtcreator/creator-completing-code.html#editing-code-snippets} | 
					
						
							| 
									
										
										
										
											2011-05-27 14:30:17 +02:00
										 |  |  |          {Snippets User Interface} | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{Snippets} {Adding Snippets Groups} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     \section2 File, Class and Project Templates | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-17 17:15:42 +01:00
										 |  |  |     You can extend the wizards in \uicontrol {File > New File or Project} with your | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     own | 
					
						
							|  |  |  |     file and project templates by writing XML definition files for them. | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \list | 
					
						
							| 
									
										
										
										
											2015-02-18 10:20:03 +01:00
										 |  |  |     \li \l{http://doc.qt.io/qtcreator/creator-project-wizards.html} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |          {Adding New Custom Wizards} | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{User Interface Text Guidelines} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     \section2 Custom Wizards | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     If the above methods for code snippets and templates are not sufficient | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     for your use case, you can create a custom Qt Creator plugin. | 
					
						
							|  |  |  |     While this gives you complete control over the wizard, it | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     also requires you to write most of the UI and the logic yourself. | 
					
						
							|  |  |  |     \list | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{Creating Plugins} | 
					
						
							|  |  |  |     \li \l{Qt Creator Coding Rules} | 
					
						
							|  |  |  |     \li \l{Creating Wizards in Code} | 
					
						
							|  |  |  |     \li \l{User Interface Text Guidelines} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     \section1 Supporting Additional File Types | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     If you have files with extensions or MIME types that Qt Creator does not | 
					
						
							|  |  |  |     handle by default, you can edit the MIME type definitions, add highlight | 
					
						
							|  |  |  |     definition files, and create your own text editors. | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     \section2 MIME Types | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     You might find that Qt Creator could handle a particular file of yours if | 
					
						
							|  |  |  |     it knew about the type of its contents. For example, C++ header or source | 
					
						
							|  |  |  |     files with file extensions that are not known to Qt Creator. You can adapt | 
					
						
							|  |  |  |     the MIME type definitions in Qt Creator to your specific setup, | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     by adding or removing file extensions and specifying magic headers. | 
					
						
							|  |  |  |     \list | 
					
						
							| 
									
										
										
										
											2015-02-18 10:20:03 +01:00
										 |  |  |     \li \l{http://doc.qt.io/qtcreator/creator-mime-types.html} | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |          {Editing MIME Types} | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{http://standards.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html} | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |          {MIME Type Specification Files} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     \section2 Text Highlighting and Indentation | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     For text files, Qt Creator provides an easy way to add highlighting and | 
					
						
							|  |  |  |     indentation for file types that are not known to it by default. | 
					
						
							|  |  |  |     Generic highlighting is based on highlight definition files that are | 
					
						
							|  |  |  |     provided by the Kate Editor. You can download highlight definition files | 
					
						
							|  |  |  |     for use with Qt Creator and create your own definition files. | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \list | 
					
						
							| 
									
										
										
										
											2015-02-18 10:20:03 +01:00
										 |  |  |     \li \l{http://doc.qt.io/qtcreator/creator-editor-options.html#generic-highlighting} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |          {Generic Highlighting} | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{http://kate-editor.org/2005/03/24/writing-a-syntax-highlighting-file/} | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |          {Writing a Syntax Highlighting File} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     \section2 Custom Text Editors | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     If you need more advanced features than the MIME type and highlighting | 
					
						
							|  |  |  |     features described above, such as custom text completion or features that | 
					
						
							|  |  |  |     rely on semantic analysis, you can extend Qt Creator with a text editor of | 
					
						
							|  |  |  |     your own. Qt Creator provides a special API for text editors that gives you | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     a basis to build on, taking away some of the pain of implementing | 
					
						
							|  |  |  |     a text editor from the ground up. | 
					
						
							|  |  |  |     \list | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{Creating Plugins} | 
					
						
							|  |  |  |     \li \l{Qt Creator Coding Rules} | 
					
						
							|  |  |  |     \li \l{Text Editors} | 
					
						
							|  |  |  |     \li \l{CodeAssist} {Providing Code Assist} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     \section2 Other Custom Editors | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     You can also add a completely custom editor to gain complete | 
					
						
							|  |  |  |     control over its appearance and behavior. | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \list | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{Creating Plugins} | 
					
						
							|  |  |  |     \li \l{Qt Creator Coding Rules} | 
					
						
							|  |  |  |     \li \l{Editors} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     \section1 Running External Tools | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     Most software projects and development processes require various external | 
					
						
							|  |  |  |     tools. Several external tools, such as popular version control systems and | 
					
						
							|  |  |  |     build tool chains are integrated into Qt Creator. However, it is impossible | 
					
						
							|  |  |  |     for a single tool to cover all the use cases, and therefore you can | 
					
						
							|  |  |  |     integrate additional tools to Qt Creator. | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     \section2 Simple External Tools | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     In Qt Creator, you can specify tools that you can then run from a | 
					
						
							|  |  |  |     menu or by using a keyboard shortcut that you assign. This allows you to | 
					
						
							|  |  |  |     accomplish several things, with some limitations. You specify a command | 
					
						
							|  |  |  |     to run, arguments and input for running it, and how to handle the output. | 
					
						
							|  |  |  |     To specify the values, you can use a set of internal Qt Creator variables, | 
					
						
							|  |  |  |     such as the file name of | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     the current document or project, or the currently selected text in | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     a text editor. If you find variables missing, please do not hesitate | 
					
						
							|  |  |  |     to fill a feature suggestion. | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     The tool descriptions are saved as XML files that you can share. | 
					
						
							|  |  |  |     \list | 
					
						
							| 
									
										
										
										
											2015-02-18 10:20:03 +01:00
										 |  |  |     \li \l{http://doc.qt.io/qtcreator/creator-editor-external.html} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |          {Using External Tools} | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{External Tool Specification Files} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     \section2 Complex External Tools | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     When you plan to integrate more complex tools, carefully consider whether | 
					
						
							|  |  |  |     there really are advantages to be gained by tightly integrating the tool | 
					
						
							|  |  |  |     into Qt Creator over loosely integrating it by mainly | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     providing a means of starting the tool with fitting parameters. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     \section3 Loosely Integrating Tools | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     If no interaction is needed between Qt Creator and the | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     external tool, just starting an external | 
					
						
							|  |  |  |     application with its own user interface is preferable. That way | 
					
						
							|  |  |  |     cluttering the Qt Creator UI is avoided, and the tool will be | 
					
						
							|  |  |  |     available with a nice interface even without using Qt Creator | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     at all. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Usually, you can use the external tool specification files to start the | 
					
						
							|  |  |  |     tool. If starting the tool and handling its output require more complex | 
					
						
							|  |  |  |     logic, you can add a menu item to Qt Creator with a plugin. | 
					
						
							|  |  |  |     If you need a way to configure the tool in Qt Creator, you can add an | 
					
						
							| 
									
										
										
										
											2014-12-17 17:15:42 +01:00
										 |  |  |     \uicontrol Options page for it. | 
					
						
							| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  |     \list | 
					
						
							| 
									
										
										
										
											2015-02-18 10:20:03 +01:00
										 |  |  |     \li \l{http://doc.qt.io/qtcreator/creator-editor-external.html} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |          {Using External Tools} | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{External Tool Specification Files} | 
					
						
							|  |  |  |     \li \l{Creating Plugins} | 
					
						
							|  |  |  |     \li \l{Qt Creator Coding Rules} | 
					
						
							|  |  |  |     \li \l{Menus and Menu Items} | 
					
						
							|  |  |  |     \li \l{Options Pages} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     \section3 Interacting with Tool Output | 
					
						
							| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     In some cases, running an external tool would not require tight | 
					
						
							|  |  |  |     integration with Qt Creator, but investigating the output of the tool would | 
					
						
							|  |  |  |     benefit from it. For example, some tools generate lists of issues in files | 
					
						
							|  |  |  |     that are part of the project and some tools create output that is related | 
					
						
							|  |  |  |     to the code. For these tools, it is useful to interactively switch between | 
					
						
							|  |  |  |     the output and the corresponding code. | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     One way to handle that would be to let the tool create an output | 
					
						
							| 
									
										
										
										
											2011-04-28 17:18:57 +02:00
										 |  |  |     file, which is then opened within Qt Creator. You provide | 
					
						
							|  |  |  |     an editor (probably read-only) for handling this file. | 
					
						
							|  |  |  |     For lists of issues, consider creating task list files which are shown in | 
					
						
							| 
									
										
										
										
											2014-12-17 17:15:42 +01:00
										 |  |  |     the \uicontrol {Issues} output | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     pane. | 
					
						
							|  |  |  |     \list | 
					
						
							| 
									
										
										
										
											2015-02-18 10:20:03 +01:00
										 |  |  |     \li \l{http://doc.qt.io/qtcreator/creator-task-lists.html} | 
					
						
							| 
									
										
										
										
											2011-10-21 16:39:14 +02:00
										 |  |  |          {Showing Task List Files in the Issues Pane} | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |     \li \l{Creating Plugins} | 
					
						
							|  |  |  |     \li \l{Qt Creator Coding Rules} | 
					
						
							|  |  |  |     \li \l{Menus and Menu Items} | 
					
						
							|  |  |  |     \li \l{Options Pages} | 
					
						
							|  |  |  |     \li \l{Editors} | 
					
						
							| 
									
										
										
										
											2011-04-28 09:26:17 +02:00
										 |  |  |     \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     \section1 All Topics | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     \list | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |         \li \l{Developing Qt Creator Plugins} | 
					
						
							| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  |             \list | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |                 \li  \l{Creating Plugins} | 
					
						
							|  |  |  |                 \li  \l{Menus and Menu Items} | 
					
						
							|  |  |  |                 \li  \l{Creating Wizards in Code} | 
					
						
							|  |  |  |                 \li  \l{Editors} | 
					
						
							|  |  |  |                 \li  \l{Text Editors} | 
					
						
							|  |  |  |                 \li  \l{Options Pages} | 
					
						
							| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  |             \endlist | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |         \li Reference | 
					
						
							| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  |             \list | 
					
						
							| 
									
										
										
										
											2013-09-25 18:19:45 +02:00
										 |  |  |                 \li  \l{http://standards.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html} | 
					
						
							|  |  |  |                      {MIME Type Specification Files} | 
					
						
							|  |  |  |                 \li  \l{External Tool Specification Files} | 
					
						
							|  |  |  |                 \li  \l{http://kate-editor.org/2005/03/24/writing-a-syntax-highlighting-file/} | 
					
						
							|  |  |  |                      {Highlight Definition Files} | 
					
						
							|  |  |  |                 \li  \l{Qt Creator Variables} | 
					
						
							|  |  |  |                 \li  \l{User Interface Text Guidelines} | 
					
						
							|  |  |  |                 \li  \l{Writing Documentation} | 
					
						
							|  |  |  |                 \li  \l{Qt Creator Coding Rules} | 
					
						
							|  |  |  |                 \li  \l{Qt Creator API Reference} | 
					
						
							| 
									
										
										
										
											2011-04-27 15:41:34 +02:00
										 |  |  |         \endlist | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     \endlist | 
					
						
							|  |  |  | */ |