#include <gtk/gtk.h>
Go to the source code of this file.
Functions | |
void | find (GtkTextView *text_view, const gchar *text, GtkTextIter *iter) |
Finds the text in the textbuffer. | |
void | next_button_clicked (GtkWidget *next_button) |
Event handler when "next" button is clicked. | |
void | search_button_clicked (GtkWidget *search_button) |
Event handler when "search" button is clicked. | |
void | textfind (void) |
Displays a window to enter search text. | |
void | win_destroy (void) |
Destroy the window. | |
Variables | |
GtkWidget * | search_entry |
Search entry variable. | |
GtkWidget * | text_view |
GtkWidget * | view |
These give us text view widgets where all the typing is done. |
void find | ( | GtkTextView * | text_view, | |
const gchar * | text, | |||
GtkTextIter * | iter | |||
) |
Finds the text in the textbuffer.
Definition at line 10 of file find.c.
Referenced by next_button_clicked(), and search_button_clicked().
void next_button_clicked | ( | GtkWidget * | next_button | ) |
Event handler when "next" button is clicked.
Definition at line 36 of file find.c.
References find(), search_entry, text_view, and window1.
Referenced by textfind().
void search_button_clicked | ( | GtkWidget * | search_button | ) |
Event handler when "search" button is clicked.
Definition at line 74 of file find.c.
References find(), search_entry, and text_view.
Referenced by text_find_replace(), and textfind().
void textfind | ( | void | ) |
Displays a window to enter search text.
Definition at line 89 of file find.c.
References next_button_clicked(), search_button_clicked(), search_entry, text_view, and view.
Referenced by search_find().
GtkWidget* search_entry |
Search entry variable.
Definition at line 6 of file find.c.
Referenced by next_button_clicked(), replace_button_clicked(), search_button_clicked(), text_find_replace(), and textfind().
GtkWidget* text_view |
Definition at line 4 of file find.c.
Referenced by next_button_clicked(), replace_button_clicked(), search_button_clicked(), text_find_replace(), and textfind().
GtkWidget* view |
These give us text view widgets where all the typing is done.
Definition at line 40 of file fileselect.c.