aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/search/e-addressbook-search-dialog.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2001-05-16 14:05:29 +0800
committerChris Toshok <toshok@src.gnome.org>2001-05-16 14:05:29 +0800
commit8743d8c293f709feafcbe4bc8805651bce67c77e (patch)
tree8c4937c78badc3f3b52b33e354a9c2606a70e2e0 /addressbook/gui/search/e-addressbook-search-dialog.h
parentc3aa0886cb57bedffc5538a77e2e174450aaf95e (diff)
downloadgsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.tar
gsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.tar.gz
gsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.tar.bz2
gsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.tar.lz
gsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.tar.xz
gsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.tar.zst
gsoc2013-evolution-8743d8c293f709feafcbe4bc8805651bce67c77e.zip
initialize the model and adapter. (button_press): set on the model.
2001-05-15 Chris Toshok <toshok@ximian.com> * gui/search/e-addressbook-search-dialog.c (e_addressbook_search_dialog_init): initialize the model and adapter. (button_press): set on the model. (e_addressbook_search_dialog_new): same. (e_addressbook_search_dialog_set_arg): same. (e_addressbook_search_dialog_destroy): unref the model and adapter. * gui/search/e-addressbook-search-dialog.h (struct _EAddressbookSearchDialog): add our model and reflow adapter. svn path=/trunk/; revision=9840
Diffstat (limited to 'addressbook/gui/search/e-addressbook-search-dialog.h')
-rw-r--r--addressbook/gui/search/e-addressbook-search-dialog.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/addressbook/gui/search/e-addressbook-search-dialog.h b/addressbook/gui/search/e-addressbook-search-dialog.h
index 8fcd23492d..efc928e046 100644
--- a/addressbook/gui/search/e-addressbook-search-dialog.h
+++ b/addressbook/gui/search/e-addressbook-search-dialog.h
@@ -23,6 +23,8 @@
#include <ebook/e-book.h>
+#include "addressbook/gui/widgets/e-addressbook-model.h"
+#include "addressbook/gui/widgets/e-addressbook-reflow-adapter.h"
#include "filter/rule-context.h"
#include "filter/filter-rule.h"
@@ -50,6 +52,9 @@ struct _EAddressbookSearchDialog
GtkWidget *search;
GtkWidget *view;
+ EAddressbookModel *model;
+ EAddressbookReflowAdapter *adapter;
+
RuleContext *context;
FilterRule *rule;
GtkWidget *scrolled_window;