Daniel@0: #Handled actions: Daniel@0: #MM_PAN Daniel@0: #MM_ROTATE Daniel@0: #MM_SINGLE_SELECT Daniel@0: #MM_RECTANGULAR_SELECT Daniel@0: #MM_MOVE Daniel@0: #MM_FISHEYE_MAGNIFIER Daniel@0: #keys:These are pre defined keys in the code , more keys can be added by using their GTK key event correspondants, 0 means no key Daniel@0: #B_LSHIFT Left Shift Daniel@0: #B_RSHIFT Right Shift Daniel@0: #B_LCTRL Left CTRL Daniel@0: #B_RCTRL Right CTRL Daniel@0: #view modes , use one from the following list for each line Daniel@0: #ALL Action is always active Daniel@0: #2D active only in 2D mode Daniel@0: #3D active in only 3D mode Daniel@0: #FISHEYE active in only fisheye mode Daniel@0: #NO_FISHEYE active when mode is not fisheye Daniel@0: #mouse_button Daniel@0: #LEFT Daniel@0: #RIGHT Daniel@0: #MIDDLE Daniel@0: #drag Daniel@0: #specify if action requires mouse to be dragged Daniel@0: #Line format Daniel@0: #Action,hotkey,view_mode,mouse_button,drag Daniel@0: #COMBO1 Daniel@0: MM_PAN,0,ALL,LEFT,1 Daniel@0: MM_ROTATE,B_LSHIFT,3D,LEFT,1 Daniel@0: MM_SINGLE_SELECT,0,NO_FISHEYE,RIGHT,0 Daniel@0: MM_RECTANGULAR_SELECT,0,ALL,RIGHT,1 Daniel@0: MM_MOVE,B_LCTRL,2D,LEFT,1 Daniel@0: MM_FISHEYE_MAGNIFIER,B_LSHIFT,2D,LEFT,1 Daniel@0: MM_FISHEYE_PICK,0,FISHEYE,RIGHT,0