Age | Commit message (Collapse) | Author |
|
Allows users to begin selecting the text or position the cursor at
the beginning of the URL without requiring a high accuracy, as now there
are at least 5 pixels of leading space.
Fixes: https://github.com/dillo-browser/dillo/issues/442
|
|
Open the Home page or the Bookmarks in a new tab if the button is
pressed with middle-click, following the same behavior for hyperlinks.
|
|
Allows jumping directly to a given tab. It encourages a low number of
tabs opened, otherwise it will exceed the 1 to 10 range.
|
|
The Emacs shortcut was overriding the FLTK behavior of selecting all
input text.
Fixes: https://github.com/dillo-browser/dillo/issues/400
|
|
Follows the behavior of so many other programs by copying the current
text selection into the clipboard with Ctrl+C. Selecting text continues
to copy it into the primary selection.
Fixes: https://github.com/dillo-browser/dillo/issues/228
|
|
Reviewed-by: Rodrigo Arias Mallo <rodarima@gmail.com>
See: https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/XXD2NXCGQLZLJ3V57NCPU3327DAEFKAN/
|
|
Allows zooming in and out of pages by changing the size of all elements,
including font size, images and tables. The initial zoom is specified in
the "zoom_factor" option of dillorc.
Use the new shortcuts Ctrl+ and Ctrl- to adjust the zoom of the current
page and Ctrl 0 to reset it to 100%. When a new tab or window is opened,
the current zoom factor is inherited. Each tab retains its own zoom
factor.
Fixes: https://github.com/dillo-browser/dillo/issues/21
|
|
The old manual page is no longer needed as we have the latest manual
rendered in the new website.
|
|
|
|
The website is now at https://dillo-browser.github.io/ and the
repository at https://github.com/dillo-browser/dillo.
|
|
It wasn't necessary! ;)
|
|
|
|
|
|
the brief thread
http://lists.dillo.org/pipermail/dillo-dev/2014-September/010205.html
|
|
Some apps that embed dillo or work in kiosk mode find good use for it.
|
|
|
|
|
|
It hasn't worked for a long time, no one seems to miss it, and there isn't
any compelling case for making the effort to make it work.
http://lists.auriga.wearlab.de/pipermail/dillo-dev/2012-December/009704.html
|
|
|
|
|
|
...instead of the text background that it would use of its own accord. I'm
not 100% certain about the decision, but the fact that you can't type into
it makes it seem qualitatively different.
|
|
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
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
Bug #1093 reports that "Opening a new tab in fullscreen mode, the address
bar is hidden, even if you press CTRL+L."
focus_location() is called from:
1. location's clear button callback
(the location bar has to be visible already in order to have a clear
button to trigger)
2. UI::handle when it gets KEYS_GOTO, i.e., CTRL-L
(the current code will temporarily show the panels)
3. filemenu_cb() when "Open URL" is selected
(the user specifically asks to type into location)
4. a_UIcmd_open_url and UIcmd_open_url_nbw when no url given
(a window/tab without a url to open is of little use without a visible
location bar to type into)
...so it seems good to move the code that temporarily shows panels in case 2
to focus_location().
|
|
|
|
|
|
|
|
|
|
This also removes the unused MenuBar variable.
|
|
|
|
|
|
Also added hl_color() to change the highlight color.
|
|
It has lots of code cleanups and a simpler/more-uniform way of handling it all.
|
|
|
|
Nobody saw use for it...
|
|
|
|
Redefined "hide-panels" to close the findbar if it's visible, and all the
panels when the findbar is not visible.
|
|
|
|
|
|
|
|
* Added setDragScroll(bool) to the viewport to enable/disable it
* Made middle-click paste URL upon FL_RELEASE
|
|
|
|
|