Native Widget Holder (can be used to embed QWidget on Qt)
Definition at line 2286 of file fbcontrols.h.
#include <fbcontrols.h>

Public Types |
|
| typedef void *(* | WidgetCreator )(void *pParent) |
| typedef void* (*WidgetCreator)(void*
pParent); |
|
Public Member Functions |
|
| FBWidgetHolder () | |
| Constructor. |
|
| void | SetCreator (WidgetCreator pCreatorFunction) |
| Add a function that creates a native widget
(a QWidget on Qt platform) On Qt, this creator function will take a
void* (which can be cast as a QWidget) as the Widget parent On Qt,
this creator function should return a void* (which will be a
QWidget) that will be the newly created widget. |
|
| typedef void*(* WidgetCreator)(void *pParent) |
typedef void* (*WidgetCreator)(void* pParent);
Definition at line 2291 of file fbcontrols.h.
| FBWidgetHolder | ( | ) |
Constructor.
| void SetCreator | ( | WidgetCreator | pCreatorFunction | ) |
Add a function that creates a native widget (a QWidget on Qt platform) On Qt, this creator function will take a void* (which can be cast as a QWidget) as the Widget parent On Qt, this creator function should return a void* (which will be a QWidget) that will be the newly created widget.
| pCreatorFunction | The creator function |