git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21465 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
175 lines
3.5 KiB
C++
175 lines
3.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: utils.cpp
|
|
// Purpose: Various utilities
|
|
// Author: AUTHOR
|
|
// Modified by:
|
|
// Created: 2003/??/??
|
|
// RCS-ID: $Id:
|
|
// Copyright: (c) AUTHOR
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "wx/setup.h"
|
|
#include "wx/utils.h"
|
|
#include "wx/app.h"
|
|
#include "wx/apptrait.h"
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdarg.h>
|
|
|
|
// Get size of display
|
|
void wxDisplaySize(int *width, int *height)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
void wxDisplaySizeMM(int*,int*)
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
void wxClientDisplayRect(int *x,int *y,int *width,int *height)
|
|
{
|
|
// TODO
|
|
if(x)
|
|
*x = 0;
|
|
if(y)
|
|
*y = 0;
|
|
if(width)
|
|
*width=1024;
|
|
if(height)
|
|
*height=768;
|
|
}
|
|
|
|
int wxGUIAppTraits::GetOSVersion(int *verMaj, int *verMin)
|
|
{
|
|
if(verMaj)
|
|
*verMaj=0;
|
|
if(verMin)
|
|
*verMin=0;
|
|
return 0;
|
|
}
|
|
|
|
// Return TRUE if we have a colour display
|
|
bool wxColourDisplay()
|
|
{
|
|
// TODO
|
|
return TRUE;
|
|
}
|
|
|
|
void wxGetMousePosition( int* x, int* y )
|
|
{
|
|
// TODO
|
|
};
|
|
|
|
// Returns depth of screen
|
|
int wxDisplayDepth()
|
|
{
|
|
// TODO
|
|
return 0;
|
|
}
|
|
|
|
// Emit a beeeeeep
|
|
void wxBell()
|
|
{
|
|
// TODO
|
|
}
|
|
|
|
#if 0
|
|
// DFE: These aren't even implemented by wxGTK, and no wxWindows code calls
|
|
// them. If someone needs them, then they'll get a link error
|
|
|
|
// Consume all events until no more left
|
|
void wxFlushEvents()
|
|
{
|
|
}
|
|
|
|
// Check whether this window wants to process messages, e.g. Stop button
|
|
// in long calculations.
|
|
bool wxCheckForInterrupt(wxWindow *wnd)
|
|
{
|
|
// TODO
|
|
return FALSE;
|
|
}
|
|
|
|
#endif
|
|
|
|
// Reading and writing resources (eg WIN.INI, .Xdefaults)
|
|
#if wxUSE_RESOURCES
|
|
bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file)
|
|
{
|
|
// TODO
|
|
return FALSE;
|
|
}
|
|
|
|
bool wxWriteResource(const wxString& section, const wxString& entry, float value, const wxString& file)
|
|
{
|
|
char buf[50];
|
|
sprintf(buf, "%.4f", value);
|
|
return wxWriteResource(section, entry, buf, file);
|
|
}
|
|
|
|
bool wxWriteResource(const wxString& section, const wxString& entry, long value, const wxString& file)
|
|
{
|
|
char buf[50];
|
|
sprintf(buf, "%ld", value);
|
|
return wxWriteResource(section, entry, buf, file);
|
|
}
|
|
|
|
bool wxWriteResource(const wxString& section, const wxString& entry, int value, const wxString& file)
|
|
{
|
|
char buf[50];
|
|
sprintf(buf, "%d", value);
|
|
return wxWriteResource(section, entry, buf, file);
|
|
}
|
|
|
|
bool wxGetResource(const wxString& section, const wxString& entry, char **value, const wxString& file)
|
|
{
|
|
// TODO
|
|
return FALSE;
|
|
}
|
|
|
|
bool wxGetResource(const wxString& section, const wxString& entry, float *value, const wxString& file)
|
|
{
|
|
char *s = NULL;
|
|
bool succ = wxGetResource(section, entry, (char **)&s, file);
|
|
if (succ)
|
|
{
|
|
*value = (float)strtod(s, NULL);
|
|
delete[] s;
|
|
return TRUE;
|
|
}
|
|
else return FALSE;
|
|
}
|
|
|
|
bool wxGetResource(const wxString& section, const wxString& entry, long *value, const wxString& file)
|
|
{
|
|
char *s = NULL;
|
|
bool succ = wxGetResource(section, entry, (char **)&s, file);
|
|
if (succ)
|
|
{
|
|
*value = strtol(s, NULL, 10);
|
|
delete[] s;
|
|
return TRUE;
|
|
}
|
|
else return FALSE;
|
|
}
|
|
|
|
bool wxGetResource(const wxString& section, const wxString& entry, int *value, const wxString& file)
|
|
{
|
|
char *s = NULL;
|
|
bool succ = wxGetResource(section, entry, (char **)&s, file);
|
|
if (succ)
|
|
{
|
|
*value = (int)strtol(s, NULL, 10);
|
|
delete[] s;
|
|
return TRUE;
|
|
}
|
|
else return FALSE;
|
|
}
|
|
#endif // wxUSE_RESOURCES
|