summaryrefslogtreecommitdiffstats
path: root/kjsembed/qtbindings/qpopupmenu_imp.cpp
blob: 1c94776abecd6a0cbb7083f5ebbce339f9d20b30 (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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440



#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 <tqpopupmenu.h>
#include "qpopupmenu_imp.h"

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

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

TQPopupMenuImp::~TQPopupMenuImp()
{
}

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

	{ 0, 0 }
    };

    int idx = 0;
    TQCString lastName;

    while( methods[idx].name ) {
        if ( lastName != methods[idx].name ) {
            TQPopupMenuImp *meth = new TQPopupMenuImp( 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 TQPopupMenuImp::addBindings( KJS::ExecState *exec, KJS::Object &object )
{
    JSProxy::MethodTable methods[] = {

        { Method_popup_3, "popup" },
        { Method_updateItem_4, "updateItem" },
        { Method_setCheckable_5, "setCheckable" },
        { Method_isCheckable_6, "isCheckable" },
        { Method_setFont_7, "setFont" },
        { Method_show_8, "show" },
        { Method_hide_9, "hide" },
        { Method_exec_10, "exec" },
        { Method_exec_11, "exec" },
        { Method_setActiveItem_12, "setActiveItem" },
        { Method_sizeHint_13, "sizeHint" },
        { Method_idAt_14, "idAt" },
        { Method_idAt_15, "idAt" },
        { Method_customWhatsThis_16, "customWhatsThis" },
        { Method_insertTearOffHandle_17, "insertTearOffHandle" },
        { Method_activateItemAt_18, "activateItemAt" },
        { Method_itemGeometry_19, "itemGeometry" },
	{ 0, 0 }
    };

    int idx = 0;
    TQCString lastName;

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

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

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

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

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

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

         case Constructor_QPopupMenu_1:
             return TQPopupMenu_1( exec, args );
             break;

         default:
             break;
    }

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


KJS::Object TQPopupMenuImp::TQPopupMenu_1( KJS::ExecState *exec, const KJS::List &args )
{

    // Unsupported parameter TQWidget *
    return KJS::Object();

    TQWidget * arg0; // Dummy

    const char *arg1 = (args.size() >= 2) ? args[1].toString(exec).ascii() : 0;


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

    TQPopupMenu *ret = new TQPopupMenu(

          arg0,
          arg1 );


}

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

    switch( id ) {

    case Method_popup_3:
        return popup_3( exec, self, args );
        break;

    case Method_updateItem_4:
        return updateItem_4( exec, self, args );
        break;

    case Method_setCheckable_5:
        return setCheckable_5( exec, self, args );
        break;

    case Method_isCheckable_6:
        return isCheckable_6( exec, self, args );
        break;

    case Method_setFont_7:
        return setFont_7( exec, self, args );
        break;

    case Method_show_8:
        return show_8( exec, self, args );
        break;

    case Method_hide_9:
        return hide_9( exec, self, args );
        break;

    case Method_exec_10:
        return exec_10( exec, self, args );
        break;

    case Method_exec_11:
        return exec_11( exec, self, args );
        break;

    case Method_setActiveItem_12:
        return setActiveItem_12( exec, self, args );
        break;

    case Method_sizeHint_13:
        return sizeHint_13( exec, self, args );
        break;

    case Method_idAt_14:
        return idAt_14( exec, self, args );
        break;

    case Method_idAt_15:
        return idAt_15( exec, self, args );
        break;

    case Method_customWhatsThis_16:
        return customWhatsThis_16( exec, self, args );
        break;

    case Method_insertTearOffHandle_17:
        return insertTearOffHandle_17( exec, self, args );
        break;

    case Method_activateItemAt_18:
        return activateItemAt_18( exec, self, args );
        break;

    case Method_itemGeometry_19:
        return itemGeometry_19( exec, self, args );
        break;

    default:
        break;
    }

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


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

    TQPoint arg0 = extractTQPoint(exec, args, 0);

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

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

}

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

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

      instance->updateItem(
       arg0 );
      return KJS::Value(); // Returns void

}

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

    bool arg0 = extractBool(exec, args, 0);

      instance->setCheckable(
       arg0 );
      return KJS::Value(); // Returns void

}

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

      bool ret;
      ret = instance->isCheckable(  );
      return KJS::Boolean( ret );

}

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

    TQFont arg0 = extractTQFont(exec, args, 0);

      instance->setFont(
       arg0 );
      return KJS::Value(); // Returns void

}

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

      instance->show(  );
      return KJS::Value(); // Returns void

}

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

      instance->hide(  );
      return KJS::Value(); // Returns void

}

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

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

}

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

    TQPoint arg0 = extractTQPoint(exec, args, 0);

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

      int ret;
      ret = instance->exec(
       arg0,
       arg1 );
      return KJS::Number( ret );

}

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

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

      instance->setActiveItem(
       arg0 );
      return KJS::Value(); // Returns void

}

KJS::Value TQPopupMenuImp::sizeHint_13( KJS::ExecState *exec, KJS::Object &obj, const KJS::List &args )
{
    TQSize ret;
      ret = instance->sizeHint(  );

       return convertToValue( exec, ret );

}

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

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

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

}

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

    TQPoint arg0 = extractTQPoint(exec, args, 0);

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

}

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

      bool ret;
      ret = instance->customWhatsThis(  );
      return KJS::Boolean( ret );

}

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

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

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

      int ret;
      ret = instance->insertTearOffHandle(
       arg0,
       arg1 );
      return KJS::Number( ret );

}

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

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

      instance->activateItemAt(
       arg0 );
      return KJS::Value(); // Returns void

}

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

    int arg0 = extractInt(exec, args, 0);
        TQRect ret;
      ret = instance->itemGeometry(
       arg0 );

       return convertToValue( exec, ret );

}


} // namespace KJSEmbed

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