| java.lang.Object org.gjt.sp.jedit.PerspectiveManager
PerspectiveManager | public class PerspectiveManager (Code) | | Manages persistence of open buffers and views across jEdit sessions.
since: jEdit 4.2pre1 author: Slava Pestov version: $Id: PerspectiveManager.java 10964 2007-10-29 20:47:22Z k_satoda $ |
Method Summary | |
public static boolean | isPerspectiveDirty() We only autosave the perspective if it has changed, to avoid spinning
up the disk on laptops. | public static boolean | isPerspectiveEnabled() We disable saving of the perspective while the 'close all' dialog is
showing. | public static View | loadPerspective(boolean restoreFiles) | public static void | savePerspective(boolean autosave) | public static void | setPerspectiveDirty(boolean dirty) We only autosave the perspective if it has changed, to avoid spinning
up the disk on laptops. | public static void | setPerspectiveEnabled(boolean enabled) We disable saving of the perspective while the 'close all' dialog is
showing. |
isPerspectiveDirty | public static boolean isPerspectiveDirty()(Code) | | We only autosave the perspective if it has changed, to avoid spinning
up the disk on laptops.
since: jEdit 4.2pre13 |
isPerspectiveEnabled | public static boolean isPerspectiveEnabled()(Code) | | We disable saving of the perspective while the 'close all' dialog is
showing.
since: jEdit 4.3pre2 |
loadPerspective | public static View loadPerspective(boolean restoreFiles)(Code) | | |
savePerspective | public static void savePerspective(boolean autosave)(Code) | | |
setPerspectiveDirty | public static void setPerspectiveDirty(boolean dirty)(Code) | | We only autosave the perspective if it has changed, to avoid spinning
up the disk on laptops.
since: jEdit 4.2pre13 |
setPerspectiveEnabled | public static void setPerspectiveEnabled(boolean enabled)(Code) | | We disable saving of the perspective while the 'close all' dialog is
showing.
since: jEdit 4.3pre2 |
|
|