Reimplemented from OglGui::WindowListener. Definition at line 94 of file ShowNextFromControl.h. References Impala::atoi(), OglGui::TextEdit::GetText(), mNrToShow, mShowNrTextEdit, mStartVal, mValTextEdit, ShowNextFromChanged(), UpdateShowNrText(), and UpdateStartValText(). 00095 { 00096 if (c == '\r') 00097 { 00098 if (src == mValTextEdit) 00099 { 00100 mStartVal = atoi(mValTextEdit->GetText().c_str()); 00101 UpdateStartValText(); 00102 } 00103 if (src == mShowNrTextEdit) 00104 { 00105 mNrToShow = atoi(mShowNrTextEdit->GetText().c_str()); 00106 UpdateShowNrText(); 00107 } 00108 ShowNextFromChanged(); 00109 } 00110 }
Here is the call graph for this function:
|