Enumerations | |
enum | Appearance { Flat = 0 , ThreeDimensional = 1 } |
Frame shape of a display object. More... | |
enum | CoordStyle { CS_NORMAL = 0 , CS_CROSSHAIR = 1 } |
Display style of the coordinate system. More... | |
enum | HighBitScaleMode { HBSM_Global = 0 , HBSM_ViewPort = 1 , HBSM_WrapAround = 2 } |
Specifies the treatment of image data with > 8 bits per pixel for display purposes. More... | |
enum | LeftButtonMode { LB_NONE = 0 , LB_RUBBER = 1 , LB_FRAME = 2 , LB_AREAMODE = 3 , LB_SETORIGIN = 4 , LB_DRAWPOINT = 5 , LB_DRAWFILL = 6 , LB_DRAWLINE = 7 , LB_DRAWRECT = 8 , LB_PAN = 9 } |
Specifies what the response will be to a LeftButton event of the mouse. More... | |
enum | MouseWheelMode { MW_NONE = 0 , MW_ZOOM = 1 } |
Specifies what the response will be to a MouseWheel event of the mouse. More... | |
enum | RightButtonMode { RB_NONE = 0 , RB_ZOOM = 1 , RB_MENU = 2 } |
Specifies what the response will be to a RightButton event of the mouse. More... | |
enum Appearance |
enum CoordStyle |
enum HighBitScaleMode |
Specifies the treatment of image data with > 8 bits per pixel for display purposes.
Enumerator | |
---|---|
HBSM_Global | In this mode, the gray values of the image that is currently being displayed will be scaled to the range [0...255] according to the value range available to the data type that the image implements. In other words: In this mode, e.g. a 12 bit per pixel image will have all its gray values divided by 16 to fit into the 256 grey values available to the display. |
HBSM_ViewPort | In the ViewPort mode, the display scans the currently visible portion of the image for the minimum and maximum grey value, then scales this range to the available [0...255] range. |
HBSM_WrapAround | In the WrapAround mode, Instead of scaling pixel values >= 256 to the range [0...255] the display simply uses the lowest 8 bits of each pixel for display. This mode was until CVB 11.01.000 the only available display mode for images with more than 8 bits per pixel (and for DirectDraw display this currently continues to be the only option). It is therefore also the default mode (for backward compatibility) that is assumed if nothing else is specified. |
enum LeftButtonMode |
Specifies what the response will be to a LeftButton event of the mouse.
enum MouseWheelMode |
enum RightButtonMode |