1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
/* This file is part of the KDE project
Copyright (C) 2006 Jaroslaw Staniek <[email protected]>
This program 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 program 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 program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "widgetwithsubpropertiesinterface.h"
#include <tqmetaobject.h>
#include <tqasciidict.h>
#include <kdebug.h>
using namespace KFormDesigner;
WidgetWithSubpropertiesInterface::WidgetWithSubpropertiesInterface()
{
}
WidgetWithSubpropertiesInterface::~WidgetWithSubpropertiesInterface()
{
}
void WidgetWithSubpropertiesInterface::setSubwidget(TQWidget *widget)
{
m_subwidget = widget;
m_subproperies.clear();
TQAsciiDict<char> addedSubproperies(1024);
if (m_subwidget) {
//remember properties in the subwidget that are not present in the tqparent
for( TQMetaObject *tqmetaObject = m_subwidget->tqmetaObject(); tqmetaObject; tqmetaObject = tqmetaObject->tqsuperClass()) {
const int numProperties = tqmetaObject->numProperties();
for (int i = 0; i < numProperties; i++) {
const char *propertyName = tqmetaObject->property( i )->name();
if (dynamic_cast<TQObject*>(this)->tqmetaObject()->findProperty( propertyName, true )==-1
&& !addedSubproperies.find( propertyName ) )
{
m_subproperies.append( propertyName );
addedSubproperies.insert( propertyName, (char*)1 );
kdDebug() << propertyName << endl;
}
}
}
qHeapSort( m_subproperies );
}
}
TQWidget* WidgetWithSubpropertiesInterface::subwidget() const
{
return m_subwidget;
}
TQValueList<TQCString> WidgetWithSubpropertiesInterface::subproperies() const
{
return m_subproperies;
}
const TQMetaProperty *WidgetWithSubpropertiesInterface::findMetaSubproperty(const char * name) const
{
if (!m_subwidget || m_subproperies.find(name) == m_subproperies.constEnd()) {
return 0;
}
const int index = m_subwidget->tqmetaObject()->findProperty( name, true );
if (index==-1)
return 0;
return m_subwidget->tqmetaObject()->property( index, true );
}
TQVariant WidgetWithSubpropertiesInterface::subproperty( const char * name, bool &ok ) const
{
if (!m_subwidget || m_subproperies.find(name) == m_subproperies.constEnd()) {
ok = false;
return TQVariant();
}
ok = true;
return m_subwidget->property( name );
}
bool WidgetWithSubpropertiesInterface::setSubproperty( const char * name, const TQVariant & value )
{
if (!m_subwidget || m_subproperies.find(name) == m_subproperies.end()) {
return false;
}
return m_subwidget->setProperty( name, value );
}
|