blob: 3ed40595edad6033cc76df79fac69ae37ca02eab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Original authors and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.core.style;
/**
* The various modes the table can be under.
* <ol>
* <li>During normal display a cell is in NORMAL mode.</li>
* <li>If the contents of the cell are being edited, its in EDIT mode.</li>
* <li>If a cell has been selected, its in SELECT mode.</li>
* </ol>
*
* These modes are used to bind different settings to different modes.<br/>
* For example, a different style can be registered for a cell
* when it is in SELECT mode.
*
*/
public interface DisplayMode {
/**
* DisplayMode for rendering and handling in normal state.
*/
public static final String NORMAL = "NORMAL"; //$NON-NLS-1$
/**
* DisplayMode for rendering and handling in selected state.
*/
public static final String SELECT = "SELECT"; //$NON-NLS-1$
/**
* DisplayMode for rendering and handling in editing state.
*/
public static final String EDIT = "EDIT"; //$NON-NLS-1$
}