2010-10-12 15:59:00 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2007-05-22 16:32:56 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-10 18:50:54 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2007-05-22 16:32:56 +00:00
|
|
|
*
|
2010-02-12 15:01:35 +01:00
|
|
|
* Copyright 2000, 2010 Oracle and/or its affiliates.
|
2007-05-22 16:32:56 +00:00
|
|
|
*
|
2008-04-10 18:50:54 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2007-05-22 16:32:56 +00:00
|
|
|
*
|
2008-04-10 18:50:54 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2007-05-22 16:32:56 +00:00
|
|
|
*
|
2008-04-10 18:50:54 +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.
|
2007-05-22 16:32:56 +00:00
|
|
|
*
|
2008-04-10 18:50:54 +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).
|
2007-05-22 16:32:56 +00:00
|
|
|
*
|
2008-04-10 18:50:54 +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.
|
2007-05-22 16:32:56 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_chart2.hxx"
|
|
|
|
|
|
|
|
#include "dlg_DataEditor.hxx"
|
|
|
|
#include "dlg_DataEditor.hrc"
|
|
|
|
#include "Strings.hrc"
|
|
|
|
#include "DataBrowser.hxx"
|
|
|
|
|
|
|
|
#include "ResId.hxx"
|
|
|
|
#include "Strings.hrc"
|
|
|
|
#include "SchSlotIds.hxx"
|
|
|
|
#include <sfx2/dispatch.hxx>
|
|
|
|
#include <vcl/msgbox.hxx>
|
|
|
|
#include <vcl/taskpanelist.hxx>
|
|
|
|
#include <svtools/miscopt.hxx>
|
2009-10-06 07:38:24 +02:00
|
|
|
#include <unotools/pathoptions.hxx>
|
2007-05-22 16:32:56 +00:00
|
|
|
|
|
|
|
// for SfxBoolItem
|
2009-10-16 00:05:16 +02:00
|
|
|
#include <svl/eitem.hxx>
|
2007-05-22 16:32:56 +00:00
|
|
|
|
|
|
|
#include <vcl/edit.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/frame/XStorable.hpp>
|
|
|
|
#include <com/sun/star/chart2/XChartDocument.hpp>
|
|
|
|
|
|
|
|
using namespace ::com::sun::star;
|
|
|
|
using ::com::sun::star::uno::Reference;
|
|
|
|
using ::rtl::OUString;
|
|
|
|
|
|
|
|
|
|
|
|
namespace chart
|
|
|
|
{
|
|
|
|
|
|
|
|
DataEditor::DataEditor(
|
|
|
|
Window* pParent,
|
|
|
|
const Reference< chart2::XChartDocument > & xChartDoc,
|
|
|
|
const Reference< uno::XComponentContext > & xContext ) :
|
|
|
|
ModalDialog( pParent, SchResId( DLG_DIAGRAM_DATA )),
|
|
|
|
m_bReadOnly( false ),
|
|
|
|
m_apBrwData( new DataBrowser( this, SchResId( CTL_DATA ), true /* bLiveUpdate */)),
|
|
|
|
m_aTbxData( this, SchResId( TBX_DATA )),
|
|
|
|
m_xChartDoc( xChartDoc ),
|
|
|
|
m_xContext( xContext ),
|
|
|
|
m_aToolboxImageList( SchResId( IL_DIAGRAM_DATA )),
|
|
|
|
{
|
|
|
|
FreeResource();
|
|
|
|
|
|
|
|
// set min size to current size
|
|
|
|
SetMinOutputSizePixel( GetOutputSizePixel() );
|
|
|
|
|
|
|
|
ApplyImageList();
|
|
|
|
|
|
|
|
m_aTbxData.SetSizePixel( m_aTbxData.CalcWindowSizePixel() );
|
|
|
|
m_aTbxData.SetSelectHdl( LINK( this, DataEditor, ToolboxHdl ));
|
|
|
|
|
|
|
|
m_apBrwData->SetCursorMovedHdl( LINK( this, DataEditor, BrowserCursorMovedHdl ));
|
|
|
|
m_apBrwData->SetCellModifiedHdl( LINK( this, DataEditor, CellModified ));
|
|
|
|
|
|
|
|
UpdateData();
|
|
|
|
GrabFocus();
|
|
|
|
m_apBrwData->GrabFocus();
|
|
|
|
|
|
|
|
bool bReadOnly = true;
|
|
|
|
Reference< frame::XStorable > xStor( m_xChartDoc, uno::UNO_QUERY );
|
|
|
|
if( xStor.is())
|
|
|
|
bReadOnly = xStor->isReadonly();
|
|
|
|
SetReadOnly( bReadOnly );
|
|
|
|
|
|
|
|
// #101228# change buttons to flat-look if set so by user
|
|
|
|
SvtMiscOptions aMiscOptions;
|
|
|
|
const sal_Int16 nStyle( aMiscOptions.GetToolboxStyle() );
|
|
|
|
// react on changes
|
2009-11-04 15:39:48 +01:00
|
|
|
aMiscOptions.AddListenerLink( LINK( this, DataEditor, MiscHdl ) );
|
2007-05-22 16:32:56 +00:00
|
|
|
m_aTbxData.SetOutStyle( nStyle );
|
|
|
|
|
|
|
|
// set good window width
|
|
|
|
Size aWinSize( GetOutputSizePixel());
|
|
|
|
Size aWinSizeWithBorder( GetSizePixel());
|
|
|
|
Point aWinPos( OutputToAbsoluteScreenPixel( GetPosPixel()));
|
|
|
|
sal_Int32 nMinWidth = aWinSize.getWidth();
|
|
|
|
sal_Int32 nMaxWidth = GetDesktopRectPixel().getWidth() -
|
|
|
|
(aWinSizeWithBorder.getWidth() - aWinSize.getWidth() + aWinPos.getX()) - 10; // leave some space
|
|
|
|
sal_Int32 nBrowserWidth = m_apBrwData->GetTotalWidth() + 12 + 16; // plus padding + 16?
|
|
|
|
sal_Int32 nWindowWidth = ::std::max( nMinWidth, nBrowserWidth );
|
|
|
|
nWindowWidth = ::std::min( nMaxWidth, nBrowserWidth );
|
|
|
|
aWinSize.setWidth( nWindowWidth );
|
|
|
|
SetOutputSizePixel( aWinSize );
|
|
|
|
AdaptBrowseBoxSize();
|
|
|
|
|
|
|
|
// ImplAdjustHeaderControls( false /* bRefreshFromModel */ );
|
|
|
|
|
|
|
|
// allow travelling to toolbar with F6
|
|
|
|
notifySystemWindow( this, & m_aTbxData, ::comphelper::mem_fun( & TaskPaneList::AddWindow ));
|
|
|
|
}
|
|
|
|
|
|
|
|
DataEditor::~DataEditor()
|
|
|
|
{
|
|
|
|
notifySystemWindow( this, & m_aTbxData, ::comphelper::mem_fun( & TaskPaneList::RemoveWindow ));
|
|
|
|
|
|
|
|
SvtMiscOptions aMiscOptions;
|
2009-11-04 15:39:48 +01:00
|
|
|
aMiscOptions.RemoveListenerLink( LINK( this, DataEditor, MiscHdl ) );
|
2007-05-22 16:32:56 +00:00
|
|
|
|
|
|
|
OSL_TRACE( "DataEditor: DTOR" );
|
|
|
|
}
|
|
|
|
|
|
|
|
// react on click (or keypress) on toolbar icon
|
|
|
|
IMPL_LINK( DataEditor, ToolboxHdl, void *, EMPTYARG )
|
|
|
|
{
|
|
|
|
switch( m_aTbxData.GetCurItemId() )
|
|
|
|
{
|
|
|
|
case TBI_DATA_INSERT_ROW:
|
|
|
|
m_apBrwData->InsertRow();
|
|
|
|
break;
|
|
|
|
case TBI_DATA_INSERT_COL:
|
|
|
|
m_apBrwData->InsertColumn();
|
2010-01-28 14:24:55 +01:00
|
|
|
break;
|
|
|
|
case TBI_DATA_INSERT_TEXT_COL:
|
|
|
|
m_apBrwData->InsertTextColumn();
|
2007-05-22 16:32:56 +00:00
|
|
|
break;
|
|
|
|
case TBI_DATA_DELETE_ROW:
|
|
|
|
m_apBrwData->RemoveRow();
|
|
|
|
break;
|
|
|
|
case TBI_DATA_DELETE_COL:
|
|
|
|
m_apBrwData->RemoveColumn();
|
|
|
|
break;
|
|
|
|
case TBI_DATA_SWAP_COL :
|
|
|
|
m_apBrwData->SwapColumn ();
|
|
|
|
break;
|
|
|
|
case TBI_DATA_SWAP_ROW :
|
|
|
|
m_apBrwData->SwapRow ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// refresh toolbar icons according to currently selected cell in brwose box
|
|
|
|
IMPL_LINK( DataEditor, BrowserCursorMovedHdl, void *, EMPTYARG )
|
|
|
|
{
|
|
|
|
if( m_bReadOnly )
|
|
|
|
return 0;
|
|
|
|
|
2010-01-28 14:24:55 +01:00
|
|
|
bool bIsDataValid = m_apBrwData->IsEnableItem();
|
2007-05-22 16:32:56 +00:00
|
|
|
|
2010-01-28 14:24:55 +01:00
|
|
|
m_aTbxData.EnableItem( TBI_DATA_INSERT_ROW, bIsDataValid && m_apBrwData->MayInsertRow() );
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_INSERT_COL, bIsDataValid && m_apBrwData->MayInsertColumn() );
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_INSERT_TEXT_COL, bIsDataValid && m_apBrwData->MayInsertColumn() );
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_DELETE_ROW, m_apBrwData->MayDeleteRow() );
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_DELETE_COL, m_apBrwData->MayDeleteColumn() );
|
|
|
|
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_SWAP_COL, bIsDataValid && m_apBrwData->MaySwapColumns() );
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_SWAP_ROW, bIsDataValid && m_apBrwData->MaySwapRows() );
|
2007-05-22 16:32:56 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// disable all modifying controls
|
|
|
|
void DataEditor::SetReadOnly( bool bReadOnly )
|
|
|
|
{
|
|
|
|
m_bReadOnly = bReadOnly;
|
|
|
|
if( m_bReadOnly )
|
|
|
|
{
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_INSERT_ROW, FALSE );
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_INSERT_COL, FALSE );
|
2010-01-28 14:24:55 +01:00
|
|
|
m_aTbxData.EnableItem( TBI_DATA_INSERT_TEXT_COL, FALSE );
|
2007-05-22 16:32:56 +00:00
|
|
|
m_aTbxData.EnableItem( TBI_DATA_DELETE_ROW, FALSE );
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_DELETE_COL, FALSE );
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_SWAP_COL, FALSE );
|
|
|
|
m_aTbxData.EnableItem( TBI_DATA_SWAP_ROW, FALSE );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_apBrwData->SetReadOnly( m_bReadOnly );
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( DataEditor, MiscHdl, void*, EMPTYARG )
|
|
|
|
{
|
|
|
|
SvtMiscOptions aMiscOptions;
|
|
|
|
sal_Int16 nStyle( aMiscOptions.GetToolboxStyle() );
|
|
|
|
|
|
|
|
m_aTbxData.SetOutStyle( nStyle );
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMPL_LINK( DataEditor, CellModified, void*, EMPTYARG )
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// IMPL_LINK( DataEditor, BrowserColumnResized, void*, EMPTYARG )
|
|
|
|
// {
|
|
|
|
// ImplAdjustHeaderControls( false /* bRefreshFromModel */ );
|
|
|
|
// return 0;
|
|
|
|
// }
|
|
|
|
|
|
|
|
// IMPL_LINK( DataEditor, BrowserContentScrolled, void*, EMPTYARG )
|
|
|
|
// {
|
|
|
|
// ImplAdjustHeaderControls( false /* bRefreshFromModel */ );
|
|
|
|
// return 0;
|
|
|
|
// }
|
|
|
|
|
|
|
|
void DataEditor::UpdateData()
|
|
|
|
{
|
|
|
|
m_apBrwData->SetDataFromModel( m_xChartDoc, m_xContext );
|
|
|
|
}
|
|
|
|
|
|
|
|
// react on the change of the underlying document by displaying the new data
|
|
|
|
// void DataEditor::SFX_NOTIFY(
|
|
|
|
// SfxBroadcaster& rBC,
|
|
|
|
// const TypeId& rBCType,
|
|
|
|
// const SfxHint& rHint,
|
|
|
|
// const TypeId& rHintType )
|
|
|
|
// {
|
|
|
|
// if( rHint.Type() == TYPE(SfxSimpleHint) )
|
|
|
|
// {
|
|
|
|
// // note: if dynamic_cast works this should be changed
|
|
|
|
// switch( static_cast< const SfxSimpleHint & >( rHint ).GetId())
|
|
|
|
// {
|
|
|
|
// case SFX_HINT_DOCCHANGED:
|
|
|
|
// UpdateData();
|
|
|
|
// break;
|
|
|
|
|
|
|
|
// case SFX_HINT_DYING:
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// {
|
|
|
|
// BOOL bRet = TRUE;
|
|
|
|
|
|
|
|
// // confirm changes currently made and not saved
|
|
|
|
// m_apBrwData->EndEditing();
|
|
|
|
|
|
|
|
// if( m_apBrwData->IsDirty() )
|
|
|
|
// {
|
|
|
|
// QueryBox aSafetyQuery( this, WB_YES_NO_CANCEL | WB_DEF_YES,
|
|
|
|
// String( SchResId( STR_DIAGRAM_DATA_SAFETY_QUERY )));
|
|
|
|
// long nQueryResult = aSafetyQuery.Execute();
|
|
|
|
|
|
|
|
// bRet = ( nQueryResult != RET_CANCEL );
|
|
|
|
|
|
|
|
// if( nQueryResult == RET_YES )
|
|
|
|
// {
|
|
|
|
// // save changes
|
|
|
|
// ApplyChangesToModel();
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// if( bRet )
|
|
|
|
// {
|
|
|
|
// // close child window
|
|
|
|
// SfxBoolItem aItem( SID_DIAGRAM_DATA, FALSE );
|
|
|
|
// if( m_pBindings )
|
|
|
|
// {
|
|
|
|
// SfxDispatcher* pDisp = m_pBindings->GetDispatcher();
|
|
|
|
// if( pDisp )
|
|
|
|
// pDisp->Execute( SID_DIAGRAM_DATA, SFX_CALLMODE_ASYNCHRON, &aItem, 0L);
|
|
|
|
// else
|
|
|
|
// DBG_ERROR( "Couldn't dispatch command" );
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
// return ( bRet? SfxFloatingWindow::Close(): FALSE );
|
|
|
|
// }
|
|
|
|
|
|
|
|
void DataEditor::AdaptBrowseBoxSize()
|
|
|
|
{
|
|
|
|
Size aSize( PixelToLogic( GetResizeOutputSizePixel(), MAP_APPFONT ));
|
|
|
|
Size aDataSize;
|
|
|
|
|
|
|
|
aDataSize.setWidth( aSize.getWidth() - 12 );
|
|
|
|
aDataSize.setHeight( aSize.getHeight() - 31 -24 );
|
|
|
|
|
|
|
|
m_apBrwData->SetSizePixel( LogicToPixel( aDataSize, MAP_APPFONT ));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataEditor::Resize()
|
|
|
|
{
|
|
|
|
Dialog::Resize();
|
|
|
|
AdaptBrowseBoxSize();
|
|
|
|
// ImplAdjustHeaderControls( false /* bRefreshFromModel */ );
|
|
|
|
}
|
|
|
|
|
|
|
|
BOOL DataEditor::Close()
|
|
|
|
{
|
2008-02-18 14:42:31 +00:00
|
|
|
if( ApplyChangesToModel() )
|
|
|
|
return ModalDialog::Close();
|
|
|
|
else
|
|
|
|
return TRUE;
|
2007-05-22 16:32:56 +00:00
|
|
|
}
|
|
|
|
|
2008-02-18 14:42:31 +00:00
|
|
|
bool DataEditor::ApplyChangesToModel()
|
2007-05-22 16:32:56 +00:00
|
|
|
{
|
2008-02-18 14:42:31 +00:00
|
|
|
return m_apBrwData->EndEditing();
|
2007-05-22 16:32:56 +00:00
|
|
|
}
|
|
|
|
|
2010-11-16 10:48:24 +01:00
|
|
|
/**
|
|
|
|
* sets the correct toolbar icons depending on the current mode (e.g. high contrast)
|
|
|
|
* FIXME: does not serve any purpose anymore, as the high contrast theme has been removed
|
|
|
|
* FIXME: check callers and see if we can do away with it
|
|
|
|
*/
|
2007-05-22 16:32:56 +00:00
|
|
|
void DataEditor::ApplyImageList()
|
|
|
|
{
|
2010-11-16 10:48:24 +01:00
|
|
|
m_aTbxData.SetImageList( m_aToolboxImageList );
|
2007-05-22 16:32:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// add/remove a window (the toolbar) to/from the global list, so that F6
|
|
|
|
// travels/no longer travels over this window. _rMemFunc may be
|
|
|
|
// TaskPaneList::AddWindow or TaskPaneList::RemoveWindow
|
|
|
|
void DataEditor::notifySystemWindow(
|
|
|
|
Window* pWindow, Window* pToRegister,
|
|
|
|
::comphelper::mem_fun1_t< TaskPaneList, Window* > rMemFunc )
|
|
|
|
{
|
|
|
|
OSL_ENSURE( pWindow, "Window must not be null!" );
|
|
|
|
if( !pWindow )
|
|
|
|
return;
|
|
|
|
Window* pParent = pWindow->GetParent();
|
|
|
|
while( pParent && ! pParent->IsSystemWindow() )
|
|
|
|
{
|
|
|
|
pParent = pParent->GetParent();
|
|
|
|
}
|
|
|
|
if ( pParent && pParent->IsSystemWindow())
|
|
|
|
{
|
|
|
|
SystemWindow* pSystemWindow = static_cast< SystemWindow* >( pParent );
|
|
|
|
rMemFunc( pSystemWindow->GetTaskPaneList(),( pToRegister ));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace chart
|
2010-10-12 15:59:00 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|