[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Allows to adjust a single color.
Source position: MUIClass.Group.pas line 235
type TMUIColorAdjust = class(TMUIGroup) |
||
protected |
||
procedure GetCreateTags(); override; |
|
Fill TagList for MUI item creation |
procedure AfterCreateObject; override; |
|
Connect Events after MUI item creation |
public |
||
constructor Create; override; |
|
Create ColorAdjust object |
procedure CreateObject; override; |
|
Create the MUI item |
property RGB: PLongWord; [rw] |
|
Set or get the red/green/blue values all at once. |
published |
||
property Red: LongWord; [rw] |
|
Set or get the 32-bit red component of the adjusted color. |
property Green: LongWord; [rw] |
|
Set or get the 32-bit green component of the adjusted color. |
property Blue: LongWord; [rw] |
|
Set or get the 32-bit blue component of the adjusted color. |
property ModeID: LongWord; [rw] |
|
Which screen mode the color shall be adjusted. |
property OnColorChange: TNotifyEvent; [rw] |
|
Even triggered when the Color is changed |
end; |
|
Allows to adjust a single color. |
|
| | ||
|
Group class is responsible for the complete layout of a MUI window. |
|
| | ||
|
Super class for every other MUI class except windows and applications |
|
| | ||
|
Subclass of TNotify to introduce the Parent relation |
|
| | ||
|
Notify class is superclass of all other MUI classes. |
|
| | ||
|
Base class for all MUI Class |
|
| | ||
TObject |
Depending on the operating system, different kinds of gadgets are be used. Kickstart 2.x users might only receive an RGB slider triple, Kickstart 3.x users could get an additional colorwheel if available. However, the outfit of this class is not important for you as a programmer.