2025-11-01 03:37:40 +00:00
|
|
|
/*!
|
2025-11-03 21:48:25 +00:00
|
|
|
* @file Mw/Dialog/ColorPicker.h
|
2025-11-01 03:37:40 +00:00
|
|
|
* @brief Color picker
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __MW_COLORPICKER_H__
|
|
|
|
|
#define __MW_COLORPICKER_H__
|
|
|
|
|
|
|
|
|
|
#include <Mw/MachDep.h>
|
|
|
|
|
#include <Mw/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-11-02 20:08:42 +00:00
|
|
|
/*!
|
|
|
|
|
* @brief Creates a color picker
|
|
|
|
|
* @param handle Widget
|
|
|
|
|
* @param title Title text
|
|
|
|
|
* @return Widget
|
|
|
|
|
*/
|
2026-04-22 12:05:49 +09:00
|
|
|
MWDECL MwWidget MWAPI MwColorPicker(MwWidget handle, const char* title);
|
2025-11-01 03:37:40 +00:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|