~ubuntu-branches/ubuntu/natty/kdebindings/natty-proposed

« back to all changes in this revision

Viewing changes to ruby/khtml/khtml.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Philip Muskovac
  • Date: 2010-12-07 00:10:46 UTC
  • mfrom: (1.1.42 upstream)
  • Revision ID: james.westby@ubuntu.com-20101207001046-h9gf2h54ym29tgui
Tags: 4:4.5.85-0ubuntu1
* New upstream beta release
* Disable libqwt-ruby1.8 and qwt files in libqt4-ruby1.8.examples
* Add libqtdeclarative-ruby1.8, libsmokeqt3support4-3,
  libsmokeqtdeclarative4-3 and libsmokeqthelp4-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                          khtml.cpp  -  KHTML ruby extension
3
 
                             -------------------
4
 
    begin                : Sat Jun 28 2008
5
 
    copyright            : (C) 2008 by Richard Dale
6
 
    email                : richard.j.dale@gmail.com
7
 
 ***************************************************************************/
8
 
 
9
 
/***************************************************************************
10
 
 *                                                                         *
11
 
 *   This program is free software; you can redistribute it and/or modify  *
12
 
 *   it under the terms of the GNU General Public License as published by  *
13
 
 *   the Free Software Foundation; either version 2 of the License, or     *
14
 
 *   (at your option) any later version.                                   *
15
 
 *                                                                         *
16
 
 ***************************************************************************/
17
 
 
18
 
#include <ruby.h>
19
 
 
20
 
#include <QHash>
21
 
#include <QList>
22
 
#include <QtDebug>
23
 
 
24
 
#include <smoke/khtml_smoke.h>
25
 
 
26
 
#include <qtruby.h>
27
 
 
28
 
#include <iostream>
29
 
 
30
 
static VALUE getClassList(VALUE /*self*/)
31
 
{
32
 
    VALUE classList = rb_ary_new();
33
 
    for (int i = 1; i <= khtml_Smoke->numClasses; i++) {
34
 
        if (khtml_Smoke->classes[i].className && !khtml_Smoke->classes[i].external)
35
 
            rb_ary_push(classList, rb_str_new2(khtml_Smoke->classes[i].className));
36
 
    }
37
 
    return classList;
38
 
}
39
 
 
40
 
const char*
41
 
resolve_classname_khtml(smokeruby_object * o)
42
 
{
43
 
    return qtruby_modules[o->smoke].binding->className(o->classId);
44
 
}
45
 
 
46
 
extern TypeHandler KHTML_handlers[];
47
 
 
48
 
extern "C" {
49
 
 
50
 
VALUE dom_module;
51
 
VALUE khtml_internal_module;
52
 
 
53
 
static QtRuby::Binding binding;
54
 
 
55
 
Q_DECL_EXPORT void
56
 
Init_khtml()
57
 
{
58
 
    init_khtml_Smoke();
59
 
 
60
 
    binding = QtRuby::Binding(khtml_Smoke);
61
 
 
62
 
    smokeList << khtml_Smoke;
63
 
 
64
 
    QtRubyModule module = { "KHTML", resolve_classname_khtml, 0, &binding };
65
 
    qtruby_modules[khtml_Smoke] = module;
66
 
 
67
 
    install_handlers(KHTML_handlers);
68
 
 
69
 
    dom_module = rb_define_module("DOM");
70
 
    khtml_internal_module = rb_define_module_under(dom_module, "Internal");
71
 
 
72
 
    rb_define_singleton_method(khtml_internal_module, "getClassList", (VALUE (*) (...)) getClassList, 0);
73
 
 
74
 
    rb_require("khtml/khtml.rb");
75
 
    rb_funcall(khtml_internal_module, rb_intern("init_all_classes"), 0);
76
 
}
77
 
 
78
 
}