2004/05/26 15:18:26 dvo 1.1.2.4: #114856# continue XForms implementation Issue number: Submitted by: Reviewed by: 2004/04/23 10:07:23 dvo 1.1.2.3: #114856# implement XValidator; also defer control updates when setting data on the instance Issue number: Submitted by: Reviewed by: 2004/04/22 09:13:36 dvo 1.1.2.2: #114856# improve dynamic binding capability Issue number: Submitted by: Reviewed by: 2004/03/18 17:07:43 dvo 1.1.2.1: #114856# continue XForms implementation
170 lines
5.6 KiB
C++
170 lines
5.6 KiB
C++
/*************************************************************************
|
|
*
|
|
* $RCSfile: mip.cxx,v $
|
|
*
|
|
* $Revision: 1.2 $
|
|
*
|
|
* last change: $Author: obo $ $Date: 2004-11-16 10:53:06 $
|
|
*
|
|
* 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): _______________________________________
|
|
*
|
|
*
|
|
************************************************************************/
|
|
|
|
#include "mip.hxx"
|
|
|
|
|
|
namespace xforms
|
|
{
|
|
|
|
|
|
MIP::MIP()
|
|
{
|
|
resetReadonly();
|
|
resetRequired();
|
|
resetRelevant();
|
|
resetConstraint();
|
|
resetCalculate();
|
|
resetTypeName();
|
|
}
|
|
|
|
MIP::~MIP() {}
|
|
|
|
void MIP::inherit( const MIP& rMip )
|
|
{
|
|
if( ! mbHasReadonly )
|
|
{
|
|
mbHasReadonly = rMip.hasReadonly();
|
|
mbReadonly = rMip.isReadonly();
|
|
}
|
|
if( ! mbHasRequired )
|
|
{
|
|
mbHasRequired = rMip.hasRequired();
|
|
mbRequired = rMip.isRequired();
|
|
}
|
|
if( ! mbHasRelevant )
|
|
{
|
|
mbHasRelevant = rMip.hasRelevant();
|
|
mbRelevant = rMip.isRelevant();
|
|
}
|
|
if( ! mbHasConstraint )
|
|
{
|
|
mbHasConstraint = rMip.hasConstraint();
|
|
mbConstraint = rMip.isConstraint();
|
|
msConstraintExplanation = rMip.getConstraintExplanation();
|
|
}
|
|
if( ! mbHasCalculate )
|
|
{
|
|
mbHasCalculate = rMip.hasCalculate();
|
|
}
|
|
if( ! mbHasTypeName )
|
|
{
|
|
mbHasTypeName = rMip.hasTypeName();
|
|
msTypeName = rMip.getTypeName();
|
|
}
|
|
}
|
|
|
|
void MIP::join( const MIP& rMip )
|
|
{
|
|
// TODO: inherit only inheritable MIPs...
|
|
inherit( rMip );
|
|
}
|
|
|
|
void MIP::set( const MIP& rMip )
|
|
{
|
|
*this = rMip;
|
|
}
|
|
|
|
|
|
bool MIP::hasInfo() const
|
|
{
|
|
return mbHasReadonly || mbHasRequired || mbHasRelevant
|
|
|| mbHasConstraint || mbHasCalculate || mbHasTypeName;
|
|
}
|
|
|
|
bool MIP::hasReadonly() const { return mbHasReadonly; }
|
|
bool MIP::isReadonly() const { return mbHasReadonly ? mbReadonly : mbHasCalculate; }
|
|
void MIP::setReadonly( bool b ) { mbHasReadonly = true; mbReadonly = b; }
|
|
void MIP::resetReadonly() { mbHasReadonly = false; mbReadonly = false; }
|
|
|
|
bool MIP::hasRequired() const { return mbHasRequired; }
|
|
bool MIP::isRequired() const { return mbRequired; }
|
|
void MIP::setRequired( bool b ) { mbHasRequired = true; mbRequired = b; }
|
|
void MIP::resetRequired() { mbHasRequired = false; mbRequired = false; }
|
|
|
|
bool MIP::hasRelevant() const { return mbHasRelevant; }
|
|
bool MIP::isRelevant() const { return mbRelevant; }
|
|
void MIP::setRelevant( bool b ) { mbHasRelevant = true; mbRelevant = b; }
|
|
void MIP::resetRelevant() { mbHasRelevant = false; mbRelevant = true; }
|
|
|
|
bool MIP::hasConstraint() const { return mbHasConstraint; }
|
|
bool MIP::isConstraint() const { return mbConstraint; }
|
|
void MIP::setConstraint( bool b ) { mbHasConstraint = true; mbConstraint = b; msConstraintExplanation = rtl::OUString(); }
|
|
void MIP::resetConstraint() { mbHasConstraint = false; mbConstraint = true; msConstraintExplanation = rtl::OUString(); }
|
|
|
|
void MIP::setConstraintExplanation( const rtl::OUString& s ) { msConstraintExplanation = s; }
|
|
rtl::OUString MIP::getConstraintExplanation() const { return msConstraintExplanation; }
|
|
|
|
|
|
bool MIP::hasCalculate() const { return mbHasCalculate; }
|
|
void MIP::setHasCalculate( bool b ) { mbHasCalculate = b; }
|
|
void MIP::resetCalculate() { mbHasCalculate = false; }
|
|
|
|
bool MIP::hasTypeName() const { return mbHasTypeName; }
|
|
rtl::OUString MIP::getTypeName() const { return msTypeName; }
|
|
void MIP::setTypeName( const rtl::OUString& s ) { msTypeName = s; mbHasTypeName = true; }
|
|
void MIP::resetTypeName() { msTypeName = rtl::OUString(); mbHasTypeName = false; }
|
|
|
|
|
|
|
|
|
|
} // namespace xforms
|