Qt Creator Manual

Using the Editor

Qt Creator's code editor is designed to aid you in creating, editing and navigating code. Qt Creator's code editor is fully equipped with syntax checking, code completion, context sensitive help and in-line error indicators while you are typing.

"Edit mode"

Using the Editor Toolbar

The editor toolbar is located at the top of the editor view. The editor toolbar is context sensitive and shows items relevant to the file currently open in the editor.

Use the toolbar to navigate between open files and symbols in use. To browse forward or backward through your location history, click and .

To go to any open file, select it from the Open files drop-down menu. Right-click the menu title and select Copy Full Path to Clipboard to copy the path and name of the current file to the clipboard.

To jump to any symbol used in the current file, select it from the Symbols drop-down menu. By default, the symbols are displayed in the order in which they appear in the file. Right-click the menu title and select Sort Alphabetically to arrange the symbols in alphabetic order.

Splitting the Editor View

Split the editor view when you want to work on and view multiple files on the same screen.

You can split the editor view in the following ways:

  • To split the editor view into a top and bottom view, select Window > Split or press Ctrl+E, 2.

    Split command creates views below the currently active editor view.

  • To split the editor view into adjacent views, select Window > Split Side by Side or press Ctrl+E, 3.

    Side by side split command creates views to the right of the currently active editor view.

To move between split views, select Window > Go to Next Split or press Ctrl+E, O.

To remove a split view, place the cursor within the view you want to remove and select Window > Remove Current Split or press Ctrl+E, 0. To remove all but the currently selected split view, select Window > Remove All Splits or press Ctrl+E, 1.

Using Bookmarks

To insert or delete a bookmark right-click the line number and select Toggle Bookmark or press Ctrl+M.

To go to previous bookmark in the current session, press Ctrl+,.

To go to next bookmark in the current session, press Ctrl+..

Moving to Symbol Definition or Declaration

You can move directly to the definition or the declaration of a symbol by holding the Ctrl and clicking the symbol.

To enable this moving function, in Tools > Options > Text Editor > Behavior, select Enable mouse navigation.

You can also select the symbol and press F2, or right-click the symbol and select Follow Symbol Under Cursor to move to its definition or declaration. This feature is supported for namespaces, classes, methods, variables, include statements, and macros.

To switch between the definition and declaration of a symbol, press Shift+F2 or right-click the symbol and select Switch Between Method Declaration/Definition.

Using Update Code Model

To refresh the internal information in Qt Creator pertaining to your code, select Tools > C++ > Update Code Model.

Note: In Qt Creator indexing updates the code automatically. Use Update Code Model only as an emergency command.