aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/misc/e-filter-bar.h
blob: d5381319c9c39ad4d7bf9d6367659d11ddc260b4 (plain) (blame)
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
/*
 * 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:
 *      Michael Zucchi <notzed@ximian.com>
 *
 * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
 *
 */

#ifndef __E_FILTER_BAR_H__
#define __E_FILTER_BAR_H__

#include <gtk/gtk.h>
#include <camel/camel-vee-folder.h>
#include <camel/camel-operation.h>

#include "e-search-bar.h"

#include "filter/rule-context.h"
#include "filter/filter-rule.h"

#ifdef __cplusplus
extern "C" {
#pragma }
#endif /* __cplusplus */

/* EFilterBar - A filter rule driven search bar.
 *
 * The following arguments are available:
 *
 * name      type       read/write  description
 * ---------------------------------------------------------------------------------
 * query         string         R               String representing query.
 * state         string         RW              XML string representing the state.
 */

#define E_FILTER_BAR_TYPE           (e_filter_bar_get_type ())
#define E_FILTER_BAR(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_FILTER_BAR_TYPE, EFilterBar))
#define E_FILTER_BAR_CLASS(klass)       (G_TYPE_CHECK_CLASS_CAST ((klass), E_FILTER_BAR_TYPE, EFilterBarClass))
#define E_IS_FILTER_BAR(obj)        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_FILTER_BAR_TYPE))
#define E_IS_FILTER_BAR_CLASS(klass)    (G_TYPE_CHECK_CLASS_TYPE ((obj), E_FILTER_BAR_TYPE))

typedef struct _EFilterBar       EFilterBar;
typedef struct _EFilterBarClass  EFilterBarClass;

typedef void (*EFilterBarConfigRule)(EFilterBar *, FilterRule *rule, gint id, const gchar *query, gpointer data);

struct _EFilterBar {
    ESearchBar parent;
    gint menu_base, option_base;
    GPtrArray *menu_rules, *option_rules;

    ESearchBarItem *default_items;

    GtkWidget *save_dialog;    /* current save dialogue (so we dont pop up multiple ones) */

    FilterRule *current_query; /* as it says */
    gint setquery;         /* true when we're setting a query directly to advanced, so dont popup the dialog */

    RuleContext *context;
    gchar *systemrules;
    gchar *userrules;

    EFilterBarConfigRule config;
    gpointer config_data;

    CamelVeeFolder *all_account_search_vf;
    CamelVeeFolder *account_search_vf;
    CamelOperation *account_search_cancel;
};

struct _EFilterBarClass
{
    ESearchBarClass parent_class;
};

/* "preset" items */
enum {
    /* preset menu options */
    E_FILTERBAR_SAVE_ID = -3,
    E_FILTERBAR_EDIT_ID = -4,

    /* preset option options */
    E_FILTERBAR_ADVANCED_ID = -5,
    E_FILTERBAR_CURRENT_FOLDER_ID = -7,
    E_FILTERBAR_CURRENT_ACCOUNT_ID = -8,
    E_FILTERBAR_ALL_ACCOUNTS_ID = -9
};

#define E_FILTERBAR_SAVE      { (gchar *) N_("_Save Search..."), E_FILTERBAR_SAVE_ID, 0 }
#define E_FILTERBAR_EDIT      { (gchar *) N_("_Edit Saved Searches..."), E_FILTERBAR_EDIT_ID, 0 }
#define E_FILTERBAR_ADVANCED  { (gchar *) N_("_Advanced Search..."), E_FILTERBAR_ADVANCED_ID, 0 }
#define E_FILTERBAR_ALL_ACCOUNTS { (gchar *) N_("All Accounts"), E_FILTERBAR_ALL_ACCOUNTS_ID, ESB_ITEMTYPE_RADIO }
#define E_FILTERBAR_CURRENT_ACCOUNT { (gchar *) N_("Current Account"), E_FILTERBAR_CURRENT_ACCOUNT_ID, ESB_ITEMTYPE_RADIO }
#define E_FILTERBAR_CURRENT_FOLDER { (gchar *) N_("Current Folder"), E_FILTERBAR_CURRENT_FOLDER_ID, ESB_ITEMTYPE_RADIO }
#define E_FILTERBAR_SEPARATOR { NULL, 0, 0 }

#ifdef JUST_FOR_TRANSLATORS
const gchar * strings[] = {
    N_("_Save Search..."),
    N_("_Edit Saved Searches..."),
    N_("_Advanced Search...")
};
#endif


GType       e_filter_bar_get_type (void);

EFilterBar *e_filter_bar_new      (RuleContext *context,
                   const gchar *systemrules,
                   const gchar *userrules,
                   EFilterBarConfigRule config,
                   gpointer data);
EFilterBar *e_filter_bar_lite_new (RuleContext *context,
                   const gchar *systemrules,
                   const gchar *userrules,
                   EFilterBarConfigRule config,
                   gpointer data);

void
e_filter_bar_new_construct    (RuleContext *context,
                   const gchar *systemrules,
                   const gchar *userrules,
                   EFilterBarConfigRule config,
                   gpointer data ,EFilterBar *bar );

#ifdef __cplusplus
}
#endif /* __cplusplus */


#endif /* __E_FILTER_BAR_H__ */