diff options
author | Stephan Bergmann <sb@openoffice.org> | 2002-07-03 14:53:24 +0000 |
---|---|---|
committer | Stephan Bergmann <sb@openoffice.org> | 2002-07-03 14:53:24 +0000 |
commit | 8f3bc6cb9c61b6e51488a0535b2d0065697ea62b (patch) | |
tree | d348a55911d0428d879f073a3a862adaf73e8073 /basctl/source/basicide/objdlg.hxx | |
parent | 3206ec46bab1604995b8e83c12d3395f3a6e8866 (diff) |
#99748# #99750# #99752# #99753# Enabled high contrast mode for various BASIC IDE controls.
Diffstat (limited to 'basctl/source/basicide/objdlg.hxx')
-rw-r--r-- | basctl/source/basicide/objdlg.hxx | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/basctl/source/basicide/objdlg.hxx b/basctl/source/basicide/objdlg.hxx index a7eb68fc3c75..cb53f947a702 100644 --- a/basctl/source/basicide/objdlg.hxx +++ b/basctl/source/basicide/objdlg.hxx @@ -2,9 +2,9 @@ * * $RCSfile: objdlg.hxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: tbe $ $Date: 2002-04-25 09:32:57 $ + * last change: $Author: sb $ $Date: 2002-07-03 15:53:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -78,6 +78,10 @@ #include <vcl/fixed.hxx> #endif +#ifndef _SV_IMAGE_HXX +#include "vcl/image.hxx" +#endif + #include <bastype2.hxx> class StarBASIC; @@ -94,11 +98,27 @@ public: ~ObjectTreeListBox(); }; +class ObjectCatalogToolBox_Impl: public ToolBox +{ +public: + ObjectCatalogToolBox_Impl(Window * pParent, ResId const & rResId, + ResId const & rImagesHighContrastId); + +private: + virtual void DataChanged(DataChangedEvent const & rDCEvt); + + void setImages(); + + ImageList m_aImagesNormal; + ImageList m_aImagesHighContrast; + bool m_bHighContrast; +}; + class ObjectCatalog : public FloatingWindow { private: ObjectTreeListBox aMacroTreeList; - ToolBox aToolBox; + ObjectCatalogToolBox_Impl aToolBox; FixedText aMacroDescr; Link aCancelHdl; |