diff options
author | ptyl@cloudon.com <ptyl@cloudon.com> | 2013-10-16 16:02:44 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2013-10-17 11:11:39 +0200 |
commit | d8e8e6bcbeaa9c4d0058e01ce7be07e57f615b1d (patch) | |
tree | 155fd020361e6e51ebe1bf6ff80b9334f562257f /vcl/ios | |
parent | fcdde111e451f84e373c67a485c87d1ad744cfe4 (diff) |
added draw tile signature and select all fix
Change-Id: I6118c55caa12d9ba52000f89e869e27b218859be
Diffstat (limited to 'vcl/ios')
-rw-r--r-- | vcl/ios/iosinst.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/vcl/ios/iosinst.cxx b/vcl/ios/iosinst.cxx index 353abe4662ef..8adc26a29cb0 100644 --- a/vcl/ios/iosinst.cxx +++ b/vcl/ios/iosinst.cxx @@ -503,4 +503,17 @@ void touch_lo_keyboard_did_hide() } } +extern "C" +void touch_lo_draw_tile(void *context, int contextWidth, int contextHeight, int tileWidth, int tileHeight, int tilePosX, int tilePosY) +{ + // draws the area of one tile + + SalFrame *pFocus = IosSalInstance::getInstance()->getFocusFrame(); + if (pFocus) { + + // TODO: calling tile drawing code + + } +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |