ui/wpf/UIwrapper/UIwrapper/menu.cpp

Sun, 29 Sep 2024 15:55:56 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 29 Sep 2024 15:55:56 +0200
branch
newapi
changeset 314
d96ba820083a
parent 89
9a7e4a335b2b
permissions
-rw-r--r--

implement file dialog for gtk4


#include "stdafx.h"
#include <stdio.h>

#include "menu.h"

#using "UIcore.dll"

UI_EXPORT void __stdcall UImenu(char *label) {
	UI::Application::GetInstance()->Menu->AddMenu(gcnew String(label));
}

UI_EXPORT void __stdcall UIsubmenu(char *label) {
	UI::Application::GetInstance()->Menu->AddSubMenu(gcnew String(label));
}

UI_EXPORT void __stdcall UIsubmenu_end() {
	UI::Application::GetInstance()->Menu->EndSubMenu();
}


UI_EXPORT void __stdcall UImenuitem(char *label, UIcallback f, void *eventdata) {
	ObjEventWrapper ^e = gcnew ObjEventWrapper(f, eventdata);
	UI::Application::GetInstance()->Menu->AddMenuItem(gcnew String(label), e->GetAction());
}

mercurial