ui/wpf/UIwrapper/UIwrapper/menu.cpp

Sun, 15 Feb 2015 15:44:24 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Sun, 15 Feb 2015 15:44:24 +0100
changeset 89
9a7e4a335b2b
parent 83
a38aec91bd66
permissions
-rw-r--r--

added toolbar (WPF)


#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