Untitled edit

Signals and slots, Observer pattern and Signal programming cover very similar topics. Maybe we should merge some of them. What do y'all think? Chronist 14:46, 7 October 2005 (UTC)Reply

this is just the observer pattern edit

AfD Wikidrone 22:34, 2 June 2007 (UTC)Reply

Signal slot mechanism isn't introduced with Qt, you should cite a precise source for this.

Anyway these are examples of C++ applications that uses the mechanism since 1992 http://portal.acm.org/citation.cfm?id=1125087&dl=GUIDE&coll=GUIDE&CFID=42502829&CFTOKEN=12543122

or 2004 http://portal.acm.org/citation.cfm?id=192500&dl=GUIDE&coll=GUIDE&CFID=42502829&CFTOKEN=12543122

Previous work can also exist, but I have only found these as a part of the state-of-the-art of my project.

Really a stub? edit

This article is marked as stub but looks decently good to me. It's not that we want to create a manual of programming, I guess.--Qgil (talk) 15:53, 15 April 2011 (UTC)Reply

"No common implementation in plain C" edit

GLib seems pretty commonly used to me...

Shouldn't this page also discuss advantages and inconveniences of signal/slot vs callback mechanism? edit

  • if a signal is misspelled, there won't be any warning, and nothing will happen at runtime. possibly a warning will be issued to indicate that a slot was not found.
  • callbacks explicitly indicate who is interacting. for example, a (C++) class could declare an interface (e.g. inner class) that it expects its callees implement. This enforces that all necessary callbacks are effectively implemented (otherwise the compiler or linker will complain about missing code).
  • signals/slots allow for an arbitrary set of connections — Preceding unsigned comment added by Axd (talkcontribs) 09:01, 1 August 2012 (UTC)Reply

Isn't this the old Microsoft Windows 2.x/3.x/etc message passing mechanism with more syntactical sugar? edit

If you've ever programmed using the old Windows Software Development Kit or from Charles Petzold's old "Programming Windows" book(s), you would recognize this as such (or similar).