Reimplemented from Impala::Visualization::AppControlSrc. Definition at line 175 of file mainBackground.cpp. References Impala::Visualization::AppControlSrc::KeyEvent(), mMinimumThres, and Reset(). 00176 { 00177 AppControlSrc::KeyEvent(src, c, state); 00178 if (c == 'r') 00179 Reset(); 00180 if (c == 't') 00181 { 00182 mMinimumThres += 1; 00183 std::cout << "Minimum threshold at " << mMinimumThres << std::endl; 00184 } 00185 if (c == 'T') 00186 { 00187 mMinimumThres -= 1; 00188 std::cout << "Minimum threshold at " << mMinimumThres << std::endl; 00189 } 00190 }
Here is the call graph for this function:
|