Rajagopalan Srinivasan wrote: > In qtada, I believe the Q_Signal pragma will result in such a procedure > being generated by amoc in the moc package. So my own signals, it seems it > will work. I cant figure out how to get at this for an inherited signal. > > for example Abstract_Table_Model has a bunch of signals which I may like to > signal as a derived class. Am not sure if qtada has the bindings for these > signals. > Each signal of Qt class is mapped to Emit_<signal name> procedure in QtAda, so you can emit signal in the inherited class. Note, in the case of QAbstractItemModel not all signals intended to be emitted by programmer; for example, user code must not emit rowsInserted signal, instead it must call beginInsertRows and endInsertRows subprograms, so which signal you want to emit?
_______________________________________________ qtada-users mailing list [email protected] http://lists.qtada.com/mailman/listinfo/qtada-users_lists.qtada.com
