Duckcpp 2.1.0
Duckcpp is a high-performance c++ graphics engine.
Loading...
Searching...
No Matches
IGUIColorSelectDialog.hpp
1// Copyright (C) 2002-2012 Nikolaus Gebhardt
2// This file is part of the "Irrlicht Engine".
3// For conditions of distribution and use, see copyright notice in duckcpp/duckcpp.hpp
4
5#ifndef DCPP_I_GUI_COLOR_SELECT_DIALOG_HPP_INCLUDED
6#define DCPP_I_GUI_COLOR_SELECT_DIALOG_HPP_INCLUDED
7
8#include <duckcpp/core/engine/IGUIElement.hpp>
9
10namespace dcpp
11{
12namespace gui
13{
14
17 {
18 public:
19
22 : IGUIElement(EGUIET_COLOR_SELECT_DIALOG, environment, parent, id, rectangle) {}
23
25 virtual video::SColor getColor() =0;
26
29
30 };
31
32
33} // end namespace gui
34} // end namespace dcpp
35
36#endif
Standard color chooser dialog.
Definition IGUIColorSelectDialog.hpp:17
virtual video::SColorHSL getColorHSL()=0
get chosen color as HSL values
IGUIColorSelectDialog(IGUIEnvironment *environment, IGUIElement *parent, i32 id, nub::rect< i32 > rectangle)
constructor
Definition IGUIColorSelectDialog.hpp:21
virtual video::SColor getColor()=0
get chosen color as usual SColor class
Base class of all GUI elements.
Definition IGUIElement.hpp:24
GUI Environment. Used as factory and manager of all other GUI elements.
Definition IGUIEnvironment.hpp:73
Axis aligned bounding box in 3d dimensional space.
Definition aabbox3d.hpp:22
Class representing a color in HSL format.
Definition SColor.hpp:708
Class representing a 32 bit ARGB color.
Definition SColor.hpp:317
@ EGUIET_COLOR_SELECT_DIALOG
A color select open dialog (IGUIColorSelectDialog)
Definition EGUIElementTypes.hpp:41
As of Duckcpp 1.6, position2d is a synonym for vector2d.
Definition vector3d.hpp:11
signed int i32
32 bit signed variable.
Definition irrTypes.hpp:72

Duckcpp    @cppfx.xyz