> You can expose them like this:
>
> class com.trolltech.qt.gui::QWidget
> def method_missing(sym)
> if sym.id2name.start_with?("signal_")
> name = sym.id2name[7, sym.id2name.length]
> f = self.getClass.fields.select {|f| f.name == name }.first
> f.get(self)
> else
> nil
> end
> end
> endDoes this work similarly for QAction? _______________________________________________ Qt-jambi-interest mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest
