/usr/include/evolution-3.4/mail/em-account-editor.h is in evolution-dev 3.4.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | /*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) version 3.
*
* 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with the program; if not, see <http://www.gnu.org/licenses/>
*
*
* Authors:
* Jeffrey Stedfast <fejj@ximian.com>
* Dan Winship <danw@ximian.com>
*
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
*
*/
#ifndef EM_ACCOUNT_EDITOR_H
#define EM_ACCOUNT_EDITOR_H
#include <gtk/gtk.h>
#include <mail/em-config.h>
#include <mail/e-mail-backend.h>
#include <libedataserver/e-account.h>
/* Standard GObject macros */
#define EM_TYPE_ACCOUNT_EDITOR \
(em_account_editor_get_type ())
#define EM_ACCOUNT_EDITOR(obj) \
(G_TYPE_CHECK_INSTANCE_CAST \
((obj), EM_TYPE_ACCOUNT_EDITOR, EMAccountEditor))
#define EM_ACCOUNT_EDITOR_CLASS(cls) \
(G_TYPE_CHECK_CLASS_CAST \
((cls), EM_TYPE_ACCOUNT_EDITOR, EMAccountEditorClass))
#define EM_IS_ACCOUNT_EDITOR(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE \
((obj), EM_TYPE_ACCOUNT_EDITOR))
#define EM_IS_ACCOUNT_EDITOR_CLASS(cls) \
(G_TYPE_CHECK_CLASS_TYPE \
((cls), EM_TYPE_ACCOUNT_EDITOR))
#define EM_ACCOUNT_EDITOR_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS \
((obj), EM_TYPE_ACCOUNT_EDITOR, EMAccountEditorClass))
G_BEGIN_DECLS
typedef struct _EMAccountEditor EMAccountEditor;
typedef struct _EMAccountEditorClass EMAccountEditorClass;
typedef struct _EMAccountEditorPrivate EMAccountEditorPrivate;
typedef struct _server_data ServerData;
struct _server_data {
const gchar *key;
const gchar *recv;
const gchar *send;
const gchar *proto;
CamelNetworkSecurityMethod security_method;
const gchar *send_user;
const gchar *recv_user;
const gchar *send_port;
const gchar *recv_port;
CamelNetworkSecurityMethod send_security_method;
CamelNetworkSecurityMethod recv_security_method;
const gchar *send_auth;
const gchar *recv_auth;
};
typedef enum {
EMAE_NOTEBOOK,
EMAE_ASSISTANT,
EMAE_PAGES
} EMAccountEditorType;
struct _EMAccountEditor {
GObject parent;
EMAccountEditorPrivate *priv;
EMAccountEditorType type;
EMConfig *config; /* driver object */
GtkWidget **pages; /* Pages for Anjal's page type editor */
guint do_signature:1; /* allow editing signature */
};
struct _EMAccountEditorClass {
GObjectClass parent_class;
};
GType em_account_editor_get_type (void);
EMAccountEditor *
em_account_editor_new (EAccount *account,
EMAccountEditorType type,
EMailBackend *backend,
const gchar *id);
EMAccountEditor *
em_account_editor_new_for_pages (EAccount *account,
EMAccountEditorType type,
EMailBackend *backend,
const gchar *id,
GtkWidget **pages);
EMailBackend * em_account_editor_get_backend (EMAccountEditor *emae);
EAccount * em_account_editor_get_modified_account
(EMAccountEditor *emae);
EAccount * em_account_editor_get_original_account
(EMAccountEditor *emae);
void em_account_editor_commit (EMAccountEditor *emae);
gboolean em_account_editor_check (EMAccountEditor *emae,
const gchar *page);
GtkWidget * em_account_editor_get_widget (EMAccountEditor *emae,
const gchar *name);
G_END_DECLS
#endif /* EM_ACCOUNT_EDITOR_H */
|