diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-02-01 10:14:03 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-09-28 08:48:07 +0100 |
commit | 60605e36abb0600c61a4129123f2c8ec00122cf4 (patch) | |
tree | 71960640d74106ed821695df78e5872b934cd770 /vcl/inc/brdwin.hxx | |
parent | 5e5f693a14e788862ff65ed6976a9c336596cfea (diff) |
make setting properties virtual in order to handle borderwindow
i.e. need to put the properties onto the actual window that
gets set as the child of a container
Diffstat (limited to 'vcl/inc/brdwin.hxx')
-rw-r--r-- | vcl/inc/brdwin.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/inc/brdwin.hxx b/vcl/inc/brdwin.hxx index 63302f366b4e..d2dea40befc8 100644 --- a/vcl/inc/brdwin.hxx +++ b/vcl/inc/brdwin.hxx @@ -186,6 +186,12 @@ public: long CalcTitleWidth() const; Rectangle GetMenuRect() const; + + virtual Size GetOptimalSize(WindowSizeType eType) const; + virtual void setChildAnyProperty(const rtl::OString &rString, + const ::com::sun::star::uno::Any &rValue); + virtual ::com::sun::star::uno::Any getWidgetAnyProperty(const rtl::OString &rString) const; + }; // ======================================================================= |