507 Commits (b670807ce00c9d62f7ff8a3e36640d926612a039)

Author SHA1 Message Date
Michael R Sweet d9eecaf4ab Fix problems with new FLUID output, add common to closing braces to show 19 years ago
Michael R Sweet 0043e7a44d Fix return of window widget - use "w" or the name of the window, as 19 years ago
Michael R Sweet 7e3daaf145 Update copyrights on changed files. 19 years ago
Michael R Sweet 500d7616fd Revamp variable tests so that we rarely need to provide "o" and 19 years ago
Michael R Sweet 58699112db Fix use of LDFLAGS and make install depend on all target... 19 years ago
Matthias Melcher 05bd3ade18 Added support for floating point Fl_Spinner 19 years ago
Matthias Melcher 77a20dbef3 STR #1280: added support for assigning Fl_Menu_Items to array variables in Fluid 19 years ago
Michael R Sweet eea2b38b34 Add --with-archflags option to configure script, and use it in the right 19 years ago
Matthias Melcher 11de032d6d If the value field for scrollbars was not zero, Fluid would generate code that accesses the hidden function Fl_Scrollbar::value(double), causing a compile time error. The fix circumevents the hidden function by calling Fl_Slider::value. It would be better to change the entire Fluid interface to reflect the Scrollbar interface. 19 years ago
Matthias Melcher 0148f1cfd0 Mark a FLUID Project as "modified" when the user changes the visible Tab widget because that change will reflect in the generated source code. 19 years ago
Matthias Melcher 0728999a83 Loading a file would not update the Widget Propertis dialog in FLUID (STR #1326) 19 years ago
Matthias Melcher d814fce94d - In Fluid, declarations starting with the keyword 19 years ago
Matthias Melcher 92d0163f40 Declarations in Fluid can now explicitly be made non-static or non-extern. This allows the declaration of types like 'enum' 19 years ago
Matthias Melcher cdc1d7d5e3 Fixed FLUID undo. Thanks Fabien fr finding this. 19 years ago
Matthias Melcher 8e37fbafc8 STR #1187: Fixed missing reset of flag in FLUID 19 years ago
Matthias Melcher 4e038ef82b STR #1169: Fixed 'make distclean' to remove binaries inside MacOS app packages 19 years ago
Matthias Melcher d90102f9d2 Fluid Code Viewer is now truly a viewer, not an editor. I would love to allow text editing in the Code Viewer and re-enter the code into the UI, but that is currently close to impossible to implement 19 years ago
Matthias Melcher f74a812003 STR #1158: Fl_Spinner is now fully supported by Fluid. Previously, min, max, step and value could not be edited the usual way because spinner is derived from Fl_Group, not Fl_Valuator... 19 years ago
Michael R Sweet e6bbd2d525 Update copyrights. 20 years ago
Michael R Sweet e976174d61 FLUID didn't handle loading .fl files with international 20 years ago
Michael R Sweet 1a12cf01d2 Update Linux desktop files. 20 years ago
Michael R Sweet 9b12d18155 Update EPM list file and OSX icon for FLUID. 20 years ago
Michael R Sweet f20fc63567 Fix OSX make and install stuff. 20 years ago
Michael R Sweet d4713f59c5 Add OSX application stuff for FLUID. 20 years ago
Michael R Sweet 61b86ce0e5 More packaging fun (games package to "advertise" FLTK...) 20 years ago
Michael R Sweet 464c2f4a5e Separate the desktop install/uninstall stuff so that users that don't 20 years ago
Michael R Sweet 45ff3267cd Fix installation of Linux desktop files. 20 years ago
Michael R Sweet 887a458227 Work on Linux and OSX desktop integration stuff via make install and 20 years ago
Michael R Sweet f7305675c4 More copyright updates. 20 years ago
Matthias Melcher 0ea6761db2 - Fixed keyboard shortcut handling in FLUID and shortcut 20 years ago
Matthias Melcher d3db965083 Fixed a few memory faults found by Valgrind (yes, I finally got my Linux 20 years ago
Matthias Melcher 3a635d7884 STR #1046: Fl_Window does not directly support a background image in FLTK 1.1.6 because those images are overwritten by Fl_Window::show() anyways. FLUID now grays out the unused "image" and "inactive image" input fields. 20 years ago
Michael R Sweet f3182417c0 Update dependencies. 20 years ago
Michael R Sweet e321cb37bf VC++ 2005 Support, drop old files, add icons for Sudoku 20 years ago
Matthias Melcher 79015a71f7 FLUID1: correctly hide the "X Class:" label whenever the XClass input field is hidden 20 years ago
Matthias Melcher 7f6bacf237 FLUID1: The comment entry in the Browser now reveals some more information by showing multiple lines up to 50 characters. Also, a change just to make sure our Code View won't harm. 20 years ago
Michael R Sweet fa517add2e Clear style buffer in destructor. 20 years ago
Michael R Sweet 309e21c9fd Fix new GUI panels to conform to HIG. 20 years ago
Matthias Melcher 1b43ec7690 Added some safety measures that assure safe compile only mode 20 years ago
Matthias Melcher 1a5288e8fe Fluid Source Code preview panel with automatic refresh and selected object code highlighting. 20 years ago
Michael R Sweet 5cdf984737 Remove DOS line endings from text files. 20 years ago
Matthias Melcher cddb39a066 STR #1052: Updated FLUID to generate buttons in the correct colors. After all these changes, it may be useful to rebuild all cxx files from fl files. This will make sure that menu items are rendered in foreground color instead of simply black 20 years ago
Michael R Sweet 067d1d8a61 Updated the default label and text colors of all widgets to use 20 years ago
Matthias Melcher 77484a4e2d FLUID writes RGB and Bitmap image data as an array of decimal numbers instead of a string since "a certain compiler by a large operating system vendor which shall remain unnamed" can not handle long strings and produces heap overflows. 20 years ago
Matthias Melcher 3e9b10363d STR #1027: FLUID size_range controls would not set the 'modified' flag 20 years ago
Matthias Melcher 55380298b5 Fix to ambigous function call in my previous FLUID changes 20 years ago
Matthias Melcher 576fd78bde STR #985: This is a medium size change in the way that FLUID manages widget label sizes. I moved the 'preset' functionality from the 'widget size' menu into the grid setting window. The menu now only changes selected widgets while the setting panel modifies newly created widgets. Settings are stored in the preferences. 20 years ago
Matthias Melcher 022415c310 STR #1016 : 20 years ago
Matthias Melcher edcc1980a1 STR #1010: if a widget callback is generated inside a widget class, the static callback uses the parent() function to find the 'this' pointer, instead of the 'user_data()' member, which would be NULL anyways 20 years ago
Matthias Melcher 09783875e4 FLUD: This fixes the problem that the children of a Widget_Class_Type are positioned with absolute coordintes. The patch adds another button to the FLUID interface named 'Relative' to the right of the widget position. It is only visible if a Widget_Class_Type is selected. If checked, code will be added that creates an Fl_Group at 0, 0 and later repositions it and all its children into the final position. 20 years ago