projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fixed USE_CONTEXT_MENU tests
[wxWidgets.git]
/
src
/
cocoa
/
utils.cpp
diff --git
a/src/cocoa/utils.cpp
b/src/cocoa/utils.cpp
index 14c47ad65c8284a08a0ce0adef91f0587348d9be..320091fbb0daed46595a37b69e9effc59d8674c9 100644
(file)
--- a/
src/cocoa/utils.cpp
+++ b/
src/cocoa/utils.cpp
@@
-12,6
+12,7
@@
#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 <ctype.h>
#include <ctype.h>
@@
-24,6
+25,10
@@
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,10
+49,13
@@
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;
}
// Return TRUE if we have a colour display
}
// Return TRUE if we have a colour display