summaryrefslogtreecommitdiff
path: root/utils/mxtk/mxpopupmenu.cpp
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /utils/mxtk/mxpopupmenu.cpp
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'utils/mxtk/mxpopupmenu.cpp')
-rw-r--r--utils/mxtk/mxpopupmenu.cpp126
1 files changed, 126 insertions, 0 deletions
diff --git a/utils/mxtk/mxpopupmenu.cpp b/utils/mxtk/mxpopupmenu.cpp
new file mode 100644
index 0000000..6732d5e
--- /dev/null
+++ b/utils/mxtk/mxpopupmenu.cpp
@@ -0,0 +1,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;
+}