2001-02-05 02:35:57 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 10:30:03 -05:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2001-02-05 02:35:57 -06:00
|
|
|
*
|
2008-04-10 10:30:03 -05:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2001-02-05 02:35:57 -06:00
|
|
|
*
|
2008-04-10 10:30:03 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-02-05 02:35:57 -06:00
|
|
|
*
|
2008-04-10 10:30:03 -05:00
|
|
|
* $RCSfile: queryview.cxx,v $
|
2008-06-25 06:56:20 -05:00
|
|
|
* $Revision: 1.11 $
|
2001-02-05 02:35:57 -06:00
|
|
|
*
|
2008-04-10 10:30:03 -05:00
|
|
|
* This file is part of OpenOffice.org.
|
2001-02-05 02:35:57 -06:00
|
|
|
*
|
2008-04-10 10:30:03 -05: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.
|
2001-02-05 02:35:57 -06:00
|
|
|
*
|
2008-04-10 10:30:03 -05: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).
|
2001-02-05 02:35:57 -06:00
|
|
|
*
|
2008-04-10 10:30:03 -05: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.
|
2001-02-05 02:35:57 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
2006-09-17 01:27:24 -05:00
|
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_dbaccess.hxx"
|
2001-02-05 02:35:57 -06:00
|
|
|
#ifndef DBAUI_QUERYVIEW_HXX
|
|
|
|
#include "queryview.hxx"
|
|
|
|
#endif
|
2002-08-19 02:01:32 -05:00
|
|
|
#ifndef _DBU_QRY_HRC_
|
|
|
|
#include "dbu_qry.hrc"
|
2001-02-05 02:35:57 -06:00
|
|
|
#endif
|
2001-02-28 03:18:26 -06:00
|
|
|
#ifndef DBAUI_QUERYCONTROLLER_HXX
|
|
|
|
#include "querycontroller.hxx"
|
|
|
|
#endif
|
2001-02-05 02:35:57 -06:00
|
|
|
|
|
|
|
|
|
|
|
using namespace dbaui;
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::lang;
|
2005-09-23 06:44:53 -05:00
|
|
|
DBG_NAME(OQueryView)
|
2001-02-05 02:35:57 -06:00
|
|
|
// -------------------------------------------------------------------------
|
2008-06-25 06:56:20 -05:00
|
|
|
OQueryView::OQueryView(Window* _pParent, OQueryController& _rController,const Reference< XMultiServiceFactory >& _rFactory)
|
|
|
|
:OJoinDesignView( _pParent, _rController, _rFactory )
|
2001-02-05 02:35:57 -06:00
|
|
|
{
|
2005-09-23 06:44:53 -05:00
|
|
|
DBG_CTOR(OQueryView,NULL);
|
|
|
|
|
2001-02-05 02:35:57 -06:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
OQueryView::~OQueryView()
|
|
|
|
{
|
2005-09-23 06:44:53 -05:00
|
|
|
|
|
|
|
DBG_DTOR(OQueryView,NULL);
|
2001-02-05 02:35:57 -06:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|