Definition at line 202 of file SizableWindow.h. References East, mAllowMove, mAllowSizeEast, mAllowSizeNorth, mAllowSizeSouth, mAllowSizeWest, Move, North, South, and West. Referenced by Impala::Visualization::SimilarityTimeLineVideo::Init(), Impala::Application::MediaTable::TableWindowColumn::Init(), OglGui::TwoPanesWindow::LayoutPanes(), OglGui::FourPanesWindow::LayoutPanes(), OglGui::ColumnHeaders::MakeHeader(), OglGui::IntervalChooser::MakeThumb(), and Impala::Application::MediaTable::TableWindowColumn::OpenConfigWindow(). 00203 { 00204 if (bits & North) 00205 mAllowSizeNorth = mode; 00206 if (bits & East) 00207 mAllowSizeEast = mode; 00208 if (bits & South) 00209 mAllowSizeSouth = mode; 00210 if (bits & West) 00211 mAllowSizeWest = mode; 00212 if (bits & Move) 00213 mAllowMove = mode; 00214 }
|