summaryrefslogtreecommitdiff
path: root/libs/widgets/searchbar.cc
blob: e39c77c6e8e075bf5fbbb8fb8f250e6f11a95615 (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
/*
 * Copyright (C) 2017 Robin Gareus <robin@gareus.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 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include <iostream>

#include "gtkmm2ext/keyboard.h"
#include "widgets/searchbar.h"

using namespace ArdourWidgets;

SearchBar::SearchBar (const std::string& label, bool icon_resets)
	: placeholder_text (label)
	, icon_click_resets (icon_resets)
{
	set_text (placeholder_text);
	set_alignment (Gtk::ALIGN_CENTER);
	signal_key_press_event().connect (sigc::mem_fun (*this, &SearchBar::key_press_event));
	signal_focus_in_event().connect (sigc::mem_fun (*this, &SearchBar::focus_in_event));
	signal_focus_out_event().connect (sigc::mem_fun (*this, &SearchBar::focus_out_event));
	signal_changed().connect (sigc::mem_fun (*this, &SearchBar::search_string_changed));
	signal_icon_release().connect (sigc::mem_fun (*this, &SearchBar::icon_clicked_event));
}

bool
SearchBar::focus_in_event (GdkEventFocus*)
{
	if (get_text ().compare (placeholder_text) == 0) {
		set_text ("");
	}

	icon = get_icon_pixbuf ();
	if (icon) {
		set_icon_from_pixbuf (Glib::RefPtr<Gdk::Pixbuf> ());
	}
	return true;
}

bool
SearchBar::focus_out_event (GdkEventFocus*)
{
	if (get_text ().empty ()) {
		set_text (placeholder_text);
	}

	if (icon) {
		set_icon_from_pixbuf (icon);
		icon.reset ();
	}

	search_string_changed ();
	return false;
}

bool
SearchBar::key_press_event (GdkEventKey* ev)
{
	switch (ev->keyval) {
	case GDK_Escape: 
		set_text (placeholder_text);
		return true;
	default:
		break;
	}

	return false;
}

void
SearchBar::icon_clicked_event (Gtk::EntryIconPosition, const GdkEventButton*)
{
	if (icon_click_resets) {
		reset ();
	}
	else {
		search_string_changed ();
	}
}

void
SearchBar::search_string_changed () const
{
	const std::string& text = get_text ();
	if (text.empty() || text.compare (placeholder_text) == 0) {
		sig_search_string_updated ("");
		return;
	}
	sig_search_string_updated (text);
}

void
SearchBar::reset ()
{
	set_text (placeholder_text);
	search_string_changed ();
}