442 lines
12 KiB
C++
442 lines
12 KiB
C++
/*************************************************************************
|
|
*
|
|
* $RCSfile: tablemgr.cxx,v $
|
|
*
|
|
* $Revision: 1.1.1.1 $
|
|
*
|
|
* last change: $Author: hr $ $Date: 2000-09-18 17:14:48 $
|
|
*
|
|
* The Contents of this file are made available subject to the terms of
|
|
* either of the following licenses
|
|
*
|
|
* - GNU Lesser General Public License Version 2.1
|
|
* - Sun Industry Standards Source License Version 1.1
|
|
*
|
|
* Sun Microsystems Inc., October, 2000
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2000 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library 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 for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
*
|
|
* Sun Industry Standards Source License Version 1.1
|
|
* =================================================
|
|
* The contents of this file are subject to the Sun Industry Standards
|
|
* Source License Version 1.1 (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.openoffice.org/license.html.
|
|
*
|
|
* Software provided under this License is provided on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
|
|
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
|
|
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
|
|
* See the License for the specific provisions governing your rights and
|
|
* obligations concerning the Software.
|
|
*
|
|
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
|
|
*
|
|
* Copyright: 2000 by Sun Microsystems, Inc.
|
|
*
|
|
* All Rights Reserved.
|
|
*
|
|
* Contributor(s): _______________________________________
|
|
*
|
|
*
|
|
************************************************************************/
|
|
|
|
#ifdef PRECOMPILED
|
|
#include "ui_pch.hxx"
|
|
#endif
|
|
|
|
#pragma hdrstop
|
|
|
|
#ifndef _SVSTOR_HXX //autogen
|
|
#include <so3/svstor.hxx>
|
|
#endif
|
|
#ifndef _IPOBJ_HXX //autogen
|
|
#include <so3/ipobj.hxx>
|
|
#endif
|
|
#ifndef _SCHDLL0_HXX
|
|
#include <sch/schdll0.hxx>
|
|
#endif
|
|
#ifndef _SCH_DLL_HXX
|
|
#include <sch/schdll.hxx>
|
|
#endif
|
|
#ifndef _SCH_MEMCHRT_HXX
|
|
#include <sch/memchrt.hxx>
|
|
#endif
|
|
|
|
|
|
#include "errhdl.hxx"
|
|
#include "wrtsh.hxx"
|
|
#include "cmdid.h"
|
|
#include "frmatr.hxx"
|
|
#include "view.hxx"
|
|
#include "basesh.hxx"
|
|
#include "swundo.hxx"
|
|
#include "tablemgr.hxx"
|
|
#include "frmfmt.hxx"
|
|
#include "instable.hxx"
|
|
#include "colwd.hxx"
|
|
#include "swerror.h"
|
|
#include "table.hrc"
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------------
|
|
Beschreibung: Zeilenhoehe einstellen (Dialog)
|
|
------------------------------------------------------------------------*/
|
|
|
|
|
|
void SwTableFUNC::ColWidthDlg( Window *pParent )
|
|
{
|
|
InitTabCols();
|
|
SwTableWidthDlg *pDlg = new SwTableWidthDlg( pParent, *this );
|
|
pDlg->Execute();
|
|
delete pDlg;
|
|
}
|
|
|
|
/*--------------------------------------------------------------------
|
|
Beschreibung: Breite ermitteln
|
|
--------------------------------------------------------------------*/
|
|
|
|
|
|
SwTwips SwTableFUNC::GetColWidth(USHORT nNum) const
|
|
{
|
|
SwTwips nWidth = 0;
|
|
|
|
if( aCols.Count() > 0 )
|
|
{
|
|
if(aCols.Count() == GetColCount())
|
|
{
|
|
nWidth = (SwTwips)((nNum == aCols.Count()) ?
|
|
aCols.GetRight() - aCols[nNum-1] :
|
|
nNum == 0 ? aCols[nNum] - aCols.GetLeft() :
|
|
aCols[nNum] - aCols[nNum-1]);
|
|
}
|
|
else
|
|
{
|
|
SwTwips nRValid = nNum < GetColCount() ?
|
|
aCols[(USHORT)GetRightSeparator((int)nNum)]:
|
|
aCols.GetRight();
|
|
SwTwips nLValid = nNum ?
|
|
aCols[(USHORT)GetRightSeparator((int)nNum - 1)]:
|
|
aCols.GetLeft();
|
|
nWidth = nRValid - nLValid;
|
|
}
|
|
}
|
|
else
|
|
nWidth = aCols.GetRight();
|
|
|
|
return nWidth;
|
|
}
|
|
|
|
|
|
|
|
SwTwips SwTableFUNC::GetMaxColWidth( USHORT nNum ) const
|
|
{
|
|
ASSERT(nNum <= aCols.Count(), "Index out of Area");
|
|
|
|
if ( GetColCount() > 0 )
|
|
{
|
|
// Die max. Breite ergibt sich aus der eigenen Breite und
|
|
// der Breite der Nachbarzellen um je MINLAY verringert
|
|
SwTwips nMax = nNum == 0 ?
|
|
GetColWidth(1) - MINLAY :
|
|
nNum == GetColCount() ?
|
|
GetColWidth( nNum-1 ) - MINLAY :
|
|
GetColWidth(nNum - 1) + GetColWidth( nNum + 1 ) - 2 * MINLAY;
|
|
|
|
return nMax + GetColWidth(nNum) ;
|
|
}
|
|
else
|
|
return GetColWidth(nNum);
|
|
}
|
|
|
|
|
|
|
|
void SwTableFUNC::SetColWidth(USHORT nNum, SwTwips nNewWidth )
|
|
{
|
|
// aktuelle Breite setzen
|
|
// alle folgenden Verschieben
|
|
BOOL bCurrentOnly = FALSE;
|
|
SwTwips nWidth = 0;
|
|
|
|
if ( aCols.Count() > 0 )
|
|
{
|
|
if(aCols.Count() != GetColCount())
|
|
bCurrentOnly = TRUE;
|
|
nWidth = GetColWidth(nNum);
|
|
|
|
int nDiff = (int)(nNewWidth - nWidth);
|
|
if( !nNum )
|
|
aCols[GetRightSeparator(0)] += nDiff;
|
|
else if( nNum < GetColCount() )
|
|
{
|
|
if(nDiff < GetColWidth(nNum + 1) - MINLAY)
|
|
aCols[GetRightSeparator(nNum)] += nDiff;
|
|
else
|
|
{
|
|
int nDiffLeft = nDiff - (int)GetColWidth(nNum + 1) + (int)MINLAY;
|
|
aCols[GetRightSeparator(nNum)] += (nDiff - nDiffLeft);
|
|
aCols[GetRightSeparator(nNum - 1)] -= nDiffLeft;
|
|
}
|
|
}
|
|
else
|
|
aCols[GetRightSeparator(nNum-1)] -= nDiff;
|
|
}
|
|
else
|
|
aCols.SetRight( Min( nNewWidth, aCols.GetRightMax()) );
|
|
|
|
pSh->StartAllAction();
|
|
pSh->SetTabCols( aCols, bCurrentOnly );
|
|
pSh->EndAllAction();
|
|
}
|
|
|
|
|
|
|
|
void SwTableFUNC::InitTabCols()
|
|
{
|
|
ASSERT(pSh, keine Shell);
|
|
|
|
if( pFmt && pSh)
|
|
pSh->GetTabCols( aCols );
|
|
}
|
|
|
|
|
|
|
|
SwTableFUNC::SwTableFUNC(SwWrtShell *pShell, BOOL bCopyFmt)
|
|
: pFmt(pShell->GetTableFmt()),
|
|
pSh(pShell),
|
|
bCopy(bCopyFmt)
|
|
{
|
|
// gfs. das Format fuer die Bearbeitung kopieren
|
|
if( pFmt && bCopy )
|
|
pFmt = new SwFrmFmt( *pFmt );
|
|
}
|
|
|
|
|
|
|
|
SwTableFUNC::~SwTableFUNC()
|
|
{
|
|
if(bCopy)
|
|
delete pFmt;
|
|
}
|
|
|
|
//Sonst GPF mit W95,MSVC40, non product
|
|
#pragma optimize("",off)
|
|
|
|
|
|
|
|
void SwTableFUNC::InsertChart( SchMemChart& rData, const SfxItemSet *pSet )
|
|
{
|
|
pSh->StartAllAction();
|
|
pSh->StartUndo( UIUNDO_INSERT_CHART );
|
|
|
|
String aName( pSh->GetTableFmt()->GetName() );
|
|
|
|
//Vor die Tabelle gehen und einen Node einfuegen.
|
|
pSh->MoveTable( fnTableCurr, fnTableStart );
|
|
pSh->Up();
|
|
if ( pSh->IsCrsrInTbl() )
|
|
{
|
|
if ( aName != pSh->GetTableFmt()->GetName() )
|
|
pSh->Down(); //Zwei Tabellen direkt uebereinander.
|
|
}
|
|
pSh->SplitNode();
|
|
|
|
//Jetzt das CharObject einfuegen.
|
|
//Wer das nicht versteht ist selber schuld ;-)
|
|
SvStorageRef aStor = new SvStorage( aEmptyStr );
|
|
SvInPlaceObjectRef aIPObj;
|
|
#ifndef SO3
|
|
aIPObj = &SvInPlaceObject::ClassFactory()->CreateAndInit( *SCH_MOD()->pSchChartDocShellFactory, aStor );
|
|
#else
|
|
aIPObj = &((SvFactory*)SvInPlaceObject::ClassFactory())->CreateAndInit( *SCH_MOD()->pSchChartDocShellFactory, aStor );
|
|
#endif
|
|
if ( aIPObj.Is() )
|
|
{
|
|
pSh->InsertOle( aIPObj );
|
|
|
|
//Den Namen der Table am OleNode setzen
|
|
pSh->SetChartName( aName );
|
|
|
|
//Und die Daten in's Objekt uebertragen.
|
|
if( pSet )
|
|
SchDLL::Update( aIPObj, &rData, *pSet );
|
|
else
|
|
SchDLL::Update( aIPObj, &rData );
|
|
}
|
|
pSh->EndUndo( UIUNDO_INSERT_CHART );
|
|
pSh->EndAllAction();
|
|
}
|
|
|
|
#pragma optimize("",on)
|
|
|
|
|
|
|
|
void SwTableFUNC::UpdateChart()
|
|
{
|
|
//Update der Felder in der Tabelle vom User ausgeloesst, alle
|
|
//Charts zu der Tabelle werden auf den neuesten Stand gebracht.
|
|
SwFrmFmt *pFmt = pSh->GetTableFmt();
|
|
if ( pFmt && pSh->HasOLEObj( pFmt->GetName() ) )
|
|
{
|
|
pSh->StartAllAction();
|
|
pSh->UpdateCharts( pFmt->GetName() );
|
|
pSh->EndAllAction();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
USHORT SwTableFUNC::GetCurColNum() const
|
|
{
|
|
int nPos = pSh->GetCurTabColNum();
|
|
int nCount = 0;
|
|
for(int i = 0; i < nPos; i++ )
|
|
if(aCols.IsHidden(i))
|
|
nCount ++;
|
|
return nPos - nCount;
|
|
}
|
|
|
|
|
|
|
|
|
|
USHORT SwTableFUNC::GetColCount() const
|
|
{
|
|
USHORT nCount = 0;
|
|
for(int i=0; i < (int)aCols.Count(); i++ )
|
|
if(aCols.IsHidden(i))
|
|
nCount ++;
|
|
return aCols.Count() - nCount;
|
|
}
|
|
|
|
|
|
|
|
int SwTableFUNC::GetRightSeparator(int nNum) const
|
|
{
|
|
DBG_ASSERT( nNum < (int)GetColCount() ,"Index out of range")
|
|
int i = 0;
|
|
while( nNum >= 0 )
|
|
{
|
|
if( !aCols.IsHidden(i) )
|
|
nNum--;
|
|
i++;
|
|
}
|
|
return i - 1;
|
|
}
|
|
|
|
/*------------------------------------------------------------------------
|
|
|
|
$Log: not supported by cvs2svn $
|
|
Revision 1.120 2000/09/18 16:06:09 willem.vandorp
|
|
OpenOffice header added.
|
|
|
|
Revision 1.119 2000/08/29 14:01:23 ama
|
|
New: Negative margins
|
|
|
|
Revision 1.118 2000/04/26 14:59:03 os
|
|
GetName() returns const String&
|
|
|
|
Revision 1.117 2000/03/09 21:54:38 jp
|
|
Changes: SchMemChart in new headerfile
|
|
|
|
Revision 1.116 2000/02/11 14:58:54 hr
|
|
#70473# changes for unicode ( patched by automated patchtool )
|
|
|
|
Revision 1.115 1999/02/09 13:31:14 JP
|
|
Task #61632#: Charts auch in complexen Tabellen zulassen
|
|
|
|
|
|
Rev 1.114 09 Feb 1999 14:31:14 JP
|
|
Task #61632#: Charts auch in complexen Tabellen zulassen
|
|
|
|
Rev 1.113 29 Nov 1997 14:28:10 MA
|
|
includes
|
|
|
|
Rev 1.112 24 Nov 1997 15:52:24 MA
|
|
includes
|
|
|
|
Rev 1.111 03 Nov 1997 13:56:50 MA
|
|
precomp entfernt
|
|
|
|
Rev 1.110 06 Aug 1997 14:48:50 TRI
|
|
VCL: Anpassungen
|
|
|
|
Rev 1.109 04 Apr 1997 08:38:36 MA
|
|
include vergessen
|
|
|
|
Rev 1.108 03 Apr 1997 09:14:08 MA
|
|
undo fuer insertchart
|
|
|
|
Rev 1.107 01 Apr 1997 18:00:58 MA
|
|
#37054# Chart immer vor Tabelle
|
|
|
|
Rev 1.106 04 Mar 1997 09:13:46 MA
|
|
#37054# InsertChart, richtiger Anker bei zwei Tabellen uebereinander
|
|
|
|
Rev 1.105 24 Nov 1996 14:59:48 WP
|
|
SvGlobalNames beseitigt
|
|
|
|
Rev 1.104 24 Oct 1996 13:33:04 TRI
|
|
sostor.hxx included
|
|
|
|
Rev 1.103 05 Sep 1996 08:19:22 OS
|
|
richtige Min/Max-Einstellungen fuer einspaltige Tabellen
|
|
|
|
Rev 1.102 04 Sep 1996 11:15:12 JP
|
|
Split/InsertCol/Row-Dialoge und Methoden entfernt -> direkt an der Shell rufen
|
|
|
|
Rev 1.101 28 Aug 1996 14:33:20 OS
|
|
includes
|
|
|
|
Rev 1.100 06 Jun 1996 14:54:54 OS
|
|
MM50 ->MINLAY
|
|
|
|
Rev 1.99 18 Apr 1996 11:38:54 OM
|
|
Unbenutzte Fkt entfernt
|
|
|
|
Rev 1.98 26 Mar 1996 15:10:20 MA
|
|
fix: richtige Chart-SS, optimierung abgeschaltet
|
|
|
|
Rev 1.97 07 Mar 1996 15:03:18 HJS
|
|
del: memchart.hxx
|
|
|
|
Rev 1.96 28 Feb 1996 16:47:06 MA
|
|
chg: InsertChart mit ItemSet
|
|
|
|
Rev 1.95 27 Feb 1996 19:19:52 MA
|
|
chg: SS Chart geaendert
|
|
|
|
Rev 1.94 27 Feb 1996 17:11:38 MA
|
|
chg: Chart jetzt per Data-SS
|
|
|
|
Rev 1.93 09 Jan 1996 19:55:24 JP
|
|
InsertChart: TabellenName weitergeben; ueberfluessige Methoden entfernt
|
|
|
|
Rev 1.92 14 Dec 1995 23:01:28 JP
|
|
Filter Umstellung: ErrorHandling und Read/Write-Parameter
|
|
|
|
Rev 1.91 24 Nov 1995 16:58:58 OM
|
|
PCH->PRECOMPILED
|
|
|
|
------------------------------------------------------------------------*/
|
|
|
|
|