Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
... | |||||
* | src/tab-chrome.c: Hackishly enlarge tab history text scrolled window | Patrick McDermott | 2017-09-20 | 1 | -1/+9 |
| | |||||
* | src/tab-chrome.c: Better organize tab history scrolled windows code | Patrick McDermott | 2017-09-20 | 1 | -13/+20 |
| | |||||
* | Revert "src/tab-chrome.c: Try to resize tab history scrolled windows" | Patrick McDermott | 2017-09-20 | 1 | -32/+0 |
| | | | | This reverts commit 22056692ce29110774bf5486214f8b55b5006922. | ||||
* | src/tab-chrome.c: Try to resize tab history scrolled windows | Patrick McDermott | 2017-09-20 | 1 | -0/+32 |
| | | | | Doesn't work. | ||||
* | src/tab-chrome.c: Make tab history list and text scrollable | Patrick McDermott | 2017-09-20 | 1 | -3/+16 |
| | | | | | Currently, the list's and text view's sizes aren't propagated to their parent scrolled windows. | ||||
* | src/tab-chrome.c: Bolden the current URI in tab history text view | Patrick McDermott | 2017-09-20 | 1 | -2/+5 |
| | |||||
* | src/tab-chrome.c: Fix order of forward list items | Patrick McDermott | 2017-09-20 | 1 | -18/+20 |
| | |||||
* | src/window.c: Remove old tab list back button click callback | Patrick McDermott | 2017-09-19 | 1 | -11/+0 |
| | |||||
* | src/window.c: Make tab list button functional (again) | Patrick McDermott | 2017-09-19 | 1 | -11/+8 |
| | |||||
* | src/window.c: Convert tab list button to toggle button | Patrick McDermott | 2017-09-19 | 1 | -1/+14 |
| | |||||
* | src/window.c: Put tab list under tab menu buttons | Patrick McDermott | 2017-09-19 | 1 | -26/+11 |
| | |||||
* | src/window.c: Arrange tab menu buttons in grid | Patrick McDermott | 2017-09-19 | 1 | -25/+24 |
| | |||||
* | src/tab-chrome.[ch]: Add (non-functional) menu | Patrick McDermott | 2017-09-19 | 2 | -0/+61 |
| | |||||
* | mq_tab_body_new(): Or maybe that didn't really work. | Patrick McDermott | 2017-09-19 | 1 | -0/+1 |
| | |||||
* | mq_tab_body_new(): Assign focus to Web view | Patrick McDermott | 2017-09-19 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the following assertion in GTK+ versions before 3.15.3: Gtk-CRITICAL **: gtk_widget_is_ancestor: assertion 'GTK_IS_WIDGET (widget)' failed This assertion occurs when: 1. No widget has been given input focus, 2. A popover (e.g. the tab label context menu) is shown, and 3. The window regains focus. This is because of the following code in window_focus_in() in gtk/gtkpopover.c (from 3.14.x): focus = gtk_window_get_focus (GTK_WINDOW (widget)); if (!gtk_widget_is_ancestor (focus, GTK_WIDGET (popover))) gtk_widget_grab_focus (GTK_WIDGET (popover)); When no widget has focus, the first argument to gtk_widget_is_ancestor() (which is checked with a GTK_IS_WIDGET() assertion) is NULL. So, some widget needs to have focus before a popover is shown and the window regains focus. Arguably, this is a bug in GTK+, and it has been fixed in GTK+ 3.15.3: https://git.gnome.org/browse/gtk+/commit/gtk/gtkpopover.c?id=e26fddc With that change, the above lines from window_focus_in() now read: focus = gtk_window_get_focus (GTK_WINDOW (widget)); if (focus == NULL || !gtk_widget_is_ancestor (focus, GTK_WIDGET (popover))) gtk_widget_grab_focus (GTK_WIDGET (popover)); That is, if focus is NULL, don't check if popover is an ancestor of it. Instead just give focus to popover. | ||||
* | src/tab-chrome.c: Fix gtk_widget_set_can_focus() assertion | Patrick McDermott | 2017-09-19 | 1 | -4/+5 |
| | | | | | | Fixes: Gtk-CRITICAL **: gtk_widget_set_can_focus: assertion 'GTK_IS_WIDGET (widget)' failed | ||||
* | src/window.c: Adjust case of button tooltips | Patrick McDermott | 2017-09-19 | 1 | -7/+7 |
| | |||||
* | src/tab-chrome.c: Disable focus on tab history list icons | Patrick McDermott | 2017-09-19 | 1 | -0/+2 |
| | | | | Otherwise, the radio button can accept the input focus. | ||||
* | mq_window_new(): Disable focus on notebook | Patrick McDermott | 2017-09-19 | 1 | -0/+1 |
| | |||||
* | src/window.c: Add tab list back button | Patrick McDermott | 2017-09-19 | 1 | -3/+30 |
| | |||||
* | src/window.c: Make tab list button functional | Patrick McDermott | 2017-09-19 | 1 | -0/+14 |
| | |||||
* | src/tab-chrome.c: Add "_cb" to a callback function name | Patrick McDermott | 2017-09-19 | 1 | -2/+2 |
| | |||||
* | src/window.c: Add (non-functional) tab close buttons | Patrick McDermott | 2017-09-19 | 1 | -0/+2 |
| | |||||
* | src/window.c: Disable focus on tab popover buttons | Patrick McDermott | 2017-09-19 | 1 | -1/+2 |
| | | | | And sneak in a TODO comment. | ||||
* | src/window.c: Add tab popover/context menu | Patrick McDermott | 2017-09-19 | 1 | -1/+75 |
| | | | | The buttons don't do anything yet. | ||||
* | src/window.c: Rearrange tab label code statements | Patrick McDermott | 2017-09-19 | 1 | -4/+6 |
| | |||||
* | src/tab-chrome.c: Wrap a long line | Patrick McDermott | 2017-09-19 | 1 | -1/+2 |
| | |||||
* | src/tab-chrome.c: Adjust history popover to size of visible child | Patrick McDermott | 2017-09-19 | 1 | -2/+8 |
| | |||||
* | src/tab-chrome.c: Free temporary tab history list item URI string | Patrick McDermott | 2017-09-19 | 1 | -8/+9 |
| | |||||
* | src/tab-chrome.c: Add tab history text view | Patrick McDermott | 2017-09-19 | 1 | -1/+24 |
| | |||||
* | src/tab-chrome.[ch]: Close back/forward popover on row activation | Patrick McDermott | 2017-09-19 | 2 | -4/+21 |
| | |||||
* | mq_tab_body_new(): Remove sidebar | Patrick McDermott | 2017-09-19 | 1 | -6/+1 |
| | |||||
* | src/tab-chrome.c: Add some comments | Patrick McDermott | 2017-09-19 | 1 | -0/+11 |
| | |||||
* | src/tab-chrome.c: Fix tab history list icon stacks | Patrick McDermott | 2017-09-19 | 1 | -16/+27 |
| | | | | This is rather hackish, but oh well. | ||||
* | src/tab-chrome.c: Make tab history list icon stacks | Patrick McDermott | 2017-09-19 | 1 | -10/+20 |
| | | | | Still doesn't quite work. The wrong child is visible on most stacks. | ||||
* | Revert "src/tab-chrome.c: Try to resize tab history list icons" | Patrick McDermott | 2017-09-18 | 1 | -59/+9 |
| | | | | This reverts commit f86483d624227ea01a5d3ed2ddf814cb747cc246. | ||||
* | src/tab-chrome.c: Try to resize tab history list icons | Patrick McDermott | 2017-09-18 | 1 | -9/+59 |
| | | | | Ugly. Doesn't work. | ||||
* | Revert "src/tab-chrome.c: Try to synchronize tab history list icon sizes" | Patrick McDermott | 2017-09-18 | 1 | -48/+4 |
| | | | | This reverts commit 6eb6482e94ee5a82891a7e3294e4f8d72f2104d5. | ||||
* | src/tab-chrome.c: Left-align tab history list toggle button | Patrick McDermott | 2017-09-18 | 1 | -0/+1 |
| | |||||
* | src/tab-chrome.c: Try to synchronize tab history list icon sizes | Patrick McDermott | 2017-09-18 | 1 | -4/+48 |
| | | | | Doesn't work. | ||||
* | src/tab-chrome.c: Left-align tab history list item labels | Patrick McDermott | 2017-09-18 | 1 | -0/+2 |
| | |||||
* | src/tab-chrome.c: Apply tooltips to whole tab history list items | Patrick McDermott | 2017-09-18 | 1 | -2/+2 |
| | |||||
* | src/tab-chrome.c: Add tooltips to tab history list items | Patrick McDermott | 2017-09-18 | 1 | -3/+6 |
| | |||||
* | src/tab-chrome.c: Shorten a variable name | Patrick McDermott | 2017-09-18 | 1 | -5/+5 |
| | |||||
* | src/tab-chrome.c: Refactor tab history list current item code | Patrick McDermott | 2017-09-18 | 1 | -3/+3 |
| | |||||
* | src/tab-chrome.c: Refactor tab history list code | Patrick McDermott | 2017-09-18 | 1 | -17/+23 |
| | |||||
* | src/tab-chrome.c: Add back/forward icons to tab history list | Patrick McDermott | 2017-09-18 | 1 | -4/+15 |
| | |||||
* | src/tab-chrome.c: Implement basic tab history list | Patrick McDermott | 2017-09-18 | 1 | -5/+39 |
| | |||||
* | src/tab-chrome.c: Use toggle button for tab history stack | Patrick McDermott | 2017-09-18 | 1 | -17/+21 |
| | |||||
* | src/tab-chrome.c: Use labels on tab history stack switcher | Patrick McDermott | 2017-09-18 | 1 | -2/+4 |
| | | | | Works, but icons would be prettier. |