![]() |
![]() |
![]() |
Mx Toolkit Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Implemented Interfaces |
MxModalFrame; ClutterActor * mx_modal_frame_new (void
); void mx_modal_frame_set_transient_parent (MxModalFrame *modal_frame
,ClutterActor *actor
); void mx_modal_frame_show (MxModalFrame *modal_frame
); void mx_modal_frame_hide (MxModalFrame *modal_frame
);
GObject +----GInitiallyUnowned +----ClutterActor +----MxWidget +----MxBin +----MxModalFrame
MxModalFrame implements ClutterScriptable, ClutterAnimatable, AtkImplementorIface, MxStylable, ClutterContainer and MxFocusable.
MxModalFrame is a single-widget container. When presented, it performs a suitable transition animation and blocks input to the actors beneath it until it is hidden again.
typedef struct _MxModalFrame MxModalFrame;
The contents of this structure is private and should only be accessed using the provided API.
ClutterActor * mx_modal_frame_new (void
);
Creates a new MxModalFrame.
Returns : |
A newly allocated MxModalFrame |
void mx_modal_frame_set_transient_parent (MxModalFrame *modal_frame
,ClutterActor *actor
);
Sets the parent of the MxModalFrame. This is the actor over which the
modal frame will appear when mx_modal_frame_show()
is called.
|
A MxModalFrame |
|
A ClutterActor |
void mx_modal_frame_show (MxModalFrame *modal_frame
);
Shows the MxModalFrame. When the frame is visible, it will block input to its parent.
|
A MxModalFrame |
void mx_modal_frame_hide (MxModalFrame *modal_frame
);
Hides the MxModalFrame.
|
A MxModalFrame |