aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken2/tests/libsample/objecttype.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shiboken2/tests/libsample/objecttype.cpp')
-rw-r--r--sources/shiboken2/tests/libsample/objecttype.cpp312
1 files changed, 0 insertions, 312 deletions
diff --git a/sources/shiboken2/tests/libsample/objecttype.cpp b/sources/shiboken2/tests/libsample/objecttype.cpp
deleted file mode 100644
index 855c08611..000000000
--- a/sources/shiboken2/tests/libsample/objecttype.cpp
+++ /dev/null
@@ -1,312 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** Contact: https://www.qt.io/licensing/
-**
-** This file is part of the test suite of Qt for Python.
-**
-** $QT_BEGIN_LICENSE:GPL-EXCEPT$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and The Qt Company. For licensing terms
-** and conditions see https://www.qt.io/terms-conditions. For further
-** information use the contact form at https://www.qt.io/contact-us.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3 as published by the Free Software
-** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
-** included in the packaging of this file. Please review the following
-** information to ensure the GNU General Public License requirements will
-** be met: https://www.gnu.org/licenses/gpl-3.0.html.
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "objecttype.h"
-#include "objecttypelayout.h"
-#include <algorithm>
-#include <iostream>
-#include <string>
-#include <assert.h>
-
-using namespace std;
-
-ObjectType::ObjectType(ObjectType* parent) : m_parent(nullptr), m_layout(nullptr), m_call_id(-1)
-{
- setParent(parent);
-}
-
-ObjectType::~ObjectType()
-{
- for (ObjectTypeList::iterator child_iter = m_children.begin();
- child_iter != m_children.end(); ++child_iter)
- delete *child_iter;
-}
-
-ObjectType*
-ObjectType::createWithChild()
-{
- ObjectType* parent = create();
- ObjectType* child = create();
- child->setObjectName("child");
- child->setParent(parent);
- return parent;
-}
-
-void
-ObjectType::removeChild(ObjectType* child)
-{
- if (!child)
- return;
-
- ObjectTypeList::iterator child_iter = std::find(m_children.begin(), m_children.end(), child);
- if (child_iter != m_children.end()) {
- m_children.erase(child_iter);
- child->m_parent = nullptr;
- }
-}
-
-ObjectType*
-ObjectType::takeChild(ObjectType* child)
-{
- if (!child)
- return nullptr;
-
- ObjectTypeList::iterator child_iter = std::find(m_children.begin(), m_children.end(), child);
- if (child_iter != m_children.end()) {
- m_children.erase(child_iter);
- child->m_parent = nullptr;
- return child;
- }
- return nullptr;
-}
-
-ObjectType*
-ObjectType::takeChild(const Str& name)
-{
- return takeChild(findChild(name));
-
-}
-
-ObjectType*
-ObjectType::findChild(const Str& name)
-{
- for (ObjectTypeList::iterator child_iter = m_children.begin();
- child_iter != m_children.end(); ++child_iter) {
-
- if ((*child_iter)->objectName() == name)
- return *child_iter;
- }
- return nullptr;
-}
-
-void
-ObjectType::killChild(const Str& name)
-{
- for (ObjectTypeList::iterator child_iter = m_children.begin();
- child_iter != m_children.end(); ++child_iter) {
-
- if ((*child_iter)->objectName() == name) {
- ObjectType* child = *child_iter;
- removeChild(child);
- delete child;
- break;
- }
- }
-}
-
-void
-ObjectType::setParent(ObjectType* parent)
-{
- if (m_parent == parent)
- return;
-
- if (m_parent)
- m_parent->removeChild(this);
-
- m_parent = parent;
- if (m_parent)
- m_parent->m_children.push_back(this);
-}
-
-void
-ObjectType::setObjectName(const Str& name)
-{
- m_objectName = name;
-}
-
-Str
-ObjectType::objectName() const
-{
- return m_objectName;
-}
-
-bool
-ObjectType::causeEvent(Event::EventType eventType)
-{
- Event e(eventType);
- return event(&e);
-}
-
-bool
-ObjectType::event(Event* event)
-{
- return true;
-}
-
-int
-ObjectType::processEvent(ObjectTypeList objects, Event *event)
-{
- int evaluated = 0;
-
- for (ObjectTypeList::iterator obj_iter = objects.begin();
- obj_iter != objects.end(); ++obj_iter) {
- if((*obj_iter)->event(event))
- evaluated++;
- }
-
- return evaluated;
-
-}
-
-void
-ObjectType::callInvalidateEvent(Event* event)
-{
- invalidateEvent(event);
-}
-
-void
-ObjectType::setLayout(ObjectTypeLayout* l)
-{
- if (!l) {
- cerr << "[WARNING] ObjectType::setLayout: Cannot set layout to 0." << endl;
- return;
- }
-
- if (layout()) {
- if (layout() != l) {
- cerr << "[WARNING] ObjectType::setLayout: Attempting to set ObjectTypeLayout '" << l->objectName().cstring();
- cerr << "' on ObjectType '" << objectName().cstring() << "', which already has a layout." << endl;
- }
- return;
- }
-
- ObjectType* oldParent = l->parent();
- if (oldParent && oldParent != this) {
- if (oldParent->isLayoutType()) {
- cerr << "[WARNING] ObjectType::setLayout: Attempting to set ObjectTypeLayout '" << l->objectName().cstring();
- cerr << "' on ObjectType '" << objectName().cstring() << "', when the ObjectTypeLayout already has a parent layout." << endl;
- return;
- } else {
- // Steal the layout from an ObjectType parent.
- oldParent->takeLayout();
- }
- }
-
- m_layout = l;
- if (oldParent != this) {
- l->setParent(this);
- l->reparentChildren(this);
- }
-}
-
-ObjectTypeLayout* ObjectType::takeLayout()
-{
- ObjectTypeLayout* l = layout();
- if (!l)
- return nullptr;
- m_layout = nullptr;
- l->setParent(0);
- return l;
-}
-
-unsigned int
-objectTypeHash(const ObjectType* objectType)
-{
- return reinterpret_cast<std::size_t>(objectType);
-}
-
-unsigned char
-ObjectType::callWithEnum(const Str& prefix, Event::EventType type, unsigned char value){
- return value*value;
-}
-
-unsigned char
-ObjectType::callWithEnum(const Str& prefix, unsigned char value) {
- return value;
-}
-
-void
-ObjectType::setObjectSplittedName(const char*, const Str& prefix, const Str& suffix)
-{
- std::string result(prefix.cstring());
- result += suffix.cstring();
- m_objectName = result.c_str();
-}
-
-void
-ObjectType::setObjectNameWithSize(const char*, int size, const Str& name)
-{
- std::string result(name.cstring(), size);
- m_objectName = result.c_str();
-}
-
-void
-ObjectType::setObjectNameWithSize(const Str& name, int size)
-{
- setObjectNameWithSize("", size, name);
-}
-
-void ObjectType::setObject(ObjectType *)
-{
- m_call_id = 0;
-}
-
-void ObjectType::setObject(const Null&)
-{
- m_call_id = 1;
-}
-
-int ObjectType::callId() const
-{
- return m_call_id;
-}
-
-
-void ObjectType::callVirtualCreateChild()
-{
- ObjectType* fake_parent = new ObjectType();
- ObjectType* fake_child = createChild(fake_parent);
- assert(fake_child->isPython());
- (void)fake_child;
- delete fake_parent;
-}
-
-ObjectType* ObjectType::createChild(ObjectType* parent)
-{
- return new ObjectType(parent);
-}
-
-std::size_t ObjectType::createObjectType()
-{
- void* addr = new ObjectType();
- return (std::size_t) addr;
-}
-
-OtherBase::~OtherBase()
-{
-}
-
-ObjectTypeDerived::~ObjectTypeDerived()
-{
-}
-
-bool
-ObjectTypeDerived::event(Event* event)
-{
- return true;
-}