diff options
author | Ocke Janssen <oj@openoffice.org> | 2000-11-06 06:19:53 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2000-11-06 06:19:53 +0000 |
commit | c9c9a86262f3e24108d105e45b38265e0bb64e5e (patch) | |
tree | 5d2e466d18c9fb5ffae92d3c2b7db1505af56b10 /svx/source/inc/fmvwimp.hxx | |
parent | 1ccad97a7cd9a7b67c10368656109ea54fe9b66b (diff) |
cleanup the property browser
Diffstat (limited to 'svx/source/inc/fmvwimp.hxx')
-rw-r--r-- | svx/source/inc/fmvwimp.hxx | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/svx/source/inc/fmvwimp.hxx b/svx/source/inc/fmvwimp.hxx index 0d6c26a46d02..04d13e8e6a23 100644 --- a/svx/source/inc/fmvwimp.hxx +++ b/svx/source/inc/fmvwimp.hxx @@ -2,9 +2,9 @@ * * $RCSfile: fmvwimp.hxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: oj $ $Date: 2000-11-03 14:54:19 $ + * last change: $Author: oj $ $Date: 2000-11-06 07:19:53 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -176,6 +176,7 @@ class FmXFormView : public ::cppu::WeakImplHelper2< SdrPageView* m_pPageViewForActivation; sal_uInt32 m_nEvent; sal_uInt32 m_nErrorMessageEvent; + sal_uInt32 m_nAutoFocusEvent; String m_sErrorMessage; @@ -194,6 +195,7 @@ protected: ,m_nEvent(0) ,m_nErrorMessageEvent(0) ,m_xORB(_xORB) + ,m_nAutoFocusEvent(0) { } ~FmXFormView(); @@ -223,7 +225,11 @@ protected: void Activate(SdrPageView* pPageView, sal_Bool bSync = sal_False); void Deactivate(SdrPageView* pPageView, BOOL bDeactivateController = TRUE); + + /// the the auto focus to the first (in terms of the tab order) control + void AutoFocus(); DECL_LINK(OnActivate, void* ); + DECL_LINK(OnAutoFocus, void* ); DECL_LINK(OnDelayedErrorMessage, void*); }; |