Desktop
/* $Id: Mailer.h,v 1.9 2011/01/29 02:16:40 khorben Exp $ */
/* Copyright (c) 2011 Pierre Pronchery <khorben@defora.org> */
/* 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 <http://www.gnu.org/licenses/>. */
#ifndef DESKTOP_MAILER_H
# define DESKTOP_MAILER_H
# include <gtk/gtk.h>
/* Mailer */
/* types */
typedef struct _Mailer Mailer;
/* AccountIdentity */
typedef struct _AccountIdentity
{
char * from;
char * email;
} AccountIdentity;
/* AccountConfig */
typedef enum _AccountConfigType
{
ACT_NONE = 0,
ACT_STRING,
ACT_PASSWORD,
ACT_FILE,
ACT_UINT16,
ACT_BOOLEAN
} AccountConfigType;
typedef struct _AccountConfig
{
char const * name;
char const * title;
AccountConfigType type;
void * value;
} AccountConfig;
/* AccountMessage */
typedef struct _AccountMessage AccountMessage;
/* AccountFolderType */
typedef enum _AccountFolderType
{
AFT_INBOX = 0,
AFT_DRAFTS,
AFT_SENT,
AFT_TRASH,
AFT_FOLDER
} AccountFolderType;
# define AFT_LAST AFT_FOLDER
# define AFT_COUNT (AFT_LAST + 1)
typedef struct _AccountFolder
{
AccountFolderType type;
char * name;
GtkListStore * store;
void * data;
} AccountFolder;
/* AccountPlugin */
typedef struct _AccountPluginHelper
{
Mailer * mailer;
GtkIconTheme * theme;
GdkPixbuf * mail_read;
GdkPixbuf * mail_unread;
int (*error)(Mailer * mailer, char const * message, int ret);
} AccountPluginHelper;
typedef struct _AccountPlugin AccountPlugin;
struct _AccountPlugin
{
AccountPluginHelper * helper;
char const * type;
char const * name;
char const * icon;
AccountConfig * config;
int (*init)(AccountPlugin * plugin, GtkTreeStore * store,
GtkTreeIter * parent, GtkTextBuffer * buffer);
int (*destroy)(AccountPlugin * plugin);
GtkTextBuffer * (*select)(AccountPlugin * plugin,
AccountFolder * folder, AccountMessage * message);
GtkTextBuffer * (*select_source)(AccountPlugin * plugin,
AccountFolder * folder, AccountMessage * message);
void * priv;
};
/* constants */
enum
{
MF_COL_ACCOUNT = 0, MF_COL_ENABLED, MF_COL_DELETE, MF_COL_FOLDER,
MF_COL_ICON, MF_COL_NAME
};
# define MF_COL_LAST MF_COL_NAME
# define MF_COL_COUNT (MF_COL_LAST + 1)
enum
{
MH_COL_ACCOUNT = 0, MH_COL_FOLDER, MH_COL_MESSAGE, MH_COL_PIXBUF,
MH_COL_SUBJECT, MH_COL_FROM, MH_COL_TO, MH_COL_DATE,
MH_COL_DATE_DISPLAY, MH_COL_READ, MH_COL_WEIGHT
};
# define MH_COL_LAST MH_COL_WEIGHT
# define MH_COL_COUNT (MH_COL_LAST + 1)
#endif /* !DESKTOP_MAILER_H */