aboutsummaryrefslogtreecommitdiff
path: root/src/findbar.cc
blob: e8a5883cad9c80fcdfda7bd9d38e3d8f02d97799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
 * File: findbar.cc
 *
 * Copyright (C) 2005-2007 Jorge Arellano Cid <jcid@dillo.org>
 *
 * 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 3 of the License, or
 * (at your option) any later version.
 */

#include <fltk/xpmImage.h>
#include <fltk/events.h>
#include "findbar.hh"

#include "msg.h"
#include "pixmaps.h"
#include "uicmd.hh"
#include "bw.h"
#include "ui.hh"

/*
 * Local sub class
 * (Used to handle escape in the findbar, may also avoid some shortcuts).
 */
class MyInput : public Input {
public:
   MyInput (int x, int y, int w, int h, const char* l=0) :
      Input(x,y,w,h,l) {};
   int handle(int e);
};

int MyInput::handle(int e)
{
   _MSG("findbar NewInput::handle()\n");
   int ret = 1, k = event_key();
   unsigned modifier = event_state() & (SHIFT | CTRL | ALT | META);
   if (modifier == 0) {
      if (e == KEY && k == EscapeKey) {
         _MSG("findbar NewInput: caught EscapeKey\n");
         ret = 0;
      }
   }
   if (ret)
      ret = Input::handle(e);
   return ret;
};

/*
 * Find next occurrence of input key
 */
static void findbar_search_cb(Widget *, void *vfb)
{
   Findbar *fb = (Findbar *)vfb;
   const char *key = fb->i->value();
   bool case_sens = fb->cb->value();

   if (key[0] != '\0')
      a_UIcmd_findtext_search((BrowserWindow *) fb->ui->user_data(),
                              key, case_sens);
}

/*
 * Find next occurrence of input key
 */
static void findbar_search_cb2(Widget *widget, void *vfb)
{
   /*
    * Somehow fltk even regards the first loss of focus for the
    * window as a WHEN_ENTER_KEY_ALWAYS event.
    */ 
   if (event_key() == ReturnKey)
      findbar_search_cb(widget, vfb);
}

/*
 * Hide the search bar
 */
static void findbar_hide_cb(Widget *, void *vfb)
{
   ((Findbar *)vfb)->hide();
}

/*
 * Construct text search bar
 */
Findbar::Findbar(int width, int height, UI *ui) :
   Group(0, 0, width, height)
{
   int button_width = 70;
   int gap = 2;
   int border = 2;
   int input_width = width - (2 * border + 3 * (button_width + gap));
   int x = border;
   height -= 2 * border;

   this->ui = ui;
   this->hide();

   begin();
    hidebutton = new HighlightButton(x, border, 16, height, 0);
    hidebutton->image(new xpmImage(new_s_xpm));
    hidebutton->tooltip("Hide");
    x += 16 + gap;
    hidebutton->callback(findbar_hide_cb, this);

    i = new MyInput(x, border, input_width, height);
    x += input_width + gap;
    resizable(i);
    i->color(206);
    i->when(WHEN_ENTER_KEY_ALWAYS);
    i->callback(findbar_search_cb2, this);

    // todo: search previous would be nice
    findb = new HighlightButton(x, border, button_width, height, "&Next");
    x += button_width + gap;
    findb->tooltip("Find next occurrence of the search phrase");
    findb->add_shortcut(ReturnKey);
    findb->add_shortcut(KeypadEnter);
    findb->callback(findbar_search_cb, this);

    cb = new CheckButton(x, border, 2*button_width, height, "Case-sensitive");
    x += 2 * button_width + gap;

   end();
}

/*
 * Handle events. Used to catch EscapeKey events.
 */
int Findbar::handle(int event)
{
   int ret = 0;
   int k = event_key();
   unsigned modifier = event_state() & (SHIFT | CTRL | ALT | META);

   if (modifier == 0 && k == EscapeKey) {
      hide();
      ret = 1;
   }

   if (ret == 0)
      ret = Group::handle(event);

   return ret;
}

/*
 * Show the findbar and focus the input field
 */
void Findbar::show()
{
   Group::show();
   /* select text even if already focused */
   i->take_focus();
   i->position(i->size(), 0);
}

/*
 * Hide the findbar and reset the search state
 */
void Findbar::hide()
{
   BrowserWindow *bw;

   Group::hide();
   if ((bw = (BrowserWindow *) ui->user_data()))
      a_UIcmd_findtext_reset(bw);
}