PCL
|
A simple color selection dialog. More...
#include <ColorDialog.h>
Public Types | |
enum | { AlphaEnabled = 0x0080 , Grayscale = 0x0020 } |
![]() | |
using | execute_event_handler = void(Control::*)(Dialog &sender) |
using | return_event_handler = void(Control::*)(Dialog &sender, int retCode) |
using | std_code = StdDialogCode::value_type |
![]() | |
using | child_event_handler = void(Control::*)(Control &sender, Control &child) |
using | close_event_handler = void(Control::*)(Control &sender, bool &allowClose) |
using | event_handler = void(Control::*)(Control &sender) |
using | file_drag_event_handler = void(Control::*)(Control &sender, const pcl::Point &pos, const StringList &files, unsigned modifiers, bool &wantsFiles) |
using | file_drop_event_handler = void(Control::*)(Control &sender, const pcl::Point &pos, const StringList &files, unsigned modifiers) |
using | keyboard_event_handler = void(Control::*)(Control &sender, int key, unsigned modifiers, bool &wantsKey) |
using | mouse_button_event_handler = void(Control::*)(Control &sender, const pcl::Point &pos, int button, unsigned buttons, unsigned modifiers) |
using | mouse_event_handler = void(Control::*)(Control &sender, const pcl::Point &pos, unsigned buttons, unsigned modifiers) |
using | mouse_wheel_event_handler = void(Control::*)(Control &sender, const pcl::Point &pos, int delta, unsigned buttons, unsigned modifiers) |
using | move_event_handler = void(Control::*)(Control &sender, const pcl::Point &newPos, const pcl::Point &oldPos) |
using | paint_event_handler = void(Control::*)(Control &sender, const pcl::Rect &updateRect) |
using | resize_event_handler = void(Control::*)(Control &sender, int newWidth, int newHeight, int oldWidth, int oldHeight) |
using | view_drag_event_handler = void(Control::*)(Control &sender, const pcl::Point &pos, const View &view, unsigned modifiers, bool &wantsView) |
using | view_drop_event_handler = void(Control::*)(Control &sender, const pcl::Point &pos, const View &view, unsigned modifiers) |
Additional Inherited Members | |
![]() | |
static void | ProcessEvents (bool excludeUserInputEvents=false) |
![]() | |
static void | HideToolTip () |
static Control & | Null () |
static void | ShowToolTip (const Point &pos, const String &text, const Control &control=Control::Null(), const Rect &rect=Rect(0)) |
static void | ShowToolTip (int x, int y, const String &text, const Control &control=Control::Null(), const Rect &rect=Rect(0)) |
static String | ToolTipText () |
![]() | |
static UIObject & | Null () |
![]() | |
UIObject ()=default | |
UIObject (const UIObject &x) | |
UIObject (UIObject &&x) | |
UIObject & | operator= (const UIObject &x) |
UIObject & | operator= (UIObject &&x) |
SimpleColorDialog is a simplified color selection dialog box. This class is suitable to implement quick definition of 32-bit RGBA color items as part of a user preferences definition interface. It implements optional support for an alpha (transparency) component. Color components are specified in the eight-bit range [0,255].
Definition at line 89 of file ColorDialog.h.
anonymous enum |
Enumerator | |
---|---|
AlphaEnabled | Enable definition of the alpha (transparency) component. |
Grayscale | Define a grayscale AARRGGBB color, where RR=GG=BB. |
Definition at line 93 of file ColorDialog.h.
Constructs a SimpleColorDialog object.
color | Address of a 32-bit unsigned integer variable (a RGBA color value). If a non-null pointer is specified, when the user accepts the dialog the selected color value will be written to the specified variable. |
flags | A combination of flags that define the behavior of the color selection dialog. Currently the following flags are supported: SimpleColorDialog::AlphaEnabled: Enable definition of the alpha (transparency) component SimpleColorDialog::Grayscale: Define a grayscale AARRGGBB color, where RR=GG=BB. |
|
inlineoverride |
Destroys a SimpleColorDialog object.
Definition at line 122 of file ColorDialog.h.
|
inline |
Returns the RGBA color value that has been defined by the user.
If a non-null pointer was passed to the constructor, this function returns the same color value that will be (or has been) written to the corresponding variable.
Definition at line 142 of file ColorDialog.h.
|
inline |
Returns true iff this dialog allows definition of an alpha (transparency) color component.
Definition at line 151 of file ColorDialog.h.
|
inline |
Returns true iff this dialog defines a grayscale color, where the three individual RGB components are equal.
Definition at line 160 of file ColorDialog.h.
void pcl::SimpleColorDialog::SetColor | ( | RGBA | color | ) |
Sets the current RGBA color value.
This function can be called before executing the dialog to set an initial color value, as an alternative to passing a non-null pointer to the constructor.