~ubuntu-branches/ubuntu/trusty/xiphos/trusty

« back to all changes in this revision

Viewing changes to src/gui/search_dialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Dmitrijs Ledkovs, Jonathan Marsden, Dmitrijs Ledkovs
  • Date: 2010-11-25 21:26:48 UTC
  • mfrom: (2.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20101125212648-mc64wvs0nw3xp7bx
Tags: 3.1.4-1
[ Jonathan Marsden ]
* New upstream release 3.1.4
* Removed debian/patch/* since the one patch was included upstream.
* Bumped Standards-Version to 3.9.1 (no changes required).
* debian/README.Debian: Corrected spelling and reworded for clarity.
* debian/control: Add Jonathan Marsden back into Uploaders.

[ Dmitrijs Ledkovs ]
* Added local options dpkg-source to unapply patches and fail on
  upstream source changes (ignoring false positives).
* Added bzr-builddeb hook to generate source-format before build. If you
  are not using bzr-builddeb, you must run "./debian/rules clean" before
  building.
* patches/xul-2.0.patch: bump UPPER_RANGE to allow running against xul20.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Xiphos Bible Study Tool
3
3
 * search_dialog.h - gui for searching Sword modules
4
4
 *
5
 
 * Copyright (C) 2000-2009 Xiphos Developer Team
 
5
 * Copyright (C) 2000-2010 Xiphos Developer Team
6
6
 *
7
7
 * This program is free software; you can redistribute it and/or modify
8
8
 * it under the terms of the GNU General Public License as published by
63
63
        GtkWidget *rb_regexp;
64
64
        GtkWidget *rb_exact_phrase;
65
65
        GtkWidget *rb_optimized;
 
66
        GtkWidget *button_intro_lucene;
66
67
        GtkWidget *rb_attributes;
 
68
        GtkWidget *button_intro_attributes;
67
69
        GtkWidget *rb_strongs;
68
70
        GtkWidget *rb_morphs;
69
71
        GtkWidget *rb_footnotes;
97
99
        gint range_rows;
98
100
        gint list_rows;
99
101
 
100
 
        gboolean show_in_main;
101
 
 
102
102
        gchar *search_mod;
103
103
};
104
104
extern SEARCH_DIALOG1 search1;
127
127
void delete_list(GtkButton * button, gpointer user_data);
128
128
void scope_toggled(GtkToggleButton * togglebutton, gpointer user_data);
129
129
void mod_list_toggled(GtkToggleButton * togglebutton, gpointer user_data);
 
130
void optimized_toggled(GtkToggleButton * togglebutton, gpointer user_data);
 
131
void on_lucene_intro_clicked(GtkButton * button, gpointer user_data);
 
132
void attributes_toggled(GtkToggleButton * togglebutton, gpointer user_data);
 
133
void on_attributes_intro_clicked(GtkButton * button, gpointer user_data);
130
134
void current_module_toggled(GtkToggleButton * togglebutton, gpointer user_data);
131
 
gboolean _on_button_release_event(GtkWidget * widget, GdkEventButton * event, gpointer data);
132
135
void on_closebutton2_clicked(GtkButton * button, gpointer user_data);
133
136
void _on_dialog2_response(GtkDialog * dialog, gint response_id, gpointer user_data);
134
137
void on_toolbutton12_clicked(GtkToolButton * toolbutton, gpointer user_data);