Desktop
/* $Id: common.h,v 1.5 2007/12/10 02:07:34 khorben Exp $ */
							/* Copyright (c) 2007 Pierre Pronchery <khorben@defora.org> */
							/* This file is part of DeforaOS Desktop Mailer */
							/* Mailer is free software; you can redistribute it and/or modify it under the
							 * terms of the GNU General Public License version 2 as published by the Free
							 * Software Foundation.
							 *
							 * Mailer 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
							 * Mailer; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
							 * Suite 330, Boston, MA  02111-1307  USA */
							#ifndef MAILER_COMMON_H
							# define MAILER_COMMON_H
							# include <gtk/gtk.h>
							/* types */
							struct _menu
							{
								char * name;
								GtkSignalFunc callback;
								char * stock;
								unsigned int accel;
							};
							struct _menubar
							{
								char * name;
								struct _menu * menu;
							};
							struct _toolbar
							{
								char * name;
								GtkSignalFunc callback;
								char * stock;
							};
							/* functions */
							GtkWidget * common_new_menubar(GtkWindow * window, struct _menubar * mb,
									gpointer data);
							GtkWidget * common_new_toolbar(struct _toolbar * tb, gpointer data);
							#endif /* !MAILER_COMMON_H */
							