Changeset 5254 in orxonox.OLD for trunk/src/lib
- Timestamp:
- Sep 25, 2005, 1:40:33 AM (19 years ago)
- Location:
- trunk/src/lib
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/render2D/element_2d.cc
r5252 r5254 442 442 if( likely(child->parent != NULL)) 443 443 { 444 PRINTF( 4)("Element2D::addChild() - reparenting node: removing it and adding it again\n");444 PRINTF(5)("Element2D::addChild() - reparenting node: removing it and adding it again\n"); 445 445 child->parent->children->remove(child); 446 446 } -
trunk/src/lib/shell/shell.cc
r5253 r5254 43 43 SHELL_COMMAND(textsize, Shell, setTextSize) 44 44 ->describe("Sets the size of the Text (size, linespacing)") 45 ->defaultValues(15, 0); 45 ->defaultValues(1, 15, 0); 46 SHELL_COMMAND(font, Shell, setFont) 47 ->describe("Sets the font of the Shell") 48 ->defaultValues(1, SHELL_DEFAULT_FONT); 46 49 47 50 /** … … 94 97 // delete the inputLine 95 98 delete this->shellInput; 99 96 100 ShellBuffer::getInstance()->unregisterShell(this); 97 101 } … … 148 152 * sets the File to load the fonts from 149 153 * @param fontFile the file to load the font from 154 * 155 * it is quite important, that the font pointed too really exists! 156 * (be aware that within orxonox fontFile is relative to the Data-Dir) 150 157 */ 151 158 void Shell::setFont(const char* fontFile) -
trunk/src/lib/shell/shell_buffer.cc
r5246 r5254 28 28 /** 29 29 * standard constructor 30 * @todo this constructor is not jet implemented - do it 31 */ 30 */ 32 31 ShellBuffer::ShellBuffer () 33 32 { … … 48 47 /** 49 48 * standard deconstructor 50 */49 */ 51 50 ShellBuffer::~ShellBuffer () 52 51 { -
trunk/src/lib/shell/shell_completion.cc
r5249 r5254 10 10 11 11 ### File Specific: 12 main-programmer: ...12 main-programmer: Benjamin Grauer 13 13 co-programmer: ... 14 14 */ -
trunk/src/lib/shell/shell_input.cc
r5249 r5254 10 10 11 11 ### File Specific: 12 main-programmer: ...12 main-programmer: Benjamin Grauer 13 13 co-programmer: ... 14 14 */ -
trunk/src/lib/shell/shell_input.h
r5245 r5254 2 2 * @file shell_input.h 3 3 * @brief Shell Input is an InputLine for the Shell. 4 * 5 * @todo move around in the InputText with the cursor (SDLK_LEFT/SDLK_RIGHT) 6 * @todo blinking curson (can blink with the speed of the RepeatDelay) 4 7 */ 5 8
Note: See TracChangeset
for help on using the changeset viewer.