#include <editor.h>
Definition at line 85 of file editor.h.
EditorWindow::EditorWindow | ( | int | w, | |
int | h, | |||
const char * | t | |||
) |
Definition at line 101 of file editor.h.
References editor, replace2_cb(), replace_all, replace_cancel, replace_dlg, replace_find, replace_next, replace_with, replall_cb(), replcan_cb(), and search.
00101 : Fl_Double_Window(w, h, t) { 00102 replace_dlg = new Fl_Window(300, 105, "Replace"); 00103 replace_find = new Fl_Input(80, 10, 210, 25, "Find:"); 00104 replace_find->align(FL_ALIGN_LEFT); 00105 00106 replace_with = new Fl_Input(80, 40, 210, 25, "Replace:"); 00107 replace_with->align(FL_ALIGN_LEFT); 00108 00109 replace_all = new Fl_Button(10, 70, 90, 25, "Replace All"); 00110 replace_all->callback((Fl_Callback *)replall_cb, this); 00111 00112 replace_next = new Fl_Return_Button(105, 70, 120, 25, "Replace Next"); 00113 replace_next->callback((Fl_Callback *)replace2_cb, this); 00114 00115 replace_cancel = new Fl_Button(230, 70, 60, 25, "Cancel"); 00116 replace_cancel->callback((Fl_Callback *)replcan_cb, this); 00117 replace_dlg->end(); 00118 replace_dlg->set_non_modal(); 00119 editor = 0; 00120 *search = (char)0; 00121 }
Here is the call graph for this function:
EditorWindow::~EditorWindow | ( | ) |
Definition at line 123 of file editor.h.
References replace_dlg.
00123 { 00124 delete replace_dlg; 00125 }
Fl_Window* EditorWindow::replace_dlg |
Definition at line 90 of file editor.h.
Referenced by EditorWindow(), replace2_cb(), replace_cb(), replall_cb(), replcan_cb(), and ~EditorWindow().
Fl_Input* EditorWindow::replace_find |
Definition at line 91 of file editor.h.
Referenced by EditorWindow(), replace2_cb(), and replall_cb().
Fl_Input* EditorWindow::replace_with |
Definition at line 92 of file editor.h.
Referenced by EditorWindow(), replace2_cb(), and replall_cb().
Fl_Button* EditorWindow::replace_all |
Fl_Return_Button* EditorWindow::replace_next |
Fl_Button* EditorWindow::replace_cancel |
Fl_Text_Editor* EditorWindow::editor |
Definition at line 97 of file editor.h.
Referenced by copy_cb(), cut_cb(), EditorWindow(), find2_cb(), insert_conversions_cb(), insert_cstags_cb(), insert_gen01_cb(), insert_gen02_cb(), insert_gen03_cb(), insert_gen04_cb(), insert_gen06_cb(), insert_gen07_cb(), insert_gen08_cb(), insert_gen09_cb(), insert_gen10_cb(), insert_gen11_cb(), insert_gen12_cb(), insert_gen13_cb(), insert_gen15_cb(), insert_gen17_cb(), insert_gen19_cb(), insert_gen20_cb(), insert_gen23_cb(), insert_gen25_cb(), insert_gen27_cb(), insert_gen28_cb(), insert_header22050mo_cb(), insert_header22050ste_cb(), insert_header44100mo_cb(), insert_header44100ste_cb(), insert_header48000mo_cb(), insert_header48000ste_cb(), paste_cb(), replace2_cb(), and replall_cb().
char EditorWindow::search[256] |