ReactOS 0.4.15-dev-7788-g1ad9096
window.h
Go to the documentation of this file.
1/*
2 * Copyright 2003, 2004, 2005 Martin Fuchs
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19
20 //
21 // Explorer clone
22 //
23 // window.h
24 //
25 // Martin Fuchs, 23.07.2003
26 //
27
28
30
31
32 /*
33 Classes are declared using "struct", not "class" because the default
34 access mode is "public". This way we can list the member functions in a
35 natural order without explicitly specifying any access mode at the begin
36 of the definition.
37 First are public constructors and destructor, then public member functions.
38 After that we list protected member varibables and functions. If needed,
39 private implemenation varibales and functions are positioned at the end.
40 */
41
42
45{
46 ChildWndInfo(HWND hmdiclient)
47 : _hmdiclient(hmdiclient) {}
48
50};
51
52
58struct Window : public WindowHandle
59{
61 virtual ~Window();
62
63
65
66 typedef Window* (*CREATORFUNC)(HWND);
67 typedef Window* (*CREATORFUNC_INFO)(HWND, const void*);
68
69 static HWND Create(CREATORFUNC creator,
70 DWORD dwExStyle, LPCTSTR lpClassName, LPCTSTR lpWindowName,
71 DWORD dwStyle, int x, int y, int w, int h,
72 HWND hwndParent=0, HMENU hMenu=0/*, LPVOID lpParam=0*/);
73
74 static HWND Create(CREATORFUNC_INFO creator, const void* info,
75 DWORD dwExStyle, LPCTSTR lpClassName, LPCTSTR lpWindowName,
76 DWORD dwStyle, int x, int y, int w, int h,
77 HWND hwndParent=0, HMENU hMenu=0/*, LPVOID lpParam=0*/);
78
80// static Window* create_property_sheet(struct PropertySheetDialog* ppsd, CREATORFUNC creator, const void* info);
81
84
85 static Window* get_window(HWND hwnd);
86#ifndef _MSC_VER
87 template<typename CLASS> static CLASS* get_window(HWND hwnd) {return static_cast<CLASS*>(get_window(hwnd));}
88#define GET_WINDOW(CLASS, hwnd) Window::get_window<CLASS>(hwnd)
89#endif
90
91 static void register_pretranslate(HWND hwnd);
93 static BOOL pretranslate_msg(LPMSG pmsg);
94
95 static void register_dialog(HWND hwnd);
96 static void unregister_dialog(HWND hwnd);
97 static BOOL dispatch_dialog_msg(LPMSG pmsg);
98
99 static int MessageLoop();
100
101
104
105 static void CancelModes();
106
107
108protected:
109 virtual LRESULT Init(LPCREATESTRUCT pcs); // WM_CREATE processing
110 virtual LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam);
111 virtual int Command(int id, int code); // WM_COMMAND processing
112 virtual int Notify(int id, NMHDR* pnmh); // WM_NOTIFY processing
113
115
116
118
119 static const void* s_new_info;
121
122
127 };
128
130
131
132 // MDI child creation
133 static HHOOK s_hcbtHook;
136
139};
140
141#ifdef UNICODE
142#define NFR_CURRENT NFR_UNICODE
143#else
144#define NFR_CURRENT NFR_ANSI
145#endif
146
147
148#ifdef _MSC_VER
149template<typename CLASS> struct GetWindowHelper
150{
151 static CLASS* get_window(HWND hwnd) {
152 return static_cast<CLASS*>(Window::get_window(hwnd));
153 }
154};
155#define GET_WINDOW(CLASS, hwnd) GetWindowHelper<CLASS>::get_window(hwnd)
156#endif
157
158
160template<typename CLASS> struct TypeCheck
161{
162 static CLASS* dyn_cast(Window* wnd)
163 {return dynamic_cast<CLASS*>(wnd);}
164};
165
166#define WINDOW_DYNAMIC_CAST(CLASS, hwnd) \
167 TypeCheck<CLASS>::dyn_cast(Window::get_window(hwnd))
168
169
177{
178 typedef Window super;
179
181
182protected:
184
186
187 virtual LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam);
188 virtual int Command(int id, int code);
189 virtual int Notify(int id, NMHDR* pnmh);
190};
191
192
194template<typename WND_CLASS> struct WindowCreator
195{
196 static WND_CLASS* window_creator(HWND hwnd)
197 {
198 return new WND_CLASS(hwnd);
199 }
200};
201
202#define WINDOW_CREATOR(WND_CLASS) \
203 ((Window::CREATORFUNC) WindowCreator<WND_CLASS>::window_creator)
204
205
207template<typename WND_CLASS, typename INFO_CLASS> struct WindowCreatorInfo
208{
209 static WND_CLASS* window_creator(HWND hwnd, const void* info)
210 {
211 return new WND_CLASS(hwnd, *static_cast<const INFO_CLASS*>(info));
212 }
213};
214
215#define WINDOW_CREATOR_INFO(WND_CLASS, INFO_CLASS) \
216 ((Window::CREATORFUNC_INFO) WindowCreatorInfo<WND_CLASS, INFO_CLASS>::window_creator)
217
218
226struct WindowClass : public WNDCLASSEX
227{
228 WindowClass(LPCTSTR classname, UINT style=0, WNDPROC wndproc=Window::WindowWndProc);
229
231 {
232 if (!_atomClass)
234
235 return _atomClass;
236 }
237
238 operator ATOM() {return Register();}
239
240 // return LPCTSTR for the CreateWindowEx() parameter
241 operator LPCTSTR() {return (LPCTSTR)(int)Register();}
242
243protected:
245};
246
249{
250 BtnWindowClass(LPCTSTR classname, UINT style=0, WNDPROC wndproc=Window::WindowWndProc)
251 : WindowClass(classname, style, wndproc)
252 {
253 hbrBackground = (HBRUSH)(COLOR_BTNFACE+1);
254 }
255};
256
259{
260 IconWindowClass(LPCTSTR classname, UINT nid, UINT style=0, WNDPROC wndproc=Window::WindowWndProc);
261};
262
263
264 // private message constants
265#define PM_DISPATCH_COMMAND (WM_APP+0x00)
266#define PM_TRANSLATE_MSG (WM_APP+0x01)
267
268
269#define SPLIT_WIDTH 5
270#define DEFAULT_SPLIT_POS 300
271#define COLOR_SPLITBAR LTGRAY_BRUSH
272
273
276{
278};
279
280#define PM_FRM_GET_MENUINFO (WM_APP+0x02)
281
282#define Frame_GetMenuInfo(hwnd) ((MenuInfo*)SNDMSG(hwnd, PM_FRM_GET_MENUINFO, 0, 0))
283
284
291{
292 typedef Window super;
293
296};
297
298
299
305{
307
309
310 static ChildWindow* create(const ChildWndInfo& info, const RECT& rect, CREATORFUNC_INFO creator,
312
313 bool go_to(LPCTSTR url);
314
315protected:
317
318 virtual void resize_children(int cx, int cy);
320
321protected:
323
324 WindowHandle _left_hwnd;
325 WindowHandle _right_hwnd;
326 int _focus_pane; // 0: left 1: right
327
330
334
336
337 void set_url(LPCTSTR url);
338};
339
340#define PM_SETSTATUSTEXT (WM_APP+0x1E)
341
342
349struct DialogWindow : public Window
350{
351 typedef Window super;
352
354 : super(hwnd)
355 {
357 }
358
360 {
361 unregister_dialog(_hwnd);
362 }
363};
364
365
371struct Dialog : public Window
372{
373 typedef Window super;
374
375 Dialog(HWND);
376 ~Dialog();
377
378 static int DoModal(UINT nid, CREATORFUNC creator, HWND hwndParent=0);
379 static int DoModal(UINT nid, CREATORFUNC_INFO creator, const void* info, HWND hwndParent=0);
380
381protected:
383 int Command(int id, int code);
384};
385
386
387#define PM_FRM_CALC_CLIENT (WM_APP+0x03)
388#define Frame_CalcFrameClient(hwnd, prt) ((BOOL)SNDMSG(hwnd, PM_FRM_CALC_CLIENT, 0, (LPARAM)(PRECT)prt))
389
390#define PM_JUMP_TO_URL (WM_APP+0x25)
391#define PM_URL_CHANGED (WM_APP+0x26)
392
393
395{
396 PropSheetPage(UINT nid, Window::CREATORFUNC dlg_creator);
397
399
400protected:
401 friend struct PropSheetPageDlg;
402
403 Window::CREATORFUNC _dlg_creator;
404};
405
406
409{
411
412 void add(PropSheetPage& psp);
413 int DoModal(int start_page=0);
414
416
417protected:
421};
422
423
426{
427 typedef Dialog super;
428
430
431protected:
432 friend struct PropertySheetDialog;
433 friend struct PropSheetPage;
434
436
437 int Command(int id, int code);
438};
439
440
441/*
443struct PropertySheetDlg : public SubclassedWindow
444{
445 typedef SubclassedWindow super;
446
447 PropertySheetDlg(HWND hwnd) : super(hwnd) {}
448};
449*/
450
451
452 // Layouting of resizable windows
453
458 MOVE_TOP = 0x4,
460
465
469
472{
474 : _id(id), _flags(flags) {}
475
478
481};
482
483
485struct ResizeManager : public std::list<ResizeEntry>
486{
487 typedef std::list<ResizeEntry> super;
488
490
491 void Add(UINT id, int flags)
492 {push_back(ResizeEntry(id, flags));}
493
494 void Add(HWND hwnd, int flags)
495 {push_back(ResizeEntry(hwnd, flags));}
496
497 void HandleSize(int cx, int cy);
498 void Resize(int dx, int dy);
499
501 {
504 }
505
507
508protected:
511};
512
513
515template<typename BASE> struct ResizeController : public BASE
516{
517 typedef BASE super;
518
520 : super(hwnd),
522 {
523 }
524
526 {
527 switch(nmsg) {
530 return TRUE;
531
532 case WM_SIZE:
533 if (wparam != SIZE_MINIMIZED)
535 goto def;
536
537 case WM_GETMINMAXINFO:
539 goto def;
540
541 default: def:
542 return super::WndProc(nmsg, wparam, lparam);
543 }
544 }
545
546 virtual void GetClientSpace(PRECT prect)
547 {
548 if (!IsIconic(this->_hwnd)) {
549 GetClientRect(this->_hwnd, prect);
550 } else {
552 GetWindowPlacement(this->_hwnd, &wp);
553 prect->left = prect->top = 0;
559 }
560 }
561
562protected:
564};
565
566
572struct Button : public WindowHandle
573{
574 Button(HWND parent, LPCTSTR text, int left, int top, int width, int height,
575 int id, DWORD flags=WS_VISIBLE|WS_CHILD|BS_PUSHBUTTON, DWORD exStyle=0);
576};
577
578
584struct Static : public WindowHandle
585{
586 Static(HWND parent, LPCTSTR text, int left, int top, int width, int height,
587 int id, DWORD flags=WS_VISIBLE|WS_CHILD|SS_SIMPLE, DWORD ex_flags=0);
588};
589
590
591 // control color message routing for ColorStatic and HyperlinkCtrl
592
593#define PM_DISPATCH_CTLCOLOR (WM_APP+0x08)
594
595template<typename BASE> struct CtlColorParent : public BASE
596{
597 typedef BASE super;
598
600 : super(hwnd) {}
601
603 {
604 switch(nmsg) {
605 case WM_CTLCOLOR:
606 case WM_CTLCOLORBTN:
607 case WM_CTLCOLORDLG:
609 case WM_CTLCOLORSTATIC: {
610 HWND hctl = (HWND) lparam;
611 return SendMessage(hctl, PM_DISPATCH_CTLCOLOR, wparam, nmsg);
612 }
613
614 default:
615 return super::WndProc(nmsg, wparam, lparam);
616 }
617 }
618};
619
620
621#define PM_DISPATCH_DRAWITEM (WM_APP+0x09)
622
624template<typename BASE> struct OwnerDrawParent : public BASE
625{
626 typedef BASE super;
627
629 : super(hwnd) {}
630
632 {
633 switch(nmsg) {
634 case WM_DRAWITEM:
635 if (wparam) { // should there be drawn a control?
636 HWND hctl = GetDlgItem(this->_hwnd, wparam);
637
638 if (hctl)
640 } /*else // or is it a menu entry?
641 ; */
642
643 return 0;
644
645 default:
646 return super::WndProc(nmsg, wparam, lparam);
647 }
648 }
649};
650
651
657{
659
661 : super(hwnd) {}
662
663protected:
665
666 virtual void DrawItem(LPDRAWITEMSTRUCT dis) = 0;
667};
668
669extern void DrawGrayText(HDC hdc, LPRECT pRect, LPCTSTR text, int dt_flags);
670
671
676/* not yet used
677struct ColorButton : public OwnerdrawnButton
678{
679 typedef OwnerdrawnButton super;
680
681 ColorButton(HWND hwnd, COLORREF textColor)
682 : super(hwnd), _textColor(textColor) {}
683
684protected:
685 virtual void DrawItem(LPDRAWITEMSTRUCT dis);
686
687 COLORREF _textColor;
688};
689*/
690
691
693{
695
697 : super(hwnd), _active(false) {}
698
699 FlatButton(HWND owner, int id)
700 : super(GetDlgItem(owner, IDOK)), _active(false) {}
701
702protected:
704 virtual void DrawItem(LPDRAWITEMSTRUCT dis);
705
709};
710
711
718{
720
722 : super(hwnd), _hIcon(hIcon), _hBmp(0), _hBrush(hbrush), _flat(flat)
723 {
724 _cx = 16;
725 _cy = 16;
726 }
727
728 PictureButton(HWND hparent, int id, HICON hIcon, HBRUSH hbrush=GetSysColorBrush(COLOR_BTNFACE), bool flat=false)
729 : super(GetDlgItem(hparent, id)), _hIcon(hIcon), _hBmp(0), _hBrush(hbrush), _flat(flat)
730 {
731 _cx = 16;
732 _cy = 16;
733 }
734
736 : super(hwnd), _hIcon(0), _hBmp(hBmp), _hBrush(hbrush), _flat(flat)
737 {
738 BITMAP bmp;
739 GetObject(hBmp, sizeof(bmp), &bmp);
740 _cx = bmp.bmWidth;
741 _cy = bmp.bmHeight;
742 }
743
744 PictureButton(HWND hparent, int id, HBITMAP hBmp, HBRUSH hbrush=GetSysColorBrush(COLOR_BTNFACE), bool flat=false)
745 : super(GetDlgItem(hparent, id)), _hIcon(0), _hBmp(hBmp), _hBrush(hbrush), _flat(flat)
746 {
747 BITMAP bmp;
748 GetObject(hBmp, sizeof(bmp), &bmp);
749 _cx = bmp.bmWidth;
750 _cy = bmp.bmHeight;
751 }
752
753protected:
754 virtual void DrawItem(LPDRAWITEMSTRUCT dis);
755
758 HBRUSH _hBrush;
759
760 int _cx;
761 int _cy;
762
763 bool _flat;
764};
765
766
768{
770
771 ColorStatic(HWND hwnd, COLORREF textColor=RGB(255,0,0), HBRUSH hbrush_bkgnd=0, HFONT hfont=0)
772 : super(hwnd),
773 _textColor(textColor),
774 _hbrush_bkgnd(hbrush_bkgnd),
776 {
777 }
778
779 ColorStatic(HWND owner, int id, COLORREF textColor=RGB(255,0,0), HBRUSH hbrush_bkgnd=0, HFONT hfont=0)
780 : super(GetDlgItem(owner, id)),
781 _textColor(textColor),
782 _hbrush_bkgnd(hbrush_bkgnd),
784 {
785 }
786
787protected:
789 {
790 if (nmsg == PM_DISPATCH_CTLCOLOR) {
791 HDC hdc = (HDC) wparam;
792
794
795 if (_hfont)
797
798 if (_hbrush_bkgnd)
799 return (LRESULT)_hbrush_bkgnd;
800 else {
803 }
804 } else
805 return super::WndProc(nmsg, wparam, lparam);
806 }
807
811};
812
813
815
817{
819
820 HyperlinkCtrl(HWND hwnd, COLORREF colorLink=RGB(0,0,255), COLORREF colorVisited=RGB(128,0,128));
821 HyperlinkCtrl(HWND owner, int id, COLORREF colorLink=RGB(0,0,255), COLORREF colorVisited=RGB(128,0,128));
822
824
826
827protected:
832
834
835 void init();
836
838 {
839 if (!_cmd.empty()) {
840 HINSTANCE hinst = ShellExecute(GetParent(_hwnd), _T("open"), _cmd, 0, 0, SW_SHOWNORMAL);
841 return (INT_PTR)hinst > HINSTANCE_ERROR;
842 }
843
844 return true;
845 }
846};
847
848
850struct ToolTip : public WindowHandle
851{
852 typedef WindowHandle super;
853
854 ToolTip(HWND owner);
855
856 void activate(BOOL active=TRUE)
857 {
858 SendMessage(_hwnd, TTM_ACTIVATE, active, 0);
859 }
860
861 void add(HWND hparent, HWND htool, LPCTSTR txt=LPSTR_TEXTCALLBACK, LPARAM lparam=0)
862 {
863 TOOLINFO ti = {
865 {0,0,0,0}, 0, (LPTSTR)txt, lparam
866 };
867
868#ifdef UNICODE
869 if (!SendMessage(_hwnd, TTM_ADDTOOLW, 0, (LPARAM)&ti))
870 SendMessage(_hwnd, TTM_ADDTOOLA, 0, (LPARAM)&ti);
871#else
872 if (!SendMessage(_hwnd, TTM_ADDTOOLA, 0, (LPARAM)&ti))
873 SendMessage(_hwnd, TTM_ADDTOOLW, 0, (LPARAM)&ti);
874#endif
875 }
876
877 void add(HWND hparent, UINT id, const RECT& rect, LPCTSTR txt=LPSTR_TEXTCALLBACK, LPARAM lparam=0)
878 {
879 TOOLINFO ti = {
880 sizeof(TOOLINFO), TTF_SUBCLASS|TTF_TRANSPARENT, hparent, id,
881 {rect.left,rect.top,rect.right,rect.bottom}, 0, (LPTSTR)txt, lparam
882 };
883
884#ifdef UNICODE
885 if (!SendMessage(_hwnd, TTM_ADDTOOLW, 0, (LPARAM)&ti))
886 SendMessage(_hwnd, TTM_ADDTOOLA, 0, (LPARAM)&ti);
887#else
888 if (!SendMessage(_hwnd, TTM_ADDTOOLA, 0, (LPARAM)&ti))
889 SendMessage(_hwnd, TTM_ADDTOOLW, 0, (LPARAM)&ti);
890#endif
891 }
892
893 void remove(HWND hparent, HWND htool)
894 {
895 TOOLINFO ti = {
896 sizeof(TOOLINFO), TTF_IDISHWND, hparent, (UINT_PTR)htool,
897 {0,0,0,0}, 0, 0, 0
898 };
899
900 SendMessage(_hwnd, TTM_DELTOOL, 0, (LPARAM)&ti);
901 }
902
903 void remove(HWND hparent, UINT id)
904 {
905 TOOLINFO ti = {
906 sizeof(TOOLINFO), 0, hparent, id,
907 {0,0,0,0}, 0, 0, 0
908 };
909
910 SendMessage(_hwnd, TTM_DELTOOL, 0, (LPARAM)&ti);
911 }
912};
913
914
915inline int ListView_GetItemData(HWND list_ctrl, int idx)
916{
918
919 item.mask = LVIF_PARAM;
920 item.iItem = idx;
921
922 if (!ListView_GetItem(list_ctrl, &item))
923 return 0;
924
925 return item.lParam;
926}
927
929{
930 LVFINDINFO fi;
931
932 fi.flags = LVFI_PARAM;
933 fi.lParam = param;
934
935 return ListView_FindItem(list_ctrl, (unsigned)-1, &fi);
936}
937
938inline int ListView_GetFocusedItem(HWND list_ctrl)
939{
940 int idx = ListView_GetItemCount(list_ctrl);
941
942 while(--idx >= 0)
943 if (ListView_GetItemState(list_ctrl, idx, LVIS_FOCUSED))
944 break;
945
946 return idx;
947}
948
949
951struct ListSort : public WindowHandle
952{
953 ListSort(HWND hwndListview, PFNLVCOMPARE compare_fct);
954
955 void toggle_sort(int idx);
956 void sort();
957
960
961protected:
963
964 static int CALLBACK CompareFunc(LPARAM lparam1, LPARAM lparam2, LPARAM lparamSort);
965};
966
967
969{
970 TVITEM tvItem;
971
972 tvItem.mask = TVIF_PARAM;
973 tvItem.hItem = hItem;
974
975 if (!TreeView_GetItem(hwndTreeView, &tvItem))
976 return 0;
977
978 return tvItem.lParam;
979}
980
981
983
984#define PM_TRAYICON (WM_APP+0x20)
985
986#define WINMSG_TASKBARCREATED TEXT("TaskbarCreated")
987
988#define WINMSG_SHELLHOOK TEXT("SHELLHOOK")
989
990
992{
993 TrayIcon(HWND hparent, UINT id)
994 : _hparent(hparent), _id(id) {}
995
997 {Remove();}
998
999 void Add(HICON hIcon, LPCTSTR tooltip=NULL)
1000 {Set(NIM_ADD, _id, hIcon, tooltip);}
1001
1003 {Set(NIM_MODIFY, _id, hIcon, tooltip);}
1004
1005 void Remove()
1006 {
1008 sizeof(NOTIFYICONDATA), // cbSize
1009 _hparent, // hWnd
1010 _id, // uID
1011 };
1012
1014 }
1015
1016protected:
1019
1020 void Set(DWORD dwMessage, UINT id, HICON hIcon, LPCTSTR tooltip=NULL)
1021 {
1023 sizeof(NOTIFYICONDATA), // cbSize
1024 _hparent, // hWnd
1025 id, // uID
1026 NIF_MESSAGE|NIF_ICON, // uFlags
1027 PM_TRAYICON, // uCallbackMessage
1028 hIcon // hIcon
1029 };
1030
1031 if (tooltip)
1032 lstrcpyn(nid.szTip, tooltip, COUNTOF(nid.szTip));
1033
1034 if (nid.szTip[0])
1035 nid.uFlags |= NIF_TIP;
1036
1037 Shell_NotifyIcon(dwMessage, &nid);
1038 }
1039};
1040
1041
1042template<typename BASE> struct TrayIconControllerTemplate : public BASE
1043{
1044 typedef BASE super;
1045
1048 {
1049 }
1050
1052 {
1053 if (nmsg == PM_TRAYICON) {
1054 switch(lparam) {
1055 case WM_MOUSEMOVE:
1057 break;
1058
1059 case WM_LBUTTONDOWN:
1061 break;
1062
1063 case WM_LBUTTONDBLCLK:
1065 break;
1066
1067 case WM_RBUTTONDOWN:
1069 break;
1070
1071 case WM_RBUTTONDBLCLK:
1073 break;
1074
1075 case WM_MBUTTONDOWN:
1077 break;
1078
1079 case WM_MBUTTONDBLCLK:
1081 break;
1082 }
1083
1084 return 0;
1085 } else if (nmsg == WM_TASKBARCREATED) {
1086 AddTrayIcons();
1087 return 0;
1088 } else
1089 return super::WndProc(nmsg, wparam, lparam);
1090 }
1091
1092 virtual void AddTrayIcons() = 0;
1093 virtual void TrayMouseOver(UINT id) {}
1094 virtual void TrayClick(UINT id, int btn) {}
1095 virtual void TrayDblClick(UINT id, int btn) {}
1096
1097protected:
1099};
1100
1101
1103{
1105
1107 : super(hwnd)
1108 {
1109 }
1110
1111protected:
1113 {
1114 if (nmsg==WM_KEYDOWN && wparam==VK_RETURN) {
1116 return 0;
1117 } else
1118 return super::WndProc(nmsg, wparam, lparam);
1119 }
1120};
static HFONT hfont
static HBRUSH hbrush
RTL_CRITICAL_SECTION CritSect
@ lparam
Definition: SystemMenu.c:31
@ wparam
Definition: SystemMenu.c:30
static struct myctx * mcs
Definition: adnstest.c:53
Arabic default style
Definition: afstyles.h:94
@ Create
Definition: registry.c:563
Definition: _map.h:48
Definition: _set.h:50
Definition: _stack.h:55
static HWND hwndParent
Definition: cryptui.c:300
WORD ATOM
Definition: dimm.idl:113
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
static const WCHAR start_page[]
Definition: general.c:38
unsigned int idx
Definition: utils.c:41
HANDLE HWND
Definition: compat.h:19
#define CALLBACK
Definition: compat.h:35
#define BASE
Definition: inflate.c:58
const WCHAR * text
Definition: package.c:1799
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
Definition: typeof.h:31
#define RGB(r, g, b)
Definition: precomp.h:62
r parent
Definition: btrfs.c:3010
HWND hwndTreeView
Definition: eventvwr.c:65
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
GLint GLint GLsizei GLsizei height
Definition: gl.h:1546
GLint GLint GLsizei width
Definition: gl.h:1546
GLdouble GLdouble GLdouble GLdouble top
Definition: glext.h:10859
GLint left
Definition: glext.h:7726
GLbitfield flags
Definition: glext.h:7161
GLfloat param
Definition: glext.h:5796
GLubyte GLubyte GLubyte GLubyte w
Definition: glext.h:6102
GLuint id
Definition: glext.h:5910
GLfloat GLfloat GLfloat GLfloat h
Definition: glext.h:7723
GLint dy
Definition: linetemp.h:97
GLint dx
Definition: linetemp.h:97
NOTIFYICONDATA nid
Definition: magnifier.c:44
#define COUNTOF(x)
Definition: utility.h:93
int ListView_GetFocusedItem(HWND list_ctrl)
Definition: window.h:938
#define PM_DISPATCH_CTLCOLOR
Definition: window.h:593
LPARAM TreeView_GetItemData(HWND hwndTreeView, HTREEITEM hItem)
Definition: window.h:968
#define PM_FRM_CALC_CLIENT
Definition: window.h:387
RESIZE_FLAGS
Flags to specify how to move and resize controls when resizing their parent window.
Definition: window.h:455
@ MOVE_RIGHT
Definition: window.h:457
@ RESIZE_Y
Definition: window.h:464
@ MOVE_TOP
Definition: window.h:458
@ MOVE_Y
Definition: window.h:462
@ MOVE_X
Definition: window.h:461
@ MOVE_BOTTOM
Definition: window.h:459
@ RESIZE_X
Definition: window.h:463
@ MOVE_LEFT
Definition: window.h:456
@ MOVE
Definition: window.h:466
@ RESIZE
Definition: window.h:467
#define PM_TRAYICON
Definition: window.h:984
set< HWND > WindowSet
Definition: window.h:29
int ListView_FindItemPara(HWND list_ctrl, LPARAM param)
Definition: window.h:928
#define PM_DISPATCH_DRAWITEM
Definition: window.h:621
#define WINMSG_TASKBARCREATED
Definition: window.h:986
void DrawGrayText(HDC hdc, LPRECT pRect, LPCTSTR text, int dt_flags)
Definition: window.cpp:891
int ListView_GetItemData(HWND list_ctrl, int idx)
Definition: window.h:915
@ TRAYBUTTON_MIDDLE
Definition: window.h:982
@ TRAYBUTTON_LEFT
Definition: window.h:982
@ TRAYBUTTON_RIGHT
Definition: window.h:982
BITMAP bmp
Definition: alphablend.c:62
HDC hdc
Definition: main.c:9
static HBITMAP
Definition: button.c:44
static HINSTANCE hinst
Definition: edit.c:551
static HDC
Definition: imagelist.c:92
static HICON
Definition: imagelist.c:84
static const WCHAR url[]
Definition: encode.c:1432
static DWORD *static HFONT(WINAPI *pCreateFontIndirectExA)(const ENUMLOGFONTEXDVA *)
static const struct access_res create[16]
Definition: package.c:7644
static const CLSID *static CLSID *static const GUID VARIANT VARIANT *static IServiceProvider DWORD *static HMENU
Definition: ordinal.c:63
static ATOM item
Definition: dde.c:856
HICON hIcon
Definition: msconfig.c:44
unsigned __int3264 UINT_PTR
Definition: mstsclib_h.h:274
unsigned int UINT
Definition: ndis.h:50
static BOOL Set
Definition: pageheap.c:10
#define LOWORD(l)
Definition: pedump.c:82
#define WS_CHILD
Definition: pedump.c:617
#define SS_SIMPLE
Definition: pedump.c:702
#define WS_VISIBLE
Definition: pedump.c:620
#define BS_PUSHBUTTON
Definition: pedump.c:651
#define PROPSHEETHEADER
Definition: prsht.h:392
#define PROPSHEETPAGE
Definition: prsht.h:389
static char title[]
Definition: ps.c:92
#define TTM_ACTIVATE
Definition: commctrl.h:1784
#define TVITEM
Definition: commctrl.h:3365
_Out_opt_ int _Out_opt_ int * cy
Definition: commctrl.h:586
#define LVFINDINFO
Definition: commctrl.h:2463
#define LVFI_PARAM
Definition: commctrl.h:2436
_Out_opt_ int * cx
Definition: commctrl.h:585
#define TTM_ADDTOOLA
Definition: commctrl.h:1786
#define TreeView_GetItem(hwnd, pitem)
Definition: commctrl.h:3490
#define ListView_GetItemState(hwndLV, i, mask)
Definition: commctrl.h:2676
#define LPSTR_TEXTCALLBACK
Definition: commctrl.h:2383
#define ListView_GetItemCount(hwnd)
Definition: commctrl.h:2307
#define TTF_IDISHWND
Definition: commctrl.h:1764
#define TTF_SUBCLASS
Definition: commctrl.h:1767
#define TTM_ADDTOOLW
Definition: commctrl.h:1787
#define LVIF_PARAM
Definition: commctrl.h:2311
#define LV_ITEM
Definition: commctrl.h:2337
#define TTF_TRANSPARENT
Definition: commctrl.h:1770
#define TTM_DELTOOL
Definition: commctrl.h:1840
#define TVIF_PARAM
Definition: commctrl.h:3268
#define TOOLINFO
Definition: commctrl.h:1718
#define LVIS_FOCUSED
Definition: commctrl.h:2318
#define ListView_GetItem(hwnd, pitem)
Definition: commctrl.h:2394
int(CALLBACK * PFNLVCOMPARE)(LPARAM, LPARAM, LPARAM)
Definition: commctrl.h:2700
#define ListView_FindItem(hwnd, iStart, plvfi)
Definition: commctrl.h:2470
WCHAR classname[128]
Definition: startup.c:15
#define ShellExecute
Definition: shellapi.h:690
#define NIM_DELETE
Definition: shellapi.h:93
NOTIFYICONDATAA NOTIFYICONDATA
Definition: shellapi.h:676
#define NIM_MODIFY
Definition: shellapi.h:92
#define NIF_ICON
Definition: shellapi.h:103
#define NIF_MESSAGE
Definition: shellapi.h:102
#define NIM_ADD
Definition: shellapi.h:91
#define Shell_NotifyIcon
Definition: shellapi.h:688
#define NIF_TIP
Definition: shellapi.h:104
& rect
Definition: startmenu.cpp:1413
#define false
Definition: stdbool.h:37
window class with gray background color
Definition: window.h:249
BtnWindowClass(LPCTSTR classname, UINT style=0, WNDPROC wndproc=Window::WindowWndProc)
Definition: window.h:250
Definition: window.h:573
int _split_pos
Definition: window.h:328
MenuInfo * _menu_info
Definition: window.h:322
HWND _hwndFrame
Definition: window.h:331
bool go_to(LPCTSTR url)
Definition: window.cpp:553
String _statusText
Definition: window.h:332
int _last_split
Definition: window.h:329
stack< String > _url_history
Definition: window.h:335
WindowHandle _left_hwnd
Definition: window.h:324
int _focus_pane
Definition: window.h:326
PreTranslateWindow super
Definition: window.h:306
WindowHandle _right_hwnd
Definition: window.h:325
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:388
virtual void resize_children(int cx, int cy)
Definition: window.cpp:527
virtual String jump_to_int(LPCTSTR url)=0
String _url
Definition: window.h:333
void set_url(LPCTSTR url)
Definition: window.cpp:567
information structure for creation of a MDI child window
Definition: window.h:45
HWND _hmdiclient
Definition: window.h:49
ChildWndInfo(HWND hmdiclient)
Definition: window.h:46
HFONT _hfont
Definition: window.h:810
ColorStatic(HWND hwnd, COLORREF textColor=RGB(255, 0, 0), HBRUSH hbrush_bkgnd=0, HFONT hfont=0)
Definition: window.h:771
ColorStatic(HWND owner, int id, COLORREF textColor=RGB(255, 0, 0), HBRUSH hbrush_bkgnd=0, HFONT hfont=0)
Definition: window.h:779
HBRUSH _hbrush_bkgnd
Definition: window.h:809
COLORREF _textColor
Definition: window.h:808
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.h:788
SubclassedWindow super
Definition: window.h:769
Definition: shell.h:41
CtlColorParent(HWND hwnd)
Definition: window.h:599
BASE super
Definition: window.h:597
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.h:602
DialogWindow(HWND hwnd)
Definition: window.h:353
~DialogWindow()
Definition: window.h:359
Window super
Definition: window.h:351
Definition: window.h:372
~Dialog()
Definition: window.cpp:696
static int DoModal(UINT nid, CREATORFUNC creator, HWND hwndParent=0)
Definition: window.cpp:701
Window super
Definition: window.h:373
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:760
SubclassedWindow super
Definition: window.h:1104
EditController(HWND hwnd)
Definition: window.h:1106
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.h:1112
OwnerdrawnButton super
Definition: window.h:694
FlatButton(HWND owner, int id)
Definition: window.h:699
COLORREF _activeColor
Definition: window.h:707
bool _active
Definition: window.h:708
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:1119
FlatButton(HWND hwnd)
Definition: window.h:696
virtual void DrawItem(LPDRAWITEMSTRUCT dis)
Definition: window.cpp:1050
COLORREF _textColor
Definition: window.h:706
Hyperlink Controls.
Definition: window.h:817
bool LaunchLink()
Definition: window.h:837
HCURSOR _crsr_link
Definition: window.h:831
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:1222
SubclassedWindow super
Definition: window.h:818
COLORREF _textColor
Definition: window.h:828
String _cmd
Definition: window.h:825
void init()
Definition: window.cpp:1208
COLORREF _colorVisited
Definition: window.h:829
HFONT _hfont
Definition: window.h:830
window class with specified icon from resources
Definition: window.h:259
sorting of list controls
Definition: window.h:952
bool _direction
Definition: window.h:959
void toggle_sort(int idx)
Definition: window.cpp:1282
void sort()
Definition: window.cpp:1292
PFNLVCOMPARE _compare_fct
Definition: window.h:962
int _sort_crit
Definition: window.h:958
static int CALLBACK CompareFunc(LPARAM lparam1, LPARAM lparam2, LPARAM lparamSort)
menu info structure
Definition: window.h:276
HMENU _hMenuView
Definition: window.h:277
draw message routing for ColorButton and PictureButton
Definition: window.h:625
OwnerDrawParent(HWND hwnd)
Definition: window.h:628
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.h:631
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:865
OwnerdrawnButton(HWND hwnd)
Definition: window.h:660
SubclassedWindow super
Definition: window.h:658
virtual void DrawItem(LPDRAWITEMSTRUCT dis)=0
PictureButton(HWND hwnd, HICON hIcon, HBRUSH hbrush=GetSysColorBrush(COLOR_BTNFACE), bool flat=false)
Definition: window.h:721
OwnerdrawnButton super
Definition: window.h:719
HBITMAP _hBmp
Definition: window.h:757
bool _flat
Definition: window.h:763
HICON _hIcon
Definition: window.h:756
PictureButton(HWND hwnd, HBITMAP hBmp, HBRUSH hbrush=GetSysColorBrush(COLOR_BTNFACE), bool flat=false)
Definition: window.h:735
PictureButton(HWND hparent, int id, HBITMAP hBmp, HBRUSH hbrush=GetSysColorBrush(COLOR_BTNFACE), bool flat=false)
Definition: window.h:744
PictureButton(HWND hparent, int id, HICON hIcon, HBRUSH hbrush=GetSysColorBrush(COLOR_BTNFACE), bool flat=false)
Definition: window.h:728
virtual void DrawItem(LPDRAWITEMSTRUCT dis)
Definition: window.cpp:965
HBRUSH _hBrush
Definition: window.h:758
Property Sheet Page (inner dialog)
Definition: window.h:426
Dialog super
Definition: window.h:427
static INT_PTR CALLBACK DialogProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:1411
Window::CREATORFUNC _dlg_creator
Definition: window.h:403
void init(struct PropertySheetDialog *)
Property Sheet dialog.
Definition: window.h:409
int DoModal(int start_page=0)
Definition: window.cpp:1338
void add(PropSheetPage &psp)
Definition: window.cpp:1333
vector< PROPSHEETPAGE > Vector
Definition: window.h:418
Controller base template class for resizable dialogs.
Definition: window.h:516
ResizeManager _resize_mgr
Definition: window.h:563
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.h:525
virtual void GetClientSpace(PRECT prect)
Definition: window.h:546
ResizeController(HWND hwnd)
Definition: window.h:519
structure to assign RESIZE_FLAGS to dialogs control
Definition: window.h:472
ResizeEntry(UINT id, int flags)
Definition: window.h:473
int _flags
Definition: window.h:480
ResizeEntry(HWND hwnd, int flags)
Definition: window.h:476
UINT _id
Definition: window.h:479
Management of controls in resizable dialogs.
Definition: window.h:486
void Resize(int dx, int dy)
Definition: window.cpp:847
void Add(HWND hwnd, int flags)
Definition: window.h:494
SIZE _last_size
Definition: window.h:510
void Add(UINT id, int flags)
Definition: window.h:491
HWND _hwnd
Definition: window.h:509
void SetMinMaxInfo(LPMINMAXINFO lpmmi)
Definition: window.h:500
SIZE _min_wnd_size
Definition: window.h:506
std::list< ResizeEntry > super
Definition: window.h:487
void HandleSize(int cx, int cy)
Definition: window.cpp:788
Definition: window.h:585
WNDPROC _orgWndProc
Definition: window.h:183
static LRESULT CALLBACK SubclassedWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:310
virtual LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:343
virtual int Notify(int id, NMHDR *pnmh)
Definition: window.cpp:353
Window super
Definition: window.h:178
encapsulation of tool tip controls
Definition: window.h:851
void add(HWND hparent, UINT id, const RECT &rect, LPCTSTR txt=LPSTR_TEXTCALLBACK, LPARAM lparam=0)
Definition: window.h:877
WindowHandle super
Definition: window.h:852
void activate(BOOL active=TRUE)
Definition: window.h:856
void add(HWND hparent, HWND htool, LPCTSTR txt=LPSTR_TEXTCALLBACK, LPARAM lparam=0)
Definition: window.h:861
void remove(HWND hparent, UINT id)
Definition: window.h:903
void remove(HWND hparent, HWND htool)
Definition: window.h:893
const UINT WM_TASKBARCREATED
Definition: window.h:1098
TrayIconControllerTemplate(HWND hwnd)
Definition: window.h:1046
virtual void TrayDblClick(UINT id, int btn)
Definition: window.h:1095
virtual void TrayClick(UINT id, int btn)
Definition: window.h:1094
virtual void AddTrayIcons()=0
LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.h:1051
virtual void TrayMouseOver(UINT id)
Definition: window.h:1093
void Set(DWORD dwMessage, UINT id, HICON hIcon, LPCTSTR tooltip=NULL)
Definition: window.h:1020
~TrayIcon()
Definition: window.h:996
UINT _id
Definition: window.h:1018
HWND _hparent
Definition: window.h:1017
TrayIcon(HWND hparent, UINT id)
Definition: window.h:993
void Modify(HICON hIcon, LPCTSTR tooltip=NULL)
Definition: window.h:1002
void Add(HICON hIcon, LPCTSTR tooltip=NULL)
Definition: window.h:999
void Remove()
Definition: window.h:1005
dynamic casting of Window pointers
Definition: window.h:161
static CLASS * dyn_cast(Window *wnd)
Definition: window.h:162
ATOM Register()
Definition: window.h:230
ATOM _atomClass
Definition: window.h:244
template class used in macro WINDOW_CREATOR_INFO to the define creater functions for Window objects w...
Definition: window.h:208
static WND_CLASS * window_creator(HWND hwnd, const void *info)
Definition: window.h:209
template class used in macro WINDOW_CREATOR to define the creater functions for Window objects
Definition: window.h:195
static WND_CLASS * window_creator(HWND hwnd)
Definition: window.h:196
structure for managing critical sections as static class information in struct Window
Definition: window.h:124
CritSect _create_crit_sect
Definition: window.h:126
CritSect _map_crit_sect
Definition: window.h:125
Definition: window.c:28
static HHOOK s_hcbtHook
Definition: window.h:133
static void CancelModes()
Definition: window.cpp:295
static LRESULT CALLBACK MDICBTHookProc(int code, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:142
virtual ~Window()
Definition: window.cpp:79
static void register_dialog(HWND hwnd)
Definition: window.cpp:609
static CREATORFUNC s_window_creator
Definition: window.h:120
static INT_PTR CALLBACK DialogProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:725
virtual LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:280
Window *(* CREATORFUNC_INFO)(HWND, const void *)
Definition: window.h:67
static StaticWindowData & GetStaticWindowData()
Definition: window.cpp:63
LRESULT SendParent(UINT nmsg, WPARAM wparam=0, LPARAM lparam=0)
Definition: window.cpp:657
static const void * s_new_info
Definition: window.h:119
static void unregister_dialog(HWND hwnd)
Definition: window.cpp:614
static Window * create_mdi_child(const ChildWndInfo &info, const MDICREATESTRUCT &mcs, CREATORFUNC_INFO creator)
Definition: window.cpp:118
static int MessageLoop()
Definition: window.cpp:629
static void register_pretranslate(HWND hwnd)
Definition: window.cpp:579
map< HWND, Window * > WindowMap
Definition: window.h:64
static WindowMap s_wnd_map
Definition: window.h:117
static WindowSet s_dialogs
Definition: window.h:138
static Window * create_controller(HWND hwnd)
create controller for a new window
Definition: window.cpp:220
LRESULT PostParent(UINT nmsg, WPARAM wparam=0, LPARAM lparam=0)
Definition: window.cpp:667
Window *(* CREATORFUNC)(HWND)
Definition: window.h:66
static BOOL pretranslate_msg(LPMSG pmsg)
Definition: window.cpp:589
static void unregister_pretranslate(HWND hwnd)
Definition: window.cpp:584
static LRESULT CALLBACK WindowWndProc(HWND hwnd, UINT nmsg, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:247
static WindowSet s_pretranslate_windows
Definition: window.h:137
static CLASS * get_window(HWND hwnd)
Definition: window.h:87
static Window * get_window(HWND hwnd)
get window controller from window handle
Definition: window.cpp:203
static BOOL dispatch_dialog_msg(LPMSG pmsg)
Definition: window.cpp:619
virtual int Notify(int id, NMHDR *pnmh)
Definition: window.cpp:290
static LRESULT CALLBACK PropSheetCBTHookProc(int code, WPARAM wparam, LPARAM lparam)
Definition: window.cpp:185
Definition: bl.h:1331
CHAR szTip[128]
Definition: shellapi.h:234
LONG cx
Definition: kdterminal.h:27
LONG cy
Definition: kdterminal.h:28
LPARAM lParam
Definition: treeview.c:155
RECT rcNormalPosition
Definition: winuser.h:3295
UINT style
Definition: winuser.h:3202
HBRUSH hbrBackground
Definition: winuser.h:3209
Definition: inflate.c:139
POINT ptMinTrackSize
Definition: winuser.h:3630
long y
Definition: polytest.cpp:48
long x
Definition: polytest.cpp:48
LONG right
Definition: windef.h:308
LONG bottom
Definition: windef.h:309
LONG top
Definition: windef.h:307
LONG left
Definition: windef.h:306
HTREEITEM hItem
Definition: treelist.h:37
int32_t INT_PTR
Definition: typedefs.h:64
#define HIWORD(l)
Definition: typedefs.h:247
#define _T(x)
Definition: vfdio.h:22
_Must_inspect_result_ _In_ WDFDEVICE _In_ WDFSTRING String
Definition: wdfdevice.h:2433
#define lstrcpyn
Definition: winbase.h:3810
#define HINSTANCE_ERROR
Definition: winbase.h:528
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
LONG_PTR LPARAM
Definition: windef.h:208
LONG_PTR LRESULT
Definition: windef.h:209
UINT_PTR WPARAM
Definition: windef.h:207
DWORD COLORREF
Definition: windef.h:300
HICON HCURSOR
Definition: windef.h:299
#define GetStockBrush(i)
Definition: windowsx.h:307
#define SelectFont(hdc, hfont)
Definition: windowsx.h:516
#define WM_CTLCOLOR
Definition: windowsx.h:29
#define TRANSPARENT
Definition: wingdi.h:950
#define HOLLOW_BRUSH
Definition: wingdi.h:899
int WINAPI SetBkMode(_In_ HDC, _In_ int)
Definition: dc.c:1056
COLORREF WINAPI SetTextColor(_In_ HDC, _In_ COLORREF)
Definition: text.c:918
#define GetObject
Definition: wingdi.h:4468
#define SW_SHOWNORMAL
Definition: winuser.h:770
#define MAKEWPARAM(l, h)
Definition: winuser.h:4009
#define WM_CTLCOLORSTATIC
Definition: winuser.h:1772
#define SM_CYEDGE
Definition: winuser.h:1009
#define SM_CXEDGE
Definition: winuser.h:1008
BOOL WINAPI GetWindowPlacement(_In_ HWND, _Inout_ WINDOWPLACEMENT *)
#define WM_SIZE
Definition: winuser.h:1611
HBRUSH WINAPI GetSysColorBrush(_In_ int)
#define WM_LBUTTONDBLCLK
Definition: winuser.h:1778
#define WM_COMMAND
Definition: winuser.h:1740
#define WM_RBUTTONDBLCLK
Definition: winuser.h:1781
#define WM_MOUSEMOVE
Definition: winuser.h:1775
#define SIZE_MINIMIZED
Definition: winuser.h:2506
#define WM_CTLCOLORSCROLLBAR
Definition: winuser.h:1771
#define WM_LBUTTONDOWN
Definition: winuser.h:1776
HWND WINAPI GetDlgItem(_In_opt_ HWND, _In_ int)
BOOL WINAPI IsIconic(_In_ HWND)
#define IDOK
Definition: winuser.h:830
#define WM_DRAWITEM
Definition: winuser.h:1645
#define WM_RBUTTONDOWN
Definition: winuser.h:1779
#define WM_CTLCOLORBTN
Definition: winuser.h:1769
BOOL WINAPI GetClientRect(_In_ HWND, _Out_ LPRECT)
#define RegisterClassEx
Definition: winuser.h:5837
#define VK_RETURN
Definition: winuser.h:2201
#define WM_GETMINMAXINFO
Definition: winuser.h:1640
#define RegisterWindowMessage
Definition: winuser.h:5840
#define SendMessage
Definition: winuser.h:5843
#define WM_MBUTTONDBLCLK
Definition: winuser.h:1784
#define SM_CXSIZEFRAME
Definition: winuser.h:993
HWND WINAPI GetParent(_In_ HWND)
int WINAPI GetDlgCtrlID(_In_ HWND)
#define WM_KEYDOWN
Definition: winuser.h:1715
#define SM_CYMENUSIZE
Definition: winuser.h:1018
LRESULT(CALLBACK * WNDPROC)(HWND, UINT, WPARAM, LPARAM)
Definition: winuser.h:2906
#define WM_CTLCOLORDLG
Definition: winuser.h:1770
#define SM_CYCAPTION
Definition: winuser.h:963
#define SM_CYSIZEFRAME
Definition: winuser.h:995
int WINAPI GetSystemMetrics(_In_ int)
#define WM_MBUTTONDOWN
Definition: winuser.h:1782
#define COLOR_BTNFACE
Definition: winuser.h:928
const CHAR * LPCTSTR
Definition: xmlstorage.h:193
CHAR * LPTSTR
Definition: xmlstorage.h:192