blob: b31a54f7572fa4f9b9fac1e95558449a62cb1b8d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Laurent CARON
* 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:
* Laurent CARON (laurent.caron at gmail dot com) - initial API and implementation
*******************************************************************************/
package org.mihalis.opal.obutton;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.widgets.Display;
import org.mihalis.opal.utils.SWTGraphicUtil;
/**
* This is the red theme button renderer.
*/
public class RedButtonRenderer extends AbstractButtonRenderer {
/** The instance. */
private static RedButtonRenderer instance;
/** The Constant FIRST_BACKGROUND_COLOR. */
private static final Color FIRST_BACKGROUND_COLOR = SWTGraphicUtil.getColorSafely(254, 26, 0);
/** The Constant SECOND_BACKGROUND_COLOR. */
private static final Color SECOND_BACKGROUND_COLOR = SWTGraphicUtil.getColorSafely(208, 2, 0);
/**
* Instantiates a new red button renderer.
*/
private RedButtonRenderer() {
super();
}
/* (non-Javadoc)
* @see org.mihalis.opal.obutton.AbstractButtonRenderer#getFontColor()
*/
@Override
protected Color getFontColor() {
return Display.getDefault().getSystemColor(SWT.COLOR_WHITE);
}
/* (non-Javadoc)
* @see org.mihalis.opal.obutton.AbstractButtonRenderer#getFirstBackgroundColor()
*/
@Override
protected Color getFirstBackgroundColor() {
return FIRST_BACKGROUND_COLOR;
}
/* (non-Javadoc)
* @see org.mihalis.opal.obutton.AbstractButtonRenderer#getSecondBackgroundColor()
*/
@Override
protected Color getSecondBackgroundColor() {
return SECOND_BACKGROUND_COLOR;
}
/**
* Gets the single instance of RedButtonRenderer.
*
* @return single instance of RedButtonRenderer
*/
public static RedButtonRenderer getInstance() {
if (instance == null) {
instance = new RedButtonRenderer();
}
return instance;
}
}