~ubuntu-branches/ubuntu/wily/evolution-data-server/wily

« back to all changes in this revision

Viewing changes to libedataserverui/e-credentials-prompter-impl-password.h

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2015-07-20 13:34:59 UTC
  • mfrom: (1.1.126) (1.2.48 sid)
  • Revision ID: package-import@ubuntu.com-20150720133459-g6y46hnu5ewtoz08
Tags: 3.16.4-0ubuntu2
debian/patches/0001-Bug-752373-Monthly-events-do-not-recur-correctly.patch:
Cherry-pick patch from upstream to fix events not recurring correctly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2015 Red Hat, Inc. (www.redhat.com)
 
3
 *
 
4
 * This library is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This library is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
10
 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
 
11
 * for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this library. If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 */
 
17
 
 
18
#if !defined (__LIBEDATASERVERUI_H_INSIDE__) && !defined (LIBEDATASERVERUI_COMPILATION)
 
19
#error "Only <libedataserverui/libedataserverui.h> should be included directly."
 
20
#endif
 
21
 
 
22
#ifndef E_CREDENTIALS_PROMPTER_IMPL_PASSWORD_H
 
23
#define E_CREDENTIALS_PROMPTER_IMPL_PASSWORD_H
 
24
 
 
25
#include <glib.h>
 
26
#include <glib-object.h>
 
27
 
 
28
#include <libedataserverui/e-credentials-prompter-impl.h>
 
29
 
 
30
/* Standard GObject macros */
 
31
#define E_TYPE_CREDENTIALS_PROMPTER_IMPL_PASSWORD \
 
32
        (e_credentials_prompter_impl_password_get_type ())
 
33
#define E_CREDENTIALS_PROMPTER_IMPL_PASSWORD(obj) \
 
34
        (G_TYPE_CHECK_INSTANCE_CAST \
 
35
        ((obj), E_TYPE_CREDENTIALS_PROMPTER_IMPL_PASSWORD, ECredentialsPrompterImplPassword))
 
36
#define E_CREDENTIALS_PROMPTER_IMPL_PASSWORD_CLASS(cls) \
 
37
        (G_TYPE_CHECK_CLASS_CAST \
 
38
        ((cls), E_TYPE_CREDENTIALS_PROMPTER_IMPL_PASSWORD, ECredentialsPrompterImplPasswordClass))
 
39
#define E_IS_CREDENTIALS_PROMPTER_IMPL_PASSWORD(obj) \
 
40
        (G_TYPE_CHECK_INSTANCE_TYPE \
 
41
        ((obj), E_TYPE_CREDENTIALS_PROMPTER_IMPL_PASSWORD))
 
42
#define E_IS_CREDENTIALS_PROMPTER_IMPL_PASSWORD_CLASS(cls) \
 
43
        (G_TYPE_CHECK_CLASS_TYPE \
 
44
        ((cls), E_TYPE_CREDENTIALS_PROMPTER_IMPL_PASSWORD))
 
45
#define E_CREDENTIALS_PROMPTER_IMPL_PASSWORD_GET_CLASS(obj) \
 
46
        (G_TYPE_INSTANCE_GET_CLASS \
 
47
        ((obj), E_TYPE_CREDENTIALS_PROMPTER_IMPL_PASSWORD, ECredentialsPrompterImplPasswordClass))
 
48
 
 
49
G_BEGIN_DECLS
 
50
 
 
51
typedef struct _ECredentialsPrompterImplPassword ECredentialsPrompterImplPassword;
 
52
typedef struct _ECredentialsPrompterImplPasswordClass ECredentialsPrompterImplPasswordClass;
 
53
typedef struct _ECredentialsPrompterImplPasswordPrivate ECredentialsPrompterImplPasswordPrivate;
 
54
 
 
55
/**
 
56
 * ECredentialsPrompterImplPassword:
 
57
 *
 
58
 * Contains only private data that should be read and manipulated using the
 
59
 * functions below.
 
60
 *
 
61
 * Since: 3.16
 
62
 **/
 
63
struct _ECredentialsPrompterImplPassword {
 
64
        ECredentialsPrompterImpl parent;
 
65
        ECredentialsPrompterImplPasswordPrivate *priv;
 
66
};
 
67
 
 
68
struct _ECredentialsPrompterImplPasswordClass {
 
69
        ECredentialsPrompterImplClass parent_class;
 
70
};
 
71
 
 
72
GType           e_credentials_prompter_impl_password_get_type   (void) G_GNUC_CONST;
 
73
ECredentialsPrompterImpl *
 
74
                e_credentials_prompter_impl_password_new        (void);
 
75
 
 
76
G_END_DECLS
 
77
 
 
78
#endif /* E_CREDENTIALS_PROMPTER_IMPL_PASSWORD_H */