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
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 2008-2022. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* %CopyrightEnd%
*/
#ifndef _WXE_IMPL_H
#define _WXE_IMPL_H
#if defined(__APPLE__) && defined(__MACH__) && !defined(__DARWIN__)
#define __DARWIN__ 1
#endif
#include <wx/glcanvas.h>
#include <wx/treectrl.h>
#include <wx/print.h>
extern "C" {
#include "wxe_nif.h"
}
#include "wxe_helpers.h"
#include "wxe_callback_impl.h"
#include <vector>
#if !wxCHECK_VERSION(2,9,0)
#define wxeLocaleC wxChar *
#define wxeLocaleC2String(Str) wxString(Str)
#else
typedef wxString wxeLocaleC;
#define wxeLocaleC2String(Str) Str
#endif
void send_msg(const char *, const wxString *); // For debugging and error msgs
extern ErlNifResourceType* wxeMemEnvRt;
class WxeApp : public wxApp
{
public:
virtual bool OnInit();
virtual void OnAssertFailure(const wxChar *file, int line, const wxChar *func,
const wxChar *cond, const wxChar *msg);
#ifdef _MACOSX
virtual void MacPrintFile(const wxString &filename);
virtual void MacOpenFile(const wxString &filename);
virtual void MacOpenURL(const wxString &url);
virtual void MacNewFile();
virtual void MacReopenApp();
virtual bool OSXIsGUIApplication();
#endif
void init_consts(wxeMetaCommand& event);
void destroyMemEnv(wxeMetaCommand& event);
void shutdown(wxeMetaCommand& event);
int dispatch(wxeFifo *);
void dispatch_cb(wxeFifo * batch, wxeMemEnv *memenv, ErlNifPid process);
void wxe_dispatch(wxeCommand& event);
void idle(wxIdleEvent& event);
int dispatch_cmds();
void dummy_close(wxEvent& Ev);
// bool sendevent(wxEvent *event);
// wxeMemEnv * getMemEnv(ErlDrvTermData port);
int newPtr(void * ptr, int type, wxeMemEnv *memenv);
int getRef(void * ptr, wxeMemEnv *memenv, int type = 0);
// void * getPtr(char * bp, wxeMemEnv *memenv);
void clearPtr(void *ptr);
wxeRefData * getRefData(void *ptr);
int registerPid(int index, ErlNifPid pid, wxeMemEnv *memenv);
// Code found in gen/wxe_derived_dest.h
bool delete_object(void *ptr, wxeRefData *refd);
// wxeMemMap refmap;
ptrMap ptr2ref;
wxeMemEnv * global_me;
int recurse_level;
wxList * delayed_cleanup;
wxeFifo * delayed_delete;
// Temp container for callbacks
wxeCommand * cb_return;
};
#define Badarg(Argc) { throw wxe_badarg(Argc); }
typedef struct {
void (*nif_cb) (WxeApp *, wxeMemEnv *, wxeCommand& );
const char *cname;
const char *fname;
int n;
} wxe_fns_t;
extern wxe_fns_t wxe_fns[];
#endif //_WXE_IMPL_H
|