Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MARQUEE MODE | Patrick McDermott | 2017-09-29 | 1 | -0/+18 |
| | | | | Only works on ASCII titles so far. Crashes on UTF-8 titles. | ||||
* | Pass MqWindow up to mq_application_delete_window() | Patrick McDermott | 2017-09-29 | 1 | -1/+7 |
| | |||||
* | mq_window_set_current_tab(): New function | Patrick McDermott | 2017-09-28 | 1 | -0/+7 |
| | |||||
* | mq_window_update_tab_title(): New function | Patrick McDermott | 2017-09-28 | 1 | -0/+8 |
| | |||||
* | MqWindow: Count tabs from 1 | Patrick McDermott | 2017-09-28 | 1 | -2/+2 |
| | | | | The root tab is 0. MqTab counts non-root tabs from 1. | ||||
* | MqWindow: Update title on tab switch | Patrick McDermott | 2017-09-28 | 1 | -0/+13 |
| | |||||
* | mq_window_get_current_tab(): New function | Patrick McDermott | 2017-09-28 | 1 | -0/+16 |
| | |||||
* | mq_application_add_window(), mq_window_new(): Make uris const | Patrick McDermott | 2017-09-27 | 1 | -1/+1 |
| | |||||
* | mq_tab_new*(): Drop MqWindow parameter | Patrick McDermott | 2017-09-27 | 1 | -2/+2 |
| | | | | Instead get it through the tree. | ||||
* | mq_tab_new_root(): Accept and save MqWindow argument | Patrick McDermott | 2017-09-27 | 1 | -1/+1 |
| | |||||
* | MqWindow: Remove old function | Patrick McDermott | 2017-09-25 | 1 | -17/+0 |
| | |||||
* | mq_window_insert_tab(): Show tab | Patrick McDermott | 2017-09-25 | 1 | -0/+2 |
| | | | | | Only the first gtk_widget_show_all() call is needed, but let's make sure everything is shown. | ||||
* | mq_window_new(): Add tabs without adding to notebook | Patrick McDermott | 2017-09-25 | 1 | -2/+2 |
| | | | | | mq_window_insert_tab(), which adds a tab to the notebook, is now called by mq_tab_new() and mq_tab_new_relative(). | ||||
* | mq_window_insert_tab(): New function | Patrick McDermott | 2017-09-25 | 1 | -0/+12 |
| | |||||
* | MqWindow: Don't overwrite tab positions on create | Patrick McDermott | 2017-09-25 | 1 | -2/+0 |
| | |||||
* | mq_tab_new(), mq_tab_new_relative(): Change argument type to (MqWindow *) | Patrick McDermott | 2017-09-24 | 1 | -1/+1 |
| | | | | And save the window in the MqTab struct. | ||||
* | mq_window_get_application(): New function | Patrick McDermott | 2017-09-24 | 1 | -0/+6 |
| | |||||
* | MqWindow: Save MqApplication in struct | Patrick McDermott | 2017-09-24 | 1 | -0/+1 |
| | |||||
* | MqWindow: s/mq_tab_new/mq_tab_new_relative/ | Patrick McDermott | 2017-09-24 | 1 | -1/+1 |
| | |||||
* | MqWindow: Create and save root tab node | Patrick McDermott | 2017-09-24 | 1 | -0/+2 |
| | |||||
* | Save MqApplication in MqTab | Patrick McDermott | 2017-09-22 | 1 | -4/+4 |
| | |||||
* | MqWindow: Delete window from application on close | Patrick McDermott | 2017-09-22 | 1 | -2/+1 |
| | | | | Don't quit on window close. | ||||
* | mq_window_new(): Accept MqApplication argument | Patrick McDermott | 2017-09-22 | 1 | -1/+2 |
| | | | | | | | | | | | | Breaks build due to types not being defined soon enough in circularly dependent headers: CC src/marquee-main.o In file included from src/application.h:27:0, from src/main.c:30: src/window.h:35:15: error: unknown type name ‘MqApplication’ mq_window_new(MqApplication *application, gchar **uris); ^ | ||||
* | MqWindow: Don't load "about:new" | Patrick McDermott | 2017-09-22 | 1 | -1/+1 |
| | |||||
* | Move tab context menu code from MqWindow to MqTab | Patrick McDermott | 2017-09-22 | 1 | -101/+1 |
| | |||||
* | Move tab population code from MqWindow to MqTab | Patrick McDermott | 2017-09-22 | 1 | -23/+3 |
| | |||||
* | 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/window.c: Adjust case of button tooltips | Patrick McDermott | 2017-09-19 | 1 | -7/+7 |
| | |||||
* | 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/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/window.c: Set minimum tab width | Patrick McDermott | 2017-09-17 | 1 | -0/+1 |
| | |||||
* | src/window.c: Ellipsize and expand tab labels | Patrick McDermott | 2017-09-17 | 1 | -0/+3 |
| | |||||
* | mq_window_new(): Use gtk_window_set_default_size() instead | Patrick McDermott | 2017-09-17 | 1 | -1/+1 |
| | |||||
* | src/window.c: Add a stub function to update tab positions | Patrick McDermott | 2017-09-17 | 1 | -0/+15 |
| | |||||
* | add_tab(): Call mq_tab_update_position() | Patrick McDermott | 2017-09-17 | 1 | -0/+2 |
| | |||||
* | Revert add_tab() and pass label widgets instead | Patrick McDermott | 2017-09-17 | 1 | -2/+15 |
| | |||||
* | Move add_tab() label code to mq_tab_chrome_new() | Patrick McDermott | 2017-09-17 | 1 | -14/+1 |
| | | | | Doesn't work, though. | ||||
* | mq_tab_new(): Accept notebook instead of label | Patrick McDermott | 2017-09-17 | 1 | -1/+1 |
| | |||||
* | mq_tab_new(): Accept tab label argument | Patrick McDermott | 2017-09-17 | 1 | -1/+1 |
| | |||||
* | add_tab(): Set tab labels | Patrick McDermott | 2017-09-17 | 1 | -2/+15 |
| | |||||
* | add_tab(): Make tabs reorderable and detachable | Patrick McDermott | 2017-09-16 | 1 | -2/+8 |
| |