diff options
author | Rüdiger Timm <rt@openoffice.org> | 2007-07-03 15:00:02 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2007-07-03 15:00:02 +0000 |
commit | 1478dbc832fcad8bb21fa54399de09f1f90467a0 (patch) | |
tree | 5c985402e1729a5ea343072103a05996adb75f5b /svx/inc | |
parent | aa87c665b01de0d02a06eafbb4213e1cfbc1a822 (diff) |
INTEGRATION: CWS dr54 (1.2.52); FILE MERGED
2007/05/21 11:53:54 dr 1.2.52.1: #i71267# import of progress bar, patch by npower
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/svx/msocximex.hxx | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/svx/inc/svx/msocximex.hxx b/svx/inc/svx/msocximex.hxx index cc6f427d7b8a..9609e79bb70a 100644 --- a/svx/inc/svx/msocximex.hxx +++ b/svx/inc/svx/msocximex.hxx @@ -4,9 +4,9 @@ * * $RCSfile: msocximex.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2007-04-11 16:01:17 $ + * last change: $Author: rt $ $Date: 2007-07-03 16:00:02 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -1309,6 +1309,26 @@ public: }; +class OCX_ProgressBar : public OCX_Control +{ +public: + explicit OCX_ProgressBar(); + + static OCX_Control* Create(); + + virtual sal_Bool Read( SvStorageStream *pS ); + using OCX_Control::Import; // to not hide the other two import methods + virtual sal_Bool Import(com::sun::star::uno::Reference< + com::sun::star::beans::XPropertySet> &rPropSet); + // No Font record + virtual sal_Bool ReadFontData(SvStorageStream* /*pS*/) { return sal_True; } +private: + sal_Int32 nMin; + sal_Int32 nMax; + bool bFixedSingle; + bool bEnabled; + bool b3d; +}; class OCX_SpinButton : public OCX_Control { |