update dev300-m58
[ooovba.git] / dbaccess / source / ui / tabledesign / TableRowExchange.cxx
blob86f710c66664d9e0dd8c87cd53df73ee9bad0c55
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: TableRowExchange.cxx,v $
10 * $Revision: 1.6 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 // MARKER(update_precomp.py): autogen include statement, do not remove
32 #include "precompiled_dbaccess.hxx"
33 #ifndef DBAUI_TABLEROW_EXCHANGE_HXX
34 #include "TableRowExchange.hxx"
35 #endif
36 #ifndef _SOT_FORMATS_HXX
37 #include <sot/formats.hxx>
38 #endif
39 #ifndef _SOT_STORAGE_HXX
40 #include <sot/storage.hxx>
41 #endif
42 #ifndef DBAUI_TABLEROW_HXX
43 #include "TableRow.hxx"
44 #endif
46 namespace dbaui
48 using namespace ::com::sun::star::uno;
49 using namespace ::com::sun::star::beans;
50 OTableRowExchange::OTableRowExchange(const ::std::vector< ::boost::shared_ptr<OTableRow> >& _rvTableRow)
51 : m_vTableRow(_rvTableRow)
54 // -----------------------------------------------------------------------------
55 sal_Bool OTableRowExchange::WriteObject( SotStorageStreamRef& rxOStm, void* pUserObject, sal_uInt32 nUserObjectId, const ::com::sun::star::datatransfer::DataFlavor& /*rFlavor*/ )
57 if(nUserObjectId == SOT_FORMATSTR_ID_SBA_TABED)
59 ::std::vector< ::boost::shared_ptr<OTableRow> >* pRows = reinterpret_cast< ::std::vector< ::boost::shared_ptr<OTableRow> >* >(pUserObject);
60 if(pRows)
62 (*rxOStm) << (sal_Int32)pRows->size(); // first stream the size
63 ::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aIter = pRows->begin();
64 ::std::vector< ::boost::shared_ptr<OTableRow> >::const_iterator aEnd = pRows->end();
65 for(;aIter != aEnd;++aIter)
66 (*rxOStm) << *(*aIter);
67 return sal_True;
70 return sal_False;
72 // -----------------------------------------------------------------------------
73 void OTableRowExchange::AddSupportedFormats()
75 if ( !m_vTableRow.empty() )
76 AddFormat(SOT_FORMATSTR_ID_SBA_TABED);
78 // -----------------------------------------------------------------------------
79 sal_Bool OTableRowExchange::GetData( const ::com::sun::star::datatransfer::DataFlavor& rFlavor )
81 ULONG nFormat = SotExchange::GetFormat(rFlavor);
82 if(nFormat == SOT_FORMATSTR_ID_SBA_TABED)
83 return SetObject(&m_vTableRow,SOT_FORMATSTR_ID_SBA_TABED,rFlavor);
84 return sal_False;
86 // -----------------------------------------------------------------------------
87 void OTableRowExchange::ObjectReleased()
89 m_vTableRow.clear();
91 // -----------------------------------------------------------------------------