wxcore-0.10.4: wxc/src/wrapper.cpp
#include "wrapper.h"
#include "wx/tooltip.h"
#include "wx/dynlib.h"
#include "wx/fs_zip.h"
/* quantize is not supported on wxGTK 2.4.0 */
#if !defined(__WXGTK__) || (wxVERSION_NUMBER > 2400)
# include "wx/quantize.h"
#endif
/*-----------------------------------------------------------------------------
Miscellaneous helper functions
-----------------------------------------------------------------------------*/
int copyStrToBuf(void* dst, wxString& src) {
if (dst) wxStrcpy ((wxChar*) dst, src.c_str());
return src.Length();
}
/*-----------------------------------------------------------------------------
The global idle timer
-----------------------------------------------------------------------------*/
class wxIdleTimer : public wxTimer
{
public:
void Notify() {
wxWakeUpIdle(); /* send idle events */
}
};
wxIdleTimer* idleTimer = NULL;
void initIdleTimer()
{
idleTimer = new wxIdleTimer();
}
void doneIdleTimer()
{
if (idleTimer) {
idleTimer->Stop();
delete idleTimer;
idleTimer = NULL;
}
}
/*-----------------------------------------------------------------------------
The main application
-----------------------------------------------------------------------------*/
wxClosure* initClosure = NULL;
int APPTerminating = 0;
IMPLEMENT_APP_NO_MAIN(ELJApp);
bool ELJApp::OnInit (void)
{
wxInitAllImageHandlers();
initIdleTimer();
if (initClosure) {
delete initClosure; /* special: init is only called once with a NULL event */
initClosure=NULL;
}
return true;
}
int ELJApp::OnExit( void )
{
doneIdleTimer();
return wxApp::OnExit();
}
void ELJApp::InitZipFileSystem()
{
static int InitZIPFileSystem_done = 0;
if (!InitZIPFileSystem_done)
{
InitZIPFileSystem_done = 1;
wxFileSystem::AddHandler(new wxZipFSHandler());
}
}
void ELJApp::InitImageHandlers()
{
static int InitImageHandlers_done = 0;
if (!InitImageHandlers_done)
{
InitImageHandlers_done = 1;
wxInitAllImageHandlers();
}
}
/* "getCallback" is a hack to retrieve the callback object for a certain event
see also "wxEvtHandler_FindClosure"
*/
static wxCallback** getCallback = NULL;
void ELJApp::HandleEvent(wxEvent& _evt)
{
wxCallback* callback = (wxCallback*)(_evt.m_callbackUserData);
if (getCallback) {
*getCallback = callback; /* retrieve the callback */
}
else if (callback) {
callback->Invoke( &_evt ); /* normal: invoke the callback function */
}
}
/*-----------------------------------------------------------------------------
Closures
-----------------------------------------------------------------------------*/
wxClosure::wxClosure( ClosureFun fun, void* data )
{
m_refcount = 0;
m_fun = fun;
m_data = data;
}
wxClosure::~wxClosure()
{
/* call for the last time with a NULL event. Give opportunity to clean up resources */
if (m_fun) { m_fun((void*)m_fun, m_data, NULL); }
}
void wxClosure::IncRef()
{
m_refcount++;
}
void wxClosure::DecRef()
{
m_refcount--;
if (m_refcount <= 0) {
delete this;
}
}
void wxClosure::Invoke( wxEvent* event )
{
if (event && m_fun) { m_fun((void*)m_fun, m_data, event); }
};
void* wxClosure::GetData()
{
return m_data;
}
/*-----------------------------------------------------------------------------
callback: a reference counting wrapper for a closure
-----------------------------------------------------------------------------*/
wxCallback::wxCallback( wxClosure* closure )
{
m_closure = closure;
m_closure->IncRef();
}
wxCallback::~wxCallback()
{
m_closure->DecRef();
}
void wxCallback::Invoke( wxEvent* event )
{
m_closure->Invoke(event);
}
wxClosure* wxCallback::GetClosure()
{
return m_closure;
}
/*-----------------------------------------------------------------------------
wrapper for objectRefData
-----------------------------------------------------------------------------*/
class wxcClosureRefData : public wxObjectRefData
{
private:
wxClosure* m_closure;
public:
wxcClosureRefData( wxClosure* closure );
~wxcClosureRefData();
wxClosure* GetClosure();
};
wxcClosureRefData::wxcClosureRefData( wxClosure* closure )
{
m_closure = closure;
}
wxcClosureRefData::~wxcClosureRefData()
{
/* printf("delete wxc-ClosureRefData\n"); */
if (m_closure) { delete m_closure; m_closure = NULL; }
}
wxClosure* wxcClosureRefData::GetClosure()
{
return m_closure;
}
/*-----------------------------------------------------------------------------
C interface to event handling and closures.
-----------------------------------------------------------------------------*/
extern "C"
{
/* event handling */
EWXWEXPORT(int, wxEvtHandler_Connect)(void* _obj, int first, int last, int type, wxClosure* closure)
{
wxCallback* callback = new wxCallback(closure);
((wxEvtHandler*)_obj)->Connect(first, last, type, (wxObjectEventFunction)&ELJApp::HandleEvent, callback);
return 0;
}
EWXWEXPORT(wxClosure*, wxEvtHandler_GetClosure)(wxEvtHandler* evtHandler, int id, int type)
{
wxCommandEvent event(type,id); //We can use any kind of event here
wxCallback* callback = NULL;
bool found = false;
//set the global variable 'getCallback' so HandleEvent
//knows we just want to know the closure. Unfortunately, this
//seems the cleanest way to retrieve the callback in wxWindows.
getCallback = &callback;
found = evtHandler->SearchDynamicEventTable( event );
getCallback = NULL;
if (found && callback)
return callback->GetClosure();
else
return NULL;
}
/* closures */
EWXWEXPORT(wxClosure*, wxClosure_Create)(ClosureFun fun, void* data)
{
return new wxClosure(fun,data);
}
EWXWEXPORT(void*, wxClosure_GetData)(wxClosure* closure)
{
return closure->GetData();
}
/* client data */
EWXWEXPORT(void*, wxEvtHandler_GetClientClosure)(void* _obj)
{
return (void*)((wxEvtHandler*)_obj)->GetClientObject();
}
EWXWEXPORT(void, wxEvtHandler_SetClientClosure)( void* _obj, wxClosure* closure )
{
((wxEvtHandler*)_obj)->SetClientObject(closure);
}
EWXWEXPORT(wxClosure*, wxObject_GetClientClosure)(wxObject* _obj)
{
wxcClosureRefData* refData = (wxcClosureRefData*)_obj->GetRefData();
if (refData)
return refData->GetClosure();
else
return NULL;
}
EWXWEXPORT(void, wxObject_SetClientClosure)( wxObject* _obj, wxClosure* closure )
{
wxcClosureRefData* refData;
/* wxASSERT(_obj->GetRefData() == NULL); */
_obj->UnRef();
wxASSERT(_obj->GetRefData() == NULL);
refData = new wxcClosureRefData( closure );
_obj->SetRefData( refData ); //set new data -- ref count must be 1 as setRefData doesn't increase it.
}
/*-----------------------------------------------------------------------------
C interface to the idle timer
-----------------------------------------------------------------------------*/
EWXWEXPORT(int, ELJApp_GetIdleInterval)()
{
if (!idleTimer) return 0;
if (idleTimer->IsRunning())
return idleTimer->GetInterval();
else
return 0;
}
EWXWEXPORT(void, ELJApp_SetIdleInterval)( int interval )
{
if (idleTimer) {
if (idleTimer->IsRunning()) {
idleTimer->Stop();
}
if (interval >= 5) {
idleTimer->Start( interval, false );
}
}
}
/*-----------------------------------------------------------------------------
C interface to the application.
-----------------------------------------------------------------------------*/
//int OnExit();
//virtual void OnFatalException();
EWXWEXPORT(int, ELJApp_MainLoop)()
{
return wxGetApp().MainLoop();
}
EWXWEXPORT(int, ELJApp_Initialized)()
{
#if WXWIN_COMPATIBILITY_2_6
return (int)wxGetApp().Initialized();
#else
return TRUE;
#endif
}
EWXWEXPORT(int, ELJApp_Pending)()
{
return (int)wxGetApp().Pending();
}
EWXWEXPORT(void, ELJApp_Dispatch)()
{
wxGetApp().Dispatch();
}
EWXWEXPORT(int, ELJApp_GetAppName)(void* _buf)
{
wxString result = wxGetApp().GetAppName();
return copyStrToBuf(_buf, result);
}
EWXWEXPORT(void, ELJApp_SetAppName)(wxChar* name)
{
wxGetApp().SetAppName(name);
}
EWXWEXPORT(int, ELJApp_GetClassName)(void* _buf)
{
wxString result = wxGetApp().GetClassName();
return copyStrToBuf(_buf, result);
}
EWXWEXPORT(void, ELJApp_SetClassName)(wxChar* name)
{
wxGetApp().SetClassName(name);
}
EWXWEXPORT(int, ELJApp_GetVendorName)(void* _buf)
{
wxString result = wxGetApp().GetVendorName();
return copyStrToBuf(_buf, result);
}
EWXWEXPORT(void, ELJApp_SetVendorName)(wxChar* name)
{
wxGetApp().SetVendorName(name);
}
EWXWEXPORT(void*, ELJApp_GetTopWindow)()
{
return wxGetApp().GetTopWindow();
}
EWXWEXPORT(void, ELJApp_SetExitOnFrameDelete)(int flag)
{
wxGetApp().SetExitOnFrameDelete(flag != 0);
}
EWXWEXPORT(int, ELJApp_GetExitOnFrameDelete)()
{
return (int)wxGetApp().GetExitOnFrameDelete();
}
EWXWEXPORT(void*, ELJApp_CreateLogTarget)()
{
#if wxVERSION_NUMBER <= 2600
return wxGetApp().CreateLogTarget();
#else
wxAppTraits* appTraits = wxGetApp().GetTraits();
return appTraits->CreateLogTarget();
#endif
}
/*
EWXWEXPORT(int, ELJApp_GetWantDebugOutput)()
{
return (int)wxGetApp().GetWantDebugOutput();
}
*/
EWXWEXPORT(void, ELJApp_SetUseBestVisual)( int flag )
{
wxGetApp().SetUseBestVisual( flag != 0 );
}
EWXWEXPORT(int, ELJApp_GetUseBestVisual)()
{
return (int)wxGetApp().GetUseBestVisual();
}
EWXWEXPORT(void, ELJApp_SetPrintMode)(int mode)
{
wxGetApp().SetPrintMode(mode);
}
EWXWEXPORT(void, ELJApp_ExitMainLoop) ()
{
wxGetApp ().ExitMainLoop();
}
EWXWEXPORT(void, ELJApp_SetTopWindow) (void* _wnd)
{
wxGetApp ().SetTopWindow ((wxWindow*)_wnd);
}
/*
EWXWEXPORT(int, ELJApp_SendIdleEvents)()
{
return (int)wxGetApp().SendIdleEvents();
}
EWXWEXPORT(int, ELJApp_SendIdleEventsToWindow)(void* win)
{
return (int)wxGetApp().SendIdleEvents((wxWindow*) win);
}
*/
EWXWEXPORT(void, ELJApp_EnableTooltips)(int _enable)
{
wxToolTip::Enable (_enable != 0);
}
EWXWEXPORT(void, ELJApp_SetTooltipDelay)(int _ms)
{
wxToolTip::SetDelay (_ms);
}
EWXWEXPORT(void, ELJApp_InitAllImageHandlers)()
{
wxInitAllImageHandlers();
}
EWXWEXPORT(void, ELJApp_Bell)()
{
wxBell();
}
EWXWEXPORT(void, ELJApp_DisplaySize)(void* w, void* h)
{
wxDisplaySize((int*)w, (int*)h);
}
EWXWEXPORT(void, ELJApp_EnableTopLevelWindows)(int _enb)
{
wxEnableTopLevelWindows(_enb != 0);
}
EWXWEXPORT(void, ELJApp_Exit)()
{
wxExit();
}
EWXWEXPORT(void, ELJApp_MousePosition)(void* x, void* y)
{
wxGetMousePosition((int*)x, (int*)y);
}
EWXWEXPORT(void*, ELJApp_FindWindowByLabel)(void* _lbl, void* _prt)
{
return (void*)wxFindWindowByLabel((wxChar*)_lbl, (wxWindow*)_prt);
}
EWXWEXPORT(void*, ELJApp_FindWindowByName)(void* _lbl, void* _prt)
{
return (void*)wxFindWindowByName((wxChar*)_lbl, (wxWindow*)_prt);
}
EWXWEXPORT(void*, ELJApp_FindWindowById)(int _id, void* _prt)
{
return (void*)wxWindow::FindWindowById((long)_id, (wxWindow*)_prt);
}
EWXWEXPORT(void*, ELJApp_GetApp)()
{
return (void*)wxTheApp;
}
EWXWEXPORT(int, ELJApp_GetUserId)(void* _buf)
{
wxString result = wxGetUserId();
return copyStrToBuf(_buf, result);
}
EWXWEXPORT(int, ELJApp_GetUserName)(void* _buf)
{
wxString result = wxGetUserName();
return copyStrToBuf(_buf, result);
}
EWXWEXPORT(int, ELJApp_GetUserHome)(wxChar* _usr, void* _buf)
{
wxString result = wxGetUserHome((const wxChar*)_usr);
return copyStrToBuf(_buf, result);
}
EWXWEXPORT(int, ELJApp_ExecuteProcess)(wxChar* _cmd, int _snc, void* _prc)
{
return (int)wxExecute((const wxChar*)_cmd, _snc != 0, (wxProcess*)_prc);
}
EWXWEXPORT(int, ELJApp_Yield)()
{
return (int)wxYield();
}
EWXWEXPORT(int, ELJApp_SafeYield)(void* _win)
{
return (int)wxSafeYield((wxWindow*)_win);
}
EWXWEXPORT(int, ELJApp_GetOsVersion)(void* _maj, void* _min)
{
return wxGetOsVersion((int*)_maj, (int*)_min);
}
EWXWEXPORT(int, ELJApp_GetOsDescription)(void* _buf)
{
wxString result = wxGetOsDescription();
return copyStrToBuf(_buf, result);
}
EWXWEXPORT(void, ELJApp_Sleep)(int _scs)
{
wxSleep(_scs);
}
EWXWEXPORT(void, ELJApp_MilliSleep)(int _mscs)
{
#if (wxVERSION_NUMBER < 2600)
wxUsleep(_mscs);
#else
wxMilliSleep(_mscs);
#endif
}
EWXWEXPORT(int,ELJApp_IsTerminating)()
{
return APPTerminating;
}
EWXWEXPORT(int, QuantizePalette)(void* src, void* dest, void* pPalette, int desiredNoColours, void* eightBitData, int flags)
{
#if defined(__WXGTK__) && (wxVERSION_NUMBER <= 2400)
return 0;
#else
return (int)wxQuantize::Quantize(*((wxImage*)src), *((wxImage*)dest), (wxPalette**)pPalette, desiredNoColours, (unsigned char**)eightBitData, flags);
#endif
}
EWXWEXPORT(int, Quantize)(void* src, void* dest, int desiredNoColours, void* eightBitData, int flags)
{
#if defined(__WXGTK__) && (wxVERSION_NUMBER <= 2400)
return 0;
#else
return (int)wxQuantize::Quantize(*((wxImage*)src), *((wxImage*)dest), desiredNoColours, (unsigned char**)eightBitData, flags);
#endif
}
EWXWEXPORT(void*, wxEvtHandler_Create)()
{
return (void*) new wxEvtHandler();
}
EWXWEXPORT(void, wxEvtHandler_Delete)(void* _obj)
{
delete (wxEvtHandler*)_obj;
}
EWXWEXPORT(int, wxEvtHandler_Disconnect)(void* _obj, int first, int last, int type, int data)
{
return (int)((wxEvtHandler*)_obj)->Disconnect(first, last, type, (wxObjectEventFunction)&ELJApp::HandleEvent, (wxObject*) data);
}
EWXWEXPORT(void*, wxEvtHandler_GetNextHandler)(void* _obj)
{
return (void*)((wxEvtHandler*)_obj)->GetNextHandler();
}
EWXWEXPORT(void*, wxEvtHandler_GetPreviousHandler)(void* _obj)
{
return (void*)((wxEvtHandler*)_obj)->GetPreviousHandler();
}
EWXWEXPORT(void, wxEvtHandler_SetNextHandler)(void* _obj, void* handler)
{
((wxEvtHandler*)_obj)->SetNextHandler((wxEvtHandler*)handler);
}
EWXWEXPORT(void, wxEvtHandler_SetPreviousHandler)(void* _obj, void* handler)
{
((wxEvtHandler*)_obj)->SetPreviousHandler((wxEvtHandler*)handler);
}
EWXWEXPORT(void, wxEvtHandler_SetEvtHandlerEnabled)(void* _obj, int enabled)
{
((wxEvtHandler*)_obj)->SetEvtHandlerEnabled(enabled != 0);
}
EWXWEXPORT(int, wxEvtHandler_GetEvtHandlerEnabled)(void* _obj)
{
return (int)((wxEvtHandler*)_obj)->GetEvtHandlerEnabled();
}
EWXWEXPORT(int, wxEvtHandler_ProcessEvent)(void* _obj, void* event)
{
return (int)((wxEvtHandler*)_obj)->ProcessEvent(*((wxEvent*)event));
}
EWXWEXPORT(void, wxEvtHandler_AddPendingEvent)(void* _obj, void* event)
{
((wxEvtHandler*)_obj)->AddPendingEvent(*((wxEvent*)event));
}
EWXWEXPORT(void, wxEvtHandler_ProcessPendingEvents)(void* _obj)
{
((wxEvtHandler*)_obj)->ProcessPendingEvents();
}
EWXWEXPORT(void*, Null_AcceleratorTable)()
{
return (void*)&wxNullAcceleratorTable;
}
EWXWEXPORT(void*, Null_Bitmap)()
{
return (void*)&wxNullBitmap;
}
EWXWEXPORT(void*, Null_Icon)()
{
return (void*)&wxNullIcon;
}
EWXWEXPORT(void*, Null_Cursor)()
{
return (void*)&wxNullCursor;
}
EWXWEXPORT(void*, Null_Pen)()
{
return (void*)&wxNullPen;
}
EWXWEXPORT(void*, Null_Brush)()
{
return (void*)&wxNullBrush;
}
EWXWEXPORT(void*, Null_Palette)()
{
return (void*)&wxNullPalette;
}
EWXWEXPORT(void*, Null_Font)()
{
return (void*)&wxNullFont;
}
EWXWEXPORT(void*, Null_Colour)()
{
return (void*)&wxNullColour;
}
/*
EWXWEXPORT(int, wxDllLoader_LoadLibrary)(void* _name, void* _success)
{
bool success;
wxDllType result = wxDllLoader::LoadLibrary ((const wxChar*)_name, &success);
if (success)
*((int*)_success) = 1;
else
*((int*)_success) = 0;
return (int) result;
}
EWXWEXPORT(void, wxDllLoader_UnloadLibrary)(int _handle)
{
wxDllLoader::UnloadLibrary ((wxDllType)_handle);
}
EWXWEXPORT(void*, wxDllLoader_GetSymbol)(int _handle, void* _name)
{
return wxDllLoader::GetSymbol ((wxDllType)_handle, (const wxChar*)_name);
}
*/
EWXWEXPORT(void, wxCFree) (void* _ptr)
{
free (_ptr);
}
EWXWEXPORT(void*, wxClassInfo_CreateClassByName) (void* _inf)
{
wxClassInfo* inf = wxClassInfo::FindClass ((wxChar*)_inf);
if (inf)
return inf->CreateObject();
return NULL;
}
EWXWEXPORT(void*, wxClassInfo_GetClassName) (void* _obj)
{
wxClassInfo* inf = ((wxObject*)_obj)->GetClassInfo();
if (inf)
return (void*)inf->GetClassName();
return NULL;
}
EWXWEXPORT(int, wxClassInfo_IsKindOf) (void* _obj, void* _name)
{
wxClassInfo* inf = wxClassInfo::FindClass ((wxChar*)_name);
if (inf)
return (int)((wxObject*)_obj)->IsKindOf(inf);
return 0;
}
EWXWEXPORT(int,wxEvent_NewEventType)()
{
return (int)wxNewEventType();
}
}