~jroose/cairo-dock-plug-ins/Messaging-Menu-alaric-devel

« back to all changes in this revision

Viewing changes to mail/src/cd-mail-applet-struct.h

  • Committer: jroose at gmail
  • Date: 2010-11-18 14:43:40 UTC
  • Revision ID: jroose@gmail.com-20101118144340-qvrs0rmanr5lr1mj
Messaging-Menu

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
* This file is a part of the Cairo-Dock project
 
3
*
 
4
* Copyright : (C) see the 'copyright' file.
 
5
* E-mail    : see the 'copyright' file.
 
6
*
 
7
* This program is free software; you can redistribute it and/or
 
8
* modify it under the terms of the GNU General Public License
 
9
* as published by the Free Software Foundation; either version 3
 
10
* of the License, or (at your option) any later version.
 
11
*
 
12
* This program is distributed in the hope that it will be useful,
 
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
* GNU General Public License for more details.
 
16
* You should have received a copy of the GNU General Public License
 
17
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
*/
 
19
 
 
20
 
 
21
#ifndef __CD_APPLET_STRUCT__
 
22
#define  __CD_APPLET_STRUCT__
 
23
 
 
24
#include <time.h>
 
25
 
 
26
#include <libetpan/libetpan.h>
 
27
#include <cairo-dock.h>
 
28
 
 
29
#define MAIL_DEFAULT_NAME "_Mail_"
 
30
 
 
31
typedef enum {
 
32
  POP3_STORAGE = 1,
 
33
  IMAP_STORAGE,
 
34
  NNTP_STORAGE,
 
35
  MBOX_STORAGE,
 
36
  MH_STORAGE,
 
37
  MAILDIR_STORAGE,
 
38
  FEED_STORAGE
 
39
} CDMailAccountType;
 
40
 
 
41
 
 
42
struct _AppletConfig {
 
43
        gchar *cNoMailUserImage;
 
44
        gchar *cHasMailUserImage;
 
45
        gchar *cNewMailUserSound;
 
46
        gchar *cThemePath;
 
47
        gchar *cRenderer;
 
48
        gchar *cMailApplication;
 
49
        gchar *cMailClass;
 
50
        gchar *cAnimation;
 
51
        gint iAnimationDuration;
 
52
        gboolean bPlaySound;
 
53
        gboolean bStealTaskBarIcon;
 
54
        gboolean bShowMessageContent;
 
55
        gboolean bCheckOnStartup;
 
56
        guint iNbMaxShown;
 
57
        gint iDialogDuration;
 
58
        gboolean bAlwaysShowMailCount;
 
59
} ;
 
60
 
 
61
struct _AppletData {
 
62
        GPtrArray *pMailAccounts;
 
63
        guint iNbUnreadMails, iPrevNbUnreadMails;
 
64
        gchar *cWorkingDirPath;
 
65
        time_t timeEndOfSound;
 
66
        
 
67
        GLuint iNoMailTexture;
 
68
        GLuint iHasMailTexture;
 
69
        GLuint iCubeCallList;
 
70
 
 
71
        gdouble current_rotX;
 
72
        gdouble current_rotY;
 
73
 
 
74
        CairoDialog *pMessagesDialog;
 
75
        GtkTextBuffer *pTextBuffer;
 
76
        GtkWidget *pPrevButton;
 
77
        GtkWidget *pNextButton;
 
78
        gint iCurrentlyShownMail;
 
79
} ;
 
80
 
 
81
 
 
82
typedef struct {
 
83
    CairoDockModuleInstance *pAppletInstance;
 
84
    gchar *name;
 
85
    struct mailstorage *storage;
 
86
    struct mailfolder *folder;
 
87
    guint iNbUnseenMails, iPrevNbUnseenMails;
 
88
    int driver;
 
89
    gchar *server;
 
90
    int port;
 
91
    int connection_type;
 
92
    gchar *user;
 
93
    gchar *password;
 
94
    int auth_type;
 
95
    gchar *path;
 
96
    guint timeout;
 
97
    CairoDockTask *pAccountMailTimer;
 
98
    Icon *icon;
 
99
    gboolean bInitialized;
 
100
    GList *pUnseenMessageList;  // liste de gchar*
 
101
    GList *pUnseenMessageUid;  // liste de gchar*
 
102
 
 
103
    gchar *cMailApp;
 
104
 
 
105
    gboolean bError;
 
106
} CDMailAccount;
 
107
 
 
108
 
 
109
#endif