Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

virtual void Impala::Application::MediaTable::TableWindow::KeyboardFunc ( int  c,
int  state 
) [inline, virtual]

Reimplemented from Impala::Application::MediaTable::TableDataViewController.

Definition at line 407 of file TableWindow.h.

References ILOG_USER, Impala::Application::MediaTable::TableDataViewController::KeyboardFunc(), mShowZoomView, SetDefaultRowSizes(), ShowZoomView(), and ToggleZoomViewSize().

Referenced by Impala::Application::MediaTable::MediaTable::KeyboardFunc().

00408     {
00409         ILOG_USER("TableWindow keyboard func " << c << " | " << (char) c << " state: " << state);
00410         switch (c)
00411         {
00412             case 'x':
00413                    SetDefaultRowSizes(20, 80); break;
00414             case 'c':
00415                    SetDefaultRowSizes(15, 40); break;
00416             case 'v':
00417                    SetDefaultRowSizes(10, 80); break;
00418             case 'b':
00419                    SetDefaultRowSizes(10, 120); break;
00420 
00421             case '`':
00422                 ShowZoomView(!mShowZoomView);
00423                 break;
00424             case '~':
00425                 ToggleZoomViewSize();
00426                 break;
00427                         default:
00428                                 TableDataViewController::KeyboardFunc(c, state);
00429         }
00430     }

Here is the call graph for this function:


Generated on Fri Mar 19 10:47:00 2010 for ImpalaSrc by  doxygen 1.5.1