|
|
@ -99,7 +99,7 @@ VALUE qt_module = Qnil;
|
|
|
|
VALUE qext_scintilla_module = Qnil;
|
|
|
|
VALUE qext_scintilla_module = Qnil;
|
|
|
|
VALUE kde_module = Qnil;
|
|
|
|
VALUE kde_module = Qnil;
|
|
|
|
VALUE tdeparts_module = Qnil;
|
|
|
|
VALUE tdeparts_module = Qnil;
|
|
|
|
VALUE kio_module = Qnil;
|
|
|
|
VALUE tdeio_module = Qnil;
|
|
|
|
VALUE kns_module = Qnil;
|
|
|
|
VALUE kns_module = Qnil;
|
|
|
|
VALUE dom_module = Qnil;
|
|
|
|
VALUE dom_module = Qnil;
|
|
|
|
VALUE kontact_module = Qnil;
|
|
|
|
VALUE kontact_module = Qnil;
|
|
|
@ -113,7 +113,7 @@ VALUE qvariant_class = Qnil;
|
|
|
|
VALUE tdeconfigskeleton_class = Qnil;
|
|
|
|
VALUE tdeconfigskeleton_class = Qnil;
|
|
|
|
VALUE tdeconfigskeleton_itemenum_class = Qnil;
|
|
|
|
VALUE tdeconfigskeleton_itemenum_class = Qnil;
|
|
|
|
VALUE tdeconfigskeleton_itemenum_choice_class = Qnil;
|
|
|
|
VALUE tdeconfigskeleton_itemenum_choice_class = Qnil;
|
|
|
|
VALUE kio_udsatom_class = Qnil;
|
|
|
|
VALUE tdeio_udsatom_class = Qnil;
|
|
|
|
VALUE twin_class = Qnil;
|
|
|
|
VALUE twin_class = Qnil;
|
|
|
|
VALUE konsole_part_class = Qnil;
|
|
|
|
VALUE konsole_part_class = Qnil;
|
|
|
|
bool application_terminated = false;
|
|
|
|
bool application_terminated = false;
|
|
|
@ -2699,10 +2699,10 @@ static TQRegExp * scope_op = 0;
|
|
|
|
klass = rb_define_class_under(kns_module, package+strlen("KNS::"), base_class);
|
|
|
|
klass = rb_define_class_under(kns_module, package+strlen("KNS::"), base_class);
|
|
|
|
rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1);
|
|
|
|
rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1);
|
|
|
|
} else if (packageName.startsWith("TDEIO::")) {
|
|
|
|
} else if (packageName.startsWith("TDEIO::")) {
|
|
|
|
klass = rb_define_class_under(kio_module, package+strlen("TDEIO::"), base_class);
|
|
|
|
klass = rb_define_class_under(tdeio_module, package+strlen("TDEIO::"), base_class);
|
|
|
|
rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1);
|
|
|
|
rb_define_singleton_method(klass, "new", (VALUE (*) (...)) _new_kde, -1);
|
|
|
|
if (packageName == "TDEIO::UDSAtom") {
|
|
|
|
if (packageName == "TDEIO::UDSAtom") {
|
|
|
|
kio_udsatom_class = klass;
|
|
|
|
tdeio_udsatom_class = klass;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (packageName.startsWith("DOM::")) {
|
|
|
|
} else if (packageName.startsWith("DOM::")) {
|
|
|
|
klass = rb_define_class_under(dom_module, package+strlen("DOM::"), base_class);
|
|
|
|
klass = rb_define_class_under(dom_module, package+strlen("DOM::"), base_class);
|
|
|
@ -2839,9 +2839,9 @@ set_new_kde(VALUE (*new_kde) (int, VALUE *, VALUE))
|
|
|
|
rb_define_singleton_method(kns_module, "method_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|
rb_define_singleton_method(kns_module, "method_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|
rb_define_singleton_method(kns_module, "const_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|
rb_define_singleton_method(kns_module, "const_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|
|
|
|
|
|
|
|
|
kio_module = rb_define_module("KIO");
|
|
|
|
tdeio_module = rb_define_module("KIO");
|
|
|
|
rb_define_singleton_method(kio_module, "method_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|
rb_define_singleton_method(tdeio_module, "method_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|
rb_define_singleton_method(kio_module, "const_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|
rb_define_singleton_method(tdeio_module, "const_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|
|
|
|
|
|
|
|
|
dom_module = rb_define_module("DOM");
|
|
|
|
dom_module = rb_define_module("DOM");
|
|
|
|
rb_define_singleton_method(dom_module, "method_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|
rb_define_singleton_method(dom_module, "method_missing", (VALUE (*) (...)) kde_module_method_missing, -1);
|
|
|
|