~kubuntu-members/korundum/4.11

« back to all changes in this revision

Viewing changes to korundum/modules/okular/okular.cpp

  • Committer: Ian Monroe
  • Date: 2010-11-21 15:55:01 UTC
  • Revision ID: git-v1:c37670e4e3c59f5eb2ba112f5341a5e706217f6f
Split up Smoke into Qt and KDE directories. 
Move libsmoke stuff into the generator directory
Split up Ruby into qtruby and korundum directories

svn path=/trunk/KDE/kdebindings/ruby/; revision=1199320

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          okular.cpp  -  Okular ruby extension
 
3
                             -------------------
 
4
    begin                : Thurs May 29 2008
 
5
    copyright            : (C) 2008 by Richard Dale
 
6
    email                : Richard_Dale@tipitina.demon.co.uk
 
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/okular_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 <= okular_Smoke->numClasses; i++) {
 
34
        if (okular_Smoke->classes[i].className && !okular_Smoke->classes[i].external)
 
35
            rb_ary_push(classList, rb_str_new2(okular_Smoke->classes[i].className));
 
36
    }
 
37
    return classList;
 
38
}
 
39
 
 
40
const char*
 
41
resolve_classname_okular(smokeruby_object * o)
 
42
{
 
43
    return qtruby_modules[o->smoke].binding->className(o->classId);
 
44
}
 
45
 
 
46
extern TypeHandler Okular_handlers[];
 
47
 
 
48
extern "C" {
 
49
 
 
50
VALUE okular_module;
 
51
VALUE okular_internal_module;
 
52
 
 
53
static QtRuby::Binding binding;
 
54
 
 
55
Q_DECL_EXPORT void
 
56
Init_okular()
 
57
{
 
58
    init_okular_Smoke();
 
59
 
 
60
    binding = QtRuby::Binding(okular_Smoke);
 
61
 
 
62
    smokeList << okular_Smoke;
 
63
 
 
64
    QtRubyModule module = { "Okular", resolve_classname_okular, 0, &binding };
 
65
    qtruby_modules[okular_Smoke] = module;
 
66
 
 
67
    install_handlers(Okular_handlers);
 
68
 
 
69
    okular_module = rb_define_module("Okular");
 
70
    okular_internal_module = rb_define_module_under(okular_module, "Internal");
 
71
 
 
72
    rb_define_singleton_method(okular_internal_module, "getClassList", (VALUE (*) (...)) getClassList, 0);
 
73
 
 
74
    rb_require("okular/okular.rb");
 
75
    rb_funcall(okular_internal_module, rb_intern("init_all_classes"), 0);
 
76
}
 
77
 
 
78
}