summaryrefslogtreecommitdiffstats
path: root/src/tab-chrome.c
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* MqTabChrome: Save user edits to hovered link URIPatrick McDermott2017-09-261-5/+26
| | | | Don't overwrite such edited URI bar text on mouse target change.
* 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
* MqTabChrome: Convert container from grid to boxPatrick McDermott2017-09-221-3/+3
|
* MqTabChrome: Drop saving of tab image and labelPatrick McDermott2017-09-211-4/+1
|
* Move tab image callback from MqTabChrome to MqTabPatrick McDermott2017-09-211-17/+0
|
* Move tab label callbacks from MqTabChrome to MqTabPatrick McDermott2017-09-211-24/+0
|
* MqTabChrome: Move a function definitionPatrick McDermott2017-09-211-15/+15
|
* MqTabChrome: Delete commented-out function callsPatrick McDermott2017-09-211-4/+0
|
* MqTabChrome: Explain hardcoded GtkScrolledWindow sizesPatrick McDermott2017-09-211-0/+35
|
* MqTabChrome: Set minimum sizes of tab history scrolled windowsPatrick McDermott2017-09-211-0/+8
|
* MqTabChrome: Drop gtk_scrolled_window_set_policy() callsPatrick McDermott2017-09-211-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 McDermott2017-09-211-18/+2
| | | | This reverts commit c534c7e1bedb56b0f2e44b45a9d1ac5fcb9cef68.
* Revert "src/tab-chrome.c: Try to update scrollbar policies on toggle"Patrick McDermott2017-09-211-14/+6
| | | | This reverts commit 42ca78390d46acf1a997634a6d1c59b8afc466fb.
* Drop MqScrolledWindow and stop use in MqTabChromePatrick McDermott2017-09-211-3/+2
|
* src/tab-chrome.c: Use MqScrolledWindowPatrick McDermott2017-09-211-2/+3
|
* src/tab-chrome.c: Try to update scrollbar policies on togglePatrick McDermott2017-09-201-6/+14
|
* src/tab-chrome.c: Hack tab history scrollbar policiesPatrick McDermott2017-09-201-2/+18
|
* Revert "src/tab-chrome.c: Hackishly enlarge tab history text scrolled window"Patrick McDermott2017-09-201-9/+1
| | | | This reverts commit 922cdef53495323446a5fed31065d9338876e8d4.