/*
 * Gnophone: A client for the Asterisk PBX
 *
 * Copyright (C) 2000-2005, Digium, Inc.
 *
 * Written by Mark Spencer
 *
 * Linux/UNIX version distributed under the terms of
 * the GNU General Public License
 *
 * gui.h: Defines for GUI
 *
 */
#ifndef _GUI_H_
#define _GUI_H_

#define PW_FLAG_EMPTY			(0)
#define PW_FLAG_NO_ANSWER_BUTTON	(1 << 0)

#define PW_CALL_STATE_ACTIVE(x)		((x)->ev.call.state & IAXC_CALL_STATE_ACTIVE)

#include "icons.h"

#endif /* _GUI_H_ */
