summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2005-08-08Fixed some plastic drawing artifacts (STR #906)Michael R Sweet
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4479 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-08-08Fl_Help_View now draws the box outside the scrollbars, like theMichael R Sweet
other scrollable widgets (STR #871) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4478 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-08-08Updated WIN32 cut/paste code to consistently handle DOS text (STRMichael R Sweet
#961) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4475 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-08-08Added shared library support for Cygwin and MingW (STR #893)Michael R Sweet
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4474 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-08-08Fl_File_Chooser did not implement the user_data() methods (STRMichael R Sweet
#970) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4473 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-08-08Compilation could fail if a previous installation of FLTK was inMichael R Sweet
the same (non-standard) directory as an image library (STR #926) configure.in: - Add LINKFLTKFORMS definition. - Change LINKFLTK* definitions to just reference the static libraries themselves. makeinclude.in: - Use LINKFLTKFORMS and drop -L../lib stuff for static linking. src/Makefile: - Move -L. in front of LDLIBS and IMGLIBS when linking shared libfltk_images. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4472 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-08-07Fixed OSX compilation problems with non-HFS filesystems (STRMichael R Sweet
#972) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4470 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-08-06This commit contains patch submitted by "fltk.x0" (thanks fltk.x0!) in the ↵Dejan Lekic
middle of May this year - STR #863. Also small change in fluid.cxx - time.h was needed for successful build on MinGW. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4468 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-28Fix redraw problem with Fl_File_Input (STR #958)Michael R Sweet
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4459 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-25Fix bad include file in file chooser.Michael R Sweet
Remove unused variable in plastic box drawing code. Fix spelling mistakes and wrapping in changelog. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4457 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-25STR #831: When moving an OpenGL window outside the screen and then back ↵Matthias Melcher
again lets fltk get stuck. The problem seems to be an idefinite repeat of the WM_PAINT message. The driver sends an internale WM_PAINT (one that does not contain an update region). FLTK then creates a union with the still existin 'i->region' of the OpenGL window, causing yet another WM_PAINT message. The fix is to not run through the WM_PAINT handler at all if there is no update region (as suggested by Microsoft). This change is definetly debatable, since it does modify some internal FLTK behavior. I will commit it anyways for now, but we should pay very close attention to redraw problems by those who use the svn releases. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4456 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-24STR #848, missing xclass support implemented as suggested by Mike.Matthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4455 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-24Attempt to make 'localeconv()' part of the configuration process. VC6 works, ↵Matthias Melcher
but I'll need feedback for all other platforms... . Trying OS X in a few minutes. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4454 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-24Typo in commentMatthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4453 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-24Added support for characters from the current 'locale' for the floating ↵Matthias Melcher
point input field, so that us poor Europeans can finally enter the "," character instead of that English decimal point. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4452 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-23Silly typo would position new windows, that touched the right screen border, ↵Matthias Melcher
all the way to the left, instead of just left of the screen's right border. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4450 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-23pie drawing in WIN32 differed from X11 pie drawing (w and h were 1 pixel too ↵Matthias Melcher
small) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4449 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-23STR #602Matthias Melcher
OpenGL Windows inside Tabs that were inside of tabs were not drawn correctly. This was due to the fact that a first 'show' on a Tabs widget would show *all* groups inside the tab (unless the user called 'value(...)' on it first). This was only visible on OS X, because subwindow clipping would wrongfully clip even hidden subwindows. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4448 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-23In order to make the rescan effect of Fl_File_Chooser::show() more ↵Matthias Melcher
intuitive, I added a Fl::flush() to show the dialog immediatly, and changed the mouse cursor to a WAIT cursor while the rescan happens. On local Harddrives, the difference is almost invisible, but on remote connections, it should become clearer to the user what the file chooser is currently doing. (STR #827) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4447 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-20Made fl_pie look the same in __APPLE_QD__ as in X11. This makes fl_pie draw ↵Matthias Melcher
one pixel larger than fl_arc, which is not very logical, but compatible ;-). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4438 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-20- I enlarged the 'minimal update' area in Fl_Input_, so that characters that ↵Matthias Melcher
overlap the font box will be correctly erased during minimal redraw. The original code assumes that character fin in a box from 0,0 to charcter width/height. However, many newer fonts overlap that box and leave traces when redrawn. See 'j' and 'W' in Helvetica on Mac and Windows. - added textsize etc. support for Fluid Live Mode for Fl_Input type. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4436 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-19Fixed button resizing issue in Fl_File_Chooser (STR #884)Matthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4435 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-17Wrong case in path name.Matthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4430 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-16Added support for 32bit per pixel subformat, uncompressed, in BMP. Last 8 ↵Matthias Melcher
bit are used as Alpha channel. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4427 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-16Value Sliders would not receive focus when clicked on (STR 911 (wrrooom))Matthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4426 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-16Added redraw on focus vi FL_PUSH for roller, browser and sliderMatthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4425 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-16Fl::set_font() did not clear 'pretty' name of existing fontMatthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4424 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-14increased matrix stack depth to 32 units and added error messages on under- ↵Matthias Melcher
and overflow error. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4417 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-14- I had to revert SVN fix 4386 which simplified Carbon clipping, but also ↵Matthias Melcher
introduced unwanted overwriting of subwindows. The current code is slower, but correct, and should still perform well enough if here are no subwindows. For FLTK2, this is no issue since subwindows and subgroups are implemented without OS support. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4416 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-14- Fixed Fl_Bitmap::copy code according to Stephans suggestions. Thanks! Good ↵Matthias Melcher
catch. - Fixed some minor alignment in Fluid. - Live Mode window in Fluid is now double buffered to get rid of flicker. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4415 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-11STR #878: fixed tiny memory leak when calling Fl_Widget::label(label()) ↵Matthias Melcher
which happens when assigning a window icon. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4412 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-07-11STR #915: fixed hang on corrupt jpegs by giving a maximum of 10 chances for ↵Matthias Melcher
jpeg lib to clean up on damaged file reads. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4410 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-06-24Fixed one dependency in VC6 setup.Matthias Melcher
Fixed one silly warning. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4398 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-06-02Added missing SetPort to restore the current port fin Mac OSX fl_read_image.Matthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4393 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-06-01OK, I admit that I am nuts. But since the code was mostly there anyways ↵Matthias Melcher
adding only a few bytes to the library in total, I added the symbols 'refresh' (formerly known as 'recycle'), 'reload', 'undo', and 'redo', and flags to flip symbols horizontaly '$', and verticaly '%'. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4391 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-06-01Added a symbol named 'recycle' that can be used to refresh directory ↵Matthias Melcher
listings, etc. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4390 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-06-01Win322: Calling Fl_Window::size() and friends would move focus from the ↵Matthias Melcher
current window to this window. This was especially painful in Fluid when trying to resize a window by typing its new size into the Widget Properties dialog. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4389 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-06-01Fixed WIndows line endingsMatthias Melcher
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4388 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-06-01Fl::copy() would always set a flag, instructing Fl::paste to use the ↵Matthias Melcher
internal clipboard. ALthough that is faster, Fl::paste() would eventually miss changes to the external clipboard. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4387 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-06-01Fix clipping code on OSX...Michael R Sweet
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4386 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-31Fl_Menu_::find_item() was trying to search through submenus created with ↵Matthias Melcher
FL_SUBMENU_POINTER (vs. Fl_SUBMENU and an array of submenu items), but not following the pointer, messing up the search string. Two fixes were possible: correctly searching linked submenus, or disabeling submenu links alltogether. I decided for the later since the use of FL_SUBMENU_POINTER implies that the user knows the pointer and can search that submenu seperately, saving time when searching the main menu. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4384 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-29Fluid interactive window resizing fixe (STR #873, 791)Matthias Melcher
Fixed fake_X_wm call on Win32 to return the correct window decoration sizes, even in XP's "Teletubbies" mode. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4379 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-27Fixed the Round Plastic buttons to actually draw nice and riund, justMatthias Melcher
like the original scheme buttons. This is relatively slow, but worth the effort, I beleive. Just use double buffered windows... . git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4374 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-26Move show() after scheme() call in Fl_Window::show(argc, argv) toMichael R Sweet
eliminate scheme flicker on startup. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4372 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-26Selected tabs are now drawn slightly larger than unselected tabsMichael R Sweet
so they stand out more (STR #882) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4371 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-23There are still some artefacts, probably a confusion between round and ↵Matthias Melcher
rounded box. The current fix will avaiod the artefact, but still not draw entirely correct. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4367 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-20Fix FL_PLASTIC_DOWN_BOX artifacts (STR #852)Michael R Sweet
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4363 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-20Fix sentinel value for HWND on WIN32 (STR #862)Michael R Sweet
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4362 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-20Fl_Preferences::getUserdataPath() didn't work for sub-groups (STRMichael R Sweet
#872) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4361 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
2005-05-19Revert WIN32 redraw fix from r4244, and apply a new one that is a bitMichael R Sweet
cleaner which should not cause problems. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4360 ea41ed52-d2ee-0310-a9c1-e6b18d33e121