Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7858 in orxonox.OLD


Ignore:
Timestamp:
May 25, 2006, 3:59:34 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: fixed auto-repeat

Location:
trunk/src/lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/gui/qt_gui/gui_audio.cc

    r7856 r7858  
    4040  */
    4141  GuiAudio::GuiAudio(OrxGui::Gui* gui)
    42   : Element(CONFIG_SECTION_AUDIO, gui), QGroupBox()
     42      : Element(CONFIG_SECTION_AUDIO, gui), QGroupBox()
    4343  {
    4444    QGridLayout* layout = new QGridLayout(this);
     
    5454      layout->addWidget(soundCard, 1, 1, 1, 2);
    5555      soundCard->addItem("Not supportet yet");
    56 
    5756
    5857
     
    7473      connect(musicVolume, SIGNAL(valueChanged(int)), musicNumber, SLOT(display(int)));
    7574      layout->addWidget(musicNumber, 2, 1);
    76 
    7775
    7876
  • trunk/src/lib/shell/shell_input.cc

    r7771 r7858  
    334334        this->addCharacter(event.x);
    335335        this->pressedKey = event.x;
     336        this->pressedEvent = event.type;
    336337      }
    337338      this->delayed = this->repeatDelay;
     
    339340    else // if(!event.bPressed)
    340341    {
    341       if (this->pressedKey == event.x || this->pressedKey == event.type)
    342       {
     342      if (this->pressedEvent == event.type)
     343      {
     344        this->pressedEvent = 0;
    343345        this->pressedKey = 0;
    344346        this->delayed = 0.0;
  • trunk/src/lib/shell/shell_input.h

    r7729 r7858  
    6868    float                             delayed;          //!< how much of the delay is remaining.
    6969    Uint16                            pressedKey;       //!< the pressed key that will be repeated.
     70    Uint16                            pressedEvent;     //!< The Event, that lead to the pressing of the Key.
    7071
    7172    static std::list<std::string>     history;          //!< The history of given commands.
Note: See TracChangeset for help on using the changeset viewer.