27 lines
557 B
C
27 lines
557 B
C
#pragma once
|
|
|
|
struct Button {
|
|
RECT coords;
|
|
const char* text;
|
|
HDC picture;
|
|
};
|
|
|
|
void drawButton(Button but);
|
|
|
|
void drawButton(Button but)
|
|
{
|
|
//drawing button
|
|
txRectangle(but.coords.left,
|
|
but.coords.top,
|
|
but.coords.right,
|
|
but.coords.bottom);
|
|
|
|
//drawing text
|
|
txDrawText (but.coords.left,
|
|
but.coords.top,
|
|
but.coords.right,
|
|
but.coords.bottom,
|
|
but.text,
|
|
DT_CENTER | DT_VCENTER);
|
|
}
|
|
|