summaryrefslogtreecommitdiffstats
path: root/kjsembed/qtbindings/qcanvaspixmap_imp.cpp
blob: bc11e8ce45f95eccdb0aabf257e87ae21d950aa7 (plain)
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252



#include <tqcstring.h>
#include <tqimage.h>
#include <tqpainter.h>
#include <tqpalette.h>
#include <tqpixmap.h>
#include <tqfont.h>

#include <kjs/object.h>

#include <kjsembed/global.h>
#include <kjsembed/jsobjectproxy.h>
#include <kjsembed/jsopaqueproxy.h>
#include <kjsembed/jsbinding.h>

#include <tqcanvas.h>
#include "qcanvaspixmap_imp.h"

/**
 * Namespace containing the KJSEmbed library.
 */
namespace KJSEmbed {

TTQCanvasPixmapImp::TQCanvasPixmapImp( KJS::ExecState *exec, int mid, bool constructor )
   : JSProxyImp(exec), id(mid), cons(constructor)
{
}

TTQCanvasPixmapImp::~TQCanvasPixmapImp()
{
}

/**
 * Adds bindings for static methods and enum constants to the specified Object.
 */
void TQCanvasPixmapImp::addStaticBindings( KJS::ExecState *exec, KJS::Object &object )
{
    JSProxy::MethodTable methods[] = {

	{ 0, 0 }
    };

    int idx = 0;
    TTQCString lastName;

    while( methods[idx].name ) {
        if ( lastName != methods[idx].name ) {
            TQCanvasPixmapImp *meth = new TQCanvasPixmapImp( exec, methods[idx].id );
            object.put( exec , methods[idx].name, KJS::Object(meth) );
            lastName = methods[idx].name;
        }
        ++idx;
    }


}

/**
 * Adds bindings for instance methods to the specified Object.
 */
void TQCanvasPixmapImp::addBindings( KJS::ExecState *exec, KJS::Object &object )
{
    JSProxy::MethodTable methods[] = {

        { Method_offsetX_5, "offsetX" },
        { Method_offsetY_6, "offsetY" },
        { Method_setOffset_7, "setOffset" },
	{ 0, 0 }
    };

    int idx = 0;
    TTQCString lastName;

    while( methods[idx].name ) {
        if ( lastName != methods[idx].name ) {
            TQCanvasPixmapImp *meth = new TQCanvasPixmapImp( exec, methods[idx].id );
            object.put( exec , methods[idx].name, KJS::Object(meth) );
            lastName = methods[idx].name;
        }
        ++idx;
    }
}

/**
 * Extract a TTQCanvasPixmap pointer from an Object.
 */
TTQCanvasPixmap *TQCanvasPixmapImp::toTQCanvasPixmap( KJS::Object &self )
{
    JSObjectProxy *ob = JSProxy::toObjectProxy( self.imp() );
    if ( ob ) {
        TTQObject *obj = ob->object();
	if ( obj )
           return dynamic_cast<TTQCanvasPixmap *>( obj );
    }

    JSOpaqueProxy *op = JSProxy::toOpaqueProxy( self.imp() );
    if ( !op )
        return 0;

    if ( op->typeName() != "TTQCanvasPixmap" )
        return 0;

    return op->toNative<TTQCanvasPixmap>();
}

/**
 * Select and invoke the correct constructor.
 */
KJS::Object TQCanvasPixmapImp::construct( KJS::ExecState *exec, const KJS::List &args )
{
   switch( id ) {

         case Constructor_QCanvasPixmap_1:
             return TQCanvasPixmap_1( exec, args );
             break;

         case Constructor_QCanvasPixmap_2:
             return TQCanvasPixmap_2( exec, args );
             break;

         case Constructor_QCanvasPixmap_3:
             return TQCanvasPixmap_3( exec, args );
             break;

         default:
             break;
    }

    TTQString msg = i18n("TQCanvasPixmapCons has no constructor with id '%1'.").arg(id);
    return throwError(exec, msg,KJS::ReferenceError);
}


KJS::Object TQCanvasPixmapImp::TQCanvasPixmap_1( KJS::ExecState *exec, const KJS::List &args )
{

    TTQString arg0 = extractTQString(exec, args, 0);


    // We should now create an instance of the TTQCanvasPixmap object

    TTQCanvasPixmap *ret = new TTQCanvasPixmap(

          arg0 );

	return KJS::Object();
}

KJS::Object TQCanvasPixmapImp::TQCanvasPixmap_2( KJS::ExecState *exec, const KJS::List &args )
{

    TTQImage arg0 = extractTQImage(exec, args, 0);


    // We should now create an instance of the TTQCanvasPixmap object

    TTQCanvasPixmap *ret = new TTQCanvasPixmap(

          arg0 );

	return KJS::Object();

}

KJS::Object TQCanvasPixmapImp::TQCanvasPixmap_3( KJS::ExecState *exec, const KJS::List &args )
{

    TTQPixmap arg0 = extractTQPixmap(exec, args, 0);

    TTQPoint arg1 = extractTQPoint(exec, args, 1);


    // We should now create an instance of the TTQCanvasPixmap object

    TTQCanvasPixmap *ret = new TTQCanvasPixmap(

          arg0,
          arg1 );

	return KJS::Object();

}

KJS::Value TQCanvasPixmapImp::call( KJS::ExecState *exec, KJS::Object &self, const KJS::List &args )
{
    instance = TQCanvasPixmapImp::toTQCanvasPixmap( self );

    switch( id ) {

    case Method_offsetX_5:
        return offsetX_5( exec, self, args );
        break;

    case Method_offsetY_6:
        return offsetY_6( exec, self, args );
        break;

    case Method_setOffset_7:
        return setOffset_7( exec, self, args );
        break;

    default:
        break;
    }

    TTQString msg = i18n( "TQCanvasPixmapImp has no method with id '%1'." ).arg( id );
    return throwError(exec, msg,KJS::ReferenceError);
}


KJS::Value TQCanvasPixmapImp::offsetX_5( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{

      int ret;
      ret = instance->offsetX(  );
      return KJS::Number( ret );

}

KJS::Value TQCanvasPixmapImp::offsetY_6( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{

      int ret;
      ret = instance->offsetY(  );
      return KJS::Number( ret );

}

KJS::Value TQCanvasPixmapImp::setOffset_7( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{

    int arg0 = extractInt(exec, args, 0);

    int arg1 = extractInt(exec, args, 1);

      instance->setOffset(
       arg0,
       arg1 );
      return KJS::Value(); // Returns void

}


} // namespace KJSEmbed

// Local Variables:
// c-basic-offset: 4
// End: