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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351
|
/*
* Copyright (C) 2019 elementary, Inc. (https://elementary.io)
* 2011-2013 Tom Beckmann <tom@elementaryos.org>
*
* This program or library is free software; you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA.
*/
namespace Granite {
// https://bugzilla.gnome.org/show_bug.cgi?id=767718
public delegate void WidgetsDroppedDelegate ();
}
namespace Granite.Widgets {
// a mask to ignore modifiers like num lock or caps lock that are irrelevant to keyboard shortcuts
internal const Gdk.ModifierType MODIFIER_MASK = (
Gdk.ModifierType.SHIFT_MASK |
Gdk.ModifierType.SUPER_MASK |
Gdk.ModifierType.CONTROL_MASK |
Gdk.ModifierType.MOD1_MASK
);
private class TabPageContainer : Gtk.EventBox {
private unowned Tab _tab = null;
public unowned Tab tab {
get { return _tab; }
set { _tab = value; }
}
DynamicNotebook dynamic_notebook {
get { return (get_parent () as Gtk.Notebook).get_parent () as DynamicNotebook; }
}
public TabPageContainer (Tab tab) {
Object (tab: tab);
}
construct {
add (new Gtk.Grid ());
// delay tabs resizing until cursor leaves tab-bar
// tab_bar-area = DynamicNotebook-area - TabPageContainer-area - add_button
this.enter_notify_event.connect ((e) => {
dynamic_notebook.check_to_recalc_size ();
return false;
});
}
}
/**
* This is a standard tab which can be used in a notebook to form a tabbed UI.
*/
public class Tab : Gtk.EventBox {
Gtk.Label _label;
public string label {
get { return _label.label; }
set {
_label.label = value;
_label.set_tooltip_text (value);
}
}
/**
* The (plain) text that will be shown in a tooltip when the tab is hovered.
**/
public string tooltip {
set {
_label.set_tooltip_text (value);
}
}
private bool _pinned = false;
public bool pinned {
get { return _pinned; }
set {
if (pinnable) {
if (value != _pinned) {
if (value) {
_label.visible = false;
_icon.margin_start = 1;
_working.margin_start = 1;
} else {
_label.visible = true;
_icon.margin_start = 0;
_working.margin_start = 0;
}
_pinned = value;
update_close_button_visibility ();
this.pin_switch ();
}
}
}
}
private bool _pinnable = true;
public bool pinnable {
get { return _pinnable; }
set {
if (!value) {
pinned = false;
}
_pinnable = value;
}
}
/**
* Data which will be kept once the tab is deleted, and which will be used by
* the application to restore the data into the restored tab. Let it empty if
* the tab should not be restored.
**/
public string restore_data { get; set; default=""; }
/**
* An optional delegate that is called when the tab is dropped from the set
* of restorable tabs in DynamicNotebook.
* A tab is dropped either when Clear All is pressed, or when
* the tab is the oldest tab in the set of restorable tabs and
* the number of restorable tabs has exceeded the upper limit.
*/
public WidgetsDroppedDelegate dropped_callback = null;
/**
* Accelerator label of the "Close Tab" menu item in the tab context menu.
*/
public AccelLabel? close_tab_label { get; construct; }
/**
* Accelerator label of the "Duplicate Tab" menu item in the tab context menu.
*/
public AccelLabel? duplicate_tab_label { get; construct; }
/**
* Accelerator label of "Open tab in New Window" menu item in the tab context menu.
*/
public AccelLabel? new_window_label { get; construct; }
internal TabPageContainer page_container;
public Gtk.Widget page {
get {
return page_container.get_child ();
}
set {
weak Gtk.Widget container_child = page_container.get_child ();
if (container_child != null) {
page_container.remove (container_child);
}
weak Gtk.Container? value_parent = value.get_parent ();
if (value_parent != null) {
value_parent.remove (value);
page_container.add (value);
} else {
page_container.add (value);
}
page_container.show_all ();
}
}
DynamicNotebook dynamic_notebook {
get { return (get_parent () as Gtk.Notebook).get_parent () as DynamicNotebook; }
}
internal Gtk.Image _icon;
public GLib.Icon? icon {
owned get { return _icon.gicon; }
set { _icon.gicon = value; }
}
Gtk.Spinner _working;
bool __working;
public bool working {
get { return __working; }
set {
__working = _working.visible = value;
_icon.visible = !value;
}
}
public Pango.EllipsizeMode ellipsize_mode {
get { return _label.ellipsize; }
set { _label.ellipsize = value; }
}
public Gtk.Menu menu { get; set; }
private bool _closable = true;
internal bool closable {
set {
if (value == _closable)
return;
_closable = value;
update_close_button_visibility ();
}
}
//We need to be able to toggle these from the notebook.
internal Gtk.MenuItem new_window_m;
internal Gtk.MenuItem duplicate_m;
internal Gtk.MenuItem pin_m;
private bool _is_current_tab = false;
internal bool is_current_tab {
set {
_is_current_tab = value;
update_close_button_visibility ();
}
}
private bool cursor_over_tab = false;
private bool cursor_over_close_button = false;
private Gtk.Revealer close_button_revealer;
internal signal void closed ();
internal signal void close_others ();
internal signal void close_others_right ();
internal signal void new_window ();
internal signal void duplicate ();
internal signal void pin_switch ();
/**
* With this you can construct a Tab. It is linked to the page that is shown on focus.
* A Tab can have a icon on the right side. You can pass null on the constructor to
* create a tab without a icon.
**/
public Tab (string? label = null, GLib.Icon? icon = null, Gtk.Widget? page = null) {
this.with_accellabels (label, icon, page);
}
/**
* Create a tab with accellabels.
*/
public Tab.with_accellabels (
string? label = null,
GLib.Icon? icon = null,
Gtk.Widget? page = null,
AccelLabel? _close_tab_label = null,
AccelLabel? _duplicate_tab_label = null,
AccelLabel? _new_window_label = null
) {
Object (
label: label,
icon: icon,
close_tab_label: _close_tab_label,
duplicate_tab_label: _duplicate_tab_label,
new_window_label: _new_window_label
);
if (page != null) {
this.page = page;
}
}
static construct {
Granite.init ();
}
construct {
if (close_tab_label == null) {
close_tab_label = new Granite.AccelLabel (_("Close Tab"));
}
if (new_window_label == null) {
new_window_label = new Granite.AccelLabel (_("Open in a New Window"));
}
if (duplicate_tab_label == null) {
duplicate_tab_label = new Granite.AccelLabel (_("Duplicate"));
}
_label = new Gtk.Label (null);
_label.hexpand = true;
_label.tooltip_text = label;
_label.ellipsize = Pango.EllipsizeMode.END;
_icon = new Gtk.Image ();
_icon.icon_size = Gtk.IconSize.MENU;
_icon.visible = true;
_icon.set_size_request (16, 16);
_working = new Gtk.Spinner ();
_working.set_size_request (16, 16);
_working.start ();
var close_button = new Gtk.Button.from_icon_name ("window-close-symbolic", Gtk.IconSize.MENU);
close_button.tooltip_text = _("Close Tab");
close_button.valign = Gtk.Align.CENTER;
close_button.relief = Gtk.ReliefStyle.NONE;
close_button_revealer = new Gtk.Revealer () {
transition_duration = TRANSITION_DURATION_IN_PLACE,
transition_type = Gtk.RevealerTransitionType.CROSSFADE
};
close_button_revealer.add (close_button);
var tab_layout = new Gtk.Grid ();
tab_layout.hexpand = false;
tab_layout.orientation = Gtk.Orientation.HORIZONTAL;
tab_layout.add (close_button_revealer);
tab_layout.add (_label);
tab_layout.add (_icon);
tab_layout.add (_working);
visible_window = true;
add (tab_layout);
show_all ();
page_container = new TabPageContainer (this);
menu = new Gtk.Menu ();
var close_m = new Gtk.MenuItem () { child = close_tab_label };
var close_other_m = new Gtk.MenuItem.with_label ("");
var close_other_right_m = new Gtk.MenuItem.with_label ("");
pin_m = new Gtk.MenuItem.with_label ("");
new_window_m = new Gtk.MenuItem () { child = new_window_label };
duplicate_m = new Gtk.MenuItem () { child = duplicate_tab_label };
menu.append (close_other_m);
menu.append (close_other_right_m);
menu.append (close_m);
menu.append (new_window_m);
menu.append (duplicate_m);
menu.append (pin_m);
menu.show_all ();
close_m.activate.connect (() => closed () );
close_other_m.activate.connect (() => close_others () );
close_other_right_m.activate.connect (() => close_others_right () );
new_window_m.activate.connect (() => new_window () );
duplicate_m.activate.connect (() => duplicate () );
pin_m.activate.connect (() => pinned = !pinned);
add_events (Gdk.EventMask.SCROLL_MASK);
this.scroll_event.connect ((e) => {
switch (e.direction) {
case Gdk.ScrollDirection.UP:
case Gdk.ScrollDirection.LEFT:
dynamic_notebook.previous_page ();
return true;
case Gdk.ScrollDirection.DOWN:
case Gdk.ScrollDirection.RIGHT:
dynamic_notebook.next_page ();
return true;
}
return false;
});
this.button_press_event.connect ((e) => {
if (e.button == 1 && e.type == Gdk.EventType.2BUTTON_PRESS && duplicate_m.visible) {
this.duplicate ();
} else if (e.button == 2) {
return true; // consume middle-click, prevent event propagation to DynamicNotebook
} else if (e.button == 3) {
menu.popup_at_pointer (e);
uint num_tabs = dynamic_notebook.n_tabs;
uint tab_position = dynamic_notebook.get_tab_position (this);
close_other_m.label = dngettext (GETTEXT_PACKAGE, _("Close Other Tab"), _("Close Other Tabs"), num_tabs - 1);
close_other_m.sensitive = (num_tabs != 1);
/// TRANSLATORS: This will close tabs to the left in right-to-left environments
close_other_right_m.label = dngettext (
GETTEXT_PACKAGE,
_("Close Tab to the Right"),
_("Close Tabs to the Right"),
num_tabs - 1 - tab_position
);
close_other_right_m.sensitive = (tab_position < num_tabs - 1);
new_window_m.sensitive = (num_tabs != 1);
pin_m.label = _("Pin");
if (this.pinned) {
pin_m.label = _("Unpin");
}
} else {
return false;
}
return true;
});
this.button_release_event.connect ((e) => {
if (e.button == 2 && cursor_over_tab) {
e.state &= MODIFIER_MASK;
if (e.state == 0) {
dynamic_notebook.close_tab_and_keep_width (this);
} else if (e.state == Gdk.ModifierType.SHIFT_MASK) {
this.close_others ();
}
return true;
}
return false;
});
this.enter_notify_event.connect ((e) => {
cursor_over_tab = true;
update_close_button_visibility ();
return false;
});
this.leave_notify_event.connect ((e) => {
// We don't want to handle leave_notify events without a prior enter_notify
// for event parity reasons.
if (!cursor_over_tab)
return false;
cursor_over_tab = false;
update_close_button_visibility ();
return false;
});
// Hovering the close button area causes a leave_notify_event on the tab EventBox.
// Because of that we need to watch the events from those widgets independently
// to avoid misbehavior. While setting "above_child" to "true" on the tab might
// appear to be a more proper solution, that wouldn't let us capture any event
// (e.g. button_press) on the button.
close_button.enter_notify_event.connect ((e) => {
cursor_over_close_button = true;
update_close_button_visibility ();
return false;
});
close_button.leave_notify_event.connect ((e) => {
// We don't want to handle leave_notify events without a prior enter_notify
// for event parity reasons.
if (!cursor_over_close_button)
return false;
cursor_over_close_button = false;
update_close_button_visibility ();
return false;
});
page_container.button_press_event.connect (() => { return true; }); //dont let clicks pass through
close_button.clicked.connect (() => { dynamic_notebook.close_tab_and_keep_width (this); });
working = false;
update_close_button_visibility ();
}
public void close () {
closed ();
}
private void update_close_button_visibility () {
// If the tab is pinned, we don't want the revealer to keep
// the size allocation of the close button.
close_button_revealer.no_show_all = _pinned;
close_button_revealer.visible = !_pinned;
close_button_revealer.reveal_child = _closable && !_pinned
&& (cursor_over_tab || cursor_over_close_button || _is_current_tab);
}
}
private class ClosedTabs : GLib.Object {
public signal void restored (string label, string restore_data, GLib.Icon? icon);
public signal void cleared ();
private int _max_restorable_tabs = 10;
public int max_restorable_tabs {
get { return _max_restorable_tabs; }
set {
assert (value > 0);
_max_restorable_tabs = value;
}
}
internal struct Entry {
string label;
string restore_data;
GLib.Icon? icon;
weak WidgetsDroppedDelegate? dropped_callback;
}
private Gee.LinkedList<Entry?> closed_tabs;
public ClosedTabs () {
}
construct {
closed_tabs = new Gee.LinkedList<Entry?> ();
}
public bool empty {
get {
return closed_tabs.size == 0;
}
}
public void push (Tab tab) {
foreach (var entry in closed_tabs)
if (tab.restore_data == entry.restore_data)
return;
// Insert the element at the end of the list.
Entry e = { tab.label, tab.restore_data, tab.icon, tab.dropped_callback };
closed_tabs.add (e);
// If the maximum size is exceeded, remove from the beginning of the list.
if (closed_tabs.size > max_restorable_tabs) {
var elem = closed_tabs.poll_head ();
unowned WidgetsDroppedDelegate? dropped_callback = elem.dropped_callback;
if (dropped_callback != null)
dropped_callback ();
}
}
public Entry pop () {
assert (closed_tabs.size > 0);
return closed_tabs.poll_tail ();
}
public Entry pick (string search) {
Entry picked = {null, null, null};
for (int i = 0; i < closed_tabs.size; i++) {
var entry = closed_tabs[i];
if (entry.restore_data == search) {
picked = closed_tabs.remove_at (i);
break;
}
}
return picked;
}
public Gtk.Menu menu {
owned get {
var _menu = new Gtk.Menu ();
foreach (var entry in closed_tabs) {
var item = new Gtk.MenuItem.with_label (entry.label);
_menu.prepend (item);
item.activate.connect (() => {
var e = pick (entry.restore_data);
this.restored (e.label, e.restore_data, e.icon);
});
}
if (!empty) {
var separator = new Gtk.SeparatorMenuItem ();
var item = new Gtk.MenuItem.with_label (_("Clear All"));
_menu.append (separator);
_menu.append (item);
item.activate.connect (() => {
foreach (var entry in closed_tabs) {
if (entry.dropped_callback != null) {
entry.dropped_callback ();
}
}
closed_tabs.clear ();
cleared ();
});
}
return _menu;
}
}
}
/**
* Tab bar widget designed for a variable number of tabs.
* Supports showing a "New tab" button, restoring closed tabs, "pinning" tabs, and more.
*
* {{../doc/images/DynamicNotebook.png}}
*/
public class DynamicNotebook : Gtk.EventBox {
/**
* number of pages
*/
public int n_tabs {
get { return notebook.get_n_pages (); }
}
/**
* Hide the tab bar and only show the pages
*/
public bool show_tabs {
get { return notebook.show_tabs; }
set { notebook.show_tabs = value; }
}
/**
* Hide the close buttons and disable closing of tabs
*/
bool _tabs_closable = true;
public bool tabs_closable {
get { return _tabs_closable; }
set {
if (value != _tabs_closable)
tabs.foreach ((t) => {
t.closable = value;
});
_tabs_closable = value;
}
}
/**
* Make tabs reorderable
*/
bool _allow_drag = true;
public bool allow_drag {
get { return _allow_drag; }
set {
_allow_drag = value;
this.tabs.foreach ((t) => {
notebook.set_tab_reorderable (t.page_container, value);
});
}
}
/**
* Allow creating new windows by dragging a tab out
*/
bool _allow_new_window = false;
public bool allow_new_window {
get { return _allow_new_window; }
set {
_allow_new_window = value;
this.tabs.foreach ((t) => {
notebook.set_tab_detachable (t.page_container, value);
});
}
}
/**
* Allow duplicating tabs
*/
bool _allow_duplication = false;
public bool allow_duplication {
get { return _allow_duplication; }
set {
_allow_duplication = value;
foreach (var tab in tabs) {
tab.duplicate_m.visible = value;
}
}
}
/**
* Allow restoring tabs
*/
bool _allow_restoring = false;
public bool allow_restoring {
get { return _allow_restoring; }
set {
_allow_restoring = value;
restore_tab_m.visible = value;
restore_button.visible = value;
}
}
/**
* Set or get the upper limit of the size of the set
* of restorable tabs.
*/
public int max_restorable_tabs {
get { return closed_tabs.max_restorable_tabs; }
set { closed_tabs.max_restorable_tabs = value; }
}
/**
* Controls the '+' add button visibility
*/
bool _add_button_visible = true;
public bool add_button_visible {
get { return _add_button_visible; }
set {
if (value != _add_button_visible) {
if (_add_button_visible) {
notebook.remove (add_button);
} else {
notebook.set_action_widget (add_button, Gtk.PackType.START);
}
_add_button_visible = value;
}
}
}
bool _allow_pinning = false;
public bool allow_pinning {
get { return _allow_pinning; }
set {
_allow_pinning = value;
foreach (var tab in tabs) {
tab.pinnable = value;
}
}
}
bool _force_left = true;
public bool force_left {
get { return _force_left; }
set { _force_left = value; }
}
/**
* The text shown in the add button tooltip
*/
public string add_button_tooltip {
get { _add_button_tooltip = add_button.tooltip_text; return _add_button_tooltip; }
set { add_button.tooltip_text = value; }
}
// Use temporary field to avoid breaking API this can be dropped while preparing for 0.4
string _add_button_tooltip;
/**
* Accelerator label of the "New Tab" menu item in the tab context menu.
*/
public AccelLabel new_tab_label { get; construct; }
/**
* Accelerator label of the "Restore Tab" menu item in the tab context menu.
*/
public AccelLabel restore_tab_label { get; construct; }
public Tab current {
get { return tabs.nth_data (notebook.get_current_page ()); }
set { notebook.set_current_page (tabs.index (value)); }
}
GLib.List<Tab> _tabs;
public GLib.List<Tab> tabs {
get {
_tabs = new GLib.List<Tab> ();
for (var i = 0; i < n_tabs; i++) {
_tabs.append (notebook.get_tab_label (notebook.get_nth_page (i)) as Tab);
}
return _tabs;
}
}
public string group_name {
get { return notebook.group_name; }
set { notebook.group_name = value; }
}
public enum TabBarBehavior {
ALWAYS = 0,
SINGLE = 1,
NEVER = 2
}
/**
* The behavior of the tab bar and its visibility
*/
public TabBarBehavior tab_bar_behavior {
set {
_tab_bar_behavior = value;
update_tabs_visibility ();
}
get { return _tab_bar_behavior; }
}
private TabBarBehavior _tab_bar_behavior;
/**
* The menu appearing when the notebook is clicked on a blank space
*/
public Gtk.Menu menu { get; private set; }
private ClosedTabs closed_tabs;
Gtk.Notebook notebook;
private const int MIN_TAB_WIDTH = 80;
private const int MAX_TAB_WIDTH = 220;
private const int TAB_WIDTH_PINNED = 18;
private int tab_width = MAX_TAB_WIDTH;
private bool wait_to_recalc_size = false;
public signal void tab_added (Tab tab);
public signal void tab_removed (Tab tab);
private Tab? old_tab; //stores a reference for tab_switched
public signal void tab_switched (Tab? old_tab, Tab new_tab);
public signal void tab_reordered (Tab tab, int new_pos);
public signal void tab_moved (Tab tab, int x, int y);
public signal void tab_duplicated (Tab duplicated_tab);
public signal void tab_restored (string label, string data, GLib.Icon? icon);
public signal void new_tab_requested ();
public signal bool close_tab_requested (Tab tab);
private Gtk.MenuItem new_tab_m;
private Gtk.MenuItem restore_tab_m;
private Gtk.Button add_button;
private Gtk.Button restore_button; // should be a Gtk.MenuButton when we have Gtk+ 3.6
/**
* Create a new dynamic notebook
*/
public DynamicNotebook () {
this.with_accellabels ();
}
/**
* Create a new dynamic notebook with accellabels
*/
public DynamicNotebook.with_accellabels (
AccelLabel new_tab_label = new AccelLabel (_("New Tab")),
AccelLabel restore_tab_label = new AccelLabel (_("Undo Close Tab"))
) {
Object (
new_tab_label: new_tab_label,
restore_tab_label: restore_tab_label
);
}
static construct {
Granite.init ();
}
construct {
notebook = new Gtk.Notebook ();
notebook.can_focus = false;
visible_window = true; // needed for leave_notify event
get_style_context ().add_class ("dynamic-notebook");
notebook.scrollable = true;
notebook.show_border = false;
_tab_bar_behavior = TabBarBehavior.ALWAYS;
add (notebook);
menu = new Gtk.Menu ();
new_tab_m = new Gtk.MenuItem () { child = new_tab_label };
restore_tab_m = new Gtk.MenuItem () {
child = restore_tab_label,
sensitive = false
};
menu.append (new_tab_m);
menu.append (restore_tab_m);
menu.show_all ();
new_tab_m.activate.connect (() => {
new_tab_requested ();
});
restore_tab_m.activate.connect (() => {
restore_last_tab ();
});
closed_tabs = new ClosedTabs ();
closed_tabs.restored.connect ((label, restore_data, icon) => {
if (!allow_restoring)
return;
restore_button.sensitive = !closed_tabs.empty;
restore_tab_m.sensitive = !closed_tabs.empty;
tab_restored (label, restore_data, icon);
});
closed_tabs.cleared.connect (() => {
restore_button.sensitive = false;
restore_tab_m.sensitive = false;
});
add_button = new Gtk.Button.from_icon_name ("list-add-symbolic", Gtk.IconSize.MENU);
add_button.relief = Gtk.ReliefStyle.NONE;
add_button.margin_top = 6;
add_button.margin_bottom = 6;
add_button.tooltip_text = _("New Tab");
// FIXME: Used to prevent an issue with widget overlap in Gtk+ < 3.20
var add_button_box = new Gtk.Box (Gtk.Orientation.HORIZONTAL, 0);
add_button_box.add (add_button);
add_button_box.show_all ();
restore_button = new Gtk.Button.from_icon_name ("document-open-recent-symbolic", Gtk.IconSize.MENU);
restore_button.margin_end = 3;
restore_button.relief = Gtk.ReliefStyle.NONE;
restore_button.tooltip_text = _("Closed Tabs");
restore_button.sensitive = false;
restore_button.show ();
notebook.set_action_widget (add_button_box, Gtk.PackType.START);
notebook.set_action_widget (restore_button, Gtk.PackType.END);
// delay tabs resizing until cursor leaves tab-bar
// tab_bar-area = DynamicNotebook-area - TabPageContainer-area - add_button
leave_notify_event.connect ((e) => { check_to_recalc_size (); return false; });
add_button.enter_notify_event.connect (() => { check_to_recalc_size (); return false; });
add_button.clicked.connect (() => {
new_tab_requested ();
});
add_button.button_press_event.connect ((e) => {
// Consume double-clicks
return e.type == Gdk.EventType.2BUTTON_PRESS && e.button == 1;
});
restore_button.clicked.connect (() => {
var menu = closed_tabs.menu;
menu.attach_widget = restore_button;
menu.show_all ();
menu.popup_at_widget (restore_button, Gdk.Gravity.SOUTH_EAST, Gdk.Gravity.NORTH_EAST, null);
});
restore_tab_m.visible = allow_restoring;
restore_button.visible = allow_restoring;
size_allocate.connect (() => {
if (!wait_to_recalc_size) {
recalc_size ();
}
});
button_press_event.connect ((e) => {
if (e.type == Gdk.EventType.2BUTTON_PRESS && e.button == 1) {
new_tab_requested ();
} else if (e.button == 2 && allow_restoring) {
restore_last_tab ();
return true;
} else if (e.button == 3) {
menu.popup_at_pointer (e);
}
return false;
});
key_press_event.connect ((e) => {
e.state &= MODIFIER_MASK;
switch (e.keyval) {
case Gdk.Key.@w:
case Gdk.Key.@W:
if (e.state == Gdk.ModifierType.CONTROL_MASK) {
if (!tabs_closable) {
break;
}
current.close ();
return true;
}
break;
case Gdk.Key.@t:
case Gdk.Key.@T:
if (e.state == Gdk.ModifierType.CONTROL_MASK) {
new_tab_requested ();
return true;
} else if (
e.state == (Gdk.ModifierType.CONTROL_MASK | Gdk.ModifierType.SHIFT_MASK) &&
allow_restoring
) {
restore_last_tab ();
return true;
}
break;
case Gdk.Key.Page_Up:
if (e.state == Gdk.ModifierType.CONTROL_MASK) {
next_page ();
return true;
}
break;
case Gdk.Key.Page_Down:
if (e.state == Gdk.ModifierType.CONTROL_MASK) {
previous_page ();
return true;
}
break;
case Gdk.Key.@1:
case Gdk.Key.@2:
case Gdk.Key.@3:
case Gdk.Key.@4:
case Gdk.Key.@5:
case Gdk.Key.@6:
case Gdk.Key.@7:
case Gdk.Key.@8:
if ((e.state & Gdk.ModifierType.MOD1_MASK) == Gdk.ModifierType.MOD1_MASK) {
var i = e.keyval - 49;
var n_pages = notebook.get_n_pages ();
notebook.page = (int) ((i >= n_pages) ? n_pages - 1 : i);
return true;
}
break;
case Gdk.Key.@9:
if ((e.state & Gdk.ModifierType.MOD1_MASK) == Gdk.ModifierType.MOD1_MASK) {
notebook.page = notebook.get_n_pages () - 1;
return true;
}
break;
}
return false;
});
destroy.connect (() => {
notebook.switch_page.disconnect (on_switch_page);
notebook.page_added.disconnect (on_page_added);
notebook.page_removed.disconnect (on_page_removed);
notebook.page_reordered.disconnect (on_page_reordered);
notebook.create_window.disconnect (on_create_window);
});
notebook.switch_page.connect (on_switch_page);
notebook.page_added.connect (on_page_added);
notebook.page_removed.connect (on_page_removed);
notebook.page_reordered.connect (on_page_reordered);
notebook.create_window.connect (on_create_window);
}
void on_switch_page (Gtk.Widget page, uint pagenum) {
var new_tab = (page as TabPageContainer).tab;
// update property accordingly for previous selected tab
if (old_tab != null)
old_tab.is_current_tab = false;
// now set the new tab as current
new_tab.is_current_tab = true;
tab_switched (old_tab, new_tab);
old_tab = new_tab;
}
void on_page_added (Gtk.Widget page, uint pagenum) {
var t = (page as TabPageContainer).tab;
insert_callbacks (t);
tab_added (t);
update_tabs_visibility ();
}
void on_page_removed (Gtk.Widget page, uint pagenum) {
var t = (page as TabPageContainer).tab;
remove_callbacks (t);
tab_removed (t);
update_tabs_visibility ();
}
void on_page_reordered (Gtk.Widget page, uint pagenum) {
tab_reordered ((page as TabPageContainer).tab, (int) pagenum);
recalc_order ();
}
unowned Gtk.Notebook on_create_window (Gtk.Widget page, int x, int y) {
var tab = notebook.get_tab_label (page) as Tab;
tab_moved (tab, x, y);
recalc_order ();
return (Gtk.Notebook) null;
}
private void recalc_order () {
if (n_tabs == 0 || !force_left)
return;
var pinned_tabs = 0;
for (var i = 0; i < this.notebook.get_n_pages (); i++) {
if ((this.notebook.get_tab_label (this.notebook.get_nth_page (i)) as Tab).pinned) {
pinned_tabs++;
}
}
for (var p = 0; p < pinned_tabs; p++) {
int sel = p;
for (var i = p; i < this.notebook.get_n_pages (); i++) {
if ((this.notebook.get_tab_label (this.notebook.get_nth_page (i)) as Tab).pinned) {
sel = i;
break;
}
}
if (sel != p) {
this.notebook.reorder_child (this.notebook.get_nth_page (sel), p);
}
}
}
private void recalc_size () {
if (n_tabs == 0)
return;
var pinned_tabs = 0;
var unpinned_tabs = 0;
for (var i = 0; i < n_tabs; i++) {
if ((this.notebook.get_tab_label (this.notebook.get_nth_page (i)) as Tab).pinned) {
pinned_tabs++;
} else {
unpinned_tabs++;
}
}
if (unpinned_tabs != 0) {
var offset = 130;
tab_width = (this.get_allocated_width () - offset - pinned_tabs * TAB_WIDTH_PINNED) / unpinned_tabs;
if (tab_width > MAX_TAB_WIDTH) {
tab_width = MAX_TAB_WIDTH;
} else if (tab_width < MIN_TAB_WIDTH) {
tab_width = MIN_TAB_WIDTH;
}
}
foreach (var tab in tabs.copy ()) {
tab.width_request = tab.pinned ? TAB_WIDTH_PINNED : tab_width;
}
this.notebook.resize_children ();
}
private void restore_last_tab () {
if (!allow_restoring || closed_tabs.empty) {
return;
}
var restored = closed_tabs.pop ();
restore_button.sensitive = !closed_tabs.empty;
restore_tab_m.sensitive = !closed_tabs.empty;
this.tab_restored (restored.label, restored.restore_data, restored.icon);
}
private void switch_pin_tab (Tab tab) {
if (!allow_pinning) {
return;
}
recalc_order ();
recalc_size ();
}
public void remove_tab (Tab tab) {
var pos = get_tab_position (tab);
if (pos != -1)
notebook.remove_page (pos);
}
public void next_page () {
if (this.notebook.page + 1 >= this.notebook.get_n_pages ()) {
this.notebook.page = 0;
} else {
this.notebook.page++;
}
}
public void previous_page () {
this.notebook.page = this.notebook.page - 1 < 0 ?
this.notebook.page = this.notebook.get_n_pages () - 1 : this.notebook.page - 1;
}
public override void show () {
base.show ();
notebook.show ();
}
public new List<Gtk.Widget> get_children () {
var list = new List<Gtk.Widget> ();
foreach (var child in notebook.get_children ()) {
list.append ((child as Gtk.Container).get_children ().nth_data (0));
}
return list;
}
public int get_tab_position (Tab tab) {
return this.notebook.page_num (tab.page_container);
}
public void set_tab_position (Tab tab, int position) {
notebook.reorder_child (tab.page_container, position);
tab_reordered (tab, position);
recalc_order ();
}
public Tab? get_tab_by_index (int index) {
return notebook.get_tab_label (notebook.get_nth_page (index)) as Tab;
}
public Tab? get_tab_by_widget (Gtk.Widget widget) {
return notebook.get_tab_label (widget.get_parent ()) as Tab;
}
public Gtk.Widget get_nth_page (int index) {
return notebook.get_nth_page (index);
}
public uint insert_tab (Tab tab, int index) {
return_val_if_fail (tabs.index (tab) < 0, 0);
index = this.notebook.insert_page (tab.page_container, tab, index <= -1 ? n_tabs : index);
this.notebook.set_tab_reorderable (tab.page_container, this.allow_drag);
this.notebook.set_tab_detachable (tab.page_container, this.allow_new_window);
tab.duplicate_m.visible = allow_duplication;
tab.new_window_m.visible = allow_new_window;
tab.pin_m.visible = allow_pinning;
tab.pinnable = allow_pinning;
tab.pinned = false;
tab.width_request = tab_width;
this.recalc_size ();
this.recalc_order ();
if (!tabs_closable)
tab.closable = false;
return index;
}
internal void close_tab_and_keep_width (Tab clicked_tab) {
wait_to_recalc_size = true;
clicked_tab.closed ();
}
internal void check_to_recalc_size () {
if (!wait_to_recalc_size) {
return;
}
recalc_size ();
wait_to_recalc_size = false;
}
private void insert_callbacks (Tab tab) {
tab.closed.connect (on_tab_closed);
tab.close_others.connect (on_close_others);
tab.close_others_right.connect (on_close_others_right);
tab.new_window.connect (on_new_window);
tab.duplicate.connect (on_duplicate);
tab.pin_switch.connect (on_pin_switch);
}
private void remove_callbacks (Tab tab) {
tab.closed.disconnect (on_tab_closed);
tab.close_others.disconnect (on_close_others);
tab.close_others_right.disconnect (on_close_others_right);
tab.new_window.disconnect (on_new_window);
tab.duplicate.disconnect (on_duplicate);
tab.pin_switch.disconnect (on_pin_switch);
}
private void on_tab_closed (Tab tab) {
if (Signal.has_handler_pending (
this,
Signal.lookup ("close-tab-requested", typeof (DynamicNotebook)),
0,
true
)) {
var sure = close_tab_requested (tab);
if (!sure) {
return;
}
}
var pos = get_tab_position (tab);
remove_tab (tab);
if (pos != -1 && tab.page.get_parent () != null)
tab.page.unparent ();
if (tab.label != "" && tab.restore_data != "") {
closed_tabs.push (tab);
restore_button.sensitive = !closed_tabs.empty;
restore_tab_m.sensitive = !closed_tabs.empty;
}
}
private void on_close_others (Tab clicked_tab) {
tabs.copy ().foreach ((tab) => {
if (tab != clicked_tab) {
tab.closed ();
}
});
}
private void on_close_others_right (Tab clicked_tab) {
var is_to_the_right = false;
tabs.copy ().foreach ((tab) => {
if (is_to_the_right) {
tab.closed ();
}
if (tab == clicked_tab) {
is_to_the_right = true;
}
});
}
private void on_new_window (Tab tab) {
notebook.create_window (tab.page_container, 0, 0);
}
private void on_duplicate (Tab tab) {
tab_duplicated (tab);
}
private void on_pin_switch (Tab tab) {
switch_pin_tab (tab);
}
private void update_tabs_visibility () {
if (_tab_bar_behavior == TabBarBehavior.SINGLE)
notebook.show_tabs = n_tabs > 1;
else if (_tab_bar_behavior == TabBarBehavior.NEVER)
notebook.show_tabs = false;
else if (_tab_bar_behavior == TabBarBehavior.ALWAYS)
notebook.show_tabs = true;
}
}
}
|