-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
121 lines (103 loc) · 2.82 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include <windows.h>
#include <commctrl.h>
#include <stdio.h>
#include "resource.h"
#include <cstdlib>
#include <cstring>
namespace Resources
{
const int SliderID = 1002;
const int LabelID = 1003;
const int ImageID = 1004;
}
HINSTANCE hInst;
HWND hDialog = nullptr;
HWND slider = nullptr;
HWND label = nullptr;
HWND image = nullptr;
int value = 0;
const int MinValue = 0;
const int MaxValue = 10;
void ChangeImageTo(const char* name)
{
auto bmp = (HBITMAP)LoadImage(nullptr, name, IMAGE_BITMAP, NULL, NULL, LR_LOADFROMFILE);
SendMessage(image, STM_SETIMAGE, IMAGE_BITMAP, (LPARAM)bmp);
}
void SetValue(int val)
{
value = val;
SendMessage(slider, TBM_SETPOS, TRUE, value);
char temp_s[10];
sprintf(temp_s,"%d",value);
SetWindowText(label, temp_s);
if (value < 4)
ChangeImageTo("Sad.bmp");
else if (value > 7)
ChangeImageTo("Happy.bmp");
else
ChangeImageTo("Neutral.bmp");
}
BOOL OnScroll(WPARAM wParam, LPARAM lParam)
{
auto hControl = (HWND)lParam;
if (hControl != slider) return FALSE;
auto value = SendMessage(slider, TBM_GETPOS, NULL, NULL);
SetValue(value);
return TRUE;
}
HWND CreateControl(const char* className, long style, int x, int y, int width, int heigth, int id)
{
return CreateWindow(
className, "",
WS_CHILD | WS_VISIBLE | style,
x, y,
width, heigth,
hDialog,
(HMENU)id,
hInst,
nullptr);
}
void CreateControls()
{
SetWindowPos(hDialog, nullptr, NULL, NULL, 300, 200, SWP_NOMOVE | SWP_NOZORDER | SWP_FRAMECHANGED);
SetWindowText(hDialog, "Lesson 04");
slider = CreateControl(TRACKBAR_CLASS, WS_TABSTOP | TBS_AUTOTICKS | TBS_HORZ, 20, 60, 150, 32, Resources::SliderID);
SendMessage(slider, TBM_SETRANGE, TRUE, MAKELONG(MinValue, MaxValue));
label = CreateControl("static", NULL, 20, 100, 150, 32, Resources::LabelID);
image = CreateControl("STATIC", SS_BITMAP, 200, 20, NULL, NULL, Resources::ImageID);
SetValue(0);
}
BOOL CALLBACK DlgMain(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
case WM_INITDIALOG:
{
hDialog = hwndDlg;
CreateControls();
}
return TRUE;
case WM_CLOSE:
{
EndDialog(hwndDlg, 0);
}
return TRUE;
case WM_COMMAND:
{
//switch(LOWORD(wParam))
//{
//}
}
return TRUE;
case WM_HSCROLL:
case WM_VSCROLL:
return (INT_PTR)OnScroll(wParam, lParam);
}
return FALSE;
}
int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
hInst=hInstance;
InitCommonControls();
return DialogBox(hInst, MAKEINTRESOURCE(DLG_MAIN), NULL, (DLGPROC)DlgMain);
}