/* AbiWord
 * Copyright (C) 2000 AbiSource, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301 USA.
 */

#ifndef AP_DIALOG_BACKGROUND_H
#define AP_DIALOG_BACKGROUND_H

#include "xap_Frame.h"
#include "xap_Dialog.h"
#include "xav_View.h"
#include "ut_misc.h" // for UT_RGBColor

class XAP_Frame;

class ABI_EXPORT AP_Dialog_Background : public XAP_Dialog_NonPersistent
{
public:
	AP_Dialog_Background(XAP_DialogFactory * pDlgFactory, XAP_Dialog_Id id);
	virtual ~AP_Dialog_Background(void);

	virtual void			     runModal(XAP_Frame * pFrame) = 0;

	typedef enum { a_OK, a_CANCEL } tAnswer;

	AP_Dialog_Background::tAnswer		getAnswer(void) const;

	const gchar * getColor (void) const;
	void  setColor (const gchar * pszColor);
	void  setColor (UT_RGBColor& col);
	void  setForeground(void);
	void  setHighlight(void);
	bool  isForeground(void) const {return m_bDoForeground;}
	bool  isHighlight(void) const {return m_bDoHighlight;}

 protected:
	void setAnswer (AP_Dialog_Background::tAnswer);

 private:
	UT_RGBColor m_color;
	gchar    m_pszColor[12];
	AP_Dialog_Background::tAnswer		m_answer;
	bool m_bDoForeground;
	bool m_bDoHighlight;
};

#endif /* AP_DIALOG_BACKGROUND_H */