2010-10-12 15:59:03 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-06-14 17:39:53 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
2001-08-23 13:39:40 +00:00
|
|
|
|
2006-09-17 06:26:40 +00:00
|
|
|
|
2001-08-23 13:39:40 +00:00
|
|
|
#include "querycontainerwindow.hxx"
|
|
|
|
#include "QueryDesignView.hxx"
|
|
|
|
#include <tools/debug.hxx>
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#include "JoinController.hxx"
|
|
|
|
#include <toolkit/unohlp.hxx>
|
|
|
|
#include "dbustrings.hrc"
|
|
|
|
#include <sfx2/sfxsids.hrc>
|
|
|
|
#include <vcl/fixed.hxx>
|
2002-05-02 06:54:11 +00:00
|
|
|
#include "UITools.hxx"
|
2002-06-27 07:04:37 +00:00
|
|
|
#include <com/sun/star/util/XCloseable.hpp>
|
2007-08-17 12:34:49 +00:00
|
|
|
#include <com/sun/star/beans/XPropertySet.hpp>
|
|
|
|
|
2001-08-23 13:39:40 +00:00
|
|
|
//.........................................................................
|
|
|
|
namespace dbaui
|
|
|
|
{
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::frame;
|
2007-08-17 12:34:49 +00:00
|
|
|
using namespace ::com::sun::star::beans;
|
2001-08-23 13:39:40 +00:00
|
|
|
|
|
|
|
//=====================================================================
|
|
|
|
//= OQueryContainerWindow
|
|
|
|
//=====================================================================
|
2001-09-07 09:05:58 +00:00
|
|
|
DBG_NAME(OQueryContainerWindow)
|
2008-06-25 11:55:23 +00:00
|
|
|
OQueryContainerWindow::OQueryContainerWindow(Window* pParent, OQueryController& _rController,const Reference< XMultiServiceFactory >& _rFactory)
|
|
|
|
:ODataView( pParent, _rController, _rFactory )
|
2001-08-23 13:39:40 +00:00
|
|
|
,m_pViewSwitch(NULL)
|
2006-06-20 02:29:45 +00:00
|
|
|
,m_pBeamer(NULL)
|
2001-08-23 13:39:40 +00:00
|
|
|
{
|
|
|
|
DBG_CTOR(OQueryContainerWindow,NULL);
|
2008-06-25 11:55:23 +00:00
|
|
|
m_pViewSwitch = new OQueryViewSwitch( this, _rController, _rFactory );
|
2001-08-23 13:39:40 +00:00
|
|
|
|
|
|
|
m_pSplitter = new Splitter(this,WB_VSCROLL);
|
|
|
|
m_pSplitter->Hide();
|
|
|
|
m_pSplitter->SetSplitHdl( LINK( this, OQueryContainerWindow, SplitHdl ) );
|
|
|
|
m_pSplitter->SetBackground( Wallpaper( Application::GetSettings().GetStyleSettings().GetDialogColor() ) );
|
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
OQueryContainerWindow::~OQueryContainerWindow()
|
|
|
|
{
|
2004-08-02 15:16:20 +00:00
|
|
|
DBG_DTOR(OQueryContainerWindow,NULL);
|
2003-03-19 16:57:12 +00:00
|
|
|
{
|
|
|
|
::std::auto_ptr<OQueryViewSwitch> aTemp(m_pViewSwitch);
|
|
|
|
m_pViewSwitch = NULL;
|
|
|
|
}
|
2002-06-27 07:04:37 +00:00
|
|
|
if ( m_pBeamer )
|
|
|
|
::dbaui::notifySystemWindow(this,m_pBeamer,::comphelper::mem_fun(&TaskPaneList::RemoveWindow));
|
|
|
|
m_pBeamer = NULL;
|
|
|
|
if ( m_xBeamer.is() )
|
2002-05-29 07:31:08 +00:00
|
|
|
{
|
2002-06-27 07:04:37 +00:00
|
|
|
Reference< ::com::sun::star::util::XCloseable > xCloseable(m_xBeamer,UNO_QUERY);
|
|
|
|
m_xBeamer = NULL;
|
|
|
|
if(xCloseable.is())
|
|
|
|
xCloseable->close(sal_False); // false - holds the owner ship of this frame
|
2002-05-29 07:31:08 +00:00
|
|
|
}
|
2010-11-25 01:16:20 +00:00
|
|
|
|
|
|
|
::std::auto_ptr<Window> aTemp(m_pSplitter);
|
|
|
|
m_pSplitter = NULL;
|
|
|
|
|
2001-08-23 13:39:40 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2008-12-01 12:31:27 +00:00
|
|
|
bool OQueryContainerWindow::switchView( ::dbtools::SQLExceptionInfo* _pErrorInfo )
|
2001-08-23 13:39:40 +00:00
|
|
|
{
|
2008-12-01 12:31:27 +00:00
|
|
|
return m_pViewSwitch->switchView( _pErrorInfo );
|
2001-08-23 13:39:40 +00:00
|
|
|
}
|
|
|
|
|
2010-02-16 15:21:07 +01:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OQueryContainerWindow::forceInitialView()
|
|
|
|
{
|
|
|
|
return m_pViewSwitch->forceInitialView();
|
|
|
|
}
|
|
|
|
|
2001-08-23 13:39:40 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OQueryContainerWindow::resizeAll( const Rectangle& _rPlayground )
|
|
|
|
{
|
|
|
|
Rectangle aPlayground( _rPlayground );
|
|
|
|
|
|
|
|
if ( m_pBeamer && m_pBeamer->IsVisible() )
|
|
|
|
{
|
|
|
|
// calc pos and size of the splitter
|
|
|
|
Point aSplitPos = m_pSplitter->GetPosPixel();
|
|
|
|
Size aSplitSize = m_pSplitter->GetOutputSizePixel();
|
|
|
|
aSplitSize.Width() = aPlayground.GetWidth();
|
|
|
|
|
|
|
|
if ( aSplitPos.Y() <= aPlayground.Top() )
|
|
|
|
aSplitPos.Y() = aPlayground.Top() + sal_Int32( aPlayground.GetHeight() * 0.2 );
|
|
|
|
|
|
|
|
if ( aSplitPos.Y() + aSplitSize.Height() > aPlayground.GetHeight() )
|
|
|
|
aSplitPos.Y() = aPlayground.GetHeight() - aSplitSize.Height();
|
|
|
|
|
|
|
|
// set pos and size of the splitter
|
|
|
|
m_pSplitter->SetPosSizePixel( aSplitPos, aSplitSize );
|
|
|
|
m_pSplitter->SetDragRectPixel( aPlayground );
|
|
|
|
|
|
|
|
// set pos and size of the beamer
|
|
|
|
Size aBeamerSize( aPlayground.GetWidth(), aSplitPos.Y() );
|
|
|
|
m_pBeamer->SetPosSizePixel( aPlayground.TopLeft(), aBeamerSize );
|
|
|
|
|
|
|
|
// shrink the playground by the size which is occupied by the beamer
|
|
|
|
aPlayground.Top() = aSplitPos.Y() + aSplitSize.Height();
|
|
|
|
}
|
|
|
|
|
|
|
|
ODataView::resizeAll( aPlayground );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OQueryContainerWindow::resizeDocumentView( Rectangle& _rPlayground )
|
|
|
|
{
|
|
|
|
m_pViewSwitch->SetPosSizePixel( _rPlayground.TopLeft(), Size( _rPlayground.GetWidth(), _rPlayground.GetHeight() ) );
|
|
|
|
|
|
|
|
ODataView::resizeDocumentView( _rPlayground );
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OQueryContainerWindow::GetFocus()
|
|
|
|
{
|
2002-05-02 06:54:11 +00:00
|
|
|
ODataView::GetFocus();
|
2001-09-20 11:59:25 +00:00
|
|
|
if(m_pViewSwitch)
|
2002-05-02 06:54:11 +00:00
|
|
|
m_pViewSwitch->GrabFocus();
|
2001-08-23 13:39:40 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
2006-06-20 02:29:45 +00:00
|
|
|
IMPL_LINK( OQueryContainerWindow, SplitHdl, void*, /*p*/ )
|
2001-08-23 13:39:40 +00:00
|
|
|
{
|
|
|
|
m_pSplitter->SetPosPixel( Point( m_pSplitter->GetPosPixel().X(),m_pSplitter->GetSplitPosPixel() ) );
|
|
|
|
Resize();
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OQueryContainerWindow::Construct()
|
|
|
|
{
|
|
|
|
m_pViewSwitch->Construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OQueryContainerWindow::disposingPreview()
|
|
|
|
{
|
2002-06-27 07:04:37 +00:00
|
|
|
if ( m_pBeamer )
|
|
|
|
{
|
|
|
|
// here I know that we will be destroyed from the frame
|
|
|
|
::dbaui::notifySystemWindow(this,m_pBeamer,::comphelper::mem_fun(&TaskPaneList::RemoveWindow));
|
|
|
|
m_pBeamer = NULL;
|
|
|
|
m_xBeamer = NULL;
|
|
|
|
m_pSplitter->Hide();
|
|
|
|
Resize();
|
|
|
|
}
|
2001-08-23 13:39:40 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
long OQueryContainerWindow::PreNotify( NotifyEvent& rNEvt )
|
|
|
|
{
|
2011-01-14 15:00:11 +01:00
|
|
|
sal_Bool bHandled = sal_False;
|
2002-02-11 12:02:08 +00:00
|
|
|
switch (rNEvt.GetType())
|
2001-08-23 13:39:40 +00:00
|
|
|
{
|
2002-02-11 12:02:08 +00:00
|
|
|
case EVENT_GETFOCUS:
|
|
|
|
if ( m_pViewSwitch )
|
|
|
|
{
|
2008-06-25 11:55:23 +00:00
|
|
|
OJoinController& rController = m_pViewSwitch->getDesignView()->getController();
|
|
|
|
rController.InvalidateFeature(SID_CUT);
|
|
|
|
rController.InvalidateFeature(SID_COPY);
|
|
|
|
rController.InvalidateFeature(SID_PASTE);
|
2002-02-11 12:02:08 +00:00
|
|
|
}
|
2001-08-23 13:39:40 +00:00
|
|
|
}
|
2002-02-11 12:02:08 +00:00
|
|
|
return bHandled ? 1L : ODataView::PreNotify(rNEvt);
|
2001-08-23 13:39:40 +00:00
|
|
|
}
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
void OQueryContainerWindow::showPreview(const Reference<XFrame>& _xFrame)
|
|
|
|
{
|
|
|
|
if(!m_pBeamer)
|
|
|
|
{
|
|
|
|
m_pBeamer = new OBeamer(this);
|
2002-05-02 06:54:11 +00:00
|
|
|
|
|
|
|
::dbaui::notifySystemWindow(this,m_pBeamer,::comphelper::mem_fun(&TaskPaneList::AddWindow));
|
|
|
|
|
2010-11-13 21:19:14 +00:00
|
|
|
Reference < XFrame > xBeamerFrame( m_pViewSwitch->getORB()->createInstance(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("com.sun.star.frame.Frame"))),UNO_QUERY );
|
2007-08-17 12:34:49 +00:00
|
|
|
m_xBeamer.set( xBeamerFrame );
|
2009-11-11 14:07:55 +01:00
|
|
|
OSL_ENSURE(m_xBeamer.is(),"No frame created!");
|
|
|
|
m_xBeamer->initialize( VCLUnoHelper::GetInterface ( m_pBeamer ) );
|
2007-08-17 12:34:49 +00:00
|
|
|
|
|
|
|
// notify layout manager to not create internal toolbars
|
|
|
|
Reference < XPropertySet > xPropSet( xBeamerFrame, UNO_QUERY );
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const ::rtl::OUString aLayoutManager( RTL_CONSTASCII_USTRINGPARAM( "LayoutManager" ));
|
2009-11-11 14:07:55 +01:00
|
|
|
Reference < XPropertySet > xLMPropSet(xPropSet->getPropertyValue( aLayoutManager ),UNO_QUERY);
|
2007-08-17 12:34:49 +00:00
|
|
|
|
2009-11-11 14:07:55 +01:00
|
|
|
if ( xLMPropSet.is() )
|
2007-08-17 12:34:49 +00:00
|
|
|
{
|
|
|
|
const ::rtl::OUString aAutomaticToolbars( RTL_CONSTASCII_USTRINGPARAM( "AutomaticToolbars" ));
|
|
|
|
xLMPropSet->setPropertyValue( aAutomaticToolbars, Any( sal_False ));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( Exception& )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2001-08-23 13:39:40 +00:00
|
|
|
m_xBeamer->setName(FRAME_NAME_QUERY_PREVIEW);
|
|
|
|
|
|
|
|
// append our frame
|
|
|
|
Reference < XFramesSupplier > xSup(_xFrame,UNO_QUERY);
|
|
|
|
Reference < XFrames > xFrames = xSup->getFrames();
|
|
|
|
xFrames->append( m_xBeamer );
|
|
|
|
|
|
|
|
Size aSize = GetOutputSizePixel();
|
|
|
|
Size aBeamer(aSize.Width(),sal_Int32(aSize.Height()*0.33));
|
|
|
|
|
|
|
|
const long nFrameHeight = LogicToPixel( Size( 0, 3 ), MAP_APPFONT ).Height();
|
|
|
|
Point aPos(0,aBeamer.Height()+nFrameHeight);
|
|
|
|
|
|
|
|
m_pBeamer->SetPosSizePixel(Point(0,0),aBeamer);
|
|
|
|
m_pBeamer->Show();
|
|
|
|
|
|
|
|
m_pSplitter->SetPosSizePixel( Point(0,aBeamer.Height()), Size(aSize.Width(),nFrameHeight) );
|
|
|
|
// a default pos for the splitter, so that the listbox is about 80 (logical) pixels wide
|
|
|
|
m_pSplitter->SetSplitPosPixel( aBeamer.Height() );
|
|
|
|
m_pViewSwitch->SetPosSizePixel(aPos,Size(aBeamer.Width(),aSize.Height() - aBeamer.Height()-nFrameHeight));
|
|
|
|
|
|
|
|
m_pSplitter->Show();
|
|
|
|
|
|
|
|
Resize();
|
|
|
|
}
|
|
|
|
}
|
2002-02-11 12:02:08 +00:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2001-08-23 13:39:40 +00:00
|
|
|
|
|
|
|
//.........................................................................
|
|
|
|
} // namespace dbaui
|
|
|
|
//.........................................................................
|
|
|
|
|
|
|
|
|
2010-10-12 15:59:03 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|