aboutsummaryrefslogtreecommitdiff
path: root/dw/ui.cc
AgeCommit message (Collapse)Author
2025-02-05Fix several typosGevel Tekens
See: https://lists.mailman3.com/hyperkitty/list/dillo-dev@mailman3.com/thread/L3FFAINJJMIOZQNID5HC2DHKJIIIHEYH/
2024-11-14Only limit resizes on the top-level layoutRodrigo Arias Mallo
Buttons also have their own Layout, which will try to resize every time the window has changed. We are only interested in the top-level layout, as is the one that has a problem on some pages.
2024-10-17Add comment for dubious callRodrigo Arias Mallo
2016-04-24GROWS: Fix Embed::getExtremesSimpl.Sebastian Geerken
2016-04-23GROWS: Fix Embed::sizeRequestSimpl.Sebastian Geerken
2016-04-23GROWS: new options allowDecreaseWidth and allowDecreaseHeight for size ↵Sebastian Geerken
correction.
2016-01-09Better abort messages.Sebastian Geerken
2015-06-08SRDOP: Positions relative to multiple references; design now considers ↵Sebastian Geerken
handling conflicts.
2015-06-06SRDOP: Positions also for extremes.Sebastian Geerken
2015-05-20Size requisitions depending on positions (SRDOP): added method signatures.Sebastian Geerken
2015-01-23Simplified interrupted drawing. (Mouse events will follow.)Sebastian Geerken
2015-01-08Merge with main repo.Sebastian Geerken
2015-01-05Extremes::adjustmentWidth may now (again) be used for extremes correction.Sebastian Geerken
2015-01-04Added Extremes::adjustmentWidth; fixed Textblock::mustBeWidenedToAvailWidth.Sebastian Geerken
2014-10-23Changed signature of Widget::draw and friends.Sebastian Geerken
2014-10-23Embed::draw (fixed last change).Sebastian Geerken
2014-08-10trim spacescorvid
...now that floats and grows are in the repo and I won't be making Sebastian's life difficult with a bunch of whitespace changes.
2014-07-22Fixed incomplete intrinsic extremes.Sebastian Geerken
2014-07-18Handling nested layouts (e. g. <button>), part 3 (finish).Sebastian Geerken
2014-07-18Handling nested layouts (e. g. <button>), part 2.Sebastian Geerken
2014-07-17Handling nested layouts (e. g. <button>), part 1.Sebastian Geerken
2014-07-07Removed widget flag USES_HINTS.Sebastian Geerken
2014-07-07Fixed bug in Widget::containerSizeChanged complex.Sebastian Geerken
2014-07-05Applied new RTFL macros (ENTER, LEAVE) to outofflowmgr.cc.Sebastian Geerken
2014-07-05Applied new RTFL macros (ENTER, LEAVE) to ui.cc.Sebastian Geerken
2014-06-17Implemented containerSizeChangedForChildren() for all widgets.Sebastian Geerken
2014-06-02Some work on extremes.Sebastian Geerken
2014-05-29Removed size hints.Sebastian Geerken
2014-05-06New signal "resizeQueued" for Layout. It is used by ComplexButtonResource, ↵Sebastian Geerken
instead of "canvasSizeChange"; this seems to fix a CPU hogging problem.
2014-03-14And more RTFL.Sebastian Geerken
2014-03-14Some more RTFL messages.Sebastian Geerken
2014-03-03Some more RTFL.Sebastian Geerken
2014-03-01Merge with main repo.Sebastian Geerken
2013-12-20RTFL messages.Sebastian Geerken
2013-12-09Merge (large!).Sebastian Geerken
2013-12-09Activated RTFL again, see <http://www.dillo.org/~sgeerken/rtfl/>.Sebastian Geerken
2013-07-30Two bug fixes: (i) queueResize within sizeRequest should work now; (ii) ↵Sebastian Geerken
resizes floats lead to correct rewrapping. (Unfortunately very unstable now again.)
2013-01-11fix up dw namespace commentsp37sitdu
2011-09-06avoid redraw loops with ComplexComplexButtonResourceJohannes Hofmann
ComplexButtonResource was creating endless redraws. Testcase: <table> <tr> <td> <div> <button></button> </div> <div> words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words <span style="white-space:nowrap">And words in a span</span> <button></button> </div> </td> </table> This also fixes redraw loops with <button> in combination with limit_text_width=YES, so we no longer need to disable this option. Reported and testcase by: corvid <corvid@lavabit.com>
2010-10-09make dillo compile with clangJohannes Hofmann
* Variable length arrays are not allowed in C++. They are supported in C99 and gcc seems to accept them in C++ mode. Replace the few places where variable length arrays are used. * The widget member in ComplexButtonResource was colliding with the widget member of FltkResource, so rename it to childWidget.
2010-04-22move generic tooltip enter/leave to Widgetcorvid
Technically, Textblock's notifyImpl()s should probably call the Widget one as well. It doesn't matter currently, since we don't look for title attrs on elements that correspond to entire Textblocks.
2009-10-15remove "using namespace" statements from header filesJohannes Hofmann
"using namespace" in headers also affects all files that include the header which is unwanted and unexpected in most cases.
2009-04-22disable forms while stylesheets are pendingJohannes Hofmann
To avoid lost user input on repush, we disable forms until all stylesheets have been loaded. Also open select widgets cause crashes on repush.
2009-03-02Updated the GPL copyright note in the source filesDetlef Riekenberg
2009-01-05Added a right-click menu to the form submit button (allows to show hiddens)Jorge Arellano Cid
2008-12-19Moved clicked from ButtonResource to Resource.Jorge Arellano Cid
2008-11-30- Set middle click to submit in a new TAB. (Helps to keep form data!)Jorge Arellano Cid
2008-09-24- Moved the dw2 tree into dillo2's tree.jcid