GNU Octave  4.2.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Namespaces | Macros
GenericEventNotify.h File Reference
#include <QSet>
Include dependency graph for GenericEventNotify.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  QtHandles::GenericEventNotifyReceiver
 
class  QtHandles::GenericEventNotifySender
 

Namespaces

 QtHandles
 

Macros

#define DECLARE_GENERICEVENTNOTIFY_SENDER(T, B)
 

Macro Definition Documentation

#define DECLARE_GENERICEVENTNOTIFY_SENDER (   T,
  B 
)
Value:
class T : public B, public GenericEventNotifySender \
{ \
public: \
T (QWidget* xparent) : B (xparent), GenericEventNotifySender () { } \
~ T (void) { } \
\
bool event (QEvent* evt) \
{ \
bool result = true; \
if (! notifyReceiversBefore (this, evt)) \
result = B::event (evt); \
notifyReceiversAfter (this, evt); \
return result; \
} \
}
F77_RET_T const F77_INT F77_CMPLX const F77_INT F77_CMPLX * B
if(nargin< 2) print_usage()
Definition: cellfun.cc:405
With real return the complex result
Definition: data.cc:3375

Definition at line 85 of file GenericEventNotify.h.