class FullScreenAction

A KAction that toggles a QWidget between normal and full-screen display. More...

Definition#include <actions.h>
InheritsKAction (kdeui) [public ]
List of all Methods
Annotated List
Files
Globals
Hierarchy
Index

Public Methods

Public Slots

Protected Slots


Detailed Description

A KAction that toggles a QWidget between normal and full-screen display.

 FullScreenAction ( QWidget *window, QObject *parent = 0, const char *name = 0 )

FullScreenAction

Creates a FullScreenAction that will operate on the specified QWidget object.

 FullScreenAction ( QObject *parent = 0, const char *name = 0 )

FullScreenAction

Creates a FullScreenAction.

QWidgetwidget ()

widget

[const]

Returns the QWidget the action will operate on.

bool  isFullScreen ()

isFullScreen

[const]

Returns true iff the widget is in full-screen mode.

void  toggleFullScreen ()

toggleFullScreen

[slot]

Toggles the widget between normal and full-screen modes.

void  setFullScreen ( bool full=true )

setFullScreen

[virtual slot]

Sets the display mode of the widget.

void  setWidget ( QWidget *w )

setWidget

[virtual slot]

Specifies the QWidget the action should operate on.

void  slotActivated ()

slotActivated

[protected slots virtual slot]

Reimplemented to call the toggleFullScreen() method.

Reimplemented from KAction.