Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 31, 2006, 12:02:50 AM (18 years ago)
Author:
bensch
Message:

gui: multiple Connections also work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/gui/gl_gui/glgui_inputline.cc

    r7998 r8002  
    2121{
    2222  /**
    23    * standard constructor
     23   * @brief standard constructor
    2424  */
    2525  GLGuiInputLine::GLGuiInputLine ()
     
    3030
    3131  /**
    32    * standard deconstructor
    33   */
     32   * @brief standard deconstructor
     33   */
    3434  GLGuiInputLine::~GLGuiInputLine()
    3535  {}
     
    4040
    4141  /**
    42    * initializes the GUI-element
     42   * @brief initializes the GUI-element
    4343   */
    4444  void GLGuiInputLine::init()
     
    5353  }
    5454
     55
     56  /**
     57   * @brief sets the Text of the InputLine
     58   * @param text The new Text.
     59   */
    5560  void GLGuiInputLine::setText(const std::string& text)
    5661  {
     
    6166  }
    6267
     68  /**
     69   * @brief appends text to the InputLine
     70   * @param appendText the Text to append
     71   */
    6372  void GLGuiInputLine::append(const std::string& appendText)
    6473  {
     
    6877  }
    6978
     79
     80  /**
     81   * @brief appends a Character to the InputLine
     82   * @param character the Character to append.
     83   */
    7084  void GLGuiInputLine::appendCharacter(char character)
    7185  {
     
    7690
    7791
     92  /**
     93   * @brief Removes Characters from the InputLine
     94   * @param chars The count of characters to remove
     95   */
    7896  void GLGuiInputLine::removeCharacters(unsigned int chars)
    7997  {
     
    84102
    85103
     104  /**
     105   * removes the focus from this Widget.
     106   */
    86107  void GLGuiInputLine::removedFocus()
    87108  {
     
    92113
    93114
     115  /**
     116   * Processes an Event.
     117   * @param event The event to be processed
     118   * @return true if the event was catched.
     119   */
    94120  bool GLGuiInputLine::processEvent(const Event& event)
    95121  {
     
    130156
    131157
     158  /**
     159   * @brief Resizes the Widget to the new Size-constraints.
     160   */
    132161  void GLGuiInputLine::resize()
    133162  {
     
    139168
    140169
     170  /**
     171   * ticks the InputLine
     172   * @param dt the time passed.
     173   */
    141174  void GLGuiInputLine::tick(float dt)
    142175  {
Note: See TracChangeset for help on using the changeset viewer.