
2001-05-14 Jon Trowbridge <trow@ximian.com> * folder-browser.c (folder_browser_config_search): Use secondary searches here, so that we control the interference between the two bits of searching UI. 2001-05-13 Jon Trowbridge <trow@ximian.com> * mail-search.c (mail_search_construct): Destroy the MailSearch dialog if the underlying MailDisplay is destroyed. I don't like the way that label in the dialog with the message subject in it looks, so I've #ifdef-ed it out for now. Center the Matches label --- it makes the dialog look more balanced, I think. (dialog_clicked_cb): Changed to reflect adjusted ESearchingTokenizer API, using primary searches. (toggled_case_cb): Use the primary search API. * e-searching-tokenizer.c: Make searching routines utf8-friendly. Rationalize how the match begin/end markup is handled; allow for begin/end markup that varies by search. Add concept of primary and secondary matching, to disentangle possible interactions between search-bar searches and search-dialog searches. svn path=/trunk/; revision=9789
75 lines
2.5 KiB
C
75 lines
2.5 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 the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* 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) (GTK_CHECK_CAST ((o), E_TYPE_SEARCHING_TOKENIZER, ESearchingTokenizer))
|
|
#define E_SEARCHING_TOKENIZER_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), E_TYPE_SEARCHING_TOKENIZER, ESearchingTokenizerClass))
|
|
#define E_IS_SEARCHING_TOKENIZER(o) (GTK_CHECK_TYPE ((o), E_TYPE_SEARCHING_TOKENIZER))
|
|
#define E_IS_SEARCHING_TOKENIZER_CLASS(k) (GTK_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 *);
|
|
};
|
|
|
|
GtkType 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 gchar *);
|
|
void e_searching_tokenizer_set_primary_case_sensitivity (ESearchingTokenizer *, gboolean is_case_sensitive);
|
|
|
|
void e_searching_tokenizer_set_secondary_search_string (ESearchingTokenizer *, const gchar *);
|
|
void e_searching_tokenizer_set_secondary_case_sensitivity (ESearchingTokenizer *, gboolean is_case_sensitive);
|
|
|
|
|
|
gint e_searching_tokenizer_match_count (ESearchingTokenizer *);
|
|
|
|
|
|
#endif /* __E_SEARCHING_TOKENIZER_H__ */
|
|
|