2004-06-23 Not Zed <NotZed@Ximian.com> ** See #54030. * e-searching-tokenizer.c (e_searching_tokenizer_match_count): only return a count if we're using the primary search string. * em-format-html-display.c (efhd_search_response): set the primary search string to NULL instead of resetting it. (efhd_update_search): dont noop if we have a null search text, just set an empty search. * e-searching-tokenizer.c (e_searching_tokenizer_reset): remove this, revert jeff's fixes for 54030. this is incomplete and so doesn't work either (search text stays remembered and secondary search text lost too). ** See #60523. * em-folder-view.c (emfv_finalise): unhook the folder changed before destroying the async thing, and move it all to destroy event anyway. (emfv_destroy): as above. svn path=/trunk/; revision=26472
74 lines
2.7 KiB
C
74 lines
2.7 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
|
|
/*
|
|
* e-searching-tokenizer.h
|
|
*
|
|
* Copyright (C) 2001 Ximian, Inc.
|
|
*
|
|
* Developed by Jon Trowbridge <trow@ximian.com>
|
|
*/
|
|
|
|
/*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA.
|
|
*/
|
|
|
|
#ifndef __E_SEARCHING_TOKENIZER_H__
|
|
#define __E_SEARCHING_TOKENIZER_H__
|
|
|
|
#include <glib.h>
|
|
#include <gtkhtml/htmltokenizer.h>
|
|
|
|
#define E_TYPE_SEARCHING_TOKENIZER (e_searching_tokenizer_get_type ())
|
|
#define E_SEARCHING_TOKENIZER(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_SEARCHING_TOKENIZER, ESearchingTokenizer))
|
|
#define E_SEARCHING_TOKENIZER_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), E_TYPE_SEARCHING_TOKENIZER, ESearchingTokenizerClass))
|
|
#define E_IS_SEARCHING_TOKENIZER(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_SEARCHING_TOKENIZER))
|
|
#define E_IS_SEARCHING_TOKENIZER_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_SEARCHING_TOKENIZER))
|
|
|
|
typedef struct _ESearchingTokenizer ESearchingTokenizer;
|
|
typedef struct _ESearchingTokenizerClass ESearchingTokenizerClass;
|
|
|
|
struct _ESearchingTokenizerPrivate;
|
|
|
|
struct _ESearchingTokenizer {
|
|
HTMLTokenizer parent;
|
|
|
|
struct _ESearchingTokenizerPrivate *priv;
|
|
};
|
|
|
|
struct _ESearchingTokenizerClass {
|
|
HTMLTokenizerClass parent_class;
|
|
|
|
void (*match) (ESearchingTokenizer *);
|
|
};
|
|
|
|
GType e_searching_tokenizer_get_type (void);
|
|
|
|
HTMLTokenizer *e_searching_tokenizer_new (void);
|
|
|
|
/* For now, just a simple API */
|
|
|
|
void e_searching_tokenizer_set_primary_search_string (ESearchingTokenizer *, const char *);
|
|
void e_searching_tokenizer_add_primary_search_string (ESearchingTokenizer *, const char *);
|
|
void e_searching_tokenizer_set_primary_case_sensitivity (ESearchingTokenizer *, gboolean is_case_sensitive);
|
|
|
|
void e_searching_tokenizer_set_secondary_search_string (ESearchingTokenizer *, const char *);
|
|
void e_searching_tokenizer_add_secondary_search_string (ESearchingTokenizer *st, const char *search_str);
|
|
void e_searching_tokenizer_set_secondary_case_sensitivity (ESearchingTokenizer *, gboolean is_case_sensitive);
|
|
|
|
|
|
int e_searching_tokenizer_match_count (ESearchingTokenizer *);
|
|
|
|
#endif /* __E_SEARCHING_TOKENIZER_H__ */
|