forked from KolibriOS/kolibrios
7f30709b5c
git-svn-id: svn://kolibrios.org@7975 a494cfbc-eb01-0410-851d-a64ba20cac60
119 lines
2.5 KiB
C
119 lines
2.5 KiB
C
|
|
#define SEARCH_H 34
|
|
|
|
|
|
struct SEARCH
|
|
{
|
|
bool visible;
|
|
int found_count;
|
|
collection_int found;
|
|
void show();
|
|
void hide();
|
|
bool draw();
|
|
bool edit_key();
|
|
bool edit_mouse();
|
|
int find_all();
|
|
int find_next();
|
|
} search;
|
|
|
|
char found_text[64];
|
|
|
|
char search_text[64];
|
|
edit_box search_box = {250, 10, NULL, 0xffffff,
|
|
0x94AECE, 0xffffff, 0xffffff,0x10000000,sizeof(search_text)-1,#search_text};
|
|
|
|
|
|
void SEARCH::show()
|
|
{
|
|
visible = true;
|
|
search_box.flags = ed_focus;
|
|
draw_window();
|
|
}
|
|
|
|
void SEARCH::hide()
|
|
{
|
|
visible = false;
|
|
draw_window();
|
|
}
|
|
|
|
bool SEARCH::edit_key()
|
|
{
|
|
if (visible) && (search_box.flags & ed_focus) {
|
|
EAX = key_editbox;
|
|
edit_box_key stdcall(#search_box);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool SEARCH::edit_mouse()
|
|
{
|
|
if (visible) {
|
|
edit_box_mouse stdcall(#search_box);
|
|
if (search_box.flags & ed_focus) return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool SEARCH::draw(dword _btn_find, _btn_hide, _y)
|
|
{
|
|
char matches[30];
|
|
if (!visible) return false;
|
|
DrawBar(0, _y, Form.cwidth, 1, sc.work_graph);
|
|
DrawBar(0, _y+1, Form.cwidth, SEARCH_H-1, sc.work);
|
|
|
|
search_box.top = _y + 6;
|
|
search_box.width = math.min(Form.width - 200, 150);
|
|
|
|
DrawRectangle(search_box.left-1, search_box.top-1, search_box.width+2, 23,sc.work_graph);
|
|
|
|
edit_box_draw stdcall(#search_box);
|
|
|
|
DrawCaptButton(search_box.left+search_box.width+14, search_box.top-1, 100,
|
|
TOOLBAR_ICON_HEIGHT+1, _btn_find, sc.work_light, sc.work_text, T_FIND_NEXT);
|
|
|
|
sprintf(#matches, T_MATCHES, found.count);
|
|
WriteTextWithBg(search_box.left+search_box.width+14+115,
|
|
search_box.top+3, 0xD0, sc.work_text, #matches, sc.work);
|
|
|
|
DefineHiddenButton(Form.cwidth-26, search_box.top-1, TOOLBAR_ICON_HEIGHT+1,
|
|
TOOLBAR_ICON_HEIGHT+1, _btn_hide);
|
|
WriteText(Form.cwidth-26+7, search_box.top+2, 0x81, sc.work_graph, "x");
|
|
return true;
|
|
}
|
|
|
|
int SEARCH::find_all()
|
|
{
|
|
dword haystack = io.buffer_data;
|
|
int needle_len = strlen(#found_text);
|
|
found.drop();
|
|
loop() {
|
|
if (! haystack = strstri(haystack, #found_text)) break;
|
|
found.add(haystack - needle_len);
|
|
haystack += needle_len;
|
|
}
|
|
}
|
|
|
|
int SEARCH::find_next(int _cur_pos)
|
|
{
|
|
int i;
|
|
dword t1, t2;
|
|
if (!search_text[0]) return false;
|
|
|
|
if (!streq(#found_text, #search_text)) {
|
|
strcpy(#found_text, #search_text);
|
|
find_all();
|
|
draw_window();
|
|
}
|
|
|
|
for (i=0; i<found.count; i++) {
|
|
if (signed found.get(i) - lines.get(_cur_pos) > 0) {
|
|
t1 = found.get(i);
|
|
while(t1 > lines.get(_cur_pos)) _cur_pos++;
|
|
return _cur_pos-1;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|