summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-01-22Added FL_EXPORT for some more classes and structs to clean up MS DLL building.Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8301 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-22Tweaks to silence more MS compiler warnings.Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8300 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-22Added compiler options to silence warnings.Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8299 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-22Brian, Greg, and Albrecht's solutions to build errors in VS6.Greg Ercolano
Possibly solves STR#2521. There are still warnings about bool <-> int conversion that are probably benign. There are also warnings during dependency creation about other platform files that also appear to be benign. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8298 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-22Added missing dependency on tree.fl, and extended target clean to deleteAlbrecht Schlosser
all fluid-generated .h files (as well as .cxx files). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8297 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-21Removed duplicate definition of font_mx variable.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8296 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-20Redefined fl_xid() as an inline function when used inside the FLTK library.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8295 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-20A better solution to the crash when printing the mandelbrot demo under WIN32.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8294 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-20Updated VisualC2008 and VisualC2010 project files to define FL_LIBRARY inAlbrecht Schlosser
non-dll builds. Also changed some dependencies to get correct build order. To Do: VisualC2008 doesn't create the .cxx and .h files with fluid from .fl files correctly (VisualC2010 does, but maybe except test/tree.cxx). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8293 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-19Fluid binary type adds size to the array of unsigned char, giving better ↵Matthias Melcher
access to the resource. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8292 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-19Removed gcc 4.4 compiler warning:Manolo Gouy
Fl_Preferences.cxx:1322: warning: ignoring return value of ‘size_t fwrite(const void*, size_t, size_t, FILE*)’, declared with attribute warn_unused_result git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8291 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-19Removed compiler warning:Manolo Gouy
Fl_PNG_Image.cxx:108: warning: 'fp' may be used uninitialized in this function git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8290 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-17Hiding the Fl_X class under WIN32 (STR #2522).Albrecht Schlosser
Applied Manolo's patch, modified to use FL_INTERNALS for explicit request in user code to expose class Fl_X. Also changed X11 and Mac OS to use FL_INTERNALS. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8289 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-17Documentation updates (remaining fix for STR #2520).Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8288 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-17Fix 2nd part of STR #2520: added Fl_PNG_Image in-memory constructor.Manolo Gouy
This constructor has a 3rd argument, the size of the array holding the in-memory PNG image. This allows the constructor to check for errors in the image. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8287 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-17Fl_File_Chooser: removed the "Show hidden files" button for WIN32 where it's ↵Manolo Gouy
not relevant. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8286 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-16Fix STR #2524: no more NSAutoreleaseNoPool messages.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8285 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-16Fix STR #2523: unimplemented functions have been removed.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8284 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-16Fix STR #2525. The bug was PPC-specific.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8283 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-16Fl_File_Chooser: added a "Show hidden files" button. Hidden files aren't shownManolo Gouy
by default now. This removes a TODO clause. Fl_Native_File_Chooser: removed the hack that added the "Show hidden files" button, and made the "file already exists" warning message localizable. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8282 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-16Replaced "foreign language" by "another language" in doc.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8281 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-16Replaced "foreign language" by "another language" in doc.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8280 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-15Another tweak to fl_init_xim() as proposed by Denton Thomas.Ian MacArthur
Should not change the behaviour from the previous fix, it is just a bit tidier! git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8279 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-14This is an attempt to resolve the potential leaks identified in fl_init_xim() byIan MacArthur
Denton Thomas. This is not quite the patch as he proposed it, but I *think* whay I have done is OK. Seems to be OK for me anyway... Needs testing by others of course! git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8278 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-14Fix memory leak in fl_new_ic() reported by Denton Thomas.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8277 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-13Document that hidden class Fl_X is accessible only if FL_LIBRARY is #define'd.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8276 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-13Fix STR #2518: remove gcc 4.4 compilation warnings with -WallManolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8275 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-13Mention in comment that FL_LIBRARY must be defined to access the Fl_X classManolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8274 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-13Fixed WIN32 crash when printing with the test/mandelbrot demo.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8273 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-13Fixes STR #2519; problems building on VS6.Greg Ercolano
Verified with VS7, which was giving the same errors. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8272 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-13Fixed typos, added \todo ... (see STR #2520).Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8271 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-12Deleted unused files in src/xutf8Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8270 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-12Updated dependencies.Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8269 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-12X11 specific: made class Fl_X visible only if FL_LIBRARY is defined before ↵Manolo Gouy
compilation, as discussed in fltk.development ("Fl_X not exported on mac in 1.3"). Tested OK with configure+make and CMake. At this point, the FL_X class remains to be hidden on the WIN32 platform. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8268 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-12Documentation updates. Reformatted development.dox, removed some old andAlbrecht Schlosser
obsolete parts. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8267 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-12Another change to allow OS-independent compilation of external applications ↵Manolo Gouy
as suggested by Greg. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8266 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Fixed a few GNU compiler warnings (-pedantic): C++ comments in C files,Albrecht Schlosser
extraneous ';' and ',' and an invalid cast. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8263 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Fixed accidental commit of some eperimental dead key preview code. STR 2515Matthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8262 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Updated documentation copyright dates to 2011.Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8261 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Attempt to fix the dead_key/special_key issue.Matthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8259 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Reverting unintentionally committed experimental code in r8256. Sorry.Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8258 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Small formatting updates for Intor.doxMatthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8257 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Updated documentation/README to reflect the new distribution ofAlbrecht Schlosser
pre-generated documentation as separate downloads. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8256 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11New attempt to fix STR #2513.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8255 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Next try to improve documentation title and version numbers.Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8254 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Fixed Doxygen version numbers (and better HTML title with version number).Albrecht Schlosser
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8253 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-11Added missing #include's when compiled using XcodeManolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8252 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-10Added dnd example to Makefile.Greg Ercolano
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8249 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-10Attempt to fix STR #2513: make sure that MAC_OS_X_VERSION_10_5 is defined.Manolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8240 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2011-01-10Fix STR #2514. Removes compilation warnings when using gcc 4.4 with -WallManolo Gouy
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8239 ea41ed52-d2ee-0310-a9c1-e6b18d33e121