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
|
/* -*- Mode: Vala; indent-tabs-mode: nil; tab-width: 4 -*-
* -*- coding: utf-8 -*-
*
* Copyright (C) 2011 ~ 2018 Deepin, Inc.
* 2011 ~ 2018 Wang Yong
*
* Author: Wang Yong <wangyong@deepin.com>
* Maintainer: Wang Yong <wangyong@deepin.com>
*
* 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
* 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, see <http://www.gnu.org/licenses/>.
*/
using Animation;
using Gtk;
using Widgets;
namespace Widgets {
public class SearchEntry : Gtk.EventBox {
public AnimateTimer timer;
public Gtk.Box box;
public Gtk.Box display_box;
public Gtk.Label search_label;
public ImageButton clear_button;
public Widgets.Entry search_entry;
public Widgets.ImageButton search_image;
public int animation_time = 100;
public int clear_button_margin_right = 12;
public int height = 36;
public int search_image_animate_start_x;
public int search_image_margin_right = 5;
public int search_image_margin_x = 18;
public SearchEntry() {
Intl.bindtextdomain(GETTEXT_PACKAGE, "/usr/share/locale");
this.add_events(Gdk.EventMask.BUTTON_PRESS_MASK
| Gdk.EventMask.BUTTON_RELEASE_MASK
| Gdk.EventMask.POINTER_MOTION_MASK
| Gdk.EventMask.LEAVE_NOTIFY_MASK);
set_size_request(-1, height);
timer = new AnimateTimer(AnimateTimer.ease_in_out, animation_time);
timer.animate.connect(on_animate);
box = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 0);
display_box = new Gtk.Box(Gtk.Orientation.HORIZONTAL, 0);
search_image = new ImageButton("search", true);
search_image.margin_end = search_image_margin_right;
search_image.set_valign(Gtk.Align.CENTER);
search_label = new Gtk.Label(null);
search_label.set_valign(Gtk.Align.CENTER);
search_label.set_text(_("Search"));
search_entry = new Widgets.Entry();
search_entry.set_placeholder_text(_("Search"));
clear_button = new ImageButton("search_clear", true);
clear_button.margin_right = clear_button_margin_right;
clear_button.set_valign(Gtk.Align.CENTER);
clear_button.clicked.connect((w, e) => {
search_entry.set_text("");
});
switch_to_display();
realize.connect((w) => {
bool is_light_theme = ((Widgets.ConfigWindow) get_toplevel()).is_light_theme();
if (is_light_theme) {
search_entry.get_style_context().add_class("remote_search_light_entry");
search_label.get_style_context().add_class("remote_search_label_light");
} else {
search_entry.get_style_context().add_class("remote_search_dark_entry");
search_label.get_style_context().add_class("remote_search_label_dark");
}
});
button_press_event.connect((w, e) => {
display_box.set_halign(Gtk.Align.START);
display_box.remove(search_label);
this.translate_coordinates(search_image, 0, 0, out search_image_animate_start_x, null);
search_image_animate_start_x = search_image_animate_start_x.abs() - search_image_margin_x;
search_image.margin_left = search_image_margin_x + search_image_animate_start_x;
timer.reset();
return false;
});
key_press_event.connect((w, e) => {
string keyname = Keymap.get_keyevent_name(e);
if (keyname == "Esc") {
switch_to_display();
}
return false;
});
add(box);
}
public void on_animate(double progress) {
search_image.margin_left = search_image_margin_x + (int) (search_image_animate_start_x * (1.0 - progress));
if (progress >= 1.0) {
timer.stop();
switch_to_input();
}
}
public void switch_to_display() {
Utils.remove_all_children(box);
search_image.margin_left = 0;
display_box.pack_start(search_image, false, false, 0);
display_box.pack_start(search_label, false, false, 0);
display_box.set_halign(Gtk.Align.CENTER);
box.pack_start(display_box, true, true, 0);
show_all();
}
public void switch_to_input() {
Utils.remove_all_children(box);
Utils.remove_all_children(display_box);
box.pack_start(search_image, false, false, 0);
box.pack_start(search_entry, true, true, 0);
box.pack_start(clear_button, false, false, 0);
search_image.margin_left = search_image_margin_x;
search_entry.grab_focus();
show_all();
}
}
}
|