c258e24f04
2007/05/29 10:59:56 os 1.5.592.3: RESYNC: (1.5-1.6); FILE MERGED 2007/04/18 14:44:49 tl 1.5.592.2: #i69287# warning-free code 2007/03/12 12:40:30 ama 1.5.592.1: i69287#: warning free code
145 lines
4.6 KiB
C++
145 lines
4.6 KiB
C++
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: usrfld.hxx,v $
|
|
*
|
|
* $Revision: 1.7 $
|
|
*
|
|
* last change: $Author: hr $ $Date: 2007-09-27 08:17:08 $
|
|
*
|
|
* 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 _USRFLD_HXX
|
|
#define _USRFLD_HXX
|
|
|
|
#ifndef INCLUDED_SWDLLAPI_H
|
|
#include "swdllapi.h"
|
|
#endif
|
|
|
|
#ifndef _FLDBAS_HXX
|
|
#include "fldbas.hxx"
|
|
#endif
|
|
|
|
class SfxPoolItem;
|
|
class SwCalc;
|
|
class SwDoc;
|
|
|
|
/*--------------------------------------------------------------------
|
|
Beschreibung: Benutzerfelder
|
|
--------------------------------------------------------------------*/
|
|
|
|
class SW_DLLPUBLIC SwUserFieldType : public SwValueFieldType
|
|
{
|
|
BOOL bValidValue : 1;
|
|
BOOL bDeleted : 1;
|
|
double nValue;
|
|
String aName;
|
|
String aContent;
|
|
USHORT nType;
|
|
|
|
public:
|
|
SwUserFieldType( SwDoc* pDocPtr, const String& );
|
|
|
|
virtual const String& GetName() const;
|
|
virtual SwFieldType* Copy() const;
|
|
|
|
String Expand(sal_uInt32 nFmt, USHORT nSubType, USHORT nLng);
|
|
|
|
String GetContent( sal_uInt32 nFmt = 0 );
|
|
void SetContent( const String& rStr, sal_uInt32 nFmt = 0 );
|
|
|
|
inline BOOL IsValid() const;
|
|
inline void ChgValid( BOOL bNew );
|
|
|
|
virtual void Modify( SfxPoolItem* pOld, SfxPoolItem* pNew );
|
|
|
|
double GetValue(SwCalc& rCalc); // Member nValue neu berrechnen
|
|
inline double GetValue() const;
|
|
inline void SetValue(const double nVal);
|
|
|
|
inline USHORT GetType() const;
|
|
inline void SetType(USHORT);
|
|
|
|
BOOL IsDeleted() const { return bDeleted; }
|
|
void SetDeleted( BOOL b ) { bDeleted = b; }
|
|
|
|
virtual BOOL QueryValue( com::sun::star::uno::Any& rVal, USHORT nMId ) const;
|
|
virtual BOOL PutValue( const com::sun::star::uno::Any& rVal, USHORT nMId );
|
|
};
|
|
|
|
inline BOOL SwUserFieldType::IsValid() const
|
|
{ return bValidValue; }
|
|
|
|
inline void SwUserFieldType::ChgValid( BOOL bNew )
|
|
{ bValidValue = bNew; }
|
|
|
|
inline double SwUserFieldType::GetValue() const
|
|
{ return nValue; }
|
|
|
|
inline void SwUserFieldType::SetValue(const double nVal)
|
|
{ nValue = nVal; }
|
|
|
|
inline USHORT SwUserFieldType::GetType() const
|
|
{ return nType; }
|
|
|
|
inline void SwUserFieldType::SetType(USHORT nSub)
|
|
{
|
|
nType = nSub;
|
|
EnableFormat(!(nSub & nsSwGetSetExpType::GSE_STRING));
|
|
}
|
|
|
|
/*--------------------------------------------------------------------
|
|
Beschreibung: Benutzerfelder
|
|
--------------------------------------------------------------------*/
|
|
|
|
class SwUserField : public SwValueField
|
|
{
|
|
USHORT nSubType;
|
|
|
|
public:
|
|
SwUserField(SwUserFieldType*, USHORT nSub = 0, sal_uInt32 nFmt = 0);
|
|
|
|
virtual USHORT GetSubType() const;
|
|
virtual void SetSubType(USHORT nSub);
|
|
|
|
virtual double GetValue() const;
|
|
virtual void SetValue( const double& rVal );
|
|
|
|
virtual String Expand() const;
|
|
virtual SwField* Copy() const;
|
|
virtual String GetCntnt(BOOL bName = FALSE) const;
|
|
|
|
// Name kann nicht geaendert werden
|
|
virtual const String& GetPar1() const;
|
|
|
|
// Inhalt
|
|
virtual String GetPar2() const;
|
|
virtual void SetPar2(const String& rStr);
|
|
virtual BOOL QueryValue( com::sun::star::uno::Any& rVal, USHORT nWhichId ) const;
|
|
virtual BOOL PutValue( const com::sun::star::uno::Any& rVal, USHORT nWhichId );
|
|
};
|
|
|
|
#endif // _USRFLD_HXX
|