0

私はハンドラー関数を持っています:

bool test( const Glib::ustring& uri )
{
    MessageBoxA( NULL, "hello", NULL, 0 );
    return true;
}

そして私は接続します

label2.set_markup( "<a href=\"http://www.google.com\">Google</a>" );
sigc::connection conn = label2.signal_activate_link().connect( sigc::ptr_fun( test ) );

なぜそれがうまくいかないのか分かりません。Googleをクリックすると、私のものではなく、デフォルトのURIハンドラーを使用していることがわかります。

4

1 に答える 1

1

デフォルトの前に関数が呼び出されたことを確認する必要がありました。デフォルトのシグナルハンドラーがtrueを返すので、シグナルが伝播されないのはどうなるのでしょうか。

  /** Connects a signal to a signal handler.
   * For instance, connect( sigc::mem_fun(*this, &TheClass::on_something) );
   *
   * @param slot The signal handler, usually created with sigc::mem_fun(), or sigc::ptr_fun().
   * @param after Whether this signal handler should be called before or after the default signal handler.
   */
  sigc::connection connect(const SlotType& slot, bool after = true)
    { return sigc::connection(connect_(slot, after)); }

正しいコードは次のとおりです。

label2.signal_activate_link().connect( sigc::ptr_fun( test ), false );
于 2012-03-15T19:36:56.383 に答える