mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
96 lines
2.9 KiB
C++
96 lines
2.9 KiB
C++
// -*- mode: c++; c-basic-offset: 4 -*-
|
|
/*
|
|
* Copyright (C) 2006 Maks Orlovich <maksim@kde.org>
|
|
* Copyright (C) 2006 Apple Computer, Inc.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*
|
|
*/
|
|
|
|
#ifndef KJS_JSWrapperObject_h
|
|
#define KJS_JSWrapperObject_h
|
|
|
|
#include "object.h"
|
|
|
|
namespace KJS {
|
|
|
|
/**
|
|
This class is used as a base for classes such as String,
|
|
Number, Boolean and Date which which are wrappers for primitive
|
|
types. These classes stores the internal value, which is the
|
|
actual value represented by the wrapper objects.
|
|
*/
|
|
class JSWrapperObject : public JSObject {
|
|
public:
|
|
JSWrapperObject(JSValue* proto);
|
|
|
|
/**
|
|
* Returns the internal value of the object. This is used for objects such
|
|
* as String and Boolean which are wrappers for native types. The interal
|
|
* value is the actual value represented by the wrapper objects.
|
|
*
|
|
* @see ECMA 8.6.2
|
|
* @return The internal value of the object
|
|
*/
|
|
JSValue* internalValue() const;
|
|
|
|
/**
|
|
* Sets the internal value of the object
|
|
*
|
|
* @see internalValue()
|
|
*
|
|
* @param v The new internal value
|
|
*/
|
|
void setInternalValue(JSValue* v);
|
|
|
|
virtual void mark();
|
|
|
|
/**
|
|
* Returns the prototype this object had during construction
|
|
*/
|
|
JSValue* originalProto() const;
|
|
private:
|
|
JSValue* m_internalValue;
|
|
JSValue* m_originalProto;
|
|
};
|
|
|
|
inline JSWrapperObject::JSWrapperObject(JSValue* proto)
|
|
: JSObject(proto)
|
|
, m_internalValue(0)
|
|
, m_originalProto(proto)
|
|
{
|
|
}
|
|
|
|
inline JSValue* JSWrapperObject::internalValue() const
|
|
{
|
|
return m_internalValue;
|
|
}
|
|
|
|
inline JSValue* JSWrapperObject::originalProto() const
|
|
{
|
|
return m_originalProto;
|
|
}
|
|
|
|
inline void JSWrapperObject::setInternalValue(JSValue* v)
|
|
{
|
|
ASSERT(v);
|
|
m_internalValue = v;
|
|
}
|
|
|
|
} // namespace KJS
|
|
|
|
#endif // KJS_JSWrapperObject_h
|
|
// kate: indent-width 4; replace-tabs on; tab-width 4; space-indent on; hl c++;
|