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
|
//
// mxToolKit (c) 1999 by Mete Ciragan
//
// file: mxPopupMenu.cpp
// implementation: Win32 API
// last modified: Mar 18 1999, Mete Ciragan
// copyright: The programs and associated files contained in this
// distribution were developed by Mete Ciragan. The programs
// are not in the public domain, but they are freely
// distributable without licensing fees. These programs are
// provided without guarantee or warrantee expressed or
// implied.
//
#include "mxtk/mxPopupMenu.h"
#include <windows.h>
class mxPopupMenu_i
{
public:
int dummy;
};
mxPopupMenu::mxPopupMenu ()
: mxWidget (0, 0, 0, 0, 0)
{
void *handle = (void *) CreatePopupMenu ();
setHandle (handle);
setType (MX_POPUPMENU);
}
mxPopupMenu::~mxPopupMenu ()
{
}
int
mxPopupMenu::popup (mxWidget *widget, int x, int y)
{
POINT pt;
pt.x = x;
pt.y = y;
ClientToScreen ((HWND) widget->getHandle (), &pt);
return (int) TrackPopupMenu ((HMENU) getHandle (), /*TPM_NONOTIFY | TPM_RETURNCMD | */ TPM_LEFTALIGN | TPM_TOPALIGN, pt.x, pt.y, 0, (HWND) widget->getHandle (), NULL);
}
void
mxPopupMenu::add (const char *item, int id)
{
AppendMenu ((HMENU) getHandle (), MF_STRING, (UINT) id, item);
}
void
mxPopupMenu::addMenu (const char *item, mxPopupMenu *menu)
{
AppendMenu ((HMENU) getHandle (), MF_POPUP, (UINT) menu->getHandle (), item);
}
void
mxPopupMenu::addSeparator ()
{
AppendMenu ((HMENU) getHandle (), MF_SEPARATOR, 0, 0);
}
void
mxPopupMenu::setEnabled (int id, bool b)
{
EnableMenuItem ((HMENU) getHandle (), (UINT) id, MF_BYCOMMAND | (b ? MF_ENABLED:MF_GRAYED));
}
void
mxPopupMenu::setChecked (int id, bool b)
{
CheckMenuItem ((HMENU) getHandle (), (UINT) id, MF_BYCOMMAND | (b ? MF_CHECKED:MF_UNCHECKED));
}
bool
mxPopupMenu::isEnabled (int id) const
{
MENUITEMINFO mii;
memset (&mii, 0, sizeof (mii));
mii.cbSize = sizeof (mii);
mii.fMask = MIIM_STATE;
GetMenuItemInfo ((HMENU) getHandle (), (UINT) id, false, &mii);
if (mii.fState & MFS_GRAYED)
return true;
return false;
}
bool
mxPopupMenu::isChecked (int id) const
{
MENUITEMINFO mii;
memset (&mii, 0, sizeof (mii));
mii.cbSize = sizeof (mii);
mii.fMask = MIIM_STATE;
GetMenuItemInfo ((HMENU) getHandle (), (UINT) id, false, &mii);
if (mii.fState & MFS_CHECKED)
return true;
return false;
}
|