~ubuntu-branches/debian/sid/claws-mail/sid

« back to all changes in this revision

Viewing changes to src/plugins/managesieve/sieve_manager.h

  • Committer: Package Import Robot
  • Author(s): Ricardo Mones
  • Date: 2015-08-18 16:37:25 UTC
  • mfrom: (1.3.7)
  • Revision ID: package-import@ubuntu.com-20150818163725-1it32n9mzqkwy2ef
Tags: 3.12.0-1
* New upstream release:
- 'cannot reorganize mailboxes' (Closes: #777208)
- 'dropdown menu bar has disappeared…'(Closes: #778886)
- 'depends on plugins libraries'  (Closes: #779824)
- 'new upstream version (3.12.0)…' (Closes: #793665)
* 14CVE_2010_5109.patch, 15fix_crash_open_folder.patch,
  13desktop_file_categories.patch
- Remove patches applied upstream
* debian/control, debian/copyright, debian/claws-mail-managesieve*
- Add managesieve plugin (new in this release)
* debian/rules
- Set perl-plugin manpage release version automatically
* 12fix_manpage_header.patch
- Update patch to cope with upstream changes
* debian/control, debian/watch
- Update VCS-* and watch URLs (thanks Julian Wollrath)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
 
3
 * Copyright (C) 2004-2015 the Claws Mail team
 
4
 * Copyright (C) 2014-2015 Charles Lehner
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or modify
 
7
 * it under the terms of the GNU General Public License as published by
 
8
 * the Free Software Foundation; either version 3 of the License, or
 
9
 * (at your option) any later version.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
 * GNU General Public License for more details.
 
15
 *
 
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 SIEVE_MANAGER_H
 
22
#define SIEVE_MANAGER_H
 
23
 
 
24
#include "managesieve.h"
 
25
 
 
26
typedef struct SieveManagerPage SieveManagerPage;
 
27
 
 
28
struct SieveManagerPage
 
29
{
 
30
        GtkWidget*      window;
 
31
        GtkWidget*      accounts_menu;
 
32
        GtkWidget*      status_text;
 
33
        GtkWidget*      filters_list;
 
34
        GtkWidget*      vbox_buttons;
 
35
        SieveSession    *active_session;
 
36
        gboolean        got_list;
 
37
};
 
38
 
 
39
void sieve_manager_show(void);
 
40
void sieve_manager_done(SieveManagerPage *page);
 
41
void sieve_manager_script_created(SieveSession *session,
 
42
                const gchar *filter_name);
 
43
 
 
44
#endif /* SIEVE_MANAGER_H */