mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-26 06:12:34 -06:00
18 lines
465 B
C++
18 lines
465 B
C++
#ifndef _CtrlLib_ChMac_h_
|
|
#define _CtrlLib_ChMac_h_
|
|
|
|
#include "CtrlLib.h"
|
|
#include "ChCocoMM.h"
|
|
|
|
namespace Upp {
|
|
|
|
Image Coco_ThemeImage(Color bg, int cx, int cy, int margin, int type,
|
|
int value = 0, int state = CTRL_NORMAL, bool focus = false);
|
|
Image Coco_ThemeImage(int cx, int cy, int margin, int type,
|
|
int value = 0, int state = CTRL_NORMAL, bool focus = false);
|
|
|
|
Color CocoBrush(int k);
|
|
|
|
};
|
|
|
|
#endif
|