GNU Octave  4.0.0
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; \
} \
}
int bool
Definition: mex.h:56
F77_RET_T const octave_idx_type Complex const octave_idx_type Complex * B
Definition: CmplxGEPBAL.cc:39

Definition at line 85 of file GenericEventNotify.h.