#define MEMSIZE 1024*20 #include "../lib/gui.h" #include "../lib/clipboard.h" #include "../lib/patterns/rgb.h" //===================================================// // // // DATA // // // //===================================================// dword pick_active = true; dword picked_color = 0; char picked_color_string[11]; #define FORM_W 167 #define FORM_H 60 #define COLOR_BLOCK_SIZE 42 #define COLOR_BLOCK_PADDING FORM_H - COLOR_BLOCK_SIZE / 2 #define COLOR_BLOCK_X FORM_W - COLOR_BLOCK_SIZE - COLOR_BLOCK_PADDING #define BUTTON_ID_CLOSE 1 #define BUTTON_ID_COPY 2 #define BUTTON_ID_PICK 3 //===================================================// // // // CODE // // // //===================================================// void main() { int btn; proc_info Form; SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE); SetWindowLayerBehaviour(-1, ZPOS_ALWAYS_TOP); loop() switch(WaitEvent()) { case evMouse: mouse.get(); if (mouse.x>0) && (mouse.x0) && (mouse.y %A void str2col(dword buf, number) { byte s; strlcpy(buf,"0x00000000",10); buf+=10; while(number) { $dec buf s=number&0xF; if(s>9)DSBYTE[buf]='A'+s-10; else DSBYTE[buf]='0'+s; number>>=4; } } void EventUpdateWindowContent() { //sprintf(#picked_color_string, "%A", picked_color); str2col(#picked_color_string, picked_color); rgb.DwordToRgb(picked_color); WriteTextWithBg(12,12, 0xD0, 0x000111, #picked_color_string+4, 0xFFFfff); WriteNumber(12,33, 0xD0, 0xff0000, 3, rgb.r); WriteNumber(44,33, 0xD0, 0x008000, 3, rgb.g); WriteNumber(75,33, 0xD0, 0x0000ff, 3, rgb.b); DrawBar(COLOR_BLOCK_X, COLOR_BLOCK_PADDING, COLOR_BLOCK_SIZE, COLOR_BLOCK_SIZE, picked_color); } void DrawCopyButton(dword _x, _y, _w, _h) { DefineHiddenButton(_x+1, _y+1, _w-2, _h-2, BUTTON_ID_COPY); DrawRectangle(_x, _y, _w, _h, 0x777777); WriteText(_x+6, _h-8/2 + _y, 0x80, 0x555555, "Copy"); } void EventCopyHex() { Clipboard__CopyText(#picked_color_string+4); }