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 #ifndef DBAUI_COLUMNPEER_HXX
31*cdf0e10cSrcweir #include "ColumnPeer.hxx"
32*cdf0e10cSrcweir #endif
33*cdf0e10cSrcweir #ifndef DBAUI_COLUMNCONTROLWINDOW_HXX
34*cdf0e10cSrcweir #include "ColumnControlWindow.hxx"
35*cdf0e10cSrcweir #endif
36*cdf0e10cSrcweir #ifndef _SV_SVAPP_HXX
37*cdf0e10cSrcweir #include <vcl/svapp.hxx>
38*cdf0e10cSrcweir #endif
39*cdf0e10cSrcweir #ifndef DBACCESS_SHARED_DBUSTRINGS_HRC
40*cdf0e10cSrcweir #include "dbustrings.hrc"
41*cdf0e10cSrcweir #endif
42*cdf0e10cSrcweir #ifndef DBAUI_FIELDDESCRIPTIONS_HXX
43*cdf0e10cSrcweir #include "FieldDescriptions.hxx"
44*cdf0e10cSrcweir #endif
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir //.........................................................................
47*cdf0e10cSrcweir namespace dbaui
48*cdf0e10cSrcweir {
49*cdf0e10cSrcweir //.........................................................................
50*cdf0e10cSrcweir using namespace ::com::sun::star::awt;
51*cdf0e10cSrcweir using namespace ::com::sun::star::uno;
52*cdf0e10cSrcweir using namespace ::com::sun::star::beans;
53*cdf0e10cSrcweir using namespace ::com::sun::star::lang;
54*cdf0e10cSrcweir using namespace ::com::sun::star::sdbc;
55*cdf0e10cSrcweir 
56*cdf0e10cSrcweir OColumnPeer::OColumnPeer(Window* _pParent,const Reference<XMultiServiceFactory>& _rxFactory)
57*cdf0e10cSrcweir     :m_xORB(_rxFactory)
58*cdf0e10cSrcweir     ,m_pActFieldDescr(NULL)
59*cdf0e10cSrcweir {
60*cdf0e10cSrcweir 	osl_incrementInterlockedCount( &m_refCount );
61*cdf0e10cSrcweir 	{
62*cdf0e10cSrcweir 		OColumnControlWindow* pFieldControl = new OColumnControlWindow(_pParent,m_xORB);
63*cdf0e10cSrcweir 		pFieldControl->SetComponentInterface(this);
64*cdf0e10cSrcweir 		pFieldControl->Show();
65*cdf0e10cSrcweir 	}
66*cdf0e10cSrcweir 	osl_decrementInterlockedCount( &m_refCount );
67*cdf0e10cSrcweir }
68*cdf0e10cSrcweir // -----------------------------------------------------------------------------
69*cdf0e10cSrcweir void OColumnPeer::setEditWidth(sal_Int32 _nWidth)
70*cdf0e10cSrcweir {
71*cdf0e10cSrcweir 	::vos::OGuard aGuard( Application::GetSolarMutex() );
72*cdf0e10cSrcweir 
73*cdf0e10cSrcweir 	OColumnControlWindow* pFieldControl = static_cast<OColumnControlWindow*>( GetWindow() );
74*cdf0e10cSrcweir 	if ( pFieldControl )
75*cdf0e10cSrcweir 	{
76*cdf0e10cSrcweir 		pFieldControl->setEditWidth(_nWidth);
77*cdf0e10cSrcweir 	}
78*cdf0e10cSrcweir }
79*cdf0e10cSrcweir // -----------------------------------------------------------------------------
80*cdf0e10cSrcweir void OColumnPeer::setColumn(const Reference< XPropertySet>& _xColumn)
81*cdf0e10cSrcweir {
82*cdf0e10cSrcweir 	::vos::OGuard aGuard( Application::GetSolarMutex() );
83*cdf0e10cSrcweir 
84*cdf0e10cSrcweir 	OColumnControlWindow* pFieldControl = static_cast<OColumnControlWindow*>( GetWindow() );
85*cdf0e10cSrcweir 	if ( pFieldControl )
86*cdf0e10cSrcweir 	{
87*cdf0e10cSrcweir 		if ( m_pActFieldDescr )
88*cdf0e10cSrcweir 		{
89*cdf0e10cSrcweir 			delete m_pActFieldDescr;
90*cdf0e10cSrcweir 			m_pActFieldDescr = NULL;
91*cdf0e10cSrcweir 		}
92*cdf0e10cSrcweir 		if ( _xColumn.is() )
93*cdf0e10cSrcweir 		{
94*cdf0e10cSrcweir 			sal_Int32 nType			= 0;
95*cdf0e10cSrcweir 			sal_Int32 nScale		= 0;
96*cdf0e10cSrcweir 			sal_Int32 nPrecision	= 0;
97*cdf0e10cSrcweir 			sal_Bool bAutoIncrement = sal_False;
98*cdf0e10cSrcweir 			::rtl::OUString sTypeName;
99*cdf0e10cSrcweir 
100*cdf0e10cSrcweir 			try
101*cdf0e10cSrcweir 			{
102*cdf0e10cSrcweir 				// get the properties from the column
103*cdf0e10cSrcweir 				_xColumn->getPropertyValue(PROPERTY_TYPENAME)		>>= sTypeName;
104*cdf0e10cSrcweir 				_xColumn->getPropertyValue(PROPERTY_TYPE)			>>= nType;
105*cdf0e10cSrcweir 				_xColumn->getPropertyValue(PROPERTY_SCALE)			>>= nScale;
106*cdf0e10cSrcweir 				_xColumn->getPropertyValue(PROPERTY_PRECISION)		>>= nPrecision;
107*cdf0e10cSrcweir 				_xColumn->getPropertyValue(PROPERTY_ISAUTOINCREMENT)	>>= bAutoIncrement;
108*cdf0e10cSrcweir 			}
109*cdf0e10cSrcweir 			catch(Exception)
110*cdf0e10cSrcweir 			{
111*cdf0e10cSrcweir 			}
112*cdf0e10cSrcweir 
113*cdf0e10cSrcweir 			m_pActFieldDescr = new OFieldDescription(_xColumn,sal_True);
114*cdf0e10cSrcweir 			// search for type
115*cdf0e10cSrcweir 			::rtl::OUString sCreateParam(RTL_CONSTASCII_USTRINGPARAM("x"));
116*cdf0e10cSrcweir 			sal_Bool bForce;
117*cdf0e10cSrcweir 			TOTypeInfoSP pTypeInfo = ::dbaui::getTypeInfoFromType(*pFieldControl->getTypeInfo(),nType,sTypeName,sCreateParam,nPrecision,nScale,bAutoIncrement,bForce);
118*cdf0e10cSrcweir 			if ( !pTypeInfo.get() )
119*cdf0e10cSrcweir 				pTypeInfo = pFieldControl->getDefaultTyp();
120*cdf0e10cSrcweir 
121*cdf0e10cSrcweir 			m_pActFieldDescr->FillFromTypeInfo(pTypeInfo,sal_True,sal_False);
122*cdf0e10cSrcweir 			m_xColumn = _xColumn;
123*cdf0e10cSrcweir 		}
124*cdf0e10cSrcweir 		pFieldControl->DisplayData(m_pActFieldDescr);
125*cdf0e10cSrcweir 	}
126*cdf0e10cSrcweir }
127*cdf0e10cSrcweir // -----------------------------------------------------------------------------
128*cdf0e10cSrcweir void OColumnPeer::setConnection(const Reference< XConnection>& _xCon)
129*cdf0e10cSrcweir {
130*cdf0e10cSrcweir 	::vos::OGuard aGuard( Application::GetSolarMutex() );
131*cdf0e10cSrcweir 	OColumnControlWindow* pFieldControl = static_cast<OColumnControlWindow*>( GetWindow() );
132*cdf0e10cSrcweir 	if ( pFieldControl )
133*cdf0e10cSrcweir 		pFieldControl->setConnection(_xCon);
134*cdf0e10cSrcweir }
135*cdf0e10cSrcweir //------------------------------------------------------------------------------
136*cdf0e10cSrcweir void OColumnPeer::setProperty( const ::rtl::OUString& _rPropertyName, const Any& Value) throw( RuntimeException )
137*cdf0e10cSrcweir {
138*cdf0e10cSrcweir 	::vos::OGuard aGuard( Application::GetSolarMutex() );
139*cdf0e10cSrcweir 
140*cdf0e10cSrcweir 	if ( 0 == _rPropertyName.compareToAscii( PROPERTY_COLUMN ) )
141*cdf0e10cSrcweir 	{
142*cdf0e10cSrcweir 		Reference<XPropertySet> xProp(Value,UNO_QUERY);
143*cdf0e10cSrcweir 		setColumn(xProp);
144*cdf0e10cSrcweir 	}
145*cdf0e10cSrcweir 	else if ( 0 == _rPropertyName.compareToAscii( PROPERTY_ACTIVE_CONNECTION ) )
146*cdf0e10cSrcweir 	{
147*cdf0e10cSrcweir 		Reference<XConnection> xCon(Value,UNO_QUERY);
148*cdf0e10cSrcweir 		setConnection(xCon);
149*cdf0e10cSrcweir 	}
150*cdf0e10cSrcweir 	else
151*cdf0e10cSrcweir 		VCLXWindow::setProperty(_rPropertyName,Value);
152*cdf0e10cSrcweir }
153*cdf0e10cSrcweir // -----------------------------------------------------------------------------
154*cdf0e10cSrcweir Any OColumnPeer::getProperty( const ::rtl::OUString& _rPropertyName ) throw( RuntimeException )
155*cdf0e10cSrcweir {
156*cdf0e10cSrcweir 	Any aProp;
157*cdf0e10cSrcweir 	OFieldDescControl* pFieldControl = static_cast<OFieldDescControl*>( GetWindow() );
158*cdf0e10cSrcweir 	if ( pFieldControl && 0 == _rPropertyName.compareToAscii( PROPERTY_COLUMN ) )
159*cdf0e10cSrcweir 	{
160*cdf0e10cSrcweir 		aProp <<= m_xColumn;
161*cdf0e10cSrcweir 	}
162*cdf0e10cSrcweir 	else if ( pFieldControl && 0 == _rPropertyName.compareToAscii( PROPERTY_ACTIVE_CONNECTION ) )
163*cdf0e10cSrcweir 	{
164*cdf0e10cSrcweir 		aProp <<= pFieldControl->getConnection();
165*cdf0e10cSrcweir 	}
166*cdf0e10cSrcweir 	else
167*cdf0e10cSrcweir 		aProp = VCLXWindow::getProperty(_rPropertyName);
168*cdf0e10cSrcweir 	return aProp;
169*cdf0e10cSrcweir }
170*cdf0e10cSrcweir //.........................................................................
171*cdf0e10cSrcweir }	// namespace dbaui
172*cdf0e10cSrcweir //.........................................................................
173