summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/TDEToggleFullScreenAction.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/TDEToggleFullScreenAction.java')
-rw-r--r--kdejava/koala/org/kde/koala/TDEToggleFullScreenAction.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/kdejava/koala/org/kde/koala/TDEToggleFullScreenAction.java b/kdejava/koala/org/kde/koala/TDEToggleFullScreenAction.java
deleted file mode 100644
index 5a07bd11..00000000
--- a/kdejava/koala/org/kde/koala/TDEToggleFullScreenAction.java
+++ /dev/null
@@ -1,60 +0,0 @@
-//Auto-generated by kalyptus. DO NOT EDIT.
-package org.kde.koala;
-
-import org.kde.qt.Qt;
-import org.kde.qt.TQMetaObject;
-import org.kde.qt.QtSupport;
-import org.kde.qt.TQObject;
-import org.kde.qt.TQEvent;
-import org.kde.qt.TQWidget;
-
-/**
-
- An action for switching between to/from full screen mode. Note that
- TQWidget.isFullScreen() may reflect the new or the old state
- depending on how the action was triggered (by the application or
- from the window manager). Also don't try to track the window state
- yourself. Rely on this action's state (isChecked()) instead.
- Important: If you need to set/change the fullscreen state manually,
- use the relevant TQWidget function (showFullScreen etc.), do not
- call directly the slot connected to the toggled() signal. The slot
- still needs to explicitly set the window state though.
- @short An action for switching between to/from full screen mode.
-
-*/
-public class TDEToggleFullScreenAction extends TDEToggleAction {
- protected TDEToggleFullScreenAction(Class dummy){super((Class) null);}
- public native TQMetaObject metaObject();
- public native String className();
- /**
- Create a TDEToggleFullScreenAction
- @param cut The corresponding keyboard accelerator (shortcut).
- @param receiver The SLOT's parent.
- @param slot The SLOT to invoke to execute this action.
- @param parent This action's parent.
- @param window the window that will switch to/from full screen mode
- @param name An internal name for this action.
- @short Create a TDEToggleFullScreenAction
- */
- public TDEToggleFullScreenAction(TDEShortcut cut, TQObject receiver, String slot, TQObject parent, TQWidget window, String name) {
- super((Class) null);
- newTDEToggleFullScreenAction(cut,receiver,slot,parent,window,name);
- }
- private native void newTDEToggleFullScreenAction(TDEShortcut cut, TQObject receiver, String slot, TQObject parent, TQWidget window, String name);
- /**
- Sets the window that will be related to this action.
- @short Sets the window that will be related to this action.
- */
- public native void setWindow(TQWidget window);
- public native void setChecked(boolean arg1);
- /**
- @short
- */
- public native boolean eventFilter(TQObject o, TQEvent e);
- /** Deletes the wrapped C++ instance */
- protected native void finalize() throws InternalError;
- /** Delete the wrapped C++ instance ahead of finalize() */
- public native void dispose();
- /** Has the wrapped C++ instance been deleted? */
- public native boolean isDisposed();
-}