/ gwnotebooksearch.h / Content
/* GWhere.
* Copyright (C) 2000 Sébastien LECACHEUR
*
* 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 GW_GUI_GW_NOTEBOOK_SEARCH_H
#define GW_GUI_GW_NOTEBOOK_SEARCH_H
#include "data/gwdata.h"
GtkWidget * gw_notebook_search_create ( GtkWindow *w);
GtkWidget * gw_notebook_search_create_and_add ( GtkWindow *w, GtkNotebook * parent);
GtkCList * gw_notebook_search_get_clist_search ( GtkWindow *w);
gchar * gw_notebook_search_get_search_text ( GtkWindow *w);
gboolean gw_notebook_search_set_search_text ( GtkWindow *w, gchar *text);
gboolean gw_notebook_search_set_option_case_sensitive ( GtkWindow *w, gboolean case_sensitive);
gboolean gw_notebook_search_set_option_key_words ( GtkWindow *w, gboolean key_words);
gboolean gw_notebook_search_set_option_wildcards ( GtkWindow *w, gboolean wildcards);
gboolean gw_notebook_search_set_option_regular_expression ( GtkWindow *w, gboolean regex);
gboolean gw_notebook_search_set_option_search_type ( GtkWindow *w, gint search_type);
gboolean gw_notebook_search_set_option_match_file ( GtkWindow *w, gboolean match_file);
gboolean gw_notebook_search_set_option_match_folder ( GtkWindow *w, gboolean match_folder);
gboolean gw_notebook_search_set_option_match_disk ( GtkWindow *w, gboolean match_disk);
gboolean gw_notebook_search_set_option_match_category ( GtkWindow *w, gboolean match_category);
gboolean gw_notebook_search_set_option_match_description ( GtkWindow *w, gboolean math_description);
gint gw_notebook_search_clist_search_set_column_title ( void);
gboolean gw_notebook_search_get_option_case_sensitive ( GtkWindow *w);
gboolean gw_notebook_search_get_option_key_words ( GtkWindow *w);
gboolean gw_notebook_search_get_option_wildcards ( GtkWindow *w);
gboolean gw_notebook_search_get_option_regular_expression ( GtkWindow *w);
gint gw_notebook_search_get_option_search_type ( GtkWindow *w);
gboolean gw_notebook_search_get_option_match_file ( GtkWindow *w);
gboolean gw_notebook_search_get_option_match_folder ( GtkWindow *w);
gboolean gw_notebook_search_get_option_match_disk ( GtkWindow *w);
gboolean gw_notebook_search_get_option_match_category ( GtkWindow *w);
gboolean gw_notebook_search_get_option_match_description ( GtkWindow *w);
struct user_quick_search * gw_notebook_search_get_user_quick_search ( GtkWindow *w);
#endif