From c96bb897e04fd43053c7f093d8aa15806db430e2 Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Tue, 16 Nov 2010 18:43:28 +0100 Subject: Remove _HC occurences --- dbaccess/inc/ToolBoxHelper.hxx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'dbaccess/inc/ToolBoxHelper.hxx') diff --git a/dbaccess/inc/ToolBoxHelper.hxx b/dbaccess/inc/ToolBoxHelper.hxx index 3ba6d61d197d..e95e40a0f4a1 100644 --- a/dbaccess/inc/ToolBoxHelper.hxx +++ b/dbaccess/inc/ToolBoxHelper.hxx @@ -43,6 +43,7 @@ namespace dbaui { class DBACCESS_DLLPUBLIC OToolBoxHelper { + sal_Bool m_bIsHiContrast;// true when the toolbox is in hi contrast mode sal_Int16 m_nSymbolsSize; // shows the toolbox large or small bitmaps ToolBox* m_pToolBox; // our toolbox (may be NULL) public: @@ -58,8 +59,10 @@ namespace dbaui /** will be called when the image list is needed. @param _eSymbolsSize + @param _bHiContast + when in high contrast mode. */ - virtual ImageList getImageList(sal_Int16 _eSymbolsSize) const = 0; + virtual ImageList getImageList(sal_Int16 _eSymbolsSize,sal_Bool _bHiContast) const = 0; /** only the member will be set, derived classes can overload this function and do what need to be done. @param _pTB @@ -75,6 +78,7 @@ namespace dbaui */ void checkImageList(); + inline sal_Bool isToolBoxHiContrast() const { return m_bIsHiContrast; } protected: DECL_LINK(ConfigOptionsChanged, SvtMiscOptions*); DECL_LINK(SettingsChanged, VclWindowEvent* ); -- cgit