| 181 | } |
| 182 | |
| 183 | void Console::displayPrompt( ) |
| 184 | { |
| 185 | QTextCursor cursor = textCursor(); |
| 186 | cursor.movePosition( QTextCursor::End ); |
| 187 | if ( m_parseHelper.buffered( ) ) |
| 188 | { |
| 189 | cursor.insertText( Console::MULTILINE_PROMPT ); |
| 190 | } |
| 191 | else |
| 192 | { |
| 193 | cursor.insertText( Console::PROMPT ); |
| 194 | } |
| 195 | cursor.movePosition( QTextCursor::EndOfLine ); |
| 196 | } |
| 197 | |
| 198 | void Console::autocomplete( ) |
| 199 | { |