98 lines
2.7 KiB
C++
98 lines
2.7 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: tablemgr.hxx,v $
|
|
*
|
|
* $Revision: 1.4 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2005-09-09 10:07:44 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 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
|
|
*
|
|
************************************************************************/
|
|
#ifndef _TABLEMGR_HXX
|
|
#define _TABLEMGR_HXX
|
|
|
|
#ifndef INCLUDED_SWDLLAPI_H
|
|
#include "swdllapi.h"
|
|
#endif
|
|
#ifndef _SWTYPES_HXX
|
|
#include "swtypes.hxx"
|
|
#endif
|
|
#ifndef _TABCOL_HXX
|
|
#include "tabcol.hxx"
|
|
#endif
|
|
|
|
class SwFrmFmt;
|
|
class SwWrtShell;
|
|
class Window;
|
|
class SchMemChart;
|
|
class SfxItemSet;
|
|
|
|
const SwTwips lAutoWidth = INVALID_TWIPS;
|
|
const char cParaDelim = 0x0a;
|
|
|
|
class SW_DLLPUBLIC SwTableFUNC
|
|
{
|
|
SwFrmFmt *pFmt;
|
|
SwWrtShell *pSh;
|
|
BOOL bCopy;
|
|
SwTabCols aCols;
|
|
|
|
private:
|
|
SW_DLLPRIVATE int GetRightSeparator(int nNum) const;
|
|
|
|
public:
|
|
inline SwTableFUNC(SwFrmFmt &);
|
|
SwTableFUNC(SwWrtShell *pShell, BOOL bCopyFmt = FALSE);
|
|
~SwTableFUNC();
|
|
|
|
void InitTabCols();
|
|
void ColWidthDlg(Window *pParent );
|
|
SwTwips GetColWidth(USHORT nNum) const;
|
|
SwTwips GetMaxColWidth(USHORT nNum) const;
|
|
void SetColWidth(USHORT nNum, SwTwips nWidth );
|
|
USHORT GetColCount() const;
|
|
USHORT GetCurColNum() const;
|
|
|
|
BOOL IsTableSelected() const { return pFmt != 0; }
|
|
|
|
const SwFrmFmt *GetTableFmt() const { return pFmt; }
|
|
|
|
SwWrtShell* GetShell() const { return pSh; }
|
|
|
|
void InsertChart( SchMemChart& rData, const SfxItemSet* pSet = 0 );
|
|
void UpdateChart();
|
|
};
|
|
|
|
inline SwTableFUNC::SwTableFUNC(SwFrmFmt &rFmt) :
|
|
pFmt(&rFmt),
|
|
bCopy(FALSE),
|
|
pSh(0)
|
|
{
|
|
}
|
|
|
|
#endif
|