forked from tcobbs/ldview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMpdDialog.cpp
203 lines (181 loc) · 4 KB
/
MpdDialog.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#include "MpdDialog.h"
#include "ModelWindow.h"
#include "Resource.h"
#include <TCFoundation/TCAlertManager.h>
#include <LDLoader/LDLMainModel.h>
#include <CUI/CUIWindowResizer.h>
#if defined(_MSC_VER) && _MSC_VER >= 1400 && defined(_DEBUG)
#define new DEBUG_CLIENTBLOCK
#endif // _DEBUG
MpdDialog::MpdDialog(HINSTANCE hInstance):
CUIDialog(hInstance, NULL),
m_modelWindow(NULL),
m_model(NULL),
m_resizer(NULL),
m_okPressed(false)
{
TCAlertManager::registerHandler(ModelWindow::alertClass(), this,
(TCAlertCallback)&MpdDialog::modelAlertCallback);
}
MpdDialog::~MpdDialog(void)
{
}
void MpdDialog::dealloc(void)
{
TCAlertManager::unregisterHandler(this);
TCObject::release(m_modelWindow);
TCObject::release(m_model);
TCObject::release(m_resizer);
if (hWindow)
{
DestroyWindow(hWindow);
}
CUIDialog::dealloc();
}
void MpdDialog::setModel(LDLMainModel *model)
{
if (model != m_model)
{
TCObject::release(m_model);
m_model = model;
TCObject::retain(m_model);
}
}
void MpdDialog::modelAlertCallback(TCAlert *alert)
{
if (alert->getSender() == m_modelWindow)
{
if (ucstrcmp(alert->getMessageUC(), _UC("ModelLoaded")) == 0)
{
setModel(getModelViewer()->getMainModel());
updateData();
}
else if (ucstrcmp(alert->getMessageUC(), _UC("ModelLoadCanceled")) == 0)
{
setModel(NULL);
updateData();
}
}
}
void MpdDialog::setModelWindow(ModelWindow *modelWindow)
{
if (modelWindow != m_modelWindow)
{
if (m_modelWindow)
{
m_modelWindow->release();
}
m_modelWindow = modelWindow;
TCObject::retain(m_modelWindow);
}
setModel(getModelViewer()->getMainModel());
}
void MpdDialog::showMpdModel(int index)
{
LDrawModelViewer *modelViewer = getModelViewer();
if (modelViewer)
{
modelViewer->setMpdChildIndex(index);
listBoxSelectItem(IDC_MPD_LIST, index);
}
}
void MpdDialog::show(ModelWindow *modelWindow)
{
setModelWindow(modelWindow);
if (hWindow == NULL)
{
HWND hParentWnd = GetParent(modelWindow->getHWindow());
createDialog(IDD_MPD, hParentWnd);
if (hWindow == NULL)
{
// ACK!
return;
}
}
ShowWindow(hWindow, SW_SHOW);
}
LDrawModelViewer *MpdDialog::getModelViewer(void)
{
if (m_modelWindow)
{
return m_modelWindow->getModelViewer();
}
else
{
return NULL;
}
}
void MpdDialog::updateData(void)
{
LDrawModelViewer *modelViewer = getModelViewer();
listBoxResetContent(IDC_MPD_LIST);
if (m_model != NULL && modelViewer != NULL)
{
LDLModelVector &mpdModels = m_model->getMpdModels();
if (mpdModels.size() > 0)
{
for (size_t i = 0; i < mpdModels.size(); i++)
{
LDLModel *mpdModel = mpdModels[i];
ucstring ucName;
utf8toucstring(ucName, mpdModel->getName());
listBoxAddString(IDC_MPD_LIST, ucName);
}
listBoxSelectItem(IDC_MPD_LIST, modelViewer->getMpdChildIndex());
}
}
}
BOOL MpdDialog::doInitDialog(HWND hKbControl)
{
RECT rect;
GetClientRect(hWindow, &rect);
setMinSize(rect.right, rect.bottom, true);
setIcon(IDI_APP_ICON);
m_resizer = new CUIWindowResizer;
m_resizer->setHWindow(hWindow);
m_resizer->addSubWindow(IDC_MPD_LIST, CUISizeHorizontal | CUISizeVertical);
m_resizer->addSubWindow(IDOK, CUIFloatLeft | CUIFloatTop);
m_resizer->addSubWindow(IDCANCEL, CUIFloatLeft | CUIFloatTop);
m_resizer->addResizeGrip();
updateData();
setAutosaveName("MpdDialog");
return CUIDialog::doInitDialog(hKbControl);
}
LRESULT MpdDialog::doClose(void)
{
showWindow(SW_HIDE);
if (!m_okPressed)
{
showMpdModel(0);
}
m_okPressed = false;
return 0;
}
LRESULT MpdDialog::doSize(WPARAM sizeType, int newWidth, int newHeight)
{
if (sizeType != SIZE_MINIMIZED)
{
m_resizer->resize(newWidth, newHeight);
}
return CUIDialog::doSize(sizeType, newWidth, newHeight);
}
LRESULT MpdDialog::doCommand(
int notifyCode,
int commandId,
HWND control)
{
if (commandId == IDC_MPD_LIST && notifyCode == LBN_SELCHANGE)
{
showMpdModel(listBoxGetSelectedItem(IDC_MPD_LIST));
}
return CUIDialog::doCommand(notifyCode, commandId, control);
}
void MpdDialog::doCancel(void)
{
doClose();
}
void MpdDialog::doOK(void)
{
m_okPressed = true;
doClose();
}