aboutsummaryrefslogtreecommitdiff
path: root/src/uicmd.cc
AgeCommit message (Collapse)Author
2013-10-14Reset background image of the layout.Sebastian Geerken
2013-07-23add search from address barJohannes Hofmann
Add the possibility to search from address bar by entering a prefix of a search_url label followed by a blank followed by the search term. Submitted by: Aki Helin <aki.helin@iki.fi> with some modifications.
2013-04-19trim some spacescorvid
2013-02-22fix warning in UIcmd_save()Johannes Hofmann
2013-01-27simplify ui color handling by using fltk free color indicescorvid
2013-01-11Modified a_Dialog_choice5() to accept any number of alternatives [p37sitdu]Jorge Arellano Cid
2013-01-10uicmd.cc: *UIcmd_make_save_filename(): clarify the loop logicJeremy Henty
2013-01-10uicmd.cc: consistent suggestions for save filesJeremy Henty
1: Suggest the same save file for "Save page" and "Save link". 2: Create the save file from the path and the query, ignoring the fragment. 3: Truncate the path and the query as necessary.
2013-01-08uicmd.cc: when saving, test whether the file exists and prompt before ↵Jeremy Henty
overwriting.
2013-01-02throw in some more UI colors to play withcorvid
2013-01-02ctrl-tab navigation fix; show new tab before hiding old onecorvid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2013-January/009722.html (focus can go from main->location, and location can get its value selected)
2013-01-02uicmd.cc: refactor a_UIcmd_{save,save_link}().Jeremy Henty
2012-12-30uicmd.cc: fix the handling of prefs.save_dirJeremy Henty
prefs.save_dir was silently ignored if it contained no '/'
2012-12-30uicmd.cc: add "#include <string.h>".Jeremy Henty
2012-12-30uicmd.{hh,cc}: simplify by replacing a_UIcmd_{get,set}_save_dir() with ↵Jeremy Henty
a_UIcmd_init().
2012-12-30ui color fg/bg preferencescorvid
Recent mailing list: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2012-December/009661.html The earlier thread begins with: http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-September/008890.html
2012-12-26Fixed a bug in dpip when dillo aborts a running dpi connectionJorge Arellano Cid
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2012-December/009668.html
2012-12-24never leave Location blank when requesting urlcorvid
2012-12-20don't let unhandled Escape close a browser windowcorvid
I noticed this with shift-Escape, but it would also happen with plain Escape if mapped to nop in keysrc.
2012-12-14Update focus priority number for tabs opened in backgroundJorge Arellano Cid
There're two options: update the focus number so when you close the current tab, focus goes to the last background-opened tab (as with this patch), or to leave it low so when you close the current tab, focus goes to the previous non-background tab.
2012-12-10Dillo: parameterise window titles.Jeremy Henty
2012-12-10Dillo: improved window titles.Jeremy Henty
2012-11-30trim ';'corvid
2012-11-14Avoid scroll flickering with a custom tooltip class (TipWin) & a custom buttonJorge Arellano Cid
Removed the workaround [1] that added a full UI and viewport redraw to conceal the lingering tooltips bug [2]. It produced annoying scroll flickering when the mouse was in the UI but outside the viewport (e.g. over the panel). This is more a FLTK bug than anything; the FLTK team's plan is to fix it in FLTK3, and also extend the tooltips API. As FLTK3 may take long to be released, and porting dillo to it is non-trivial (if both events ever come to happen), this custom solution looks quite reasonable for the present times. The patch introduces a new CustButton class that uses TipWin, and thus the tooltip handling is no longer handled by FLTK. This patch switches the UI buttons to the new CustButton. 1] http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-July/008515.html 2] http://lists.auriga.wearlab.de/pipermail/dillo-dev/2011-July/008494.html
2012-11-08Set lowest focus priority as default for new unfocused tabsJorge Arellano Cid
This also avoids a valgrind uninitialized focus number warning for new tabs.
2012-11-06imported patch tab-closing-orderJorge Arellano Cid
2012-10-18don't view source for imagescorvid
Viewing image source wasn't working anyway. I have the impression that the vsource dpi is told, e.g., "Here's 3000 bytes", and then it's only given however much it takes to reach a NULL in the image data -- but I didn't trouble myself to dig into the matter, since unformatted image source is not very informative anyway.
2012-05-26unify use of sizeof() when computing array lengthJohannes Hofmann
Submitted by: 123 <p37sitdu@lavabit.com>
2011-11-11locale-independent ASCII character case handlingcorvid
Basically, I and i are different letters in Turkic languages, and this causes problems for str(n)casecmp and toupper/tolower in these locales when dillo is dealing with ASCII.
2011-09-17add show_quit_dialog dillorc optionJohannes Hofmann
2011-09-16use x,y for tools popupcorvid
2011-09-16position history menu below buttoncorvid
2011-09-16a compromise on tab appearance for the momentcorvid
It looks like plastic just _insists_ on mixing lots and lots of grey in, so if you pick a color that you like in plain/gtk+, it gets seriously washed out in plastic. There is a problem of getting nearly indistinguishable colors.
2011-09-16FL_THIN_UP_BOX for tabscorvid
2011-09-14Allow key bindings for paging left/rightcorvid
2011-09-13UI theme preferencecorvid
2011-08-26Start new focused tabs with an empty titleJorge Arellano Cid
2011-08-23Fix a redraw bug introduced by wrong procedure in the previous commitJorge Arellano Cid
This also fixes updating the window tittle.
2011-08-23Implemented a no-frills tab-overflow handlerJorge Arellano Cid
This handler is meant as a simple/extensible solution for the upcoming dillo-3.0 release.
2011-08-23Implemented variable-width tab buttonsJorge Arellano Cid
The width, measured in chars, is hardcoded now. However, it can become a dillorc option easily.
2011-08-18Set wizard as window resizable intead of UI (valgrind detected bug)Jorge Arellano Cid
2011-08-11save_link MSG only if we have a filenamecorvid
2011-08-07Focus render area after opening a new URLJorge Arellano Cid
2011-08-05Added an API to access the expected URL resourceJorge Arellano Cid
This fixes a segfault bug introduced by changeset 350af350b840. By mistake the expected URL got inside the parallel handling of CCC, into a race condition with a segfault path.
2011-08-05mergeJorge Arellano Cid
2011-08-05Fix: Don't confuse FLTK when tabs overflow.Jorge Arellano Cid
When tabs overflow width, FLTK starts resizing the last tab label. This patch handles the case more gracefully.
2011-08-05Fix resize for the corner case of starting dillo in a tiny windowJorge Arellano Cid
FLTK has no problem in resizing from a "fitting" size into a "compressed" one, but if it starts compressed, things go wild.
2011-08-04Added a close-tab buttonJorge Arellano Cid
Although right-click (or middle-click) is much better, new users don't have an obvious way to find it out.
2011-08-01Changed the default tab labelJorge Arellano Cid
2011-08-01Re-enabled the temoporary panels feature for Ctrl+lJorge Arellano Cid
It has lots of code cleanups and a simpler/more-uniform way of handling it all.