/* -*- 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 . */ #ifndef INCLUDED_RSC_INC_RSCCLASS_HXX #define INCLUDED_RSC_INC_RSCCLASS_HXX #include #include #include #include class RscClass : public RscTop { protected: struct RscClassInst { sal_uLong nVarDflt; }; struct VARTYPE_STRUCT { Atom nVarName; // variable name RSCVAR nVarType; // variable type sal_uInt32 nMask; // bit mask sal_uInt32 nOffset; // start of instance data RscTop * pClass; // class CLASS_DATA pDefault; // pointer to default data Atom nDataBaseName;//name of foreign data area }; sal_uInt32 nSuperSize; // size of super class instance data sal_uInt32 nSize; // size of this class instance data // with super class sal_uInt32 nEntries; // entries in pVarTypeList VARTYPE_STRUCT * pVarTypeList; // variable list RSCINST GetInstData( CLASS_DATA pData, sal_uInt32 nEle, bool bGetCopy = false ); CLASS_DATA GetDfltData( sal_uInt32 nEle ); bool IsDflt( CLASS_DATA pData, sal_uInt32 nEle ); bool IsValueDflt( CLASS_DATA pData, sal_uInt32 nEle ); void SetVarDflt( CLASS_DATA pData, sal_uInt32 nEle, bool bSet ); sal_Int32 GetCorrectValues( const RSCINST & rInst, sal_uInt32 nVarPos, sal_uInt32 nTupelIdx, RscTypCont * pTC ); public: RscClass( Atom nId, sal_uInt32 nTypId, RscTop * pSuperCl ); virtual ~RscClass(); virtual RSCCLASS_TYPE GetClassType() const override; void Pre_dtor() override; ERRTYPE SetVariable( Atom nVarName, RscTop * pClass, RSCINST * pDflt, RSCVAR nVarType, sal_uInt32 nMask, Atom nDataBaseName ) override; virtual void EnumVariables( void * pData, VarEnumCallbackProc ) override; RSCINST GetVariable( const RSCINST & rInst, Atom nVarName, const RSCINST & rInitInst, bool bInitDflt = false, RscTop * pCreateClass = nullptr ) override; RSCINST GetCopyVar( const RSCINST & rInst, Atom nVarName ) override; // gives the class size in bytes sal_uInt32 Size() override { return nSize; } bool IsConsistent( const RSCINST & rInst ) override; void SetToDefault( const RSCINST & rInst ) override; bool IsDefault( const RSCINST & rInst ) override; bool IsValueDefault( const RSCINST & rInst, CLASS_DATA pDef ) override; void SetDefault( const RSCINST & rData, Atom nVarId ) override; using RscTop::GetDefault; RSCINST GetDefault( Atom nVarId ) override; RSCINST Create( RSCINST * pInst, const RSCINST & rDflt, bool ) override; void Destroy( const RSCINST & rInst ) override; void WriteSrc( const RSCINST & rInst, FILE * fOutput, RscTypCont * pTC, sal_uInt32 nTab, const char * ) override; ERRTYPE WriteInstRc( const RSCINST & rInst, RscWriteRc & aMem, RscTypCont * pTC, sal_uInt32, bool bExtra ); ERRTYPE WriteRc( const RSCINST & rInst, RscWriteRc & aMem, RscTypCont * pTC, sal_uInt32, bool bExtra ) override; }; class RscSysDepend : public RscClass { public: RscSysDepend( Atom nId, sal_uInt32 nTypId, RscTop * pSuper ); ERRTYPE WriteSysDependRc( const RSCINST &, RscWriteRc & aMem, RscTypCont * pTC, sal_uInt32, bool bExtra ); ERRTYPE WriteRc( const RSCINST &, RscWriteRc & aMem, RscTypCont * pTC, sal_uInt32, bool bExtra ) override; }; class RscTupel : public RscClass { public: RscTupel( Atom nId, sal_uInt32 nTypId, RscTop * pSuper ); RSCINST GetTupelVar( const RSCINST & rInst, sal_uInt32 nPos, const RSCINST & rInitInst ) override; void WriteSrc( const RSCINST & rInst, FILE * fOutput, RscTypCont * pTC, sal_uInt32 nTab, const char * ) override; }; #endif // INCLUDED_RSC_INC_RSCCLASS_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */