- Timestamp:
 - May 30, 2006, 11:37:54 PM (19 years ago)
 - Location:
 - branches/gui/src/lib/gui/gl_gui
 - Files:
 - 
          
- 2 edited
 
- 
          glgui_inputline.cc (modified) (5 diffs)
 - 
          glgui_inputline.h (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
branches/gui/src/lib/gui/gl_gui/glgui_inputline.cc
r7936 r7998 26 26 { 27 27 this->init(); 28 29 28 } 30 29 … … 58 57 this->text.setText(text); 59 58 this->resize(); 59 60 emit(this->textChanged(this->getText())); 60 61 } 61 62 … … 64 65 this->text.append(appendText); 65 66 this->resize(); 67 emit(this->textChanged(this->text.getText())); 66 68 } 67 69 … … 70 72 this->text.appendCharacter(character); 71 73 this->resize(); 74 emit(this->textChanged(this->text.getText())); 72 75 } 73 76 … … 77 80 this->text.removeCharacters(chars); 78 81 this->resize(); 82 emit(this->textChanged(this->text.getText())); 79 83 } 80 84  - 
        
branches/gui/src/lib/gui/gl_gui/glgui_inputline.h
r7919 r7998 43 43 virtual bool processEvent(const Event& event); 44 44 45 DeclareSignal1(textChanged, const std::string&); 46 45 47 private: 46 48 void resize();  
Note: See TracChangeset
          for help on using the changeset viewer.
      


            






