/******************************************************************************* * 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 default button renderer */ public class DefaultButtonRenderer extends AbstractButtonRenderer { private static DefaultButtonRenderer instance; private static final Color FIRST_BACKGROUND_COLOR = SWTGraphicUtil.getColorSafely(121, 187, 255); private static final Color SECOND_BACKGROUND_COLOR = SWTGraphicUtil.getColorSafely(56, 142, 229); private DefaultButtonRenderer() { super(); } @Override protected Color getFontColor() { return Display.getDefault().getSystemColor(SWT.COLOR_WHITE); } @Override protected Color getFirstBackgroundColor() { return FIRST_BACKGROUND_COLOR; } @Override protected Color getSecondBackgroundColor() { return SECOND_BACKGROUND_COLOR; } public static DefaultButtonRenderer getInstance() { if (instance == null) { instance = new DefaultButtonRenderer(); } return instance; } }