プラットフォーム:
Darwin *- * s-MacBook-Pro.local 11.4.2 Darwinカーネルバージョン11.4.2:Thu Aug 23 16:25:48 PDT 2012; ルート:xnu-1699.32.7〜1 / RELEASE_X86_64 x86_64
ルビー:
ruby 2.0.0p0(2013-02-24リビジョン39474)[x86_64-darwin11.4.2](rvmによってインストール)
Qt:
qt:安定した4.8.4(ボトル入り)、HEAD
コード:
require 'Qt'
class Foo < Qt::Object
signals :my_signal #also tried 'my_signal()'
slots 'my_slot()'
def initialize(parent = nil)
super(parent)
puts "connecting signal and slot"
Qt::Object.connect(self, SIGNAL('my_signal()'), self, SLOT('my_slot()'))
# also tried => connect(self, SIGNAL('my_signal()'), self, SLOT('my_slot()'))
end
def emit_my_signal
puts "sending signal"
emit my_signal
end
def my_slot
puts "received message from signal"
end
end
o = Foo.new
o.emit_my_signal
出力:
connecting signal and slot
sending signal
Qt.debug_level = Qt :: DebugLevel::Highの出力
Munged method names:
QObject$
QObject?
QObject#
candidate list:
QObject* QObject::QObject(QObject*) (smoke: 0 index: 3804)
matching => smoke: 0 index: 3804
QObject* (u) score: 2
match => smoke: 0 index: 3804 score: 2 chosen: 3804
setCurrentMethod(smokeList index: 0, meth index: 3804)
connecting signal and slot
Searching for QObject#connect
Munged method names:
connect#$#$
candidate list:
static bool QObject::connect(const QObject*, const char*, const QObject*, const char*) (smoke: 0 index: 3850)
matching => smoke: 0 index: 3850
const QObject* (QObject) score: 3
const char* (s) score: 1
const QObject* (QObject) score: 3
const char* (s) score: 1
match => smoke: 0 index: 3850 score: 8 chosen: 3850
setCurrentMethod(smokeList index: 0, meth index: 3850)
sending signal
放出は何もしないようです。qtとqtbindingsも再インストールしようとしましたが、まだ問題があります。また、同じマシンで信号とスロットを使用してPyQtを試しましたが、これは魅力のように機能します。
誰かがこれについて何か考えを持っていますか?それはrubyqtbindingsのバグですか、それとも私は何か間違ったことをしましたか?