Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MqTab: Drop mq_web_view_get_web_view() & a struct member | Patrick McDermott | 2017-10-12 | 1 | -1/+0 |
| | | | | | | | The body and web_view struct members are now pointers to the same address, just with different types. body isn't used anywhere outside this instance initialization function, so it doesn't need to be saved in the struct. | ||||
* | MqTab: Use MqWebView | Patrick McDermott | 2017-10-11 | 1 | -2/+2 |
| | |||||
* | mq_tab_get_window(): New function | Patrick McDermott | 2017-10-07 | 1 | -0/+3 |
| | |||||
* | mq_tab_quit(): New function | Patrick McDermott | 2017-10-07 | 1 | -0/+3 |
| | |||||
* | mq_tab_get_tree_size(): New function | Patrick McDermott | 2017-10-07 | 1 | -0/+3 |
| | |||||
* | mq_tab_get_application(): New function | Patrick McDermott | 2017-10-06 | 1 | -0/+3 |
| | |||||
* | MARQUEE MODE | Patrick McDermott | 2017-09-29 | 1 | -0/+11 |
| | | | | Only works on ASCII titles so far. Crashes on UTF-8 titles. | ||||
* | mq_tab_get_position(): New function | Patrick McDermott | 2017-09-28 | 1 | -0/+3 |
| | |||||
* | mq_tab_get_title(): New function | Patrick McDermott | 2017-09-28 | 1 | -0/+3 |
| | |||||
* | MqTab: Propagate root pointer through tree | Patrick McDermott | 2017-09-28 | 1 | -0/+1 |
| | |||||
* | MqTab: Don't save favicon surface | Patrick McDermott | 2017-09-27 | 1 | -1/+0 |
| | |||||
* | mq_tab_new*(): Make uri parameter const | Patrick McDermott | 2017-09-27 | 1 | -2/+2 |
| | | | | | And propagate const correctness on uri throughout MqTab, MqTabChrome, and MqTabBody. | ||||
* | 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 |
| | |||||
* | MqTab: Remove old functions | Patrick McDermott | 2017-09-25 | 1 | -6/+0 |
| | |||||
* | mq_tab_new(), mq_tab_new_relative(): Change argument type to (MqWindow *) | Patrick McDermott | 2017-09-24 | 1 | -2/+4 |
| | | | | And save the window in the MqTab struct. | ||||
* | src/tab.h: Add missing semicolon | Patrick McDermott | 2017-09-24 | 1 | -1/+1 |
| | |||||
* | mq_tab_new(): Accept source argument | Patrick McDermott | 2017-09-24 | 1 | -2/+2 |
| | | | | Also rename mq_tab_new_relative()'s last argument | ||||
* | src/tab.h: Declare mq_tab_new_root() | Patrick McDermott | 2017-09-24 | 1 | -0/+3 |
| | |||||
* | mq_tab_seek(): New function | Patrick McDermott | 2017-09-24 | 1 | -0/+3 |
| | |||||
* | mq_tab_new_relative(): New function | Patrick McDermott | 2017-09-24 | 1 | -0/+3 |
| | |||||
* | MqTab: Rename "tab_position" member to "position" | Patrick McDermott | 2017-09-24 | 1 | -1/+1 |
| | |||||
* | MqTab: Add tree structure members | Patrick McDermott | 2017-09-24 | 1 | -0/+6 |
| | |||||
* | src/tab*.h: Forward declare types | Patrick McDermott | 2017-09-22 | 1 | -2/+4 |
| | |||||
* | MqTab: Save popover in struct | Patrick McDermott | 2017-09-22 | 1 | -0/+1 |
| | |||||
* | Save MqApplication in MqTab | Patrick McDermott | 2017-09-22 | 1 | -1/+3 |
| | |||||
* | MqTab: Save tab favicon and title in struct | Patrick McDermott | 2017-09-22 | 1 | -8/+10 |
| | | | | | This allows the "New tab" title to remain, rather than getting overwritten with NULL from webkit_web_view_get_title(). | ||||
* | Move tab population code from MqWindow to MqTab | Patrick McDermott | 2017-09-22 | 1 | -1/+5 |
| | |||||
* | MqTab: Save tab image and label in struct | Patrick McDermott | 2017-09-21 | 1 | -0/+2 |
| | |||||
* | MqTab: Save tab position in struct | Patrick McDermott | 2017-09-21 | 1 | -0/+1 |
| | |||||
* | MqTab: Save WebKitWebView instance in struct | Patrick McDermott | 2017-09-21 | 1 | -3/+4 |
| | |||||
* | mq_tab_update_position(): New function | Patrick McDermott | 2017-09-17 | 1 | -0/+3 |
| | |||||
* | Revert add_tab() and pass label widgets instead | Patrick McDermott | 2017-09-17 | 1 | -1/+1 |
| | |||||
* | 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 |
| | |||||
* | src/tab-body.[ch]: New files | Patrick McDermott | 2017-09-16 | 1 | -0/+2 |
| | | | | And use in src/tab.[ch]. | ||||
* | src/*.h: Oops | Patrick McDermott | 2017-09-16 | 1 | -1/+1 |
| | |||||
* | src/*.h: Add include guards | Patrick McDermott | 2017-09-16 | 1 | -0/+5 |
| | |||||
* | src/*.h: Include <gtk.h> | Patrick McDermott | 2017-09-16 | 1 | -0/+2 |
| | | | | | The corresponding *.c files were already doing this, but it's proper to do it in any file that uses things from <gtk.h>. | ||||
* | src/tab-chrome.[ch]: New files | Patrick McDermott | 2017-09-16 | 1 | -1/+4 |
| | | | | And use in src/tab.[ch]. | ||||
* | src/tab.[ch]: New files | Patrick McDermott | 2017-09-16 | 1 | -0/+30 |
And use in src/window.c. |