/* Background.java * * Copyright (c) 2003 by Asko Soukka * * This file is part of Gzz. * * Gzz is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * Gzz is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General * Public License for more details. * * You should have received a copy of the GNU Lesser General * Public License along with Gzz; if not, write to the Free * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * * */ /* * Written by Asko Soukka */ package gzz.vob; import java.awt.Color; /** Interface for background vob related methods. */ public interface Background { public static final String rcsid = "$Id: Background.java,v 1.1 2003/03/10 14:11:57 humppake Exp $"; /** Set the background color of the Vob. */ void setBgColor(Color c); /** Return the background color of the Vob. */ Color getBgColor(); /** Set the border color. */ void setBorderColor(Color c); /** Return the border color. */ Color getBorderColor(); /** Enable or disable drawing of border of the Vob. * @param b True if border should be drawn, false otherwise. */ void setDrawBorder(boolean b); /** Return the Flag for drawing the border. * @return True if border will be drawn, false otherwise. */ boolean getDrawBorder(); }