summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* MqWindow: Don't overwrite tab positions on createPatrick McDermott2017-09-251-2/+0
|
* MqTab: Count tabs internally from 1Patrick McDermott2017-09-241-1/+1
|
* mq_tab_new(), mq_tab_new_relative(): Change argument type to (MqWindow *)Patrick McDermott2017-09-243-10/+13
| | | | And save the window in the MqTab struct.
* mq_window_get_application(): New functionPatrick McDermott2017-09-242-0/+9
|
* MqWindow: Save MqApplication in structPatrick McDermott2017-09-242-3/+5
|
* MqTab: Add callback for "New tab" buttonPatrick McDermott2017-09-241-0/+8
|
* mq_tab_new(), mq_tab_new_relative(): Add tabs to treePatrick McDermott2017-09-241-0/+4
|
* MqTab: Move definitions of update_tab_*()Patrick McDermott2017-09-241-17/+17
|
* mq_tab_seek(): Fix node iteration statementPatrick McDermott2017-09-241-1/+1
|
* MqTab: Fix append_sibling()Patrick McDermott2017-09-241-5/+3
| | | | Wow.
* MqTab: Fix update_positions() recursion callsPatrick McDermott2017-09-241-2/+2
|
* src/tab.c: Add missing "*"Patrick McDermott2017-09-241-1/+1
|
* src/tab.c: Add missing function parameter typePatrick McDermott2017-09-241-1/+1
|
* src/tab.h: Add missing semicolonPatrick McDermott2017-09-241-1/+1
|
* mq_tab_new(): Accept source argumentPatrick McDermott2017-09-242-4/+4
| | | | Also rename mq_tab_new_relative()'s last argument
* src/window.h: Include tab.hPatrick McDermott2017-09-241-0/+1
|
* MqWindow: s/mq_tab_new/mq_tab_new_relative/Patrick McDermott2017-09-241-1/+1
|
* MqWindow: Create and save root tab nodePatrick McDermott2017-09-242-0/+3
|
* src/tab.h: Declare mq_tab_new_root()Patrick McDermott2017-09-241-0/+3
|
* mq_tab_seek(): New functionPatrick McDermott2017-09-242-0/+25
|
* mq_tab_new_relative(): New functionPatrick McDermott2017-09-242-2/+25
|
* MqTab: Add tree manipulation functionsPatrick McDermott2017-09-241-0/+61
|
* MqTab: Rename "tab_position" member to "position"Patrick McDermott2017-09-242-3/+3
|
* src/tab-chrome.h: Drop mq_tab_chrome_update_tab_position()Patrick McDermott2017-09-241-3/+0
| | | | The function was removed in commit 79fe032.
* mq_tab_new_root(): New functionPatrick McDermott2017-09-241-0/+15
|
* MqTab: Add tree structure membersPatrick McDermott2017-09-242-0/+11
|
* src/tab*.h: Forward declare typesPatrick McDermott2017-09-223-6/+12
|
* MqTab: Add close button tooltipPatrick McDermott2017-09-221-2/+7
|
* MqTab: Add some commentsPatrick McDermott2017-09-221-0/+5
|
* MqTab: Make "Reload tab" button functionalPatrick McDermott2017-09-221-0/+8
|
* MqTab: Drop semicolon in macro definitionPatrick McDermott2017-09-221-1/+1
|
* MqTab: Close popover on opening new windowPatrick McDermott2017-09-221-0/+1
|
* MqTab: Save popover in structPatrick McDermott2017-09-222-4/+4
|
* MqTab: Make "New window" button functionalPatrick McDermott2017-09-221-0/+11
|
* Save MqApplication in MqTabPatrick McDermott2017-09-223-6/+9
|
* MqWindow: Delete window from application on closePatrick McDermott2017-09-221-2/+1
| | | | Don't quit on window close.
* src/application.h, src/window.h: Forward declare typesPatrick McDermott2017-09-222-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 argumentPatrick McDermott2017-09-223-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 functionPatrick McDermott2017-09-222-0/+12
|
* Enable WK favicon DB in MqApplication, not main()Patrick McDermott2017-09-222-4/+4
|
* main(): Use MqApplicationPatrick McDermott2017-09-221-6/+6
|
* src/application.[ch]: New filesPatrick McDermott2017-09-223-0/+102
|
* MqTab: Add "New window" button to tab context menuPatrick McDermott2017-09-221-1/+2
|
* MqTab: Clarify "Open tab in new window" button tooltipPatrick McDermott2017-09-221-1/+1
|
* MqTabBody: Don't load NULL URI in Web viewPatrick McDermott2017-09-221-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 entryPatrick McDermott2017-09-221-1/+3
| | | | | | Fixes: (marquee:xxxxx): Gtk-CRITICAL **: gtk_entry_set_text: assertion 'text != NULL' failed
* MqWindow: Don't load "about:new"Patrick McDermott2017-09-221-1/+1
|
* main(): Enable favicons databasePatrick McDermott2017-09-222-1/+4
| | | | That was easy to fix.
* MqTab: Set tab tooltipsPatrick McDermott2017-09-221-2/+6
| | | | Also plugs a memory leak.
* MqTab: Save tab favicon and title in structPatrick McDermott2017-09-222-13/+16
| | | | | This allows the "New tab" title to remain, rather than getting overwritten with NULL from webkit_web_view_get_title().