summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/dlg/sqlmessage.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2002-04-29 07:27:33 +0000
committerOcke Janssen <oj@openoffice.org>2002-04-29 07:27:33 +0000
commita81742d7baed9c8662eaa86e5a11aa004d34147d (patch)
tree97bd3b152dc578f309e47a75ddc216bad5fe71c8 /dbaccess/source/ui/dlg/sqlmessage.cxx
parenta837b77192245525e1e6c7bdd68e170244034223 (diff)
#98772# impl toolbox hi contrast
Diffstat (limited to 'dbaccess/source/ui/dlg/sqlmessage.cxx')
-rw-r--r--dbaccess/source/ui/dlg/sqlmessage.cxx22
1 files changed, 15 insertions, 7 deletions
diff --git a/dbaccess/source/ui/dlg/sqlmessage.cxx b/dbaccess/source/ui/dlg/sqlmessage.cxx
index 1205c0d069ef..40a0e24875dc 100644
--- a/dbaccess/source/ui/dlg/sqlmessage.cxx
+++ b/dbaccess/source/ui/dlg/sqlmessage.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: sqlmessage.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: fs $ $Date: 2001-12-10 11:19:16 $
+ * last change: $Author: oj $ $Date: 2002-04-29 08:27:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -101,6 +101,9 @@
#ifndef _DBA_DBACCESS_HELPID_HRC_
#include "dbaccess_helpid.hrc"
#endif
+#ifndef DBAUI_TOOLS_HXX
+#include "UITools.hxx"
+#endif
#define BUTTONID_MORE BUTTONID_RETRY + 1
@@ -163,8 +166,10 @@ OExceptionChainDialog::OExceptionChainDialog(Window* pParent, const Any& _rStart
m_aExceptionList.SetWindowBits(WB_HASLINES | WB_HASLINESATROOT | WB_HASBUTTONS | WB_HASBUTTONSATROOT | WB_HSCROLL);
m_aExceptionList.SetSelectHdl(LINK(this, OExceptionChainDialog, OnExceptionSelected));
- ModuleRes aPlusButton(BMP_PLUSBUTTON);
- ModuleRes aMinusButton(BMP_MINUSBUTTON);
+ sal_Bool bHiContrast = isHiContrast(this);
+
+ ModuleRes aPlusButton( bHiContrast ? BMP_PLUSBUTTON_SCH : BMP_PLUSBUTTON);
+ ModuleRes aMinusButton( bHiContrast ? BMP_MINUSBUTTON_SCH : BMP_MINUSBUTTON);
Bitmap aPlusButtonBitmap(aPlusButton);
Bitmap aMinusButtonBitmap(aMinusButton);
Image aCollapsedImage(aPlusButtonBitmap);
@@ -179,9 +184,9 @@ OExceptionChainDialog::OExceptionChainDialog(Window* pParent, const Any& _rStart
DBG_ASSERT(aInfo.isValid(), "OExceptionChainDialog::OExceptionChainDialog : invalid chain start !");
SQLExceptionIteratorHelper aIter(aInfo);
- Image aErrorImage(ModuleRes(BMP_EXCEPTION_ERROR)),
- aWarningImage(ModuleRes(BMP_EXCEPTION_WARNING)),
- m_aInfoImage(ModuleRes(BMP_EXCEPTION_INFO));
+ Image aErrorImage( ModuleRes( bHiContrast ? BMP_EXCEPTION_ERROR_SCH : BMP_EXCEPTION_ERROR)),
+ aWarningImage( ModuleRes( bHiContrast ? BMP_EXCEPTION_WARNING_SCH : BMP_EXCEPTION_WARNING)),
+ m_aInfoImage( ModuleRes( bHiContrast ? BMP_EXCEPTION_INFO_SCH : BMP_EXCEPTION_INFO));
SQLExceptionInfo aCurrent;
while (aIter.hasMoreElements())
@@ -575,6 +580,9 @@ IMPL_LINK( OSQLMessageBox, ButtonClickHdl, Button *, pButton )
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.11 2001/12/10 11:19:16 fs
+ * #95540# for the 'more' dialog, use the error dialog as direct parent
+ *
* Revision 1.10 2001/11/29 11:21:37 pb
* fix: #93646# message FixedText is not a label
*