Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5371 in orxonox.OLD


Ignore:
Timestamp:
Oct 13, 2005, 1:08:57 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: todo-list

Location:
trunk/src/lib
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/event/event_handler.cc

    r5300 r5371  
    3939  SDL_InitSubSystem(SDL_INIT_JOYSTICK);
    4040  SDL_InitSubSystem(SDL_INIT_EVENTTHREAD);
    41 //  SDL_SetEventFilter(EventHandler::eventFilter);
     41  SDL_SetEventFilter(EventHandler::eventFilter);
    4242
    4343
     
    285285}
    286286
     287
    287288int EventHandler::eventFilter(const SDL_Event *event)
    288289{
    289   /*
    290290  if (event->type == SDL_KEYDOWN &&  event->key.keysym.sym == SDLK_TAB && SDL_GetKeyState(NULL)[SDLK_LALT])
    291291  {
    292     printf("test\n");
    293 
     292    printf("Not sending event to the WindowManager\n");
     293    return 0;
    294294  }
    295295  return 1;
    296   */
    297296}
    298297
  • trunk/src/lib/graphics/render2D/element_2d.h

    r5285 r5371  
    179179    virtual void draw() const = 0;
    180180
     181  protected:
     182    float                   sizeX;              //!< The size of the rendered item in x-direction
     183    float                   sizeY;              //!< The size of the rendered Item in y-direction
     184
    181185  private:
    182186    const PNode*            bindNode;           //!< a node over which to display this 2D-element
  • trunk/src/lib/gui/gl_gui/glgui_button.h

    r5363 r5371  
    2222
    2323// FORWARD DECLARATION
     24class Text;
    2425
    2526//! This is part of the openglGUI class
     
    3839
    3940 private:
     41
    4042  char*                text;
    4143  GLGui_ButtonState    state;
  • trunk/src/lib/shell/shell_completion.h

    r5330 r5371  
    22 * @file shell_completion.h
    33 * @brief The Shell Completion Tasks
     4 *
     5 * @todo if the second string is a Command, the third should not be completed!
     6 * @todo also make some completion for registered (or special) Types
    47*/
    58
Note: See TracChangeset for help on using the changeset viewer.