summaryrefslogtreecommitdiffstats
path: root/src/tab-chrome.c
Commit message (Collapse)AuthorAgeFilesLines
* MqTabChrome: Reorganize navigation toolbar population codePatrick McDermott2017-10-131-12/+13
|
* MqBackForwardButtonBox: Drop MqTab propertyPatrick McDermott2017-10-131-1/+1
|
* MqTabChrome: Use MqHomeButtonPatrick McDermott2017-10-131-17/+2
|
* MqTabChrome: Use MqStopReloadButtonPatrick McDermott2017-10-131-53/+4
|
* MqBackForwardButtonBox: Derive from GtkToolItemPatrick McDermott2017-10-131-5/+1
| | | | And update MqTabChrome.
* MqTabChrome: Use MqUriEntryPatrick McDermott2017-10-131-164/+2
|
* MqTabChrome: Add missing #includePatrick McDermott2017-10-121-0/+1
|
* MqTabChrome: Make menu_button variable function-localPatrick McDermott2017-10-121-2/+3
|
* MqTabChrome: Use MqMainMenuPatrick McDermott2017-10-121-147/+2
|
* MqTabChrome: Use MqBackForwardButtonBoxPatrick McDermott2017-10-121-298/+4
|
* MqTabChrome: Close menu first in button click callbacksPatrick McDermott2017-10-121-6/+6
| | | | Although this doesn't really have any effect.
* MqTabChrome: Call mq_web_view_zoom_*() in zoom button callbacksPatrick McDermott2017-10-121-8/+3
|
* MqTabChrome: Change callback arg type and drop conditionalPatrick McDermott2017-10-121-8/+2
|
* mq_tab_chrome_new(): Get and save MqFindToolbar from callerPatrick McDermott2017-10-121-6/+4
| | | | | | Also change member type in struct. And update call in MqTab.
* MqTabChrome: Get Web view in mq_tab_chrome_new()Patrick McDermott2017-10-121-137/+127
| | | | | | | Also remove mq_tab_chrome_set_web_view() and reorganize static functions. And update calls in MqTab.
* MqTabChrome: Use MqFindToolbarPatrick McDermott2017-10-121-205/+5
|
* MqTabChrome: Set up find toolbar when Web view is setPatrick McDermott2017-10-121-4/+4
| | | | This makes the find toolbar code a little more self-contained.
* mq_tab_chrome_set_web_view(): Change argument 2 to (MqWebView *)Patrick McDermott2017-10-121-3/+4
|
* MqWebView: Drop newly thin URI-getting wrapper functionPatrick McDermott2017-10-121-9/+3
|
* MqWebView: Drop last URI rewriting codePatrick McDermott2017-10-121-20/+5
|
* MqWebView: Rename "uri" property to "rewritten-uri"Patrick McDermott2017-10-121-1/+1
| | | | This fixes the infinite loop introduced in commit a88de09.
* MqTabChrome: Save and use Web view as MqWebViewPatrick McDermott2017-10-121-28/+34
|
* MqTabChrome: Use mq_web_view_load_uri()Patrick McDermott2017-10-121-16/+2
| | | | | This is instead of calling webkit_web_view_load_uri() with a possibly "about:"-rewritten URI.
* MqTabChrome: Add a home button to the navigation barPatrick McDermott2017-10-081-0/+28
|
* MqTabChrome: Add match count label to find barPatrick McDermott2017-10-081-0/+34
|
* MqTabChrome: Unify find bar closing codePatrick McDermott2017-10-081-6/+10
|
* MqTabChrome: Handle Shift+Enter and Esc in find barPatrick McDermott2017-10-081-11/+28
|
* MqTabChrome: Make find bar functionalPatrick McDermott2017-10-081-4/+59
|
* mq_tab_chrome_set_web_view(): Get WebKitFindController and save in MqTabChromePatrick McDermott2017-10-081-0/+1
|
* MqTabChrome: Add find bar and make find button functionalPatrick McDermott2017-10-081-1/+100
|
* MqTabChrome: Make fullscreen button functionalPatrick McDermott2017-10-071-1/+8
|
* MqTabChrome: Add TODO comments for menu button click callbacksPatrick McDermott2017-10-071-0/+10
|
* MqTabChrome: Call mq_tab_quit() on quit button clickPatrick McDermott2017-10-071-5/+5
|
* s/__attribute__((unused))/G_GNUC_UNUSED/Patrick McDermott2017-10-071-35/+27
| | | | | | And rewrap lines. G_GNUC_UNUSED expands to nothing on compilers other than GCC 2.4+.
* MqTabChrome: Obey zoom.default on zoom resetPatrick McDermott2017-10-071-1/+3
|
* MqTabChrome: Make developer tools button functionalPatrick McDermott2017-10-061-0/+10
|
* MqTabChrome: Make preferences button functionalPatrick McDermott2017-10-061-0/+11
|
* MqTabChrome: Switch to about tabPatrick McDermott2017-10-011-0/+2
|
* MqTabChrome: Close menu on about button clickPatrick McDermott2017-10-011-4/+4
|
* MqTabChrome: Make about button functionalPatrick McDermott2017-10-011-0/+7
|
* mq_tab_chrome_new(): Accept and save MqTab argumentPatrick McDermott2017-10-011-1/+3
|
* MqTabChrome: Set back/forward button sensitivity on list changePatrick McDermott2017-09-301-10/+15
| | | | | The back/forward list apparently often changes after the URI changes, e.g. when navigating between page fragments.
* MqTabChrome: Set back/forward button sensitivity on URI changePatrick McDermott2017-09-301-0/+5
|
* MqTabChrome: Rewrite "mq-about:" URIs in URI barPatrick McDermott2017-09-291-8/+36
|
* MqTabChrome: Rewrite "about:" URIsPatrick McDermott2017-09-291-2/+12
|
* MqTabChrome: Make zoom buttons functionalPatrick McDermott2017-09-281-0/+26
|
* MqTabChrome: Make quit button functionalPatrick McDermott2017-09-281-0/+14
|
* MqTabChrome: Add zoom buttonsPatrick McDermott2017-09-281-15/+18
|
* MqTabChrome: Don't change URI bar text if focusedPatrick McDermott2017-09-281-2/+6
|
* mq_tab_new*(): Make uri parameter constPatrick McDermott2017-09-271-2/+2
| | | | | And propagate const correctness on uri throughout MqTab, MqTabChrome, and MqTabBody.