Search in sources :

Example 6 with IFormManager

use of com.servoy.j2db.IFormManager in project servoy-client by Servoy.

the class CmdPreviewMode method doIt.

/*
 * _____________________________________________________________ The methods below override methods from superclass AbstractCmd
 */
@Override
public UndoableEdit doIt(java.util.EventObject ae) {
    IFormManager fm = application.getFormManager();
    // showPreview(fm.getCurrentMainShowingForm());
    IForm form = fm.getCurrentForm();
    if (form != null)
        form.printPreview();
    return null;
}
Also used : IFormManager(com.servoy.j2db.IFormManager) IForm(com.servoy.j2db.IForm)

Example 7 with IFormManager

use of com.servoy.j2db.IFormManager in project servoy-client by Servoy.

the class CmdReCopyValues method doIt.

@Override
public UndoableEdit doIt(java.util.EventObject ae) {
    IFormManager fm = application.getFormManager();
    IForm dm = fm.getCurrentForm();
    dm.reLookupValues();
    return null;
}
Also used : IFormManager(com.servoy.j2db.IFormManager) IForm(com.servoy.j2db.IForm)

Example 8 with IFormManager

use of com.servoy.j2db.IFormManager in project servoy-client by Servoy.

the class CmdReduceFind method doIt.

/*
 * _____________________________________________________________ The methods below override methods from superclass AbstractCmd
 */
@Override
public UndoableEdit doIt(java.util.EventObject ae) {
    IFormManager fm = application.getFormManager();
    IForm cf = fm.getCurrentForm();
    if (cf != null && !cf.isInFindMode()) {
        cf = null;
    }
    if (cf == null) {
        IForm[] rfif = ((FormManager) fm).getVisibleRootFormsInFind();
        cf = rfif.length > 0 ? rfif[0] : null;
    // rfif.length > 1 would be a strange case where more than one visible form relation hierarchy is in find mode;
    // we choose the first one - I or should we use all of them?! this is an ansupported case anyway
    }
    if (cf != null) {
        cf.performFind(false, true, true);
    }
    return null;
}
Also used : IFormManager(com.servoy.j2db.IFormManager) IFormManager(com.servoy.j2db.IFormManager) FormManager(com.servoy.j2db.FormManager) IForm(com.servoy.j2db.IForm)

Example 9 with IFormManager

use of com.servoy.j2db.IFormManager in project servoy-client by Servoy.

the class CmdShowOmitRecords method doIt.

/*
 * _____________________________________________________________ The methods below override methods from superclass AbstractCmd
 */
@Override
public UndoableEdit doIt(java.util.EventObject ae) {
    try {
        // $NON-NLS-1$
        application.blockGUI(application.getI18NMessage("servoy.menuitem.showOmitted.status.text"));
        IFormManager fm = application.getFormManager();
        IForm dm = fm.getCurrentForm();
        dm.showOmittedRecords();
    } finally {
        application.releaseGUI();
    }
    return null;
}
Also used : IFormManager(com.servoy.j2db.IFormManager) IForm(com.servoy.j2db.IForm)

Example 10 with IFormManager

use of com.servoy.j2db.IFormManager in project servoy-client by Servoy.

the class CmdSort method doIt.

@Override
public UndoableEdit doIt(java.util.EventObject ae) {
    try {
        // $NON-NLS-1$
        application.blockGUI(application.getI18NMessage("servoy.menuitem.sort.status.text"));
        IFormManager fm = application.getFormManager();
        IForm dm = fm.getCurrentForm();
        dm.showSortDialog();
    } catch (Exception ex) {
        Debug.error(ex);
    } finally {
        application.releaseGUI();
    }
    return null;
}
Also used : IFormManager(com.servoy.j2db.IFormManager) IForm(com.servoy.j2db.IForm)

Aggregations

IFormManager (com.servoy.j2db.IFormManager)17 IForm (com.servoy.j2db.IForm)14 FormManager (com.servoy.j2db.FormManager)3 FormController (com.servoy.j2db.FormController)2 GraphicsDevice (java.awt.GraphicsDevice)1