projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Missing include.
[wxWidgets.git]
/
src
/
cocoa
/
utils.cpp
diff --git
a/src/cocoa/utils.cpp
b/src/cocoa/utils.cpp
index 9451eb06c1e8cebd65ef396a8ca682130465a360..0f59261522b276b79144b6243d0bac39d655aa50 100644
(file)
--- a/
src/cocoa/utils.cpp
+++ b/
src/cocoa/utils.cpp
@@
-12,6
+12,8
@@
#include "wx/setup.h"
#include "wx/utils.h"
#include "wx/app.h"
#include "wx/setup.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
+22,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,6
+49,15
@@
void wxClientDisplayRect(int *x,int *y,int *width,int *height)
*height=768;
}
*height=768;
}
+wxToolkitInfo& wxGUIAppTraits::GetToolkitInfo()
+{
+ static wxToolkitInfo info;
+ info.shortName = _T("cocoa");
+ info.name = _T("wxCocoa");
+ // TODO: Finish this
+ return info;
+}
+
// Return TRUE if we have a colour display
bool wxColourDisplay()
{
// Return TRUE if we have a colour display
bool wxColourDisplay()
{
@@
-70,7
+84,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