03-19-2020, 07:24 PM
Function dialog_draw_image
str dd=
;BEGIN DIALOG
;0 "" 0x90C80AC8 0x0 0 0 224 136 "Dialog" "4"
;1 Button 0x54030001 0x4 116 116 48 14 "OK"
;2 Button 0x54030000 0x4 168 116 48 14 "Cancel"
;END DIALOG
;DIALOG EDITOR: "" 0x2040A00 "*" "" "" ""
if(!ShowDialog(dd &sub.DlgProc 0)) ret
#sub DlgProc
function# hDlg message wParam lParam
sel message
,case WM_INITDIALOG
,case WM_DESTROY
,case WM_PAINT
,PAINTSTRUCT ps
,int dc=BeginPaint(hDlg &ps)
,
,__GdiHandle bitmap=LoadPictureFile("Q:\Test\test.png")
,__GdiHandle brush=CreatePatternBrush(bitmap)
,RECT r; TO_GetBitmapRect(bitmap r); OffsetRect &r 50 50
,FillRect dc &r brush
,;brush.Delete
,;bitmap.Delete
,
,EndPaint hDlg &ps
,case WM_COMMAND goto messages2
ret
;messages2
sel wParam
,case IDOK
,case IDCANCEL
ret 1