Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
... | |||||
* | MqTab: Add tree manipulation functions | Patrick McDermott | 2017-09-24 | 1 | -0/+61 |
| | |||||
* | MqTab: Rename "tab_position" member to "position" | Patrick McDermott | 2017-09-24 | 2 | -3/+3 |
| | |||||
* | src/tab-chrome.h: Drop mq_tab_chrome_update_tab_position() | Patrick McDermott | 2017-09-24 | 1 | -3/+0 |
| | | | | The function was removed in commit 79fe032. | ||||
* | mq_tab_new_root(): New function | Patrick McDermott | 2017-09-24 | 1 | -0/+15 |
| | |||||
* | MqTab: Add tree structure members | Patrick McDermott | 2017-09-24 | 2 | -0/+11 |
| | |||||
* | src/tab*.h: Forward declare types | Patrick McDermott | 2017-09-22 | 3 | -6/+12 |
| | |||||
* | MqTab: Add close button tooltip | Patrick McDermott | 2017-09-22 | 1 | -2/+7 |
| | |||||
* | MqTab: Add some comments | Patrick McDermott | 2017-09-22 | 1 | -0/+5 |
| | |||||
* | MqTab: Make "Reload tab" button functional | Patrick McDermott | 2017-09-22 | 1 | -0/+8 |
| | |||||
* | MqTab: Drop semicolon in macro definition | Patrick McDermott | 2017-09-22 | 1 | -1/+1 |
| | |||||
* | MqTab: Close popover on opening new window | Patrick McDermott | 2017-09-22 | 1 | -0/+1 |
| | |||||
* | MqTab: Save popover in struct | Patrick McDermott | 2017-09-22 | 2 | -4/+4 |
| | |||||
* | MqTab: Make "New window" button functional | Patrick McDermott | 2017-09-22 | 1 | -0/+11 |
| | |||||
* | Save MqApplication in MqTab | Patrick McDermott | 2017-09-22 | 3 | -6/+9 |
| | |||||
* | MqWindow: Delete window from application on close | Patrick McDermott | 2017-09-22 | 1 | -2/+1 |
| | | | | Don't quit on window close. | ||||
* | src/application.h, src/window.h: Forward declare types | Patrick McDermott | 2017-09-22 | 2 | -4/+8 |
| | | | | | This is not legal in C99, but configure.ac will be changed to set the standard to C11. | ||||
* | mq_window_new(): Accept MqApplication argument | Patrick McDermott | 2017-09-22 | 3 | -3/+6 |
| | | | | | | | | | | | | 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); ^ | ||||
* | mq_application_delete_window(): New function | Patrick McDermott | 2017-09-22 | 2 | -0/+12 |
| | |||||
* | Enable WK favicon DB in MqApplication, not main() | Patrick McDermott | 2017-09-22 | 2 | -4/+4 |
| | |||||
* | main(): Use MqApplication | Patrick McDermott | 2017-09-22 | 1 | -6/+6 |
| | |||||
* | src/application.[ch]: New files | Patrick McDermott | 2017-09-22 | 3 | -0/+102 |
| | |||||
* | MqTab: Add "New window" button to tab context menu | Patrick McDermott | 2017-09-22 | 1 | -1/+2 |
| | |||||
* | MqTab: Clarify "Open tab in new window" button tooltip | Patrick McDermott | 2017-09-22 | 1 | -1/+1 |
| | |||||
* | MqTabBody: Don't load NULL URI in Web view | Patrick McDermott | 2017-09-22 | 1 | -1/+3 |
| | | | | | | Fixes: ** (marquee:xxxxx): CRITICAL **: void webkit_web_view_load_uri(WebKitWebView*, const gchar*): assertion 'uri' failed | ||||
* | MqTabChrome: Don't set NULL URI in URI entry | Patrick McDermott | 2017-09-22 | 1 | -1/+3 |
| | | | | | | Fixes: (marquee:xxxxx): Gtk-CRITICAL **: gtk_entry_set_text: assertion 'text != NULL' failed | ||||
* | MqWindow: Don't load "about:new" | Patrick McDermott | 2017-09-22 | 1 | -1/+1 |
| | |||||
* | main(): Enable favicons database | Patrick McDermott | 2017-09-22 | 2 | -1/+4 |
| | | | | That was easy to fix. | ||||
* | MqTab: Set tab tooltips | Patrick McDermott | 2017-09-22 | 1 | -2/+6 |
| | | | | Also plugs a memory leak. | ||||
* | MqTab: Save tab favicon and title in struct | Patrick McDermott | 2017-09-22 | 2 | -13/+16 |
| | | | | | This allows the "New tab" title to remain, rather than getting overwritten with NULL from webkit_web_view_get_title(). | ||||
* | MqTab: Move tab context menu rows box population code | Patrick McDermott | 2017-09-22 | 1 | -8/+9 |
| | | | | Also sneak in a comment about the g_signal_connect() call. | ||||
* | MqTab: Make tab list scrollable | Patrick McDermott | 2017-09-22 | 1 | -3/+19 |
| | |||||
* | MqTabChrome: Convert container from grid to box | Patrick McDermott | 2017-09-22 | 1 | -3/+3 |
| | |||||
* | Move tab context menu code from MqWindow to MqTab | Patrick McDermott | 2017-09-22 | 2 | -106/+106 |
| | |||||
* | MqTab: Convert tab page container from grid to box | Patrick McDermott | 2017-09-22 | 1 | -7/+5 |
| | |||||
* | MqTab: Convert tab label container from grid to box | Patrick McDermott | 2017-09-22 | 1 | -7/+5 |
| | |||||
* | Move tab population code from MqWindow to MqTab | Patrick McDermott | 2017-09-22 | 3 | -27/+40 |
| | |||||
* | MqTabChrome: Drop saving of tab image and label | Patrick McDermott | 2017-09-21 | 3 | -9/+3 |
| | |||||
* | Move tab image callback from MqTabChrome to MqTab | Patrick McDermott | 2017-09-21 | 2 | -19/+19 |
| | |||||
* | Move tab label callbacks from MqTabChrome to MqTab | Patrick McDermott | 2017-09-21 | 2 | -25/+18 |
| | |||||
* | MqTab: Save tab image and label in struct | Patrick McDermott | 2017-09-21 | 2 | -0/+4 |
| | |||||
* | MqTab: Save tab position in struct | Patrick McDermott | 2017-09-21 | 2 | -0/+2 |
| | |||||
* | MqTab: Save WebKitWebView instance in struct | Patrick McDermott | 2017-09-21 | 2 | -5/+6 |
| | |||||
* | MqTabChrome: Move a function definition | Patrick McDermott | 2017-09-21 | 1 | -15/+15 |
| | |||||
* | MqTabChrome: Delete commented-out function calls | Patrick McDermott | 2017-09-21 | 1 | -4/+0 |
| | |||||
* | MqTabChrome: Explain hardcoded GtkScrolledWindow sizes | Patrick McDermott | 2017-09-21 | 1 | -0/+35 |
| | |||||
* | MqTabChrome: Set minimum sizes of tab history scrolled windows | Patrick McDermott | 2017-09-21 | 1 | -0/+8 |
| | |||||
* | MqTabChrome: Drop gtk_scrolled_window_set_policy() calls | Patrick McDermott | 2017-09-21 | 1 | -6/+0 |
| | | | | The values set are the defaults, so these calls have no effect. | ||||
* | Revert "src/tab-chrome.c: Hack tab history scrollbar policies" | Patrick McDermott | 2017-09-21 | 1 | -18/+2 |
| | | | | This reverts commit c534c7e1bedb56b0f2e44b45a9d1ac5fcb9cef68. | ||||
* | Revert "src/tab-chrome.c: Try to update scrollbar policies on toggle" | Patrick McDermott | 2017-09-21 | 1 | -14/+6 |
| | | | | This reverts commit 42ca78390d46acf1a997634a6d1c59b8afc466fb. | ||||
* | Drop MqScrolledWindow and stop use in MqTabChrome | Patrick McDermott | 2017-09-21 | 4 | -119/+3 |
| |