Configuring the EditorQt Creator allows you to configure the text editor to suit your specific needs. To configure the editor, select Tools > Options... > Text Editor. You can perform the following configuration actions:
Configuring FontsYou can select the font family and size. You can specify a zoom setting in percentage for viewing the text. You can also zoom in or out by pressing Ctrl++ or Ctrl +-, or by pressing Ctrl and rolling the mouse button up or down. To disable the mouse wheel function, select Tools > Options... > Text Editor > Behavior and deselect the Enable scroll wheel zooming check box. Antialiasing is used by default to make text look smoother and more readable on the screen. Deselect the Antialias check box to turn off antialiasing. Defining Color SchemesYou can select one of the predefined color schemes for syntax highlighting or create customized color schemes. To create a color scheme:
When you copy code from Qt Creator, it is copied in both plain text and HTML format. The latter makes sure that syntax highlighting is preserved when pasting to a rich-text editor. Indenting CodeWhen you type code, it is indented automatically according to the selected options. Select a block to indent it when you press Tab. Press Shift+Tab to decrease the indentation. When you press Backspace the indentation is decreased by one level, instead of one space, by default. By default, the tab-length in code editor is 8 spaces, but you can change it. The code editor can also determine whether tabs or spaces are used on the previous or next line and copy the style. You can determine whether the block indent style includes braces, or you can use the GNU indent style. The GNU style places braces on a separate line, indented by 2 spaces, except when they open a function definition, where they are not indented. The following code snippet illustrates excluding braces from the indented block: void foobar(bool zoo) { if (zoo) { foo(); } } The following code snippet illustrates including braces in the indented block: void foobar(bool zoo) { if (zoo) { foo(); } } The following code snippet illustrates the GNU style: void foobar(bool zoo) { if (zoo) { foo(); } }
© 2008-2010 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide. All other trademarks are property of their respective owners. Privacy Policy X
|