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
|
/* -*- 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 Gtk;
using Widgets;
namespace Widgets {
public class ProgressBar : Gtk.EventBox {
public double draw_percent;
public double percent;
public int height = 22;
public Cairo.ImageSurface pointer_surface;
public Gdk.RGBA background_color;
public Gdk.RGBA foreground_color;
public int draw_pointer_offset = 3;
public int line_height = 2;
public int line_margin_top = 10;
public int width = Constant.PREFERENCE_WIDGET_WIDTH;
public signal void update(double percent);
public ProgressBar(double init_percent) {
percent = init_percent;
set_size_request(width, height);
foreground_color = Utils.hex_to_rgba("#2ca7f8");
background_color = Utils.hex_to_rgba("#A4A4A4");
pointer_surface = Utils.create_image_surface("progress_pointer.svg");
button_press_event.connect((w, e) => {
Gtk.Allocation rect;
w.get_allocation(out rect);
set_percent(e.x * 1.0 / rect.width);
return false;
});
motion_notify_event.connect((w, e) => {
Gtk.Allocation rect;
w.get_allocation(out rect);
set_percent(e.x * 1.0 / rect.width);
return false;
});
draw.connect(on_draw);
show_all();
}
public void set_percent(double new_percent) {
percent = double.max(double.min((1 - Constant.TERMINAL_MIN_OPACITY) * new_percent + Constant.TERMINAL_MIN_OPACITY, 1), Constant.TERMINAL_MIN_OPACITY);
draw_percent = double.max(double.min(new_percent, 1), 0);
update(percent);
queue_draw();
}
private bool on_draw(Gtk.Widget widget, Cairo.Context cr) {
Gtk.Allocation rect;
widget.get_allocation(out rect);
int left_offset = 0;
int right_offset = 0;
// Because pointer surface opacity at side.
// So we adjust background line offset to avoid user see background line at two side when percent is 0 or 1.
if (draw_percent == 0) {
left_offset = pointer_surface.get_width() / 2;
right_offset = pointer_surface.get_width() / 2;
} else if (draw_percent == 1) {
left_offset = 0;
right_offset = draw_pointer_offset;
}
Utils.set_context_color(cr, background_color);
Draw.draw_rectangle(cr, left_offset, line_margin_top, rect.width - right_offset, line_height);
if (draw_percent > 0) {
cr.set_source_rgba(1, 0, 1, 1);
Utils.set_context_color(cr, foreground_color);
Draw.draw_rectangle(cr, left_offset, line_margin_top, (int) (rect.width * draw_percent) - right_offset, line_height);
}
Draw.draw_surface(cr,
pointer_surface,
int.max(-draw_pointer_offset,
int.min((int) (rect.width * draw_percent) - pointer_surface.get_width() / 2 / 2,
rect.width - pointer_surface.get_width() + draw_pointer_offset)),
0);
return true;
}
}
}
|