diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-03-20 09:07:52 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-03-21 13:28:32 +0200 |
commit | 63dcca42cebd3cb6f020ec75c0d225e1d7232e1c (patch) | |
tree | f1b1442af9d7f6f4736ca9621389f6fcc78179e8 /vcl/aqua/source/window | |
parent | 27388c9483b5e00b593ac126092c5bbb131492b0 (diff) |
Re-work the vcl aspects of the iOS port
Don't try to use similar code as for OS X to manage windows, events
etc. I.e. don't use UIKit in vcl to do that. Instead, just do as in
the Android port, use the "headless" vcl backend. Do keep using
CoreText, though, not FreeType & fontconfig.
Start changing the iOS "Viewer" app to correspond to the Android
"desktop" app (so it should be renamed).
Work in progress since a long time, several crucial details still
missing, but committing for now.
Change-Id: Iac5fbf8def415e4d0d21e5200450a373420ad7ee
Diffstat (limited to 'vcl/aqua/source/window')
-rw-r--r-- | vcl/aqua/source/window/salframe.cxx | 1 | ||||
-rw-r--r-- | vcl/aqua/source/window/salframeview.mm | 1 | ||||
-rw-r--r-- | vcl/aqua/source/window/salmenu.cxx | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/vcl/aqua/source/window/salframe.cxx b/vcl/aqua/source/window/salframe.cxx index 10eb3c24e067..2d5bb47ba433 100644 --- a/vcl/aqua/source/window/salframe.cxx +++ b/vcl/aqua/source/window/salframe.cxx @@ -36,6 +36,7 @@ #include "aqua/salinst.h" #include "aqua/salframeview.h" #include "aqua/aqua11yfactory.h" +#include "quartz/utils.h" #include "salwtype.hxx" diff --git a/vcl/aqua/source/window/salframeview.mm b/vcl/aqua/source/window/salframeview.mm index d6861a489277..aea29a43d5de 100644 --- a/vcl/aqua/source/window/salframeview.mm +++ b/vcl/aqua/source/window/salframeview.mm @@ -29,6 +29,7 @@ #include "aqua/salframe.h" #include "aqua/salframeview.h" #include "aqua/aqua11yfactory.h" +#include "quartz/utils.h" #define WHEEL_EVENT_FACTOR 1.5 diff --git a/vcl/aqua/source/window/salmenu.cxx b/vcl/aqua/source/window/salmenu.cxx index 72cd828c3628..8f37ddc41d24 100644 --- a/vcl/aqua/source/window/salmenu.cxx +++ b/vcl/aqua/source/window/salmenu.cxx @@ -32,6 +32,7 @@ #include "aqua/salnsmenu.h" #include "aqua/salframe.h" #include "aqua/aqua11ywrapper.h" +#include "quartz/utils.h" #include "svids.hrc" #include "window.h" |