Files
loongoffice/extensions/source/bibliography/bibview.cxx
Caolán McNamara a6c5f2ba6b rework RID_TP_GENERAL conversion to make widgets visible, etc.
Change-Id: I93e30198e27631ad4a6865fd202af16094c26a41
2014-08-20 14:00:59 +01:00

207 lines
6.0 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 .
*/
#include "bib.hrc"
#include "bibcont.hxx"
#include "bibbeam.hxx"
#include "general.hxx"
#include "bibview.hxx"
#include "datman.hxx"
#include "bibresid.hxx"
#include "bibmod.hxx"
#include "bibconfig.hxx"
#include <vcl/svapp.hxx>
#include <com/sun/star/sdbc/XResultSetUpdate.hpp>
#include <com/sun/star/form/XLoadable.hpp>
#include <vcl/msgbox.hxx>
#include <tools/debug.hxx>
using namespace ::com::sun::star;
using namespace ::com::sun::star::form;
using namespace ::com::sun::star::beans;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::uno;
namespace bib
{
BibView::BibView( Window* _pParent, BibDataManager* _pManager, WinBits _nStyle )
:BibWindow( _pParent, _nStyle )
,m_pDatMan( _pManager )
,m_xDatMan( _pManager )
,m_pGeneralPage( NULL )
{
if ( m_xDatMan.is() )
connectForm( m_xDatMan );
}
BibView::~BibView()
{
BibGeneralPage* pGeneralPage = m_pGeneralPage;
m_pGeneralPage = NULL;
pGeneralPage->CommitActiveControl();
Reference< XForm > xForm = m_pDatMan->getForm();
Reference< XPropertySet > xProps( xForm, UNO_QUERY );
Reference< sdbc::XResultSetUpdate > xResUpd( xProps, UNO_QUERY );
DBG_ASSERT( xResUpd.is(), "BibView::~BibView: invalid form!" );
if ( xResUpd.is() )
{
Any aModified = xProps->getPropertyValue( "IsModified" );
bool bFlag = false;
if ( ( aModified >>= bFlag ) && bFlag )
{
try
{
Any aNew = xProps->getPropertyValue( "IsNew" );
aNew >>= bFlag;
if ( bFlag )
xResUpd->insertRow();
else
xResUpd->updateRow();
}
catch( const uno::Exception& rEx)
{
(void) rEx;
}
}
}
if ( isFormConnected() )
disconnectForm();
pGeneralPage->RemoveListeners();
m_xGeneralPage = NULL;
}
void BibView::UpdatePages()
{
// TODO:
// this is _strange_: Why not updating the existent general page?
// I consider the current behaviour a HACK.
// frank.schoenheit@sun.com
if ( m_pGeneralPage )
{
m_pGeneralPage->Hide();
m_pGeneralPage->RemoveListeners();
m_xGeneralPage = 0;
}
m_xGeneralPage = m_pGeneralPage = new BibGeneralPage( this, m_pDatMan );
m_pGeneralPage->Show();
Resize();
if( HasFocus() )
// "delayed" GetFocus() because GetFocus() is initially called before GeneralPage is created
m_pGeneralPage->GrabFocus();
OUString sErrorString( m_pGeneralPage->GetErrorString() );
if ( !sErrorString.isEmpty() )
{
bool bExecute = BibModul::GetConfig()->IsShowColumnAssignmentWarning();
if(!m_pDatMan->HasActiveConnection())
{
//no connection is available -> the data base has to be assigned
m_pDatMan->DispatchDBChangeDialog();
bExecute = false;
}
else if(bExecute)
{
sErrorString += "\n";
sErrorString += BIB_RESSTR(RID_MAP_QUESTION);
QueryBox aQuery( this, WB_YES_NO, sErrorString );
aQuery.SetDefaultCheckBoxText();
short nResult = aQuery.Execute();
BibModul::GetConfig()->SetShowColumnAssignmentWarning(
!aQuery.GetCheckBoxState());
if( RET_YES != nResult )
{
bExecute = false;
}
}
if(bExecute)
{
Application::PostUserEvent( STATIC_LINK( this, BibView, CallMappingHdl ) );
}
}
}
void BibView::_loaded( const EventObject& _rEvent )
{
UpdatePages();
FormControlContainer::_loaded( _rEvent );
}
void BibView::_reloaded( const EventObject& _rEvent )
{
UpdatePages();
FormControlContainer::_loaded( _rEvent );
}
IMPL_STATIC_LINK( BibView, CallMappingHdl, BibView*, EMPTYARG )
{
pThis->m_pDatMan->CreateMappingDialog( pThis );
return 0;
}
void BibView::Resize()
{
if ( m_pGeneralPage )
{
::Size aSz( GetOutputSizePixel() );
m_pGeneralPage->SetSizePixel( aSz );
}
Window::Resize();
}
Reference< awt::XControlContainer > BibView::getControlContainer()
{
Reference< awt::XControlContainer > xReturn;
if ( m_pGeneralPage )
xReturn = m_pGeneralPage->GetControlContainer();
return xReturn;
}
void BibView::GetFocus()
{
if( m_pGeneralPage )
m_pGeneralPage->GrabFocus();
}
bool BibView::HandleShortCutKey( const KeyEvent& rKeyEvent )
{
return m_pGeneralPage && m_pGeneralPage->HandleShortCutKey( rKeyEvent );
}
} // namespace bib
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */