ui/wpf/UIwrapper/UIwrapper/graphics.h

Fri, 09 Nov 2018 17:11:12 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Fri, 09 Nov 2018 17:11:12 +0100
changeset 155
b907d8059290
parent 137
c9b8b9e0cfe8
permissions
-rw-r--r--

fixes document switching with textareas (Motif)

#pragma once

#include "toolkit.h"

typedef void(*UIdrawfunc)(void *gc, void *event, int width, int height);

public ref class DrawEventWrapper {
public:
	UIdrawfunc callback = NULL;
	void *eventdata = NULL;
	void *gc;
	Action<int,int> ^action;

	DrawEventWrapper(void *gc, UIdrawfunc callback, void *eventdata);

	void Callback(int width, int height);
};

mercurial