[Kde-bindings] [Bug 110191] New: QtRuby: use symbols to reference signals and slots
Caleb Tennis
caleb at gentoo.org
Thu Aug 4 21:29:22 UTC 2005
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=110191
Summary: QtRuby: use symbols to reference signals and slots
Product: bindings
Version: unspecified
Platform: unspecified
OS/Version: Linux
Status: NEW
Severity: wishlist
Priority: NOR
Component: general
AssignedTo: kde-bindings kde org
ReportedBy: caleb gentoo org
Version: (using KDE KDE 3.4.2)
Compiler: gcc 4.0.1
OS: Linux
Currently, in QtRuby we do something like this:
class MyClass < Qt::Object
slots 'mySlot()', 'mySecondSlot()'
signals 'mySignal()'
end
It would be nice if for convenience we could do this:
class MyClass < Qt::Object
slots :mySlot, :mySecondSlot
signals :mySignal
end
For signals and slots which take no argument.
More information about the Kde-bindings
mailing list