Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8631 in orxonox.OLD


Ignore:
Timestamp:
Jun 20, 2006, 2:39:13 PM (18 years ago)
Author:
bensch
Message:

gui: color-animation

Location:
branches/gui/src/lib/gui/gl
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/gui/gl/glgui_table.cc

    r8629 r8631  
    216216  }
    217217
    218 
    219   /**
    220    * @brief ticks the Table
    221    * @param dt the time passed.
    222    */
    223   void GLGuiTable::tick(float dt)
    224 {}
    225218
    226219  /**
     
    304297    text->setLineWidth( this->_columnWidths[column] );
    305298    text->setFont("fonts/final_frontier.ttf", (int)this->textSize());
     299    text->setColor(this->foregroundColor());
    306300
    307301    text->setColor(this->foregroundColor());
  • branches/gui/src/lib/gui/gl/glgui_table.h

    r8629 r8631  
    4444    void setRowHeight(unsigned int row, unsigned int size);
    4545
    46     virtual void tick(float dt);
    4746    virtual void draw() const;
    4847
  • branches/gui/src/lib/gui/gl/glgui_widget.cc

    r8619 r8631  
    706706    //this->_currentStyle = this->_style[state];
    707707    this->_state = state;
    708     PRINTF(3)("Switching to state %s\n", OrxGui::StateString[state].c_str());
     708    PRINTF(3)("%s::%s Switches to state %s\n", this->getClassName(), this->getName(), OrxGui::StateString[state].c_str());
    709709
    710710    this->animateBack();
     
    721721  void GLGuiWidget::tick(float dt)
    722722  {
    723     if (this->_animating)
     723        if (this->_animating)
    724724    {
    725725      this->foregroundColor();
Note: See TracChangeset for help on using the changeset viewer.