Changeset 9865 in orxonox.OLD for branches/new_class_id/src/lib/shell/shell_input.h
- Timestamp:
- Oct 2, 2006, 6:24:44 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/shell/shell_input.h
r9715 r9865 37 37 38 38 /** @returns the inputLine */ 39 const std::string& getInput() const { return this->inputLine; };39 std::string getInput() const { return this->inputLineBegin + this->inputLineEnd; }; 40 40 41 41 // InputLine … … 55 55 void historyMoveDown(); 56 56 57 void moveCursor(int chars); 58 57 59 void help(const std::string& className = "", const std::string& function = ""); 58 60 … … 64 66 ShellCompletion completion; //!< The Completion Interface. 65 67 66 std::string inputLine; //!< the Char-Array of the Buffer 68 std::string inputLineBegin; //!< The Line up to the cursor. 69 std::string inputLineEnd; //!< The Line from the cursor on 70 67 71 float repeatRate; //!< The Repeat-Delay. 68 72 float repeatDelay; //!< The delay of the first Character of a given Character.
Note: See TracChangeset
for help on using the changeset viewer.