Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5254 in orxonox.OLD


Ignore:
Timestamp:
Sep 25, 2005, 1:40:33 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: some very little todo's…, and Names in all files

Location:
trunk/src/lib
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/graphics/render2D/element_2d.cc

    r5252 r5254  
    442442  if( likely(child->parent != NULL))
    443443  {
    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");
    445445    child->parent->children->remove(child);
    446446  }
  • trunk/src/lib/shell/shell.cc

    r5253 r5254  
    4343SHELL_COMMAND(textsize, Shell, setTextSize)
    4444    ->describe("Sets the size of the Text (size, linespacing)")
    45     ->defaultValues(15, 0);
     45    ->defaultValues(1, 15, 0);
     46SHELL_COMMAND(font, Shell, setFont)
     47    ->describe("Sets the font of the Shell")
     48    ->defaultValues(1, SHELL_DEFAULT_FONT);
    4649
    4750/**
     
    9497  // delete the inputLine
    9598  delete this->shellInput;
     99
    96100  ShellBuffer::getInstance()->unregisterShell(this);
    97101}
     
    148152 * sets the File to load the fonts from
    149153 * @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)
    150157 */
    151158void Shell::setFont(const char* fontFile)
  • trunk/src/lib/shell/shell_buffer.cc

    r5246 r5254  
    2828/**
    2929 * standard constructor
    30  * @todo this constructor is not jet implemented - do it
    31 */
     30 */
    3231ShellBuffer::ShellBuffer ()
    3332{
     
    4847/**
    4948 * standard deconstructor
    50 */
     49 */
    5150ShellBuffer::~ShellBuffer ()
    5251{
  • trunk/src/lib/shell/shell_completion.cc

    r5249 r5254  
    1010
    1111   ### File Specific:
    12    main-programmer: ...
     12   main-programmer: Benjamin Grauer
    1313   co-programmer: ...
    1414*/
  • trunk/src/lib/shell/shell_input.cc

    r5249 r5254  
    1010
    1111   ### File Specific:
    12    main-programmer: ...
     12   main-programmer: Benjamin Grauer
    1313   co-programmer: ...
    1414*/
  • trunk/src/lib/shell/shell_input.h

    r5245 r5254  
    22 * @file shell_input.h
    33 * @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)
    47*/
    58
Note: See TracChangeset for help on using the changeset viewer.