aboutsummaryrefslogtreecommitdiff
path: root/dw/fltkui.cc
AgeCommit message (Collapse)Author
2011-09-25let the enter key trigger buttons when possiblecorvid
Topic brought up by Alexander recently. In FLTK2, Enter and Space would both trigger buttons. In 1.3, only Space does it. I asked the FLTK guys about this, and I learned that Space to trigger buttons is actually old-school X behaviour that I somehow never became aware of.
2011-09-06remove trailing whitespaceJorge Arellano Cid
2011-08-04free instead of deletecorvid
2011-08-01deal with Fl_Text_Buffer::text() returning a copycorvid
2011-07-21work around a fl_width() bugcorvid
Pretty easy workaround, yes? :)
2011-07-18turn on wrapping for textareacorvid
2011-07-03draw the labels when hidden inputs are showncorvid
In fltk-1.3, it doesn't draw inside labels for Fl_Inputs, and it wasn't very nice anyway. Here I move them to the left. Johannes took a look at this change: "The only issue I could think of is that the additional draw_outside_label() would cause excessive redraws for some reason. But I didn't see anything like that during short testing here."
2011-06-29Remove wrong commentJorge Arellano Cid
2011-06-21Eliminated a pack of 22 compiler warnings (gcc-4.6.1 amd64)Jorge Arellano Cid
2011-06-18Enabled CTRL+{a,e,d,k} shortcuts for form's inputsJorge Arellano Cid
2011-06-12clean up fltk form button callbacks (allows Space to trigger)corvid
I would still like Enter to work as well, but I haven't looked into whether that would be nicely trivial -- and I still don't know whether I'm the only user who expects Enter to trigger buttons.
2011-05-27rm fltk2 workaroundcorvid
Haven't found any need for it with 1.3.
2011-05-19forms listResource item selectioncorvid
2011-05-16castRob S.
2011-05-16rm spacescorvid
2011-05-14forms menu/list selectioncorvid
2011-05-10more of the samecorvid
2011-05-10straighten out free/delete/delete[]corvid
2011-02-09disable symbol-interpretation in labelscorvid
There was some discussion of how to do this last month in fltk-dev http://fltk.org/newsgroups.php?s10630+gfltk.development+v10640+T0
2011-02-04widget coloringcorvid
2011-01-29font/size for fltk widgetscorvid corvid
2011-01-29improve widget colorscorvid
- The background for the radio/check button likes to be white, so I'm leaving selection_color() as black. - OptionMenu, I don't like what background color we tend to get for a selected item while the menu's up, but you can always tell what's current by the box, anyway. - ListMenu, that will wait until some Fl_Tree changes are made, which it sounds like will happen very shortly.
2011-01-29clean out FltkSelectionResourcecorvid
2011-01-29fix initial selection for OptionMenucorvid
2011-01-29push/pop for Listcorvid
2011-01-29push/popGroup is back. Implemented for FltkOptionMenucorvid
2011-01-29width for FltkList as wellcorvid
2011-01-29uncomment the font calls in fltkuicorvid
2011-01-29OptionMenu sizecorvid
2011-01-29our own menuItem array for OptionMenucorvid
2011-01-23FltkListResource::sizeRequestcorvid
2011-01-23add tree items directly to a parentcorvid
When adding them by using a path argument, it wouldn't add duplicates with the same name. And maybe pushGroup and popGroup will resurface after all.
2011-01-23Fl_Tree settingscorvid
2011-01-15fltkuicorvid
2011-01-15fltkui changescorvid
2011-01-13just get fltkui into compilable statecorvid
2011-01-12fltkui commentcorvid
2011-01-08a bit of fltkuicorvid
2011-01-07a bit of fltkuicorvid
2011-01-06RAW_LABEL is SHORTCUT_LABELcorvid
2011-01-06some UI constantscorvid
2011-01-06whencorvid
2011-01-06eventscorvid
2011-01-06more key/button modifierscorvid
2011-01-06keys and mouse buttonscorvid
2010-12-15silence a couple of MSGscorvid
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.
2009-10-15remove multiple views capability from dwcorvid
It was complicated, we don't use it, and we currently had no plans to use it.
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-08-10fltk widget types are not bitscorvid