| ComboBox.cpp |
|
1398 |
| ComboBox.h |
|
2305 |
| CommandBar.h |
|
2304 |
| Dialog.cpp |
OnHelp(
#ifdef UNDER_CE
(void *)
#else
(LPHELPINFO)
#endif
lParam);
return true;
|
6276 |
| Dialog.h |
bool GetItemText(int itemID, LPWSTR string, int maxCount)
{
CWindow window(GetItem(itemID));
return window.GetText(string, maxCount);
}
|
5610 |
| Edit.h |
|
302 |
| ImageList.cpp |
|
135 |
| ImageList.h |
|
2372 |
| ListView.cpp |
LRESULT CListView3::OnMessage(UINT message, WPARAM wParam, LPARAM lParam)
{
LRESULT res = CListView2::OnMessage(message, wParam, lParam);
if (message == WM_GETDLGCODE)
{
// when user presses RETURN, windows sends default (first) button command to parent dialog.
// we disable this:
MSG *msg = (MSG *)lParam;
WPARAM key = wParam;
bool change = false;
if (msg)
{
if (msg->message == WM_KEYDOWN && msg->wParam == VK_RETURN)
change = true;
}
else if (wParam == VK_RETURN)
change = true;
if (change)
res |= DLGC_WANTALLKEYS;
}
return res;
}
|
3798 |
| ListView.h |
int GetNumColumns()
{
HWND header = ListView_GetHeader(_window);
if (!header)
return -1;
return Header_GetItemCount(header);
}
|
6481 |
| ProgressBar.h |
|
1272 |
| PropertyPage.cpp |
controlID |
3949 |
| PropertyPage.h |
|
1457 |
| ReBar.h |
|
1088 |
| Static.h |
|
779 |
| StatusBar.h |
|
1414 |
| StdAfx.h |
|
101 |
| ToolBar.h |
|
1379 |
| Trackbar.h |
|
621 |
| Window2.cpp |
code |
5091 |
| Window2.h |
createStruct |
1882 |