/* $Id: compose.h,v 1.14 2010/10/30 02:48:48 khorben Exp $ */ /* Copyright (c) 2010 Pierre Pronchery */ /* This file is part of DeforaOS Desktop Mailer */ /* 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, version 3 of the License. * * 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, see . */ #ifndef MAILER_COMPOSE_H # define MAILER_COMPOSE_H # include # include "mailer.h" /* types */ typedef struct _Compose Compose; /* methods */ Compose * compose_new(Mailer * mailer); void compose_delete(Compose * compose); /* accessors */ Mailer * compose_get_mailer(Compose * compose); void compose_set_subject(Compose * compose, char const * subject); /* useful */ void compose_add_field(Compose * compose, char const * field, char const * value); gboolean compose_close(Compose * compose); int compose_error(Compose * compose, char const * message, int ret); int compose_save(Compose * compose); void compose_select_all(Compose * compose); void compose_send(Compose * compose); void compose_send_cancel(Compose * compose); void compose_show_about(Compose * compose, gboolean show); #endif /* !MAILER_COMPOSE_H */