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
|
/****************************************************************************
** KviKvsAction meta object code from reading C++ file 'kvi_kvs_action.h'
**
** Created: Mon Feb 25 00:11:56 2008
** by: The TQt TQMOC ($Id: qt/tqmoc_yacc.cpp 3.3.8 edited Feb 2 14:59 $)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#undef TQT_NO_COMPAT
#include "kvi_kvs_action.h"
#include <tqmetaobject.h>
#include <tqapplication.h>
#include <private/tqucomextra_p.h>
#if !defined(TQ_TQMOC_OUTPUT_REVISION) || (TQ_TQMOC_OUTPUT_REVISION != 26)
#error "This file was generated using the tqmoc from 3.3.8. It"
#error "cannot be used with the include files from this version of TQt."
#error "(The tqmoc has changed too much.)"
#endif
const char *KviKvsAction::className() const
{
return "KviKvsAction";
}
TQMetaObject *KviKvsAction::metaObj = 0;
static TQMetaObjectCleanUp cleanUp_KviKvsAction( "KviKvsAction", &KviKvsAction::staticMetaObject );
#ifndef TQT_NO_TRANSLATION
TQString KviKvsAction::tr( const char *s, const char *c )
{
if ( tqApp )
return tqApp->translate( "KviKvsAction", s, c, TQApplication::DefaultCodec );
else
return TQString::tqfromLatin1( s );
}
#ifndef TQT_NO_TRANSLATION_UTF8
TQString KviKvsAction::trUtf8( const char *s, const char *c )
{
if ( tqApp )
return tqApp->translate( "KviKvsAction", s, c, TQApplication::UnicodeUTF8 );
else
return TQString::fromUtf8( s );
}
#endif // TQT_NO_TRANSLATION_UTF8
#endif // TQT_NO_TRANSLATION
TQMetaObject* KviKvsAction::staticMetaObject()
{
if ( metaObj )
return metaObj;
TQMetaObject* tqparentObject = KviAction::staticMetaObject();
metaObj = TQMetaObject::new_metaobject(
"KviKvsAction", tqparentObject,
0, 0,
0, 0,
#ifndef TQT_NO_PROPERTIES
0, 0,
0, 0,
#endif // TQT_NO_PROPERTIES
0, 0 );
cleanUp_KviKvsAction.setMetaObject( metaObj );
return metaObj;
}
void* KviKvsAction::tqqt_cast( const char* clname )
{
if ( !qstrcmp( clname, "KviKvsAction" ) )
return this;
return KviAction::tqqt_cast( clname );
}
bool KviKvsAction::qt_invoke( int _id, TQUObject* _o )
{
return KviAction::qt_invoke(_id,_o);
}
bool KviKvsAction::qt_emit( int _id, TQUObject* _o )
{
return KviAction::qt_emit(_id,_o);
}
#ifndef TQT_NO_PROPERTIES
bool KviKvsAction::qt_property( int id, int f, TQVariant* v)
{
return KviAction::qt_property( id, f, v);
}
bool KviKvsAction::qt_static_property( TQObject* , int , int , TQVariant* ){ return FALSE; }
#endif // TQT_NO_PROPERTIES
|