2010-10-12 15:59:03 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2005-01-05 11:37:55 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 15:51:18 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2005-01-05 11:37:55 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2005-01-05 11:37:55 +00:00
|
|
|
*
|
2008-04-10 15:51:18 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2005-01-05 11:37:55 +00:00
|
|
|
*
|
2008-04-10 15:51:18 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2005-01-05 11:37:55 +00:00
|
|
|
*
|
2008-04-10 15:51:18 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2005-01-05 11:37:55 +00:00
|
|
|
*
|
2008-04-10 15:51:18 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2005-01-05 11:37:55 +00:00
|
|
|
*
|
2008-04-10 15:51:18 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2005-01-05 11:37:55 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-17 06:33:54 +00:00
|
|
|
|
2005-01-05 11:37:55 +00:00
|
|
|
#include "composerdialogs.hxx"
|
|
|
|
|
|
|
|
/** === begin UNO includes === **/
|
|
|
|
#include "dbu_reghelper.hxx"
|
|
|
|
#include <com/sun/star/sdbcx/XColumnsSupplier.hpp>
|
|
|
|
/** === end UNO includes === **/
|
|
|
|
#include "dbustrings.hrc"
|
|
|
|
#include "queryfilter.hxx"
|
|
|
|
#include "queryorder.hxx"
|
|
|
|
#include <connectivity/dbtools.hxx>
|
2008-05-05 15:10:15 +00:00
|
|
|
#include <tools/diagnose_ex.h>
|
2011-02-03 00:33:36 +01:00
|
|
|
#include <osl/diagnose.h>
|
2005-01-05 11:37:55 +00:00
|
|
|
|
|
|
|
extern "C" void SAL_CALL createRegistryInfo_ComposerDialogs()
|
|
|
|
{
|
|
|
|
static ::dbaui::OMultiInstanceAutoRegistration< ::dbaui::RowsetOrderDialog > aOrderDialogRegistration;
|
|
|
|
static ::dbaui::OMultiInstanceAutoRegistration< ::dbaui::RowsetFilterDialog > aFilterDialogRegistration;
|
|
|
|
}
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
#define PROPERTY_ID_QUERYCOMPOSER 100
|
|
|
|
#define PROPERTY_ID_ROWSET 101
|
|
|
|
|
|
|
|
IMPLEMENT_CONSTASCII_USTRING( PROPERTY_QUERYCOMPOSER, "QueryComposer" );
|
|
|
|
IMPLEMENT_CONSTASCII_USTRING( PROPERTY_ROWSET, "RowSet" );
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::container;
|
|
|
|
using namespace ::com::sun::star::sdbcx;
|
|
|
|
using namespace ::com::sun::star::sdbc;
|
|
|
|
using namespace ::com::sun::star::sdb;
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= ComposerDialog
|
|
|
|
//=====================================================================
|
2006-03-31 11:16:16 +00:00
|
|
|
DBG_NAME(ComposerDialog)
|
|
|
|
//---------------------------------------------------------------------
|
2005-01-05 11:37:55 +00:00
|
|
|
ComposerDialog::ComposerDialog(const Reference< XMultiServiceFactory >& _rxORB)
|
|
|
|
:ComposerDialog_BASE( _rxORB )
|
|
|
|
{
|
2005-09-23 11:47:12 +00:00
|
|
|
DBG_CTOR(ComposerDialog,NULL);
|
|
|
|
|
2005-01-05 11:37:55 +00:00
|
|
|
registerProperty( PROPERTY_QUERYCOMPOSER, PROPERTY_ID_QUERYCOMPOSER, PropertyAttribute::TRANSIENT,
|
|
|
|
&m_xComposer, ::getCppuType( &m_xComposer ) );
|
|
|
|
registerProperty( PROPERTY_ROWSET, PROPERTY_ID_ROWSET, PropertyAttribute::TRANSIENT,
|
|
|
|
&m_xRowSet, ::getCppuType( &m_xRowSet ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
ComposerDialog::~ComposerDialog()
|
|
|
|
{
|
2005-09-23 11:47:12 +00:00
|
|
|
|
|
|
|
DBG_DTOR(ComposerDialog,NULL);
|
2005-01-05 11:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
IMPLEMENT_IMPLEMENTATION_ID( ComposerDialog )
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
IMPLEMENT_PROPERTYCONTAINER_DEFAULTS( ComposerDialog )
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
Dialog* ComposerDialog::createDialog(Window* _pParent)
|
|
|
|
{
|
|
|
|
// obtain all the objects needed for the dialog
|
|
|
|
Reference< XConnection > xConnection;
|
|
|
|
Reference< XNameAccess > xColumns;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// the connection the row set is working with
|
2005-03-10 15:55:16 +00:00
|
|
|
if ( !::dbtools::isEmbeddedInDatabase( m_xRowSet, xConnection ) )
|
|
|
|
{
|
|
|
|
Reference< XPropertySet > xRowsetProps( m_xRowSet, UNO_QUERY );
|
|
|
|
if ( xRowsetProps.is() )
|
2008-01-30 07:56:26 +00:00
|
|
|
xRowsetProps->getPropertyValue( PROPERTY_ACTIVE_CONNECTION ) >>= xConnection;
|
2005-03-10 15:55:16 +00:00
|
|
|
}
|
2005-01-05 11:37:55 +00:00
|
|
|
|
|
|
|
// fallback: if there is a connection and thus a row set, but no composer, create one
|
|
|
|
if ( xConnection.is() && !m_xComposer.is() )
|
2008-06-16 11:35:53 +00:00
|
|
|
m_xComposer = ::dbtools::getCurrentSettingsComposer( Reference< XPropertySet >( m_xRowSet, UNO_QUERY ), m_aContext.getLegacyServiceFactory() );
|
2005-01-05 11:37:55 +00:00
|
|
|
|
|
|
|
// the columns of the row set
|
|
|
|
Reference< XColumnsSupplier > xSuppColumns( m_xRowSet, UNO_QUERY );
|
|
|
|
if ( xSuppColumns.is() )
|
|
|
|
xColumns = xSuppColumns->getColumns();
|
|
|
|
|
|
|
|
if ( !xColumns.is() || !xColumns->hasElements() )
|
|
|
|
{ // perhaps the composer can supply us with columns? This is necessary for cases
|
|
|
|
// where the dialog is invoked for a rowset which is not yet loaded
|
2011-02-27 22:55:22 +01:00
|
|
|
// #i22878#
|
2005-01-05 11:37:55 +00:00
|
|
|
xSuppColumns = xSuppColumns.query( m_xComposer );
|
|
|
|
if ( xSuppColumns.is() )
|
|
|
|
xColumns = xSuppColumns->getColumns();
|
|
|
|
}
|
|
|
|
|
2011-02-03 00:33:36 +01:00
|
|
|
OSL_ENSURE( xColumns.is() && xColumns->hasElements(), "ComposerDialog::createDialog: not much fun without any columns!" );
|
2005-01-05 11:37:55 +00:00
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
2008-05-05 15:10:15 +00:00
|
|
|
DBG_UNHANDLED_EXCEPTION();
|
2005-01-05 11:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( !xConnection.is() || !xColumns.is() || !m_xComposer.is() )
|
|
|
|
// can't create the dialog if I have improper settings
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return createComposerDialog( _pParent, xConnection, xColumns );
|
|
|
|
}
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= RowsetFilterDialog
|
|
|
|
//=====================================================================
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
RowsetFilterDialog::RowsetFilterDialog( const Reference< XMultiServiceFactory >& _rxORB )
|
|
|
|
:ComposerDialog( _rxORB )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
IMPLEMENT_SERVICE_INFO1_STATIC( RowsetFilterDialog, "com.sun.star.uno.comp.sdb.RowsetFilterDialog", "com.sun.star.sdb.FilterDialog" )
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
Dialog* RowsetFilterDialog::createComposerDialog( Window* _pParent, const Reference< XConnection >& _rxConnection, const Reference< XNameAccess >& _rxColumns )
|
|
|
|
{
|
2008-06-16 11:35:53 +00:00
|
|
|
return new DlgFilterCrit( _pParent, m_aContext.getLegacyServiceFactory(), _rxConnection, m_xComposer, _rxColumns );
|
2005-01-05 11:37:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void RowsetFilterDialog::executedDialog( sal_Int16 _nExecutionResult )
|
|
|
|
{
|
|
|
|
ComposerDialog::executedDialog( _nExecutionResult );
|
|
|
|
|
|
|
|
if ( _nExecutionResult && m_pDialog )
|
|
|
|
static_cast< DlgFilterCrit* >( m_pDialog )->BuildWherePart();
|
|
|
|
}
|
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= RowsetOrderDialog
|
|
|
|
//=====================================================================
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
RowsetOrderDialog::RowsetOrderDialog( const Reference< XMultiServiceFactory >& _rxORB )
|
|
|
|
:ComposerDialog( _rxORB )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
IMPLEMENT_SERVICE_INFO1_STATIC( RowsetOrderDialog, "com.sun.star.uno.comp.sdb.RowsetOrderDialog", "com.sun.star.sdb.OrderDialog" )
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
Dialog* RowsetOrderDialog::createComposerDialog( Window* _pParent, const Reference< XConnection >& _rxConnection, const Reference< XNameAccess >& _rxColumns )
|
|
|
|
{
|
|
|
|
return new DlgOrderCrit( _pParent, _rxConnection, m_xComposer, _rxColumns );
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
void RowsetOrderDialog::executedDialog( sal_Int16 _nExecutionResult )
|
|
|
|
{
|
|
|
|
ComposerDialog::executedDialog( _nExecutionResult );
|
|
|
|
|
2006-01-19 14:45:45 +00:00
|
|
|
if ( !m_pDialog )
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ( _nExecutionResult )
|
2005-01-05 11:37:55 +00:00
|
|
|
static_cast< DlgOrderCrit* >( m_pDialog )->BuildOrderPart();
|
|
|
|
else if ( m_xComposer.is() )
|
|
|
|
m_xComposer->setOrder( static_cast< DlgOrderCrit* >( m_pDialog )->GetOrignalOrder() );
|
|
|
|
}
|
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
} // namespace dbaui
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
|
2010-10-12 15:59:03 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|