diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-02-03 22:02:01 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-02-03 22:02:01 +0100 |
commit | 5cd1d6740cc9e85b5ed3730800dff4717cb7e1ae (patch) | |
tree | 6ab295348f9828b4086c1e3df98f7077a2b39a8d /vcl/inc | |
parent | 5d933f259d7cdc9d600d921d51ef9d4187dbd701 (diff) |
android: implement theming to get default font set, 1st cut at GetWorkArea
Diffstat (limited to 'vcl/inc')
-rw-r--r-- | vcl/inc/android/androidinst.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/inc/android/androidinst.hxx b/vcl/inc/android/androidinst.hxx index e947737a68ae..10d17c53b8b5 100644 --- a/vcl/inc/android/androidinst.hxx +++ b/vcl/inc/android/androidinst.hxx @@ -49,6 +49,11 @@ public: virtual SalSystem* CreateSalSystem(); + // frame management + void GetWorkArea( Rectangle& rRect ); + SalFrame* CreateFrame( SalFrame* pParent, sal_uLong nStyle ); + SalFrame* CreateChildFrame( SystemParentData* pParent, sal_uLong nStyle ); + // mainloop pieces virtual void Wakeup(); virtual bool AnyInput( sal_uInt16 nType ); @@ -58,6 +63,7 @@ public: int32_t onInputEvent (struct android_app* app, AInputEvent* event); void RedrawWindows(ANativeWindow *pWindow); SalFrame *getFocusFrame() const; + protected: virtual void DoReleaseYield( int nTimeoutMS ); struct android_app *mpApp; |