xref: /AOO41X/main/dbaccess/source/ui/misc/imageprovider.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_dbaccess.hxx"
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include "imageprovider.hxx"
32*cdf0e10cSrcweir #include "dbu_resource.hrc"
33*cdf0e10cSrcweir #include "moduledbu.hxx"
34*cdf0e10cSrcweir #include "dbustrings.hrc"
35*cdf0e10cSrcweir 
36*cdf0e10cSrcweir /** === begin UNO includes === **/
37*cdf0e10cSrcweir #include <com/sun/star/beans/XPropertySet.hpp>
38*cdf0e10cSrcweir #include <com/sun/star/graphic/XGraphic.hpp>
39*cdf0e10cSrcweir #include <com/sun/star/graphic/GraphicColorMode.hpp>
40*cdf0e10cSrcweir #include <com/sun/star/sdb/application/XTableUIProvider.hpp>
41*cdf0e10cSrcweir #include <com/sun/star/sdbcx/XViewsSupplier.hpp>
42*cdf0e10cSrcweir /** === end UNO includes === **/
43*cdf0e10cSrcweir 
44*cdf0e10cSrcweir #include <tools/diagnose_ex.h>
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir //........................................................................
47*cdf0e10cSrcweir namespace dbaui
48*cdf0e10cSrcweir {
49*cdf0e10cSrcweir //........................................................................
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir 	/** === begin UNO using === **/
52*cdf0e10cSrcweir     using ::com::sun::star::uno::Reference;
53*cdf0e10cSrcweir     using ::com::sun::star::sdbc::XConnection;
54*cdf0e10cSrcweir     using ::com::sun::star::uno::Exception;
55*cdf0e10cSrcweir     using ::com::sun::star::uno::UNO_QUERY_THROW;
56*cdf0e10cSrcweir     using ::com::sun::star::container::XNameAccess;
57*cdf0e10cSrcweir     using ::com::sun::star::beans::XPropertySet;
58*cdf0e10cSrcweir     using ::com::sun::star::graphic::XGraphic;
59*cdf0e10cSrcweir     using ::com::sun::star::sdb::application::XTableUIProvider;
60*cdf0e10cSrcweir     using ::com::sun::star::uno::UNO_QUERY;
61*cdf0e10cSrcweir     using ::com::sun::star::sdbcx::XViewsSupplier;
62*cdf0e10cSrcweir     using ::com::sun::star::uno::UNO_SET_THROW;
63*cdf0e10cSrcweir 	/** === end UNO using === **/
64*cdf0e10cSrcweir     namespace GraphicColorMode = ::com::sun::star::graphic::GraphicColorMode;
65*cdf0e10cSrcweir 
66*cdf0e10cSrcweir 	//====================================================================
67*cdf0e10cSrcweir 	//= ImageProvider_Data
68*cdf0e10cSrcweir 	//====================================================================
69*cdf0e10cSrcweir     struct ImageProvider_Data
70*cdf0e10cSrcweir     {
71*cdf0e10cSrcweir         /// the connection we work with
72*cdf0e10cSrcweir         Reference< XConnection >        xConnection;
73*cdf0e10cSrcweir         /// the views of the connection, if the DB supports views
74*cdf0e10cSrcweir         Reference< XNameAccess >        xViews;
75*cdf0e10cSrcweir         /// interface for providing table's UI
76*cdf0e10cSrcweir         Reference< XTableUIProvider >   xTableUI;
77*cdf0e10cSrcweir     };
78*cdf0e10cSrcweir 
79*cdf0e10cSrcweir 	//--------------------------------------------------------------------
80*cdf0e10cSrcweir     namespace
81*cdf0e10cSrcweir     {
82*cdf0e10cSrcweir 	    //................................................................
83*cdf0e10cSrcweir         static void lcl_getConnectionProvidedTableIcon_nothrow(  const ImageProvider_Data& _rData,
84*cdf0e10cSrcweir             const ::rtl::OUString& _rName, Reference< XGraphic >& _out_rxGraphic, Reference< XGraphic >& _out_rxGraphicHC )
85*cdf0e10cSrcweir         {
86*cdf0e10cSrcweir             try
87*cdf0e10cSrcweir             {
88*cdf0e10cSrcweir                 if ( _rData.xTableUI.is() )
89*cdf0e10cSrcweir                 {
90*cdf0e10cSrcweir                     _out_rxGraphic = _rData.xTableUI->getTableIcon( _rName, GraphicColorMode::NORMAL );
91*cdf0e10cSrcweir                     _out_rxGraphicHC = _rData.xTableUI->getTableIcon( _rName, GraphicColorMode::HIGH_CONTRAST );
92*cdf0e10cSrcweir                 }
93*cdf0e10cSrcweir             }
94*cdf0e10cSrcweir             catch( const Exception& )
95*cdf0e10cSrcweir             {
96*cdf0e10cSrcweir             	DBG_UNHANDLED_EXCEPTION();
97*cdf0e10cSrcweir             }
98*cdf0e10cSrcweir         }
99*cdf0e10cSrcweir 
100*cdf0e10cSrcweir 	    //................................................................
101*cdf0e10cSrcweir         static void lcl_getTableImageResourceID_nothrow( const ImageProvider_Data& _rData, const ::rtl::OUString& _rName,
102*cdf0e10cSrcweir             sal_uInt16& _out_rResourceID, sal_uInt16& _out_rResourceID_HC )
103*cdf0e10cSrcweir         {
104*cdf0e10cSrcweir             _out_rResourceID = _out_rResourceID_HC = 0;
105*cdf0e10cSrcweir             try
106*cdf0e10cSrcweir             {
107*cdf0e10cSrcweir                 bool bIsView = _rData.xViews.is() && _rData.xViews->hasByName( _rName );
108*cdf0e10cSrcweir                 if ( bIsView )
109*cdf0e10cSrcweir                 {
110*cdf0e10cSrcweir                     _out_rResourceID = VIEW_TREE_ICON;
111*cdf0e10cSrcweir                     _out_rResourceID_HC = VIEW_TREE_ICON_SCH;
112*cdf0e10cSrcweir                 }
113*cdf0e10cSrcweir                 else
114*cdf0e10cSrcweir                 {
115*cdf0e10cSrcweir                     _out_rResourceID = TABLE_TREE_ICON;
116*cdf0e10cSrcweir                     _out_rResourceID_HC = TABLE_TREE_ICON_SCH;
117*cdf0e10cSrcweir                 }
118*cdf0e10cSrcweir             }
119*cdf0e10cSrcweir             catch( const Exception& )
120*cdf0e10cSrcweir             {
121*cdf0e10cSrcweir             	DBG_UNHANDLED_EXCEPTION();
122*cdf0e10cSrcweir             }
123*cdf0e10cSrcweir         }
124*cdf0e10cSrcweir     }
125*cdf0e10cSrcweir 	//====================================================================
126*cdf0e10cSrcweir 	//= ImageProvider
127*cdf0e10cSrcweir 	//====================================================================
128*cdf0e10cSrcweir 	//--------------------------------------------------------------------
129*cdf0e10cSrcweir     ImageProvider::ImageProvider()
130*cdf0e10cSrcweir         :m_pData( new ImageProvider_Data )
131*cdf0e10cSrcweir     {
132*cdf0e10cSrcweir     }
133*cdf0e10cSrcweir 
134*cdf0e10cSrcweir 	//--------------------------------------------------------------------
135*cdf0e10cSrcweir     ImageProvider::ImageProvider( const Reference< XConnection >& _rxConnection )
136*cdf0e10cSrcweir         :m_pData( new ImageProvider_Data )
137*cdf0e10cSrcweir     {
138*cdf0e10cSrcweir         m_pData->xConnection = _rxConnection;
139*cdf0e10cSrcweir         try
140*cdf0e10cSrcweir         {
141*cdf0e10cSrcweir             Reference< XViewsSupplier > xSuppViews( m_pData->xConnection, UNO_QUERY );
142*cdf0e10cSrcweir             if ( xSuppViews.is() )
143*cdf0e10cSrcweir                 m_pData->xViews.set( xSuppViews->getViews(), UNO_SET_THROW );
144*cdf0e10cSrcweir 
145*cdf0e10cSrcweir             m_pData->xTableUI.set( _rxConnection, UNO_QUERY );
146*cdf0e10cSrcweir         }
147*cdf0e10cSrcweir         catch( const Exception& )
148*cdf0e10cSrcweir         {
149*cdf0e10cSrcweir         	DBG_UNHANDLED_EXCEPTION();
150*cdf0e10cSrcweir         }
151*cdf0e10cSrcweir     }
152*cdf0e10cSrcweir 
153*cdf0e10cSrcweir 	//--------------------------------------------------------------------
154*cdf0e10cSrcweir     void ImageProvider::getImages( const String& _rName, const sal_Int32 _nDatabaseObjectType, Image& _out_rImage, Image& _out_rImageHC )
155*cdf0e10cSrcweir     {
156*cdf0e10cSrcweir         if ( _nDatabaseObjectType != DatabaseObject::TABLE )
157*cdf0e10cSrcweir         {
158*cdf0e10cSrcweir             // for types other than tables, the icon does not depend on the concrete object
159*cdf0e10cSrcweir             _out_rImage = getDefaultImage( _nDatabaseObjectType, false );
160*cdf0e10cSrcweir             _out_rImageHC = getDefaultImage( _nDatabaseObjectType, true );
161*cdf0e10cSrcweir         }
162*cdf0e10cSrcweir         else
163*cdf0e10cSrcweir         {
164*cdf0e10cSrcweir             // check whether the connection can give us an icon
165*cdf0e10cSrcweir             Reference< XGraphic > xGraphic;
166*cdf0e10cSrcweir             Reference< XGraphic > xGraphicHC;
167*cdf0e10cSrcweir             lcl_getConnectionProvidedTableIcon_nothrow( *m_pData, _rName, xGraphic, xGraphicHC );
168*cdf0e10cSrcweir             if ( xGraphic.is() )
169*cdf0e10cSrcweir                 _out_rImage = Image( xGraphic );
170*cdf0e10cSrcweir             if ( xGraphicHC.is() )
171*cdf0e10cSrcweir                 _out_rImageHC = Image( xGraphicHC );
172*cdf0e10cSrcweir 
173*cdf0e10cSrcweir             if ( !_out_rImage || !_out_rImageHC )
174*cdf0e10cSrcweir             {
175*cdf0e10cSrcweir                 // no -> determine by type
176*cdf0e10cSrcweir                 sal_uInt16 nImageResourceID = 0;
177*cdf0e10cSrcweir                 sal_uInt16 nImageResourceID_HC = 0;
178*cdf0e10cSrcweir                 lcl_getTableImageResourceID_nothrow( *m_pData, _rName, nImageResourceID, nImageResourceID_HC );
179*cdf0e10cSrcweir 
180*cdf0e10cSrcweir                 if ( nImageResourceID && !_out_rImage )
181*cdf0e10cSrcweir                     _out_rImage = Image( ModuleRes( nImageResourceID ) );
182*cdf0e10cSrcweir                 if ( nImageResourceID_HC && !_out_rImageHC )
183*cdf0e10cSrcweir                     _out_rImageHC = Image( ModuleRes( nImageResourceID_HC ) );
184*cdf0e10cSrcweir             }
185*cdf0e10cSrcweir         }
186*cdf0e10cSrcweir     }
187*cdf0e10cSrcweir 
188*cdf0e10cSrcweir 	//--------------------------------------------------------------------
189*cdf0e10cSrcweir     Image ImageProvider::getDefaultImage( sal_Int32 _nDatabaseObjectType, bool _bHighContrast )
190*cdf0e10cSrcweir     {
191*cdf0e10cSrcweir         Image aObjectImage;
192*cdf0e10cSrcweir         sal_uInt16 nImageResourceID( getDefaultImageResourceID( _nDatabaseObjectType, _bHighContrast ) );
193*cdf0e10cSrcweir         if ( nImageResourceID )
194*cdf0e10cSrcweir             aObjectImage = Image( ModuleRes( nImageResourceID ) );
195*cdf0e10cSrcweir         return aObjectImage;
196*cdf0e10cSrcweir     }
197*cdf0e10cSrcweir 
198*cdf0e10cSrcweir 	//--------------------------------------------------------------------
199*cdf0e10cSrcweir     sal_uInt16 ImageProvider::getDefaultImageResourceID( sal_Int32 _nDatabaseObjectType, bool _bHighContrast )
200*cdf0e10cSrcweir     {
201*cdf0e10cSrcweir         sal_uInt16 nImageResourceID( 0 );
202*cdf0e10cSrcweir         switch ( _nDatabaseObjectType )
203*cdf0e10cSrcweir         {
204*cdf0e10cSrcweir         case DatabaseObject::QUERY:
205*cdf0e10cSrcweir             nImageResourceID = _bHighContrast ? QUERY_TREE_ICON_SCH : QUERY_TREE_ICON;
206*cdf0e10cSrcweir             break;
207*cdf0e10cSrcweir         case DatabaseObject::FORM:
208*cdf0e10cSrcweir             nImageResourceID = _bHighContrast ? FORM_TREE_ICON_SCH : FORM_TREE_ICON;
209*cdf0e10cSrcweir             break;
210*cdf0e10cSrcweir         case DatabaseObject::REPORT:
211*cdf0e10cSrcweir             nImageResourceID = _bHighContrast ? REPORT_TREE_ICON_SCH : REPORT_TREE_ICON;
212*cdf0e10cSrcweir             break;
213*cdf0e10cSrcweir         case DatabaseObject::TABLE:
214*cdf0e10cSrcweir             nImageResourceID = _bHighContrast ? TABLE_TREE_ICON_SCH : TABLE_TREE_ICON;
215*cdf0e10cSrcweir             break;
216*cdf0e10cSrcweir         default:
217*cdf0e10cSrcweir             OSL_ENSURE( false, "ImageProvider::getDefaultImage: invalid database object type!" );
218*cdf0e10cSrcweir             break;
219*cdf0e10cSrcweir         }
220*cdf0e10cSrcweir         return nImageResourceID;
221*cdf0e10cSrcweir     }
222*cdf0e10cSrcweir 
223*cdf0e10cSrcweir 	//--------------------------------------------------------------------
224*cdf0e10cSrcweir     Image ImageProvider::getFolderImage( sal_Int32 _nDatabaseObjectType, bool _bHighContrast )
225*cdf0e10cSrcweir     {
226*cdf0e10cSrcweir         sal_uInt16 nImageResourceID( 0 );
227*cdf0e10cSrcweir         switch ( _nDatabaseObjectType )
228*cdf0e10cSrcweir         {
229*cdf0e10cSrcweir         case DatabaseObject::QUERY:
230*cdf0e10cSrcweir             nImageResourceID = _bHighContrast ? QUERYFOLDER_TREE_ICON_SCH : QUERYFOLDER_TREE_ICON;
231*cdf0e10cSrcweir             break;
232*cdf0e10cSrcweir         case DatabaseObject::FORM:
233*cdf0e10cSrcweir             nImageResourceID = _bHighContrast ? FORMFOLDER_TREE_ICON_SCH : FORMFOLDER_TREE_ICON;
234*cdf0e10cSrcweir             break;
235*cdf0e10cSrcweir         case DatabaseObject::REPORT:
236*cdf0e10cSrcweir             nImageResourceID = _bHighContrast ? REPORTFOLDER_TREE_ICON_SCH : REPORTFOLDER_TREE_ICON;
237*cdf0e10cSrcweir             break;
238*cdf0e10cSrcweir         case DatabaseObject::TABLE:
239*cdf0e10cSrcweir             nImageResourceID = _bHighContrast ? TABLEFOLDER_TREE_ICON_SCH : TABLEFOLDER_TREE_ICON;
240*cdf0e10cSrcweir             break;
241*cdf0e10cSrcweir         default:
242*cdf0e10cSrcweir             OSL_ENSURE( false, "ImageProvider::getDefaultImage: invalid database object type!" );
243*cdf0e10cSrcweir             break;
244*cdf0e10cSrcweir         }
245*cdf0e10cSrcweir 
246*cdf0e10cSrcweir         Image aFolderImage;
247*cdf0e10cSrcweir         if ( nImageResourceID )
248*cdf0e10cSrcweir             aFolderImage = Image( ModuleRes( nImageResourceID ) );
249*cdf0e10cSrcweir         return aFolderImage;
250*cdf0e10cSrcweir     }
251*cdf0e10cSrcweir 
252*cdf0e10cSrcweir 	//--------------------------------------------------------------------
253*cdf0e10cSrcweir     Image ImageProvider::getDatabaseImage( bool _bHighContrast )
254*cdf0e10cSrcweir     {
255*cdf0e10cSrcweir         return Image( ModuleRes( _bHighContrast ? DATABASE_TREE_ICON_SCH : DATABASE_TREE_ICON ) );
256*cdf0e10cSrcweir     }
257*cdf0e10cSrcweir 
258*cdf0e10cSrcweir //........................................................................
259*cdf0e10cSrcweir } // namespace dbaui
260*cdf0e10cSrcweir //........................................................................
261*cdf0e10cSrcweir 
262