~ubuntu-branches/ubuntu/precise/evolution/precise

« back to all changes in this revision

Viewing changes to shell/e-shell.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-06-24 00:27:53 UTC
  • mfrom: (1.1.80 upstream)
  • Revision ID: james.westby@ubuntu.com-20110624002753-2vh1vjavlya7r103
Tags: 3.1.2-0ubuntu1
* New upstream release 3.1.2.
* debian/control: adjust Build-Depends to match new upstream requirements for
  the new release.
* debian/control: update evolution and evolution-dev Depends to require the
  right versions of e-d-s (>= 3.1, << 3.2), and drop libunique-3.0-dev.
* debian/control,
  debian/evolution.install: remove groupwise-features from the plugin list,
  it's now split out into a separate module.
* debian/patches/03_lpi.patch: refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef E_SHELL_H
23
23
#define E_SHELL_H
24
24
 
25
 
#include <unique/unique.h>
26
25
#include <gconf/gconf-client.h>
27
26
 
28
27
#include <e-util/e-activity.h>
90
89
 * functions below.
91
90
 **/
92
91
struct _EShell {
93
 
        UniqueApp parent;
 
92
        GtkApplication parent;
94
93
        EShellPrivate *priv;
95
94
};
96
95
 
97
96
struct _EShellClass {
98
 
        UniqueAppClass parent_class;
 
97
        GtkApplicationClass parent_class;
99
98
 
100
99
        gboolean        (*handle_uri)           (EShell *shell,
101
100
                                                 const gchar *uri);
127
126
GtkWidget *     e_shell_create_shell_window     (EShell *shell,
128
127
                                                 const gchar *view_name);
129
128
guint           e_shell_handle_uris             (EShell *shell,
130
 
                                                 gchar **uris,
 
129
                                                 const gchar * const *uris,
131
130
                                                 gboolean do_import);
132
131
void            e_shell_submit_alert            (EShell *shell,
133
132
                                                 EAlert *alert);
154
153
                                                 EShellQuitReason reason);
155
154
void            e_shell_cancel_quit             (EShell *shell);
156
155
 
157
 
void            e_shell_adapt_window_size       (EShell    *shell,
 
156
void            e_shell_adapt_window_size       (EShell *shell,
158
157
                                                 GtkWindow *window);
159
158
void            e_shell_set_startup_view        (EShell *shell,
160
159
                                                 const gchar *view);