projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
wxTinderbox build fix.
[wxWidgets.git]
/
src
/
cocoa
/
utils.cpp
diff --git
a/src/cocoa/utils.cpp
b/src/cocoa/utils.cpp
index 14c47ad65c8284a08a0ce0adef91f0587348d9be..e3bb09c2fca89fb8fc2616d050090af1a3889d56 100644
(file)
--- a/
src/cocoa/utils.cpp
+++ b/
src/cocoa/utils.cpp
@@
-1,17
+1,20
@@
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-// Name: utils.cpp
+// Name:
src/cocoa/
utils.cpp
// Purpose: Various utilities
// Author: AUTHOR
// Modified by:
// Created: 2003/??/??
// Purpose: Various utilities
// Author: AUTHOR
// Modified by:
// Created: 2003/??/??
-// RCS-ID: $Id
:
+// RCS-ID: $Id
$
// Copyright: (c) AUTHOR
// Copyright: (c) AUTHOR
-// Licence: wxWindows licence
+// Licence:
wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
-#include "wx/setup.h"
+#include "wx/wxprec.h"
+
#include "wx/utils.h"
#include "wx/app.h"
#include "wx/utils.h"
#include "wx/app.h"
+#include "wx/apptrait.h"
+#include "wx/display.h"
#include <ctype.h>
#include <ctype.h>
@@
-20,10
+23,13
@@
#include <string.h>
#include <stdarg.h>
#include <string.h>
#include <stdarg.h>
-// Get size of display
void wxDisplaySize(int *width, int *height)
{
// TODO
void wxDisplaySize(int *width, int *height)
{
// TODO
+ if(width)
+ *width = 1024;
+ if(height)
+ *height = 768;
}
void wxDisplaySizeMM(int*,int*)
}
void wxDisplaySizeMM(int*,int*)
@@
-44,17
+50,25
@@
void wxClientDisplayRect(int *x,int *y,int *width,int *height)
*height=768;
}
*height=768;
}
-
int wxGetOsVersion(int *majorVsn, int *minorVsn
)
+
wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo(
)
{
{
- // TODO
- return 0;
+ static wxToolkitInfo info;
+ info.shortName = _T("cocoa");
+ info.name = _T("wxCocoa");
+ // TODO: Finish this
+ return info;
+}
+
+wxWindow* wxFindWindowAtPoint(const wxPoint& pt)
+{
+ return wxGenericFindWindowAtPoint(pt);
}
}
-// Return
TRUE
if we have a colour display
+// Return
true
if we have a colour display
bool wxColourDisplay()
{
// TODO
bool wxColourDisplay()
{
// TODO
- return
TRUE
;
+ return
true
;
}
void wxGetMousePosition( int* x, int* y )
}
void wxGetMousePosition( int* x, int* y )
@@
-76,7
+90,7
@@
void wxBell()
}
#if 0
}
#if 0
-// DFE: These aren't even implemented by wxGTK, and no wxWi
ndow
s code calls
+// DFE: These aren't even implemented by wxGTK, and no wxWi
dget
s code calls
// them. If someone needs them, then they'll get a link error
// Consume all events until no more left
// them. If someone needs them, then they'll get a link error
// Consume all events until no more left
@@
-89,7
+103,7
@@
void wxFlushEvents()
bool wxCheckForInterrupt(wxWindow *wnd)
{
// TODO
bool wxCheckForInterrupt(wxWindow *wnd)
{
// TODO
- return
FALSE
;
+ return
false
;
}
#endif
}
#endif
@@
-99,72
+113,72
@@
bool wxCheckForInterrupt(wxWindow *wnd)
bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file)
{
// TODO
bool wxWriteResource(const wxString& section, const wxString& entry, const wxString& value, const wxString& file)
{
// TODO
- return
FALSE
;
+ return
false
;
}
bool wxWriteResource(const wxString& section, const wxString& entry, float value, const wxString& file)
{
}
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);
+
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)
{
}
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);
+
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)
{
}
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);
+
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
}
bool wxGetResource(const wxString& section, const wxString& entry, char **value, const wxString& file)
{
// TODO
- return
FALSE
;
+ return
false
;
}
bool wxGetResource(const wxString& section, const wxString& entry, float *value, const wxString& file)
{
}
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
;
+
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)
{
}
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
;
+
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)
{
}
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
;
+
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
}
#endif // wxUSE_RESOURCES