Restructure how we look for Read files slightly.
[fvwm.git] / ChangeLog
blobd1b53156eb0fea8398e66d61793a3de14708f8a4
1 2010-01-07  Thomas Adam <thomas.adam22@gmail.com>
2         * fvwm/read.c (run_command_file):
3         Restructure how we look for Read files slightly.
5         When searching for files with the Read command, check to see if the file
6         first of all has an absolute path and if so open it.  If it's relative
7         then search for it in either FVWM_USERDIR or FVWM_DATADIR as before.  If
8         the file still can't be found, try and open it outright.  This will
9         allow therefore:
11         ../../some_file
13         as a valid filename -- of course this really only makes sense when
14         invoking fvwm with "-f" on the command-line, as relative paths to config
15         files in this way should be built up using "$."
17 2010-01-05  Thomas Adam <thomas.adam22@gmail.com>
18         * fvwm/menustyle.c (menustyle_copy_face):
19         Fix segfault setting MenuFace pixmap style for menus.
21         As with the tearoff bug from 2010-01-03, ensure we don't try and free a
22         non-existent pixmap from an invalid pointer.
24 2010-01-05  Thomas Adam <thomas.adam22@gmail.com>
25         * fvwm/read.c (run_command_file):
26         Fix opening of files to Read/PipeRead to accept absolute paths.
28         Don't just assume "/" is a valid identifier for opening files.  "./" is
29         just as likely.  Fixes use-case of:
31         fvwm -f ./some_fvwm2rc
33 2010-01-04  Thomas Adam <thomas.adam22@gmail.com>
34         * fvwm/events.c (flush_property_notify):
35         Add atom to struct so it is checked for by test_typed_window_event().
37 2010-01-04  David Fries <David@Fries.net>
38         * fvwm/events.c (test_typed_window_event):
39         * fvwm/events.c (flush_property_notify):
40         Efficiently handle flushing property events of the same type.
41         
42         * fvwm/events.h (test_typed_window_event_args):
43         Add XAtom type to struct.
45 2010-01-04  David Fries <David@Fries.net>                                                                                    
46         * fvwm/virtual.c (HandlePaging):
47         Move no page detect check, it wasn't being hit.
48         * fvwm/move_resize.c (__move_loop):
49         Transform window position to pointer position and back when calling
50         HandlePaging.
52 2010-01-03  Thomas Adam <thomas.adam22@gmail.com>
53         * fvwm/menustyle.c (menustyle_copy_face):
54         Fix segfault when creating a tearoff menu using a Pixmap background.
56         When we copy the original menustyle to the new torn-off menu which
57         contains a background image, don't then update the menu's pixel
58         background color, as this is already free()d for us by an earlier copy
59         call.
61 2009-12-31  Thomas Adam <thomas.adam22@gmail.com>
62         * fvwm/builtins.c (CMD_BugOpts):
63         Remove debug line.
65 2009-12-31  Thomas Adam <thomas.adam22@gmail.com>
66         * fvwm/builtins.c (CMD_BugOpts):
67         * fvwm/fvwm.c (InitVariables):
68         * fvwm/events.c (HandleClientMessage):
69         * fvwm/screen.h:
70         Add new BugOpts QtDragnDropWorkaround option to handle an oddity in how
71         Qt windows handle having ClientMessage events sent to them.
73 2009-12-30  Thomas Adam <thomas.adam22@gmail.com>
74         * fvwm/placement.c (__pl_minoverlap_get_pos_penalty):
75         Fix y-axis offset calculations when using MinOverlapPlacement, by
76         forcing the window on-screen when over-zealous penality calculations
77         don't take into account the size of the window borders.
79 2009-12-26  Thomas Adam <thomas.adam22@gmail.com>
80         * bin/fvwm-convert-2.6.1.in:
81         Add in BUGS section a note that converting over FvwmTheme lines is
82         likely buggy.
84 2009-12-26  Thomas Adam <thomas.adam22@gmail.com>
85         * NEWS:
86         * AUTHORS:
87         * bin/fvwm-convert-2.6.in:
88         * bin/fvwm-convert-2.6.1.in:
89         First pass at a fvwm-convert-2.6 script to convert fvwm-2.4 syntax
90         files.
92 2009-12-19  Thomas Adam <thomas.adam22@gmail.com>
93         * libs/Flocale.c (FlocaleEncodeString):
94         Pre-initialise "len2" to zero, to avoid GCC warning during compilation.
96 2009-12-12  Thomas Adam <thomas.adam22@gmail.com>
97         * fvwm/fvwm.c (StartupStuff):
98         Reset the state of the "Restarting" flag to False when restarting FVWM.
100         * fvwm/events.c (HandleMapRequestKeepRaised):
101         Only run InitialMapCommand when FVWM isn't restarting and all windows
102         have been recaptured.  The window is already mapped by the time FVWM is
103         restarting, and running the InitialMapCommand again only serves to
104         "toggle" the window state (c.f. InitialMapCommand Iconic, etc.)
106 2009-09-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
108         * NEWS:
109         * configure.ac:
110         increased version number to 2.5.29
112         * NEWS:
113         updated for 2.5.28 release
115 2009-08-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
117         * NEWS:
118         * fvwm/ewmh.c (ewmh_ChangeProperty):
119         only convert _NET_WM_ICON hint to long before storing
121 2009-08-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
123         * fvwm/builtins.c (CMD_BugOpts):
124         remove unused variables
126         * NEWS:
127         * fvwm/ewmh.c (ewmh_ChangeProperty):
128         fix storing of CARD32 arrays on 64 bit machines
130         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
131         prevent segmentation fault when reading a bad _NET_WM_ICON hint
133 2009-08-22      Thomas Adam <thomas.adam22@gmail.com>
134         * fvwm/geometry.c (__cs_handle_aspect_ratio):
135         Workaround gcc -O3, by declaring local vars as volatile.  This fixes an
136         otherwise continual loop when resizing windows when keeping aspect
137         ratio (c.f. mplayer.)
139 2009-08-20  Christoph Fritz <chris_honschu(at)gmx.de>
140         * configure.ac:
141         Fix typo in AS_HELP_STRING referring to enable-htmldoc
143 2009-08-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
145         * NEWS:
146         * fvwm/builtins.c (CMD_BugOpts):
147         Fix parsing of BugOpts options lists separated by ',', and
148         restoring to default value when the boolean option is omitted if
149         not inside a list.
151         * NEWS:
152         Change QT to Qt.
154         * NEWS:
155         * libs/Flocale.h:
156         * libs/Ficonv.h (FiconvSetTransliterateUtf8):
157         * libs/Ficonv.c (FiconvSetTransliterateUtf8, translit_csname)
158         (is_translit_supported, set_default_iconv_charsets)
159         (set_iconv_charset_index, FiconvUtf8ToCharset):
160         * fvwm/builtins.c (CMD_BugOpts):
161         Add TransliterateUtf8 bug opt for working around clients
162         which don't care about the WM_NAME value.
164 2009-08-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
166         * NEWS:
167         * fvwm/stack.c (BroadcastRestack):
168         Fix splitting or M_RESTACK packages causing weird window stacking
169         in modules when more than 83 windows are broadcast.
171 2009-08-04  Thomas Adam <thomas.adam22@gmail.com>
172         * configure.ac:
173         Remove dnl comments from configure.ac regarding malloc.h -- it's
174         self-explanatory anyway.
176 2009-08-03  Thomas Adam <thomas.adam22@gmail.com>
177         * configure.ac:
178         Most *BSD platforms are deprecating malloc.h in favout of stdlib.h -- this
179         never used to produce compiler warnings, but things are starting to become
180         more vocal, so don't use this in our ./configure script if we're compiling
181         FVWM on a *BSD system.
183 2009-07-31  Christoph Fritz <chris_honschu(at)gmx.de>
184     * fvwm/style.h:
185     * fvwm/fvwm.h:
186     * fvwm/add_window.c (setup_numeric_vals):
187     add "typedef struct snap_attraction_t"
188     * fvwm/style.c (style_parse_one_style_option):
189     add new SnapAttraction options "None", "ScreenWindows",
190     "ScreenIcons" and "ScreenAll"
191     * fvwm/move_resize.c (DoSnapAttract):
192     Bugfix, option SameType/Icons/Windows did falsely not affect
193     conditions of option "Screen" and option "SameType" snapped
194     falsely icons and windows together. Implement options
195     None/ScreenWindows/ScreenIcons/ScreenAll for differentiated
196     screen edge snapping.
198 2009-07-10  Thomas Adam  <thomas.adam22@gmail.com>
199         * fvwm/add_window.c (setup_window_name_count):
200         * fvwm/add_window.c (setup_icon_name_count):
201         Deprecate these in favour of setup_name_count()
203         * fvwm/add_window.c (setup_name_count):
204         Amalgamate setup_window_name_count and setup_icon_name_count to just
205         one function (very similar code between them.)  Used with
206         IndexedWindowName and IndexedIconName.
208 2009-07-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
210         * NEWS:
211         Fix the options RPlayVolume and RPlayPriority in FvwmEvent.
213         * libs/Fplay.h (Fplay_set, Fplay_get, Frptp_putline)
214         (Frptp_async_putline):
215         Fix ANSI C compatibility.
217         * NEWS:
218         * fvwm/ewmh_names.c (EWMH_WMName):
219         set the HAS_EWMH_WM_NAME flag even if the window name on display
220         isn't changing.
221         (EWMH_WMIconName):
222         same for HAS_EWMH_WM_ICON_NAME
224 2009-07-08  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
226         * NEWS:
227         fix for segfault with RPlatHost directive in FvwmEvent
228         * libs/Makefile.am (libfvwm_a_SOURCES):
229         * libs/Fplay.h:
230         add Fplay.h wrapper header for rplay.h
232         * NEWS:
233         fix debian bug #438132
235 2009-07-06  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
237         * NEWS:
238         * fvwm/style.c (fw_match_style_id):
239         Fix fvwmstyle resource
241 2009-07-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
243         * NEWS:
244         * fvwm/events.c (HandleMapRequestKeepRaised):
245         Make sure that a PropertyNotify on the WM_STATE property is always
246         sent out when a window is requested to be moved to the withdrawn
247         state. (Needed by QT)
249 2009-07-01  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
251         * sample.fvwmrc/DecorMwm:
252         * sample.fvwmrc/DecorWin95:
253         * sample.fvwmrc/new-features:
254         * sample.fvwmrc/system.fvwm2rc:
255         * sample.fvwmrc/system.fvwm2rc-sample-1:
256         * sample.fvwmrc/system.fvwm2rc-sample-2:
257         * sample.fvwmrc/system.fvwm2rc-sample-95:
258         Use !-negation for styles instead of No...
260         * NEWS:
261         fix a typo
263         * sample.fvwmrc/system.fvwm2rc-sample-95:
264         sed -i '/^#*\(+\|AddToMenu\) "[^%"]*%[^%"]*"/s/%\([^"]*\)/%\1%/'
265         sed -i 's/StayOnTop/StaysOnTop/'
266         According to patches by Manoj Srivastava
268 2009-03-17  Mikhael Goikhman  <migo@homemail.com>
270         * fvwm/externs.h:
271         * fvwm/fvwm.c:
272         * fvwm/session.c:
273         convert my old code to use var_name and function_name coding style
275 2009-02-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
277         * NEWS:
278         * configure.ac:
279         increased version to 2.5.28
281         * ANNOUNCE:
282         * NEWS:
283         * configure.ac:
284         updated for 2.5.27 release
286 2009-02-23  Thomas Adam <thomas.adam22@gmail.com>
287         * fvwm/bindings.c (print_bindings):
288         Fixed compilation of not having libstroke installed by using ifdefs
289         around stroke code.
291 2009-02-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
293         * fvwm/bindings.c (print_bindings):
294         slight cleanup
296         * libs/charmap.c (charmap_table_to_string):
297         several memory menagement fixes.
299 2009-02-22  Thomas Adam <thomas.adam22@gmail.com>
301         * libs/charmap.c (charmap_table_to_string):
302         Reduce memory management on the stack, by making only those variables
303         to be accessed outside of the function charmap_table_to_string()
304         allocated on the heap instead.
306         * fvwm/bindings.c (print_bindings):
307         b->Action was previously checked whether it was NULL or not before
308         printing its value to STDERR -- however, this caused a segfault when
309         trying to perform strlen() operations internally -- hence don't bother
310         checking if it's NULL.  This avoids segfaulting.
312 2009-02-05  Thomas Adam <thomas.adam22@gmail.com>
314         * libs/charmap.c (charmap_table_to_string):
315         * libs/charmap.h:
316         Introduce charmap_to_string function which is used to build up a
317         binding string, for use with PrintInfo.
319         * fvwm/bindings.c (print_bindings):
320         Introduce print_bindings to print all bindings known to fvwm.
322         * fvwm/builtins.c (CMD_PrintInfo):
323         * fvwm/builtins.h:
324         Add support for "binding" as an option to PrintInfo.
326 2009-02-19  Thomas Adam  <thomas.adam22@gmail.com>
328         * fvwm/placement.c (__pl_position_get_pos_simple):
329         Force the window on-screen if using PositionPlacement UnderMouse.
331 2009-02-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
333         * fvwm/events.c (HandleMapRequestKeepRaised):
334         * fvwm/add_window.c (AddWindow):
335         * fvwm/style.h:
336         * fvwm/style.c (style_parse_one_style_option):
337         add new style InitialMapCommand
339 2008-02-08  Thomas Adam <thomas.adam22@gmail.com>
341         * bin/fvwm-menu-desktop.in:
342         Fix the location prefix for GNOME application files.
344 2008-12-29  Alexandre Julliard  <julliard@winehq.org>
346         * fvwm/ewmh_events.c (ewmh_WMStateMaxHoriz):
347         Having either _NET_WM_STATE_MAXIMIZED_HORIZ or
348         _NET_WM_STATE_MAXIMIZED_HORZ should be enough to make the window
349         horizontally maximized.
351 2008-11-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
353         * fvwm/fvwm.h:
354         * fvwm/module_list.c (do_execute_module):
355         * fvwm/fvwm.c (fvmm_deinstall_signals):
356         restore default signal handlers before execl()/execvp()
358 2008-10-05  Thomas Adam <thomas.adam22@gmail.com>
360         * fvwm/style.c (fw_match_style_id):
361         Allow for the window's visible name to be considered when matching a
362         style line.  It is possible to use $[w.visiblename] as the style name.
363         Whilst the normal name and the visible name are usually the same, in
364         the case of having IndxedWindowName, if a style line matches this as a
365         visible name, apply it first of all.
367 2008-10-03  Thomas Adam  <thomas.adam22@gmail.com>
368         * AUTHORS:
369         * fvwm/expand.c:
370         Add $[w.visiblename] as an expansion parameter.
372 2008-08-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
374         * fvwm/placement.c (__pl_position_get_pos_simple):
375         position placement honours StartsOnPage
377 2008-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
379         * fvwm/session.c (MatchWinToSM):
380         fixed keeping fullscreen state of windows over a restart; the old code
381         tried to do this through session management and effectively overwrote
382         the responsible ewmh hint; eventually, fvwm thought that the window
383         was fullscreen without actually making it fullscreen
385 2008-08-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
387         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
388         fixed compiler warning caused by a logic error in previous patch
390         * configure.ac:
391         applied png detection fix by Yuri Bushmelev for cross compiliation
393         * fvwm/events.c (__handle_cr_on_client):
394         fixed event merging with auto motion detection
396 2008-08-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
398         * NEWS:
399         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
400         * fvwm/events.h (events_handle_configure_request):
401         * fvwm/events.c (events_handle_configure_request):
402         (__handle_cr_on_client):
403         (__handle_configure_request):
404         fix handling of _NET_MOVERESIZE_WINDOW
405         (__cr_detect_icccm_move):
406         remove douplicate code
408 2008-08-06  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
410         * NEWS:
411         * fvwm/add_window.c (setup_frame_window):
412         fix compilation without XRender
414 2008-05-22  Adam Goode  <adam(at)spicenitz(dot)org>
416         * AUTHORS:
417         * ChangeLog-pre-2.4:
418         * rpm/fvwm.spec.in:
419         * vms/fvwmrc.dat:
420         Convert Latin-1 encodings to UTF-8
422 2008-05-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
424         * NEWS:
425         * configure.ac:
426         increased version to 2.5.27
428         * ANNOUNCE:
429         * NEWS:
430         * configure.ac:
431         updated for 2.5.26 release
433 2008-04-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
435         * fvwm/ewmh_events.c (ewmh_WMDesktop):
436         (ewmh_WMState):
437         * fvwm/ewmh.c (ewmh_AddToKdeSysTray):
438         (ewmh_HandleWindowType):
439         (ewmh_AddToKdeSysTray):
440         (ewmh_HandleWindowType):
441         (ewmh_check_wm_pid):
442         64-bit fix by Alexandre Julliard
444 2008-03-30  Mikhael Goikhman  <migo@homemail.com>
446         * configure.ac:
447         fix fribidi detection when it uses pkg-config and not fribidi-config
449         * libs/FBidi.c:
450         fix compilation with newer fribidi-0.19.1 (or also called fribidi2),
451         it now uses fribidi-types.h and not fribidi_types.h
453 2008-03-21  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
455         * fvwm/events.c (dispatch_event):
456         Fix handling of Shape events.
458 2008-03-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
460         * fvwm/menus.c (calc_normal_item_height):
461         (calc_more_item_height):
462         (size_menu_vertically):
463         fix calculations so the menu fit on the screen height
465 2008-03-12  Jes~s Guerrero  <i92guboj(at)terra(dot)es>
467         * fvwm/menus.c (size_menu_vertically):
468         added paddings at the top and bottom of the menus
470         * fvwm/menustyle.c (parse_vertical_margins_line):
471         new function to parse the VerticalMargins new MenuStyle
472         command
474         * fvwm/menustyle.c (menustyle_get_styleopt_index):
475         added the VerticalMargins option to the list
477         * fvwm/menustyle.c (menustyle_parse_style):
478         added default values for the padding, and a case clause
479         for the specific case when you invoke the VerticalMargins
480         MenuStyle
482         * fvwm/menustyle.c (menustyle_copy):
483         added two lines to copy the menu styles from origin to destiny
485         * fvwm/menustyle.h:
486         added macros for the vertical padding stuff
488         * fvwm/menustyle.h (struct MenuLook):
489         added sub-structure to hold the VerticalMargins
491         * fvwm/libs/defaults.h:
492         added one define for MAX_MENU_MARGIN
494 2008-03-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
496         * fvwm/menuitem.c (draw_highlight_background):
497         fixed drawing of background pictures in menu items
499 2008-02-29  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
501         * fvwm/add_window.c (setup_frame_window):
502         fix core dump with ARGB detection code
503         fix compilation without XRender
505 2008-02-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
507         * NEWS:
508         * configure.ac:
509         increased version to 2.5.26
511         * ANNOUNCE:
512         * NEWS:
513         * configure.ac:
514         updated for 2.5.25 release
516 2008-02-12  Renato Caldas  <seventhguardian@gmail.com>
518         * fvwm/fvwm.c (main):
519         further condense the X visual selection code
521 2008-02-10  Renato Caldas  <seventhguardian@gmail.com>
523         * fvwm/fvwm.c (main):
524         condense the X visual selection code
526 2008-02-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
528         * fvwm/events.c (register_event_group)
529         (InitEventHandlerJumpTable, dispatch_event):
530         use separate jump tables for events defined by X-extensions
531         to eliminate the need to ovverride the LASTEvent value.
533         * fvwm/module_list.c (module_list_remove):
534         include the case where the module is first in the list in
535         the loop, fixing a segmentaion fault when the list was empty.
537 2008-02-07  Renato Caldas  <seventhguardian@gmail.com>
539         * fvwm/add_window.c (setup_frame_window):
540         add CWCursor to window's valuemask (from Marc Lehmann's argb patch)
541         add preliminary support for ARGB windows in fvwm (based on
542         Marc Lehman's argb patch)
544 2008-02-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
546         * libs/PictureUtils.c (XPM_COLOR_CLOSENESS):
547         fixed compile error
549 2008-02-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
551         * libs/Colorset.c (CreateOffsetBackgroundPixmap):
552         catch BadGC when updating root transparent window background
554         * libs/XError.c (do_coredump):
555         (ferror_set_temp_error_handler):
556         (ferror_reset_error_handler)
557         (ferror_call_next_error_handler):
559         new helper functions
560         * libs/XError.c (PrintXErrorAndCoredump):
561         try to dump core the hard way
563 2008-02-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
565         * fvwm/colorset.c (parse_colorset):
566         check for image != None before calling XDestroyImage
568         * fvwm/ewmh_events.c (ewmh_WMStateMaxVert):
569         (ewmh_WMStateMaxHoriz):
570         (ewmh_WMStateModal):
571         (ewmh_WMStateShaded):
572         (ewmh_WMStateStaysOnTop):
573         (ewmh_WMStateStaysOnBottom):
574         handle the STATE_ADD command of the EWMH _NET_WM_STATE message from
575         version 1.3
576         also ignore the EWMH staysontop and staysonbottom hints if the
577         EWMHIgnoreStackingOrderHints style is used
579         * fvwm/colorset.c (parse_colorset):
580         Fixed a sporadic crash when the root background set by gnome,
581         fvwm-root, esetroot etc. changes and a root transparent colour set
582         is used.
584         * fvwm/colorset.c (parse_colorset):
585         * libs/PictureUtils.c (alloc_color_dynamic_no_limit):
586         * libs/Colorset.c (CreateOffsetBackgroundPixmap):
587         * libs/PictureGraphics.c (PGrabXImage)
588         (PGraphicsCreateTranslucent):
589         use MyXGrabserver and MyXUngrabServer instead of doing the X calls
590         directly!
592 2008-01-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
594         * libs/PictureGraphics.c (PGrabXImage):
595         fixed XImage memory leak
596         (PCreateRenderPixmap):
597         (PCreateDitherPixmap):
598         Properly handle return code of FgetFImage()
600 2008-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
602         * fvwm/events.c (HandleConfigureRequest):
603         (events_handle_configure_request):
604         cleanup
606         * fvwm/ewmh_events.c (ewmh_RestackWindow):
607         (ewmh_MoveResizeWindow):
608         fixed crash when moving/resizing/restacking unmanaged windows through
609         an ewmh message
611 2008-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
613         * fvwm/events.c (HandleMapRequestKeepRaised):
614         fixed compiler warning
616 2008-01-26  Olivier  <chapuis(at)lri(dot)fr>
618         * libs/FlocaleCharset.c: (FlocaleInit_X_Charset),
619         (FlocaleCharsetInit), (FlocaleCharsetGetDefaultCharset):
620         * NEWS:
621         Fixed the determination of the X charset on UTF-8 system
623 2008-01-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
625         * fvwm/placement.c (__pl_minoverlap_get_next_x):
626         do not add screen offset to window position
628         * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
629         fixed a memory leak
631 2008-01-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
633         * NEWS:
634         Some html documentation files were not installed.
636 2008-01-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
638         * fvwm/style.c (style_parse_one_style_option):
639         fixed parsing of screen argument of the SnapAttraction Style
641 2007-12-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
643         * fvwm/move_resize.c (DoSnapAttract):
644         Use edge move resistance, and not delay for top edge when moving
645         windows.
647 2007-12-03  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
649         * NEWS:
650         * fvwm/events.c (HandleMapRequestKeepRaised)
651         (test_withdraw_request):
652         Don't map windows that request to be moved back to WithdrawnState
653         by the ICCCM2 method before they have been mapped. (Fixes bug with
654         disappearing windows.)
656 2007-11-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
658         * NEWS:
659         * configure.ac:
660         increased version to 2.5.25
662         * NEWS:
663         * configure.ac:
664         updated for 2.5.24 release
666 2007-11-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
668         * fvwm/menus.c (__mloop_exit):
669         * fvwm/menubindings.c (parse_menu_action):
670         * fvwm/bindings.c:
671         reindented and cleaned up some code
673 2007-11-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
675         * fvwm/update.c (apply_window_updates):
676         * fvwm/add_window.c (setup_style_and_decor):
677         (setup_numeric_vals):
678         * fvwm/add_window.h:
679         * fvwm/style.h:
680         * libs/defaults.h:
681         * fvwm/events.c (HandleEnterNotify):
682         * fvwm/fvwm.c (InitVariables):
683         * fvwm/screen.h:
684         * fvwm/session.c (SaveGlobalState):
685         (LoadGlobalState):
686         * fvwm/move_resize.c (DoSnapAttract):
687         (CMD_SnapGrid)
688         (DoSnapAttract):
689         The commands EdgeResistance, SnapGrid and SnapAttraction are obsolete
690         They have been replaced by the styles EdgeMoveResistance,
691         EdgeMoveDelay, EdgeResizeDelay, SnapGrid and SnapAttraction
693 2007-10-21  Renato Caldas  <seventhguardian@gmail.com>
695         * acinclude.m4:
696         * configure.ac:
697         use AS_HELP_STRING to format the configure options help strings
699 2007-10-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
701         * fvwm/conditional.c:
702         some reformatting
704 2007-10-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
706         * fvwm/ConfigFvwmDefaults:
707         restore default action of closing menus for menu titles
709 2007-10-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
711         * libs/FScreen.c (FindScreenOfXY):
712         * fvwm/move_resize.c (GetMoveArguments):
713         fixed the "screen w" argument of the Move and other commands
715 2007-09-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
717         * fvwm/virtual.c (HandlePaging):
718         don't modify *xl and *yt unless we we really page
720 2007-09-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
722         * fvwm/module_list.h:
723         * fvwm/module_list.c:
724         a little cleanup
726 2007-09-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
728         * NEWS:
729         * configure.ac:
730         increased version to 2.5.24
732         * NEWS:
733         * configure.ac:
734         updated for 2.5.23 release
736         * libs/Flocale.c (FlocaleEncodeString):
737         removed previous warning fix
739 2007-08-30 Thomas Adam <thomas@edulinux.homeunix.org>
741         * fvwm/style.c:
742         * fvwm/add_window.c:
743         Added new style option:  StartShaded.
745 2007-08-30  Renato Caldas  <seventhguardian@gmail.com>
747         * libs/Flocale.c (FlocaleEncodeString):
748         fix compile warning
750 2007-08-30  Viktor Griph  <griph(at)student(dot)chalmers(dot)se>
752         * configure.ac:
753         * fvwm/fvwm.1.in
754         * fvwm/Makefile.am:
755         removed old fvwm manpage
757 2007-08-29  Renato Caldas  <seventhguardian@gmail.com>
759         * NEWS:
760         * configure.ac:
761         increased version to 2.5.23
763         * NEWS:
764         * configure.ac:
765         fix the date for 2.5.22 release
767 2007-08-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
769         * fvwm/windowlist.c (CMD_WindowList):
770         fixed crash when using CurrentAtEnd and IconifiedAtEnd with only
771         iconified windows.
773 2007-08-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
775         * configure.ac:
776         fixed perl check
777         use "test ! ... = ..." instead of "test ... != ..."
779         * fvwm/builtins.c (CMD_PropertyChange):
780         fixed completely broken parsing of PropertyChange arguments
782 2007-08-28  Renato Caldas  <seventhguardian@gmail.com>
784         * NEWS:
785         * configure.ac:
786         updated for 2.5.22 release
788         * fvwm/builtins.c (CMD_PropertyChange):
789         * libs/Flocale.c (FlocaleGetFftFont):
790         (FlocaleGetFontSet):
791         (FlocaleGetFont):
792         (FlocaleGetFontOrFontSet):
793         (FlocaleLoadFont):
794         (FlocaleUnloadFont):
795         fix compiler warnings
797 2007-08-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
799         * fvwm/functable.c:
800         fixed command table parsing
802 2007-08-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
804         * fvwm/module_list.c (module_kill):
805         (executeModuleDesperate):
806         (module_list_itr_init):
807         re-indented
809         * fvwm/events.c (My_XNextEvent):
810         * fvwm/module_list.c (module_alloc):
811         (do_execute_module):
812         * fvwm/module_list.h (fmodule):
813         (MOD_IS_CMDLINE):
814         (MOD_SET_CMDLINE):
815         restored *not* useless is_cmdline_module stuff
817         * fvwm/functions.h:
818         add constants for command group tagging
820 2007-08-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
822         * configure.ac:
823         don't check for tbl
825 2007-08-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
827         * configure.ac:
828         check for sed, perl and tbl, needed to build documentation
830 2007-08-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
832         * libs/System.c (fvwm_mkstemp):
833         use constants from libs/fvwm_sys_stat.h
835 2007-08-15  Renato Caldas  <seventhguardian@gmail.com>
837         * fvwm/module_list.c (do_execute_module):
838         fixed possible crash when fork fails
840         * fvwm/module_list.c (module_list_remove):
841         now returns the removed fmodule*, or NULL if unsuccessful
842         removed error message when removing a not listed module (it's normal)
844         * fvwm/module_list.c (module_kill):
845         module is inserted in death_row only if it is successfuly removed from
846         module_list (fixes crash when module is killed more than once)
848 2007-08-08  Renato Caldas  <seventhguardian@gmail.com>
850         * fvwm/events.c (My_XNextEvent):
851         fixed hang with startup modules
853 2007-08-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
855         * fvwm/conditional.c (FreeConditionMask):
856         fixed crash with inverted name condition
858         * NEWS:
859         fixed typo
861 2007-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
863         * configure.ac:
864         * README:
865         * NEWS:
866         * INSTALL.fvwm:
867         * sample.fvwmrc/system.fvwm2rc-sample-95:
868         * sample.fvwmrc/system.fvwm2rc:
869         * sample.fvwmrc/system.fvwm2rc-sample-2:
870         * libs/Picture.c (PicturePrintImageCache):
871         * libs/Module.c:
872         * libs/FGettext.c (FGettextPrintLocalePath):
873         * libs/fvwmsignal.c:
874         * libs/Module.h:
875         * libs/PictureUtils.c (PictureAllocColorTable)
876         (PicturePrintColorInfo):
877         * libs/FScreen.h:
878         * libs/fvwmsignal.h:
879         * libs/Bindings.c:
880         * libs/FScreen.c:
881         * libs/Ficonv.c (convert_charsets):
882         (FiconvSetupConversion):
883         * fvwm/decorations.c:
884         * fvwm/gnome.h:
885         * fvwm/events.c:
886         * fvwm/add_window.c (setup_window_font):
887         (setup_icon_font):
888         * fvwm/fvwm.1.in:
889         * fvwm/session.h:
890         * fvwm/conditional.c:
891         * fvwm/fvwm.c (SetRCDefaults):
892         (main):
893         * fvwm/ewmh_events.c:
894         * fvwm/stack.c:
895         * fvwm/gnome.c:
896         * fvwm/menustyle.c (menustyle_parse_style):
897         (menustyle_copy):
898         * fvwm/ewmh.c (EWMH_Init):
899         * libs/Flocale.c (FlocaleParseShadow):
900         (FlocaleGetFontSet):
901         (FlocaleLoadFont):
902         (FlocalePrintLocaleInfo):
903         * fvwm/misc.c (fvwm_msg):
904         * vms/README:
905         * vms/vms.c:
906         write fvwm in lower case
908         * configure.ac:
909         fixed build without GNU make
911 2007-08-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
913         * libs/Flocale.c (FlocaleChar2bOneCharToUtf8):
914         fixed buffer overflow
916 2007-08-06  Renato Caldas  <seventhguardian@gmail.com>
918         * fvwm/module_list.h (fmodule_list_itr):
919         * fvwm/module_list.c (module_list_itr_init, module_list_itr_next):
920         replace iterator struct by typedef
922         * fvwm/module_list.c (module_list_destroy):
923         (module_kill_all):
924         (module_cleanup):
925         new function to remove dup code
927         * fvwm/module_list.c (module_kill):
928         changed to move the module to the deathrow list
930         * fvwm/module_list.h (fmodule):
931         * fvwm/module_list.c (module_alloc):
932         (module_list_remove):
933         (FlushMessageQueue):
934         removed is_removed logic
936         * fvwm/module_list.c (module_safefree):
937         removed function
939         * fvwm/events.c (My_XNextEvent):
940         remove old "#if 0" code
942         * fvwm/module_list.c (module_kill):
943         removed debug code
945 2007-08-06  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
947         * fvwm/module_list.h (fmodule_list_itr):
948         * fvwm/module_list.c (module_list_itr_init, module_list_itr_next):
949         don't store current pointer in module list iterators.
950         fix C89-compilance
952 2007-08-06  Renato Caldas  <seventhguardian@gmail.com>
954         * fvwm/events.c (My_XNextEvent):
955         * fvwm/module_list.c (KillModuleByName):
956         (FlushAllMessageQueues):
957         * fvwm/module_interface.c (BroadcastPacket):
958         (BroadcastNewPacket):
959         (BroadcastName):
960         (BroadcastFvwmPicture):
961         (BroadcastColorset):
962         (BroadcastProperyChange):
963         (BroadcastConfigInfoString):
964         (CMD_SendToModule):
965         * fvwm/modconf.c (ModuleConfig):
966         * fvwm/stack.c (BroadcastRestack):
967         replaced module_get_next by module list iterator mechanism
969         * fvwm/module_list.h:
970         * fvwm/module_list.c (module_get_next):
971         removed function
973 2007-08-05  Renato Caldas  <seventhguardian@gmail.com>
975         * fvwm/module_list.h:
976         * fvwm/module_list.c (fmodule):
977         (fmodule_store):
978         (module_insert):
979         (module_remove):
980         (module_count):
981         (module_get_next):
982         (FlushAllMessageQueues):
983         (KillModuleByName):
984         * fvwm/module_interface.c (BroadcastPacket):
985         (BroadcastNewPacket):
986         (BroadcastName):
987         (BroadcastFvwmPicture):
988         (BroadcastColorset):
989         (BroadcastProperyChange):
990         (BroadcastConfigInfoString):
991         (CMD_SendToModule):
992         * fvwm/event.c (My_XNextEvent):
993         * fvwm/stack.c (BroadcastRestack):
994         * fvwm/modconf.c (ModuleConfig):
995         changed to work with generic list container
997         * fvwm/module_list.c (module_insert):
998         (module_list_insert):
999         (module_remove):
1000         (module_list_remove):
1001         (module_count):
1002         (module_list_len):
1003         renamed as list handling functions
1005         * fvwm/events.c (My_XNextEvent):
1006         * fvwm/module_list.h:
1007         * fvwm/module_list.c (module_alloc):
1008         (do_execute_module):
1009         removed useless is_cmdline_module stuff
1011         * fvwm/module_list.h:
1012         * fvwm/module_list.c (module_list_insert):
1013         (module_list_remove):
1014         (module_list_len):
1015         new fmodule_list object representing a module list.
1016         changed the module lists to the new object.
1017         changed list functions to use the list object instead of the
1018         fmodule_store pointer.
1020         * fvwm/events.c (My_XNextEvent):
1021         moved module_cleanup to after ExecuteCommandQueue to avoid segfaults
1023         * fvwm/module_list.h (fmodule_list_itr):
1024         * fvwm/module_list.c (fmodule_list_itr_init):
1025         (fmodule_list_itr_next):
1026         created a smart (safe) iterator mechanism to replace the
1027         module_get_next function
1029 2007-08-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1031         * fvwm/functions.c:
1032         * fvwm/functable.c:
1033         added empty functions to replace CMD_Dummy
1035         * configure.ac:
1036         use subordinate Makefile.ams instead of iuncluding files from other
1037         dirs
1039         * configure.ac:
1040         removed FVWMNAMEUCASE
1042         * configure.ac:
1043         make distcheck fix
1045         * Makefile.am (DISTCHECK_CONFIGURE_FLAGS):
1046         force --enable-htmldoc on "make distcheck"
1048         * fvwm/events.c (HandleEnterNotify):
1049         (HandleLeaveNotify):
1050         properly generate enter_window and leave_window events for FvwmEvent
1052 2007-08-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1054         * fvwm/move_resize.c (GetOnePositionArgument):
1055         (__get_shift)
1056         (ParsePositionArgumentSuffix):
1057         code cleanup
1059 2007-07-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1061         * fvwm/move_resize.c (GetOnePositionArgument):
1062         fixed position calculation with the "w" prefix (move w-1 w-1).
1063         (GetOnePositionArgument):
1064         code cleanup
1066 2007-07-26  Viktor Griph  <griph@dd.chalmers.se>
1068         * fvwm/menus.c (__copy_down, __check_for_delimiter)
1069         (scanForStrings):
1070         reduce indentation level
1071         add comment to explain why suppressing the warning is right
1073 2007-07-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1075         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
1076         fixed using uninitialized variable
1078         * fvwm/menus.c (scanForStrings):
1079         suppress compiler warning for now
1081         * fvwm/move_resize.c (resize_move_window):
1082         (AnimatedMoveAnyWindow):
1083         (__move_window):
1084         (__resize_window):
1085         (CMD_Maximize):
1086         * fvwm/module_interface.c (__get_allowed_actions):
1087         * fvwm/menuitem.c (menuitem_paint):
1088         * fvwm/icons.c (CMD_Iconify):
1089         * fvwm/gnome.c (GNOME_SetHints):
1090         * fvwm/ewmh.c (ewmh_AllowsClose):
1091         (ewmh_AllowsClose)
1092         (ewmh_AllowsFullScreen):
1093         (ewmh_AllowsMinimize)
1094         (ewmh_AllowsMaximize):
1095         (ewmh_AllowsMove):
1096         (ewmh_AllowsResize)
1097         (EWMH_fullscreen):
1098         * fvwm/ewmh_events.c (ewmh_CloseWindow):
1099         (ewmh_MoveResizeWindow):
1100         (ewmh_MoveResize):
1101         (ewmh_WMState):
1102         (ewmh_WMStateHidden):
1103         * fvwm/events.c (__handle_cr_on_client):
1104         * fvwm/decorations.c (__is_resize_allowed):
1105         (is_function_allowed):
1106         * fvwm/conditional.c (MatchesConditionMask):
1107         * fvwm/builtins.c (CMD_Delete):
1108         * fvwm/add_window.c (AddWindow):
1109         is_function allowed now differentiates between US program actions and
1110         actions initiated by interaction between fvwm and the user
1112 2007-07-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1114         * fvwm/menus.c (__scan_for_pixmap):
1115         fixed compiler warning
1117         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
1118         (ewmh_RestackWindow):
1119         honor FixedSize/FixedPosition styles in EWMH messages too
1121 2007-07-24  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1123         * fvwm/fvwm.c (setVersionInfo):
1124         add XCursor support to version output
1126         * fvwm/menus.c (SCTX_SET_MI, SCTX_GET_MI, SCTX_SET_MR)
1127         (SCTX_GET_MR, string_context_type_t, string_context_t)
1128         (string_def_t, scanForColor, scanForPixmap, scanForStrings)
1129         (__scan_for_color, __scan_for_pixmap, AddToMenu, NewMenuRoot):
1130         reimplement pixmap and color scanning for menus to better handle
1131         escaped delimiters.
1133 2007-07-22  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1135         * fvwm/Makefile.am:
1136         don't install fvwm.1
1138         * fvwm/events.c (My_XNextEvent):
1139         remove unused varaible
1141         * fvwm/events.c (My_XNextEvent):
1142         * fvwm/module_list.h:
1143         * fvwm/module_list.c (module_store, module_alloc)
1144         (module_kill_all, module_safefree, module_remove)
1145         (do_execute_module, module_kill, module_cleanup, module_get_next)
1146         (FlushMessageQueue):
1147         Don't free module stuctures during module I/O. (Fixes segfault.)
1149 2007-07-20  Simon Griph  <simon(at)griph(dot)se>
1151         Committed by Scott.
1153         * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1154         Someone missed to add extra conditions when changing from
1155         unsigned to signed.
1157 2007-07-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1159         * configure.ac:
1160         fixed liXcursor detection
1162 2007-07-16  Simon Griph  <simon(at)griph(dot)se>
1164         Committed by Scott.
1166         * fvwm/menus.c (scanForPixmap):
1167         made it possible to escape '*' '%' '@' in filenames
1169         * libs/PictureImageLoader.c (PImageLoadSvg):
1170         added transposing and none uniform scaling to svg options
1172 2007-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1174         * libs/PictureImageLoader.c:
1175         cleanup
1176         (PImageLoadCursorFromFile):
1177         fixed compilation without xpm library
1178         (PImageLoadPng):
1179         fixed compiler warning without png library
1181 2007-07-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1183         * libs/Fxpm.h:
1184         * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1185         fix compilation without xpm library
1187 2007-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1189         * libs/Fxpm.h:
1190         fixed compile error
1192         * libs/PictureImageLoader.c:
1193         cleanup
1194         (PImageLoadCursorFromFile):
1195         fixed compilation without xpm library
1196         (PImageLoadPng):
1197         fixed compiler warning without png library
1199 2007-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1201         * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1202         * fvwm/cursor.c (CMD_CursorStyle):
1203         fixed compiler warning
1205 2007-07-15  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1207         * fvwm/cursor.c (CMD_CursorStyle):
1208         fix CursorStyle command parsing
1210 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1212         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1213         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1214         * libs/PictureImageLoader.c (PImageLoadSvg):
1215         (PImageLoadPng):
1216         (PImageCreatePixmapFromArgbData):
1217         moved XCreatePixmap() calls into PImageCreatePixmapFromArgbData()
1218         (PImageCreatePixmapFromFImage):
1219         new local function
1221 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1223         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1224         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1225         * libs/PictureImageLoader.c (PImageLoadSvg):
1226         (PImageLoadPng):
1227         (PImageCreatePixmapFromArgbData):
1228         moved XCreatePixmap() calls into PImageCreatePixmapFromArgbData()
1229         (PImageCreatePixmapFromFImage):
1230         new local function
1232 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1234         * AUTHORS:
1235         * NEWS:
1236         updated
1238         * configure.ac:
1239         added libXcursor detection
1241         * fvwm/Makefile.am (LDADD):
1242         added Xcursor_LIBS
1244         * INSTALL.fvwm:
1246         * libs/Fcursor.h:
1247         new file
1249         * libs/Makefile.am (libfvwm_a_SOURCES):
1250         added Fcursor.h
1252         * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1253         added Xcursor support
1255 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1257         * NEWS:
1258         updated
1260         * libs/Fxpm.h:
1261         added defs for FxpmInfo and FxpmFreeXpmInfo
1263         * libs/PictureBase.h (FvwmPictureAttributes):
1264         * libs/PictureImageLoader.c
1265         (PImageCreatePixmapFromArgbData):
1266         (PImageLoadPixmapFromFile):
1267         added FPAM_MONOCHROME option to FvwmPictureAttributes bitmask
1268         (PImageLoadCursorPixmapFromFile):
1269         (PImageLoadCursorFromFile):
1270         * libs/PictureImageLoader.h:
1271         removed the xpm-specific PImageLoadCursorPixmapFromFile(),
1272         replaced by the new general PImageLoadCursorFromFile()
1274         * fvwm/cursor.c (CMD_CursorStyle):
1275         handle new hot-spot arguments, use PImageLoadCursorFromFile()
1276         instead of PImageLoadCursorPixmapFromFile(), less code duplication
1278 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1280         * libs/PictureImageLoader.c
1281         (PImageLoadSvg):
1282         (PImageLoadPng):
1283         (PImageLoadXpm):
1284         now returns argb data instead of pixmaps
1285         (PImageLoadPixmapFromFile):
1286         (PImageLoadArgbDataFromFile):
1287         moved first half of PImageLoadPixmapFromFile() into
1288         the new local function PImageLoadArgbDataFromFile()
1289         (PImageLoadBitmap):
1290         removed function, code moved into PImageLoadPixmapFromFile()
1292 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1294         * libs/PictureImageLoader.c (PImageLoadXpm):
1295         revised to make use of PImageCreatePixmapFromArgbData()
1297 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1299         * fvwm/colorset.c (parse_shape):
1300         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1301         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1302         * libs/PictureImageLoader.c
1303         (PImageLoadSvg):
1304         (PImageLoadPng):
1305         (PImageCreatePixmapFromArgbData):
1306         don't create a mask pixmap for fully opaque (all alpha == 0xff)
1307         or translucent (0 < any alpha < 0xff) images.
1309 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1311         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1312         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1313         * libs/PictureImageLoader.c (PImageLoadSvg):
1314         (PImageLoadPng):
1315         (PImageCreatePixmapFromArgbData):
1316         moved XCreatePixmap() calls into PImageCreatePixmapFromArgbData()
1317         (PImageCreatePixmapFromFImage):
1318         new local function
1320 2007-07-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1322         * fvwm/functions.c (CMD_EchoFuncDefinition):
1323         * fvwm/functable.c (func_table):
1324         * fvwm/commands.h:
1325         new command EchoFuncDefinition
1327 2007-07-07  Simon Griph  <simon(at)griph(dot)se>
1329         * NEWS:
1330         * fvwm/conditional.c (CreateConditionMask):
1331         bugfix: Condition separation previously failed when a
1332         single comma (no whitespace padding) was used directly
1333         after a multi-worded condition.
1335 2007-06-21  Renato Caldas  <seventhguardian@gmail.com>
1337         * fvwm/module_list.c (module_kill):
1338         fix possible core dump when using startup modules
1340 2007-06-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1342         * NEWS:
1343         * fvwm/builtins.c (CMD_PrintInfo):
1344         * libs/Picture.h (PicturePrintImageCache):
1345         * libs/Picture.c (PicturePrintImageCache):
1346         add ImageCache subject to PrintInfo command
1348 2007-06-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1350         * NEWS:
1351         * fvwm/events.c (My_XNextEvent):
1352         fix crash when a module closes down during input/output.
1354 2007-06-03  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1356         * fvwm/icons.c (ChangeIconPixmap):
1357         (DeIconify):
1358         (Iconify):
1359         * fvwm/focus.c (warp_to_fvwm_window):
1360         * fvwm/events.c (__handle_cr_restack):
1361         (__handle_bpress_on_managed):
1362         (HandlePropertyNotify):
1363         * fvwm/stack.h:
1364         * fvwm/stack.c (__restack_window):
1365         (__raise_lower_recursion):
1366         (__raise_or_lower_window):
1367         (raise_or_lower_window):
1368         (position_new_window_in_stack_ring):
1369         (RaiseWindow):
1370         (LowerWindow):
1371         (RestackWindow):
1372         (HandleUnusualStackmodes):
1373         (CMD_Raise):
1374         (CMD_Lower):
1375         (CMD_RestackTransients):
1376         (CMD_RaiseLower):
1377         do raise hacks even when the internal stack is intact, unless on a
1378         client request
1380 2007-06-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1382         * fvwm/style.c (check_window_style_change)
1383         (style_parse_one_style_option):
1384         * fvwm/style.h:
1385         * fvwm/fvwm.h (window_style):
1386         * fvwm/add_window.c (setup_frame_size_limits):
1387         * fvwm/geometry.c (constrain_size):
1388         new style MinWindowSize
1390 2007-05-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1392         * libs/System.h:
1393         added missing prototypes
1395         * libs/safemalloc.c:
1396         * libs/fio.c:
1397         * libs/envvar.c:
1398         * libs/XResource.c:
1399         * libs/XError.c:
1400         * libs/WinMagic.c:
1401         * libs/Target.c:
1402         * libs/Event.c (GetSubwindowFromEvent):
1403         * libs/Cursor.c:
1404         * libs/ColorUtils.c:
1405         include corresponding header files
1407         * libs/PictureBase.c:
1408         * libs/FlocaleCharset.c:
1409         * fvwm/ewmh.c:
1410         cleanup prototypes
1412 2007-05-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1414         * configure.ac (HAVE_GNU_READLINE):
1415         detect full GNU readline API (vs BSD libedit readline compatibility
1416         layer)
1418 2007-04-27  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1420         * fvwm/windowlist.c (CMD_WindowList):
1421         * NEWS:
1423         Deprecated "UseListSkip" & "OnlyListSkip" - replaced with
1424         "UseSkipList" & "OnlySkipList".
1426 2007-04-29  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1428         * NEWS:
1429         * fvwm/add_window.c (validate_transientfor):
1430         detect and disallow circular transient-for hints
1432 2007-04-27  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1434         * fvwm/fvwm.1.in:
1435         s/UseListSkip/UseSkipList/g etc.
1437 2007-04-17  Jesus Guerrero  <6thpink(at)terra(dot)es>
1439         * fvwm/menus.c (size_menu_vertically):
1440         added localization of the "More&..." string
1442 2007-03-17  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1444         * libs/PictureBase.c (PictureFindImageFile):
1445         fix for segfault with svg-support enabled
1447         * INSTALL.fvwm (http):
1448         * configure.ac (png_CFLAGS):
1449         raise librsvg dependeny due to bug with 2.13.91
1451         * fvwm/cursor.c (CMD_CursorStyle):
1452         remove unused static variable nocursor
1454 2007-03-14  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1456         * AUTHORS:
1457         typo.
1459 2007-03-11  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1461         * configure.ac:
1462         bugfix: 'make dist' failed cos I moved 'scott.notes' to util/ subdir.
1463         bugfix: out-of-tree builds failed due to broken dependency.
1464         Make man page have same header as old one.
1465         Fix man page indentation.
1466         Make text of top-level man page sections all uppercase.
1467         Added --disable-mandoc option.
1468         HTML doc generation is off by default: use --enable-htmldoc.
1469         Added more info in doc/README about XML commands to use.
1471 2007-03-10  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1473         * NEWS:
1474         * Everything in the 'doc' subdirectory.
1476         XML source to generate man page & HTML documentation.
1478 2007-02-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1480         * NEWS:
1481         * fvwm/colorset.c (parse_colorset):
1482         don't recompute sh, hi and fgsh if they were supplied in a previous
1483         colorset line. Fixes bug #3359.
1485 2007-02-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1487         * fvwm/move_resize.c (DoSnapAttract):
1488         handle SnapGrid before SnapAttraction so that non-overlapping windows
1489         do not snap edge to edge:
1490                                     +---+
1491                                     |   |
1492                                     +---+---+
1493                                         |   |
1494                                         +---+
1496 2007-02-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1498         * fvwm/style.c (parse_and_set_window_style)
1499         (style_parse_one_style_option):
1500         don't warn about PositionPlacement arguments
1502 2007-02-04  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1504         * AUTHORS:
1505         * NEWS:
1506         enties for ChangeWindowTitle patch by Julio Teca.
1508 2007-02-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1510         * fvwm/fvwm.c (main):
1511         fixed ROOT CursorStyle context
1513         * fvwm/placement.c (__pl_manual_get_pos_simple):
1514         * fvwm/move_resize.h:
1515         * fvwm/move_resize.c (__move_loop):
1516         (InteractiveMove):
1517         fixed long broken POSITION CursorStyle context
1519 2007-02-04  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1521         * fvwm/bindings.c (ParseBinding):
1522         fix buffer overrun with >78 character window names.
1524         * fvwm/fvwm.1.in (PositionPlacement):
1525         fix typos
1527         * fvwm/fvwm.1.in (BorderWidth, HandleWidth):
1528         * fvwm/style.c (style_parse_one_style_option):
1529         change BorderWidth and HandleWidth style  to revert to default if no
1530         arguments are given
1532 2007-02-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1534         * fvwm/fvwm.h (style_flags):
1535         * fvwm/placement.c (__pl_under_mouse_get_pos_simple):
1536         (__place_get_wm_pos):
1537         (__place_window, __explain_placement):
1538         * fvwm/style.c (style_parse_one_style_option):
1540         * libs/defaults.h (DEFAULT_PLACEMENT_POS_CENTER_STRING)
1541         (DEFAULT_PLACEMENT_POS_MOUSE_STRING)
1542         (DEFAULT_PLACEMENT_POSITION_STRING):
1543         new default strings
1545         * fvwm/move_resize.c (GetOnePositionArgument):
1546         added 'w' suffix to Move arguments
1547         allow multiple shifts from original position
1549         * fvwm/style.c (style_parse_one_style_option):
1550         (merge_styles)
1551         (free_style):
1552         * fvwm/placement.c (setup_window_placement)
1553         (__place_get_placement_flags):
1554         (__place_get_wm_pos):
1555         (__place_get_nowm_pos):
1556         (__place_window):
1557         (__place_handle_x_resources):
1558         (setup_window_placement):
1559         * fvwm/fvwm.h (PLACE_CENTER):
1560         (PLACE_POSITION):
1561         replaced CenterPlacement with more flexibe PositionPlacement
1563         * fvwm/move_resize.c (GetMoveArguments):
1564         (GetResizeArguments):
1565         (GetResizeMoveArguments):
1566         (__move_window):
1567         * fvwm/move_resize.h:
1568         exported and enhanced function GetMoveArguments for use by placement
1569         algorithm
1571 2007-02-01  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1573         * fvwm/ConfigFvwmDefaults:
1574         reenable MenuScroll on titles
1576         * fvwm/menubindings.c (menu_shortcuts):
1577         don't scroll menus if scrolling would be in the wrong direction
1579 2007-02-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1581         * fvwm/move_resize.c (__resize_window):
1582         some resizing/gravity fixes
1583         properly handle maximized + shaded state when resizing
1584         non-interactively
1586 2007-01-31  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1588         * fvwm/move_resize.c (__resize_window):
1589         resizing of shaded windows work better.
1591 2007-01-30  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1593         * fvwm/fvwm.1.in (COMMAND EXPANSION):
1594         clarified previous patch
1596         * fvwm/fvwm.1.in (COMMAND EXPANSION):
1597         documented '-' command prefix
1599         * fvwm/expand.c (__eae_parse_range):
1600         fix $[n-] and $[*] after unsigned int havoc
1602 2007-01-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1604         * fvwm/Makefile.am:
1605         * fvwm/ConfigFvwmMenuDefaults:
1606         removed file
1607         * fvwm/ConfigFvwmDefaults:
1608         * fvwm/ConfigFvwmMenuDefaults:
1609         moved all settings from ConfigFvwmMenuDefaults to ConfigFvwmDefaults
1611 2007-01-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1613         * fvwm/ConfigFvwmMenuDefaults:
1614         * fvwm/fvwm.c (SetRCDefaults):
1615         make default menu mouse bindings for MenuSelectItem and MenuScroll only
1616         apply to menu item context.
1618 2007-01-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1620         * fvwm/placement.c (placement_loop):
1621         (__pl_minoverlap_get_avoidance_penalty):
1622         (__pl_smart_get_first_pos):
1623         (__pl_smart_get_next_pos):
1624         (__pl_smart_test_window):
1625         (__pl_smart_get_pos_penalty):
1626         rewrote SmartPlacement as a sub-mode of MinOverlapPlacement, i.e. it's
1627         now less than ten lines of code.
1629         * fvwm/add_window.c (setup_placement_penalty):
1630         * fvwm/style.c (style_parse_one_style_option):
1631         allow to reset the placement penalties with !
1633         * fvwm/placement.h:
1634         * fvwm/add_window.c (setup_placement_penalty):
1635         * fvwm/style.h:
1636         * fvwm/fvwm.h:
1637         * fvwm/style.c (style_parse_one_style_option):
1638         put placement penalty array in a struct
1640         * fvwm/placement.c (__place_get_wm_pos):
1641         (__pl_clever_get_next_x):
1642         (__pl_clever_get_next_y):
1643         (__pl_clever_get_first_pos):
1644         (__pl_clever_get_next_pos):
1645         (__pl_clever_get_avoidance_penalty):
1646         (__pl_clever_get_pos_penalty):
1647         (__pl_minoverlap_get_next_x):
1648         (__pl_minoverlap_get_next_y):
1649         (__pl_minoverlap_get_first_pos):
1650         (__pl_minoverlap_get_next_pos):
1651         (__pl_minoverlap_get_avoidance_penalty):
1652         (__pl_minoverlap_get_pos_penalty):
1653         renamed ...clever... functions to ...minoverlap...
1655         * fvwm/bindings.c:
1656         * fvwm/decorations.c:
1657         * fvwm/menubindings.c:
1658         * fvwm/module_interface.c:
1659         * fvwm/module_list.c:
1660         * fvwm/fvwm.c:
1661         * fvwm/module_list.h:
1662         * fvwm/events.c:
1663         * fvwm/module_interface.h:
1664         * fvwm/Makefile.am:
1665         dont include "libs" in include path
1667         * libs/vpacket.h:
1668         #includes from fvwm path with "..." not <...>
1670         * fvwm/stack.c:
1671         #includes from library path with "..." not <...>
1673 2007-01-28  Simon Griph  <simon(at)griph(dot)se>
1675         * NEWS:
1676         * AUTHORS:
1677         * INSTALL.fvwm:
1678         documented new svg support
1680         * configure.ac:
1681         added librsvg detection
1683         * fvwm/Makefile.am (LDADD, INCLUDES):
1684         added rsvg_LIBS, rsvg_CFLAGS
1686         * fvwm/expand.c (expand_vars_extended):
1687         new extended variables
1688         $[w.iconfile.svgopts] and $[w.miniiconfile.svgopts]
1690         * fvwm/fvwm.1.in (OPTIONS):
1691         (ICONS AND IMAGES):
1692         documented new svg support
1693         (COMMAND EXPANSION):
1694         documented new extended variables
1696         * fvwm/fvwm.c (setVersionInfo):
1697         (main):
1698         added Frsvg_init() call
1700         * libs/Fsvg.h:
1701         new file
1703         * libs/Makefile.am (libfvwm_a_SOURCES):
1704         added Fsvg.h
1705         (INCLUDES):
1706         added rsvg_CFLAGS
1708         * libs/Picture.c (PCacheFvwmPicture):
1709         hid svgopts from isFileStampChanged()
1711         * libs/PictureBase.c (PictureFindImageFile):
1712         hid svgopts from searchPath()
1714         * libs/PictureBase.h:
1716         * libs/PictureImageLoader.c (PImageLoadFvwmPictureFromFile):
1717         hid svgopts from setFileStamp()
1718         (PImageLoadSvg):
1719         new svg image loader
1721         * libs/fvwmlib.c (flib_init_graphics):
1722         added Frsvg_init() call
1724 2007-01-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1726         * NEWS:
1727         * fvwm/stack.c (__is_restack_needed)
1728         (is_transient_subtree_straight):
1729         (__restack_window):
1730         fix crash when trying to restack destroyed window
1732 2007-01-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1734         * libs/Makefile.am (libfvwm_a_SOURCES):
1735         add fvwmlib.c
1737         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
1738         * fvwm/menus.c (move_any_menu)
1739         set menu backgrounds before moving. Makes transparent menus move
1740         more seamless.
1742         * fvwm/menus.c (update_transparent_menu_bg, repaint_transparent_menu):
1743         * fvwm/menus.c (update_transparent_menu_bg, repaint_transparent_menu):
1744         add update_transparent_menu_bg to allow set of transparent menu
1745         background before a move, and change repaint_transparent_menu to
1746         allow for not setting the menu background.
1748         * libs/Colorset.c (SetWindowBackgroundWithOffset):
1749         create offset backgrounds with CreateOffsetBackgroundPixmap (works with
1750         transparent colorsets)
1751         (CreateOffsetBackgroundPixmap):
1752         use offset also for non transparent backgrounds.
1754         * fvwm/menubindings.c (menu_shortcuts):
1755         don't move menus on scroll if they don't move
1757 2007-01-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1759         * libs/fvwmlib.h:
1760         * fvwm/bindings.c:
1761         * fvwm/cursor.c:
1762         * fvwm/decorations.c:
1763         * fvwm/ewmh_conf.c:
1764         * fvwm/ewmh_events.c:
1765         * fvwm/ewmh_icons.c:
1766         * fvwm/expand.c:
1767         * fvwm/focus.c:
1768         * fvwm/functions.c:
1769         * fvwm/gnome.c:
1770         * fvwm/menubindings.c:
1771         * fvwm/menucmd.c:
1772         * fvwm/menuitem.c:
1773         * fvwm/misc.c:
1774         * fvwm/modconf.c:
1775         * fvwm/module_interface.c:
1776         * fvwm/module_list.c:
1777         * fvwm/read.c:
1778         * fvwm/update.c:
1779         * fvwm/windowlist.c:
1780         * fvwm/windowshade.c:
1781         * fvwm/colorset.c:
1782         * fvwm/session.c:
1783         * fvwm/stack.c:
1784         * fvwm/ewmh.c:
1785         * fvwm/conditional.c:
1786         * fvwm/menustyle.c:
1787         * fvwm/virtual.c:
1788         * fvwm/placement.c:
1789         * fvwm/frame.c:
1790         * fvwm/fvwm.c:
1791         * fvwm/icons.c:
1792         * fvwm/add_window.c:
1793         * fvwm/builtins.c:
1794         * fvwm/move_resize.c:
1795         * fvwm/borders.c:
1796         * fvwm/style.c:
1797         * fvwm/events.c:
1798         * fvwm/menus.c:
1799         * libs/FTips.c:
1800         * libs/Picture.c:
1801         * libs/Target.c:
1802         * libs/gravity.c:
1803         * fvwm/execcontext.c:
1804         * libs/BidiJoin.c:
1805         * libs/CombineChars.c:
1806         * libs/FBidi.c:
1807         * libs/FEvent.c:
1808         * libs/Fft.c:
1809         * libs/FGettext.c:
1810         * libs/Ficonv.c:
1811         * libs/FImage.c:
1812         * libs/flist.c:
1813         * libs/FlocaleCharset.c:
1814         * libs/fsm.c:
1815         * libs/Parse.c:
1816         * libs/queue.c:
1817         * libs/safemalloc.c:
1818         * libs/strdup.c:
1819         * libs/timeout.c:
1820         * libs/Strings.c:
1821         * libs/FRender.c:
1822         * libs/Module.c:
1823         * libs/ColorUtils.c:
1824         * libs/Colorset.c:
1825         * libs/PictureImageLoader.c:
1826         * libs/PictureGraphics.c:
1827         * libs/Graphics.c:
1828         * libs/FScreen.c:
1829         * libs/PictureUtils.c:
1830         * libs/Flocale.c:
1831         * libs/PictureBase.c:
1832         use new header files
1834         * libs/Graphics.h:
1835         * libs/XResource.h:
1836         * libs/Event.h:
1837         * libs/XError.h:
1838         * libs/ColorUtils.h:
1839         * libs/PictureBase.h:
1840         * libs/System.h:
1841         * libs/defaults.h:
1842         * libs/Cursor.h:
1843         * libs/Target.h:
1844         * libs/WinMagic.h:
1845         * libs/fvwmlib.h:
1846         * libs/Makefile.am (libfvwm_a_SOURCES):
1847         moved declarations from fvwmlib.h to new/appropriate header files
1849         * libs/XError.c:
1850         reformatted
1852         * fvwm/menus.c (paint_side_pic):
1853         fixed previous patch
1854         reindented function
1856 2007-01-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1858         * fvwm/menus.c (paint_side_pic):
1859         fix a core dump
1861         * fvwm/menus.c (paint_side_pic):
1862         use simple expose information to redraw sidepics less.
1864 2007-01-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1866         * fvwm/geometry.c (constrain_size):
1867         silence gcc 4.1.1 warning.
1869         * libs/System.c (searchPath):
1870         search in pwd if no path is given.
1871         return NULL if a file dosn't exist regardless if it's absolute path
1873 2007-01-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1875         * fvwm/placement.c (__place_window)
1876         (__pl_under_mouse_get_pos_simple):
1877         * fvwm/style.h (SUNDERMOUSE_PLACEMENT_HONORS_STARTS_ON_PAGE):
1878         * fvwm/fvwm.1.in:
1879         new style option UnderMousePlacementHonorsStartsOnPage
1881         * fvwm/update.c (init_style):
1882         don't forget stickyness when a window goes fullscreen (or when some
1883         other style is changed)
1885 2007-01-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1887         * fvwm/placement.c (__pl_cascade_get_pos_simple):
1888         properly handle title direction with cascade placement
1890         * libs/defaults.h (PLACEMENT_FALLBACK_CASCADE_STEP):
1891         new default value
1893         * fvwm/placement.c (__pl_center_get_pos_simple):
1894         CenterPlacement properly handles Xinerama screens
1896 2007-01-25  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1898         * configure.ac:
1899         always substiture datarootdir
1901 2007-01-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1903         * fvwm/add_window.c (GetWindowSizeHints):
1904         * fvwm/geometry.c (constrain_size):
1905         undefine macros after use
1906         (constrain_size):
1907         reindented and cleaned up
1908         do not grow a window because of aspect ratio if this is not explicitly
1909         allowed by the CS_ROUND_UP flag
1910         (constrain_size):
1911         (__cs_handle_aspect_ratio):
1912         broken into separate functions and cleaned up
1914 2007-01-20  Renato Caldas  <seventhguardian@gmail.com>
1916         * fvwm/module_list.c (module_receive):
1917         (module_input_discard):
1918         allocate input data in just one call - better perfomance
1920 2007-01-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1922         * fvwm/placement.c (__place_get_wm_pos):
1923         simplified to a simple loop
1924         (__explain_placement):
1925         added explanation of new placement styles
1927         * fvwm/placement.c (__place_get_wm_pos):
1928         cleanup
1929         (__pl_center_get_pos_simple):
1930         (__pl_under_mouse_get_pos_simple):
1931         (__pl_cascade_get_pos_simple):
1932         (__pl_manual_get_pos_simple):
1933         (__place_get_wm_pos):
1934         use new placement interface for CenterPlacement, UnderMousePlacement,
1935         ManualPlacement, CascadePlacement
1937         * fvwm/placement.c (__sp_get_first_pos):
1938         (__sp_get_next_pos):
1939         (__sp_get_pos_penalty):
1940         (__place_get_wm_pos):
1941         use new placement interface for SmartPlacement
1942         (SmartPlacement):
1943         removed function
1945         * fvwm/placement.c:
1946         don't use inline functions
1947         (CleverPlacement):
1948         (placement_loop):
1949         renamed function and generalized the placement interface to deal with
1950         any algorithm in the same way
1951         (__place_get_wm_pos):
1952         use new placement interface
1954         * NEWS:
1955         * configure.ac:
1956         increased version to 2.5.22
1958         * NEWS:
1959         * configure.ac:
1960         updated for 2.5.21 release
1962 2007-01-19  Dan Espen  <dane@mk.telcordia.com>
1964         * fvwm/read.h: Compile syntax error fix.
1966 2007-01-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1968         * fvwm/placement.c (SmartPlacement):
1969         fixed broken SmartPlacement
1971 2007-01-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1973         * fvwm/expand.c (expand_vars_extended):
1974         free allocated icon path
1976 2007-01-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1978         * fvwm/fvwm.1.in:
1979         some cleanup
1981         * fvwm/virtual.c:
1982         fix compile error
1984 2007-01-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1986         * NEWS:
1987         * fvwm/fvwm.1.in (Scroll):
1988         * fvwm/virtual.c (__drag_viewport, CMD_Scroll):
1989         add interactive scrolling.
1991         * fvwm/stack.c (is_transient_subtree_straight):
1992         check first above the tree root, then beneth it.
1994 2007-01-17  Renato Caldas  <seventhguardian@gmail.com>
1996         * fvwm/module_interface.h
1997         * fvwm/module_interface.c (module_input_enqueue):
1998         (module_input_execute):
1999         new functions based on AddToCommandQueue and ExecuteModuleCommand
2001         * fvwm/module_list.c (CMD_ModuleSynchronous):
2002         (PositiveWrite):
2003         * fvwm/events.c (My_XNextEvent):
2004         * fvwm/module_interface.c (ExecuteCommandQueue):
2005         using the above two new functions instead of AddToCommandQueue and
2006         ExecuteModuleCommand
2008         * fvwm/module_interface.c (cqueue_object_type):
2009         removed typedef
2011         * fvwm/module_interface.h
2012         * fvwm/module_interface.c (AddToCommandQueue):
2013         (ExecuteModuleCommand):
2014         removed functions
2016 2007-01-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2018         * fvwm/fvwm.h (window_style):
2019         * fvwm/style.c (style_parse_one_style_option):
2020         icon background relief and icon title relief changed to sigend char;
2021         should fix problem with ppc and negative values for these.
2023 2007-01-16  Renato Caldas  <seventhguardian@gmail.com>
2025         * fvwm/module_list.h:
2026         * fvwm/module_list.c (module_receive):
2027         (module_input_discard):
2028         (module_input_expect):
2029         new functions to deal with module input
2031         * fvwm/module_list.h:
2032         * fvwm/module_list.c (HandleModuleInput):
2033         replaced by the above three functions
2035         * fvwm/events.c (My_XNextEvent):
2036         * fvwm/module_list.c (CMD_ModuleSynchronous):
2037         (PositiveWrite):
2038         adapted to use the above three functions instead of HandleModuleInput
2040 2007-01-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2042         * configure.ac (HAVE_PNG):
2043         don't mangle png_LIBS, use --with-png-library
2045 2007-01-15  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2047         * NEWS:
2048         removed news about previous change after move of version-2_5_20 tag
2049         on ChangeLog and fvwm/stack.c to the last revision and rebuilt tar
2050         balls.
2052         * fvwm/stack.c (__restack_window):
2053         fix so new transient windows with StackTransientParent on top layer
2054         don't make all windows raise above the pan frames.
2056         * NEWS:
2057         * configure.ac:
2058         increased version to 2.5.21
2060         * NEWS:
2061         * configure.ac:
2062         updated for 2.5.20 release
2064 2007-01-15  Renato Caldas  <seventhguardian@gmail.com>
2066         * fvwm/fvwm.c (main):
2067         remove the call to module_init_list, the list head is instead set
2068         to NULL upon declaration
2070         * fvwm/module_list.h:
2071         * fvwm/module_list.c (module_init_list):
2072         removed function
2074 2007-01-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2076         * fvwm/stack.c (is_transient_subtree_straight)
2077         (is_transient_subtree_stack_straight):
2078         use <= 32 character function name
2079         (mark_transient_subtree, is_transient_subtree_straight)
2080         (__mark_transient_subtree_test):
2081         move common tests to function to avoid code duplication
2083         * fvwm/fvwm.1.in (IconifyWindowGroups):
2084         Correctly document that windows are iconified together if the are in
2085         the same window group, not if the group leader is iconified.
2087 2007-01-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2089         * fvwm/add_window.c (GetWindowSizeHints):
2090         * libs/vpacket.h (ConfigWinPacket):
2091         * fvwm/module_interface.c (CONFIGARGS):
2092         * fvwm/fvwm.h (FvwmWindow):
2093         add orig_hints_width_inc and orig_hints_height_inc values to store the
2094         original resize inc  for use in FvwmIdent
2096         * fvwm/fvwm.1.in:
2097         * fvwm/style.c (style_parse_one_style_option):
2098         deprecated some "No..." styles
2099         (style_parse_one_style_option):
2100         add a NoResizeHintOverride style
2102         * fvwm/add_window.c (GetWindowSizeHints):
2103         only ignore the min_width/min_height/max_width/max_height with the
2104         ResizeHintOverride style
2106         * fvwm/icons.c (DeIconify):
2107         corrected previous fix
2109         * fvwm/placement.c (CleverPlacement):
2110         (SmartPlacement):
2111         (__place_get_wm_pos):
2112         (__place_get_nowm_pos):
2113         (__place_window):
2114         fixed smart placement
2115         unified placement func interface
2117 2007-01-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2119         * NEWS:
2120         * fvwm/icons.c (DeIconify):
2121         don't loop forever.
2123         * fvwm/stack.c (is_transient_subtree_stacked_straight):
2124         fix detection of non needed lower operations
2125         (__restack_window):
2126         BroadcastRestack to modules even if non is done. (To cancel effect of
2127         already sent M_RAISE/M_LOWER)
2128         don't do raise hacks if no restack was done.
2130         * fvwm/fvwm.h (FvwmWindow):
2131         icon_nalloc_pixels is int instead of unsined int
2133         * libs/PictureUtils.h (PictureCloseImageColorAllocator):
2134         * libs/PictureUtils.c (PictureCloseImageColorAllocator):
2135         use int instead of unsigned int.
2137         * fvwm/menugeometry.c (menu_get_geometry)
2138         (menu_get_outer_geometry):
2139         * fvwm/focus.c (CMD_WarpToWindow):
2140         * fvwm/geometry.c (get_title_button_geometry):
2141         * fvwm/session.c (SaveWindowStates):
2142         * fvwm/conditional.c (CMD_WindowId):
2143         * fvwm/placement.c (__place_get_wm_pos):
2144         * fvwm/frame.c (frame_create_move_resize_args):
2145         * fvwm/icons.c (GetIconBitmap, GetIconWindow):
2146         * fvwm/add_window.c (CaptureOneWindow, AddWindow):
2147         * fvwm/builtins.c (CMD_Destroy, CMD_Close):
2148         * fvwm/style.c (style_parse_icon_box_style):
2149         * fvwm/move_resize.c (resize_move_window, InteractiveMove)
2150         (AnimatedMoveAnyWindow, __move_window, __move_loop)
2151         (__resize_window):
2152         * fvwm/events.c (HandlePropertyNotify)
2153         (__is_bpress_window_handled):
2154         * fvwm/menus.c (paint_menu_gradient_background, pop_menu_up)
2155         (get_menu_options):
2156         fix geometry signed pointer warnings
2158         * libs/Graphics.c (CalculateGradientDimensions):
2159         cast pointer to unsigned int*
2161         * libs/FScreen.h (FScreenGetScrRect, FScreenGetResistanceRect):
2162         * libs/FScreen.c (FScreenGetScrRect, FScreenClipToScreen)
2163         (FScreenCenterOnScreen, FScreenGetResistanceRect, FScreenGetGeometry):
2164         change unsigned int* parameter to int*. It get's info stored in an
2165         unsigned short, so it should be OK.
2167         * fvwm/externs.h:
2168         * fvwm/fvwm.c:
2169         JunkMask is unsigned
2171         * fvwm/stack.c (__mark_group_member)
2172         (is_transient_subtree_stacked_straight, __is_restack_needed)
2173         (__restack_window, mark_transient_subtree):
2174         don't raise or lower windows if they are already at the right place.
2176 2007-01-13  Renato Caldas  <seventhguardian@gmail.com>
2178         * fvwm/module_interface.c (struct cqueue_object_type):
2179         * fvwm/module_list.h (struct fmodule_input):
2180         reused cqueue_object_type as a struct to store module input data
2181         renamed it to fmodule_input and moved it to module_list.h
2182         typedef'ed it to cqueue_object_type in module_interface.c
2184 2007-01-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2186         * fvwm/placement.c (__cp_get_next_x):
2187         (__cp_get_next_y):
2188         (__cp_get_first_pos):
2189         (__cp_get_next_pos):
2190         (__cp_get_avoidance_penalty):
2191         (__cp_test_fit):
2192         (CleverPlacement):
2193         restructured and cleaned up CleverPlacement code
2195         * fvwm/style.c (style_parse_icon_box_style):
2196         * fvwm/virtual.c (HandlePaging):
2197         * fvwm/stack.c (verify_stack_ring_consistency):
2198         (ResyncFvwmStackRing):
2199         * fvwm/repeat.c:
2200         * fvwm/read.c (cursor_control):
2201         * fvwm/placement.c (__place_get_wm_pos):
2202         * fvwm/move_resize.c (GetMoveArguments):
2203         (ParseOneResizeArgument):
2204         (GetResizeArguments):
2205         (GetResizeMoveArguments):
2206         (resize_move_window):
2207         (resize_move_window):
2208         (InteractiveMove):
2209         (__move_window):
2210         (DoSnapAttract):
2211         (DoSnapAttract):
2212         (__resize_step):
2213         (__resize_window):
2214         (__resize_window):
2215         (__resize_window):
2216         (MaximizeHeight):
2217         (MaximizeWidth):
2218         (maximize_fvwm_window):
2219         (CMD_Maximize):
2220         (CMD_Maximize):
2221         * fvwm/misc.c:
2222         * fvwm/menustyle.h (MenuStyle):
2223         * fvwm/menus.c (MenuSizingParameters):
2224         (make_menu_window):
2225         (paint_menu_gradient_background):
2226         (paint_menu_gradient_background):
2227         (select_menu_item):
2228         (do_menus_overlap):
2229         (pop_menu_up):
2230         (pop_menu_down_and_repaint_parent):
2231         (__mloop_handle_action_without_mi):
2232         (do_menu):
2233         (get_menu_options):
2234         (get_menu_options):
2235         * fvwm/menuroot.h (MenuRootStatic):
2236         (MenuRootDynamic):
2237         * fvwm/menuitem.h (MenuPaintItemParameters):
2238         * fvwm/menugeometry.h:
2239         * fvwm/menubindings.c (menu_shortcuts):
2240         * fvwm/icons.c (SetIconPixmapSize):
2241         (GetIconPicture):
2242         (DrawIconTitleWindow):
2243         (AutoPlaceIcon):
2244         (do_all_iconboxes):
2245         (GetIconWindow):
2246         (GetIconBitmap):
2247         * fvwm/gnome.c (GNOME_GetHintIcons):
2248         * fvwm/functions.c (FvwmFunction):
2249         (__execute_function):
2250         (__cf_cleanup):
2251         (execute_complex_function):
2252         * fvwm/fvwm.c (JunkWidth):
2253         (JunkHeight):
2254         (JunkBW):
2255         (JunkDepth):
2256         (JunkMask):
2257         (main):
2258         * fvwm/externs.h (JunkWidth):
2259         (JunkHeight):
2260         (JunkBW):
2261         (JunkDepth):
2262         (JunkMask):
2263         * fvwm/focus.c (CMD_WarpToWindow):
2264         * fvwm/expand.c (__eae_parse_range):
2265         (expand_args_extended):
2266         (expand_vars_extended):
2267         (expand_vars_extended):
2268         * fvwm/ewmh_names.c (EWMH_WMIconName):
2269         (EWMH_WMName):
2270         * fvwm/ewmh_intern.h:
2271         * fvwm/ewmh_icons.c (ewmh_WMIcon):
2272         (EWMH_DoUpdateWmIcon):
2273         (ewmh_SetWmIconFromPixmap):
2274         (ewmh_SetWmIconFromPixmap):
2275         (EWMH_DeleteWmIcon):
2276         (extract_wm_icon):
2277         (extract_wm_icon):
2278         (EWMH_SetIconFromWMIcon):
2279         * fvwm/ewmh_events.c (ewmh_WMDesktop):
2280         (ewmh_WMState):
2281         (ewmh_WMIconGeometry):
2282         (ewmh_WMStrut):
2283         * fvwm/ewmh.h:
2284         * fvwm/ewmh.c (ewmh_ChangeProperty):
2285         (ewmh_ChangeProperty):
2286         (atom_get):
2287         (ewmh_AtomGetByName):
2288         (ewmh_AddToKdeSysTray):
2289         (EWMH_GetWorkAreaIntersection):
2290         (ewmh_HandleWindowType):
2291         (ewmh_check_wm_pid):
2292         * fvwm/geometry.c (constrain_size):
2293         * fvwm/geometry.h:
2294         * fvwm/events.c (__handle_cr_on_client):
2295         (WaitForButtonsUp):
2296         * fvwm/events.h:
2297         * libs/PictureImageLoader.c:
2298         * libs/PictureImageLoader.h:
2299         * libs/WinMagic.c:
2300         * libs/fvwmlib.h:
2301         * libs/Graphics.c (ParseGradient):
2302         (CalculateGradientDimensions):
2303         (CreateGradientPixmap):
2304         (CreateGradientPixmapFromString):
2305         * fvwm/colorset.c (update_root_pixmap):
2306         * fvwm/builtins.c (CMD_Echo):
2307         (CMD_State):
2308         * fvwm/add_window.c (AddWindow):
2309         * fvwm/screen.h (DecorFace):
2310         use int instead of unsigned int
2312         * libs/Flocale.c (FlocaleChar2bOneCharToUtf8):
2313         * fvwm/colormaps.c (EnterSubWindowColormap):
2314         (LeaveSubWindowColormap):
2315         (FetchWmColormapWindows):
2316         * libs/vpacket.h:
2317         * libs/CombineChars.c (char_combclass):
2318         use short instead of short int
2319         use long instead of long int
2321         * libs/PictureBase.h (FvwmPictureAttributes):
2322         (FvwmRenderAttributes):
2323         * libs/Flocale.h (FlocaleFont):
2324         * fvwm/style.c (style_parse_icon_grid_style):
2325         * fvwm/menus.c (size_menu_horizontally):
2326         (size_menu_vertically):
2327         (paint_menu):
2328         (AddToMenu):
2329         * fvwm/menuitem.c (menuitem_paint):
2330         (menuitem_free):
2331         * fvwm/menuitem.h (MenuItem):
2332         * fvwm/geometry.c (set_window_border_size):
2333         * fvwm/decorations.c (SelectDecor):
2334         use int instead of short
2336         * fvwm/screen.h (FvwmAcs):
2337         (DecorFace):
2338         * fvwm/menus.c (MenuSizingParameters):
2339         (size_menu_horizontally):
2340         (update_menu):
2341         (paint_menu_gradient_background):
2342         * fvwm/menuroot.h (MenuRootStatic):
2343         * fvwm/menuitem.h (MenuItem):
2344         (MenuItemPartSizesT):
2345         * fvwm/menuitem.c (menuitem_get_size):
2346         * fvwm/menudim.h (MenuDimensions):
2347         use int instead of unsigned short
2349 2007-01-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2351         * libs/gravity.h:
2352         * libs/gravity.c (gravity_move_resize_parent_child):
2353         * fvwm/frame.h:
2354         * fvwm/frame.c (mr_args_internal):
2355         (frame_setup_border):
2356         (frame_setup_titlebar):
2357         (frame_get_resize_decor_gravities):
2358         (frame_get_titlebar_dimensions):
2359         use rectangle instead of signed_rectangle
2361         * libs/fvwmrect.c (fvwmrect_subtract_rectangles):
2362         * libs/fvwmrect.h (signed_rectangle):
2363         removed type
2364         (rectangle):
2365         (size_rect):
2366         widht and height are now signed values
2368         * fvwm/placement.c (get_next_x):
2369         (__cp_get_next_x):
2370         (get_next_x):
2371         (__cp_get_next_y):
2372         (__test_fit):
2373         (__cp_test_fit):
2374         renamed functions
2376         * fvwm/placement.c (get_next_x):
2377         (get_next_y):
2378         (test_fit):
2379         (CleverPlacement):
2380         cleanup
2382 2007-01-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2384         * NEWS:
2385         NEWS entry for StickyIcon, StickyAcrossPagesIcon and
2386         StickyAcrossDesksIcon.
2388 2007-01-13  Serge Koksharov  <gentoosiast dog yandex dot ru>
2390         * fvwm/conditional.c (CreateConditionMask):
2391         added conditions StickyIcon, StickyAcrossPagesIcon and
2392         StickyAcrossDesksIcon.
2394         * fvwm/fvwm.1.in:
2395         documented new conditional tests.
2396         removed descriptions of styles StickyIconPage & StickyIconDesk which
2397         actually don't exists in fvwm.
2398         moved StickyIcon/SlipperyIcon descriptions immediately after
2399         Sticky/Slippery description.
2401 2007-01-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2403         * fvwm/placement.c (SmartPlacemen):
2404         (__sp_test_window):
2405         cleaned up SmartPlacement code
2407 2007-01-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2409         * fvwm/ConfigFvwmMenuDefaults:
2410         Mouse 0 MS A MenuLeaveSubmenu instead.
2412         * fvwm/ConfigFvwmMenuDefaults:
2413         Mouse 0 MS A MenuClose to make sidepic and border behave as
2414         before menu bindings.
2416         * fvwm/fvwm.1.in:
2417         * libs/wcontext.h (enum):
2418         * fvwm/menubindings.c (menu_binding):
2419         (menu_shortcuts):
2420         Add menu contexts 'I' (for items) 'S' '[', ']', '_', '-'.
2422         * fvwm/menustyle.c (menustyle_parse_old_style):
2423         add a message of deprecation.
2425 2007-01-10  Renato Caldas  <seventhguardian@gmail.com>
2427         * fvwm/module_list.h:
2428         * fvwm/module_list.c:
2429         new files for module handling code.
2431         * fvwm/module_list.h:
2432         * fvwm/module_interface.h:
2433         * fvwm/module_list.c:
2434         * fvwm/module_interface.c:
2435         (struct mqueue_object_type):
2436         (msg_mask_set):
2437         (module_alloc):
2438         (module_insert):
2439         (module_remove):
2440         (module_free):
2441         (module_get_next):
2442         (set_message_mask):
2443         (get_pipe_name):
2444         (initModules):
2445         (ClosePipes):
2446         (do_execute_module):
2447         (executeModuleDesperate):
2448         (CMD_Module):
2449         (CMD_ModuleListenOnly):
2450         (CMD_ModuleSynchronous):
2451         (HandleModuleInput):
2452         (DeadPipe):
2453         (KillModule):
2454         (KillModuleByName):
2455         (CMD_KillModule):
2456         (PositiveWrite):
2457         (DeleteMessageQueueBuff):
2458         (FlushMessageQueue):
2459         (FlushAllMessageQueues):
2460         (CMD_set_mask):
2461         (CMD_set_sync_mask):
2462         (CMD_set_nograb_mask):
2463         (skipModuleAliasToken):
2464         (countModules):
2465         (struct msg_masks_t):
2466         (struct fmodule):
2467         moved from module_interface.c/h to module_list.c/h
2469         * fvwm/module_list.h (do_execute_module):
2470         * fvwm/module_interface.h (AddToCommandQueue):
2471         (ExecuteModuleCommand):
2472         initialy static functions are exposed for now. Should be fixed soon.
2474         * fvwm/Makefile.am:
2475         added module_list.h and module_list.c
2476         reorganized the c files by size
2478         * fvwm/module_list.h:
2479         * fvwm/module_list.c:
2480         * fvwm/events.c:
2481         * fvwm/fvwm.c:
2482         * fvwm/session.c:
2483         * fvwm/stack.c:
2484         (initModules):
2485         (module_init_list):
2486         (ClosePipes):
2487         (module_kill_all):
2488         (KillModule):
2489         (module_kill):
2490         (countModules):
2491         (module_count):
2492         renamed functions to a unified style
2494         * fvwm/module_interface.h:
2495         * fvwm/module_interface.c:
2496         * fvwm/fvwm.c:
2497         * fvwm/events.c:
2498         * fvwm/modconf.c
2499         * fvwm/session.c:
2500         * fvwm/stack.c:
2501         * fvwm/windowshade.c:
2502         * fvwm/functions.c:
2503         * fvwm/move_resize.c:
2504         include file cleanup
2506         * fvwm/module_list.c (do_execute_module):
2507         made absolutely sure the module's read fd is >=0 before inserting
2508         the module on the list
2510         * fvwm/events.c (My_XNextEvent):
2511         * fvwm/module_list.c (PositiveWrite):
2512         (CMD_ModuleSynchronous):
2513         assume module read fd is allways >=0 (remove the tests)
2515         * fvwm/module_list.c (module_free):
2516         no need to test if fd >=0 when closing the pipes.
2518 2007-01-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2520         * fvwm/menuitem.c (draw_higlight_background):
2521         fix x-origin of HGradients
2523 2007-01-10  Renato Caldas  <seventhguardian@gmail.com>
2525         * fvwm/module_interface.c (FlushMessageQueues):
2526         fixed not flushing the first module on the list
2528 2007-01-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2530         * libs/Flocale.c (FlocaleGetFftFont):
2531         add sanity check for NULL fontname.
2533         * NEWS:
2534         * fvwm/fvwm.1.in:
2535         * fvwm/menuitem.c (menuitem_paint):
2536         (draw_hilight_background):
2537         make all kinds of pixmaps work with hilight background
2539         * libs/Colorset.h (CreateOffsetBackgroundPixmap):
2540         * libs/Colorset.c (CreateOffsetBackgroundPixmap)
2541         (CreateBackgroundPixmap):
2542         added CreateOffsetBackgroundPixmap with the ability to create
2543         transparent images at an offset relative to the window.
2545 2007-01-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2547         * fvwm/menus.c (__mloop_exit):
2548         (struct):
2549         (__mloop_get_event)
2550         (__mloop_handle_event):
2551         don't warp to parent item when entering other item with mouse.
2553         * NEWS:
2554         * fvwm/fvwm.1.in:
2555         * fvwm/menustyle.c (menustyle_update):
2556         make use of colorset TiledPixmap option with HiglightBack
2557         and HiglightTitleBack menu styles.
2559 2007-01-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2561         * libs/FScreen.c:
2562         reformatted
2564 2007-01-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2566         * libs/FScreen.c (FScreenParseGeometry):
2567         don't look up screen info if screen is undefined
2569 2007-01-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2571         * ONEWS:
2572         * NEWS:
2573         moved the NEWS of 2.2.x and 2.3.x to ONEWS
2575         * libs/fio.c (fvwm_send):
2576         compile fixes
2578         * libs/defaults.h (FVWMCONSOLE_CONNECTION_TO_SECS):
2579         added macro
2581         * libs/fio.c:
2582         * libs/fio.h:
2583         new utility files to wrap writing/reading standard lib functions that
2584         might be interrupted
2586 2007-01-05  Serge Koksharov  <gentoosiast dog yandex dot ru>
2588         * fvwm/ewmh_intern.h:
2589         compilation fix with EWMH_DEBUG enabled: include <sys/times.h>
2590         instead of <time.h>.
2592         * fvwm/windowlist.h:
2593         removed unneeded file.
2595         * fvwm/Makefile.am:
2596         removed windowlist.h from build list.
2598         * libs/PictureUtils.c:
2599         include "ftime.h" instead of <time.h>.
2600         fvwmlib.h header name should be in double quotes not in angle
2601         brackets.
2603         * libs/System.c:
2604         include "ftime.h" instead of <sys/time.h>.
2606 2007-01-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2608         * ChangeLog:
2609         make my email less spider-friendly
2611         * fvwm/bindings.c (binding_cmd):
2612         (ParseBinding):
2613         fix core
2615 2007-01-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2617         * fvwm/screen.h (ScreenInfo):
2618         made MyDisplayWidth and MyDisplayHeight signed integer values to avoid
2619         casting signed values in calculations to be cast to unsigned
2621         * fvwm/focus.c (__activate_window_by_command):
2622         don't warp the viewport if the center of the window is already in view
2623         fixed a bug in window positioning
2625 2007-01-03  Serge Koksharov  <gentoosiast dog yandex dot ru>
2627         * NEWS:
2628         FvwmIconBox IconColorset's bg wasn't updated immediately.
2630 2007-01-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2632         * fvwm/fvwm.c (main):
2633         close all open fds upon startup
2634         reopen stdin, stdout and stderr if necessary
2635         (reopen_fd):
2636         new function
2638         * fvwm/module_interface.c (do_execute_module):
2639         simplified error handling
2640         check maximum fd when creating modules
2642         * fvwm/events.c (My_XNextEvent):
2643         * fvwm/fvwm.c (main):
2644         replaced fd_width with fvwmlib_max_fd
2646         * libs/fvwmlib.h:
2647         * libs/System.c (fvwmlib_init_max_fd):
2648         added function and fvwmlib_max_fd
2650         * fvwm/events.c (My_XNextEvent):
2651         * fvwm/module_interface.c (CMD_ModuleSynchronous):
2652         switch back to using FD_SET
2654         * fvwm/events.c (My_XNextEvent:
2655         * fvwm/module_interface.h:
2656         * fvwm/module_interface.c:
2657         hide module structure members with access macros and use them
2658         everywhere
2660 2007-01-02  Renato Caldas  <seventhguardian@gmail.com>
2662         * fvwm/module_interface.c (module_add_to_fdsets):
2663         * fvwm/module_interface.h:
2664         created new function that also checks for too many open fds
2666         * fvwm/module_interface.c (CMD_ModuleSynchronous):
2667         * fvwm/events.c (My_XNextEvent):
2668         now using module_add_to_fdset to add pipes to the fdsets
2670 2007-01-01  Renato Caldas  <seventhguardian@gmail.com>
2672         * libs/defaults.h (MAX_NUM_MODULES):
2673         * fvwm/module_interface.c (module_alloc):
2674         (do_execute_module):
2675         removed check for MAX_NUM_MODULES - not needed, done by the O.S.
2677         * fvwm/module_interface.c (do_execute_module):
2678         moved the allocation call to the end of the sanity checks and pipe
2679         creation - better for performance
2681 2007-01-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2683         END MODULE STRUCT PATCHES
2685         * fvwm/module_interface.c (do_execute_module):
2686         fixed another memory leak
2688 2007-01-01  Renato Caldas  <seventhguardian@gmail.com>
2690         * fvwm/module_interface.h:
2691         * fvwm/module_interface.c:
2692         * fvwm/modconf.c:
2693         renamed struct module member "pipeName" and "pipeAlias" to "name"
2694         and "alias"
2696         * fvwm/module_interface.c (do_execute_module):
2697         fixed possible memory leak
2699 2007-01-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2701         * fvwm/events.c (My_XNextEvent):
2702         * fvwm/module_interface.c (module_alloc):
2703         (do_execute_module):
2704         (KillModule):
2705         * fvwm/module_interface.h (fmodule):
2706         replaced int with a flag struct
2708         * fvwm/module_interface.h:
2709         * fvwm/events.c (My_XNextEvent):
2710         * fvwm/module_interface.c (module_alloc):
2711         (module_free):
2712         (module_insert):
2713         (ClosePipes):
2714         add new modules at front of list again
2715         removed global variable init_fdset; use a flag in the module struct
2716         instead
2717         removed the now obsolete module slot count
2719 2007-01-01  Renato Caldas  <seventhguardian@gmail.com>
2721         * fvwm/module_interface.c (module_remove):
2722         (KillModule):
2723         moved module remotion code to module_remove()
2725 2007-01-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2727         * fvwm/events.c (My_XNextEvent):
2728         fixed startup commands
2730         * fvwm/module_interface.c (module_insert):
2731         (module_free):
2732         (KillModule):
2733         (ClosePipes):
2734         append modules at end of list
2736         * fvwm/events.c (My_XNextEvent):
2737         fixed core
2739         * fvwm/module_interface.c (ExecuteModuleCommand):
2740         (PositiveWrite):
2741         (KillModuleByName):
2742         (BroadcastPacket):
2743         (BroadcastNewPacket):
2744         (BroadcastName):
2745         (BroadcastFvwmPicture):
2746         (BroadcastColorset):
2747         (BroadcastPropertyChange):
2748         (BroadcastConfigInfoString):
2749         (CMD_SendToModule):
2750         (FlushAllMessageQueues):
2751         (countModules):
2752         (CMD_set_mask):
2753         (CMD_set_sync_mask):
2754         (CMD_set_nograb_mask):
2755         cleanup
2756         (skipModuleAliasToken):
2757         use MAX_MODULE_ALIAS_LEN
2759         * fvwm/module_interface.c (KillModule):
2760         (do_execute_module):
2761         (module_alloc):
2762         added a "slot" member to the module struct to fix the init_fdset hack
2763         for now
2765         * libs/defaults.h (MAX_NUM_MODULES):
2766         (MAX_MODULE_ALIAS_LEN):
2767         new config values
2769         * fvwm/module_interface.c (do_execute_module):
2770         rewrote module struct initialization
2771         (HandleModuleInput):
2772         use %p to print module address, don't cast it to int
2774         * fvwm/module_interface.c (ClosePipes):
2775         (KillModule):
2776         use module_free
2777         (msg_mask_set):
2778         (module_insert):
2779         (module_alloc):
2780         new functions()
2782         * fvwm/module_interface.c (FreeModule):
2783         (module_free):
2784         renamed function
2786         * fvwm/module_interface.c (KillModule):
2787         (FreeModule):
2788         * fvwm/events.c (My_XNextEvent):
2789         * fvwm/execcontext.h:
2790         * fvwm/modconf.c (CMD_Send_ConfigInfo):
2791         (ModuleConfig):
2792         * fvwm/stack.c (BroadcastRestack):
2793         cleanup
2795         * fvwm/module_interface.c (module_get_next):
2796         * fvwm/module_interface.h:
2797         new function
2799 2007-01-01  Renato Caldas  <seventhguardian@gmail.com>
2801         * fvwm/modconf.c (ModuleConfig):
2802         (SendConfigToModule):
2803         (send_xinerama_state):
2804         (send_desktop_names):
2805         (send_desktop_geometry):
2806         (send_image_path):
2807         (send_color_limit):
2808         (send_colorsets):
2809         (send_click_time):
2810         (send_move_threshold):
2811         (send_ignore_modifiers):
2812         (CMD_Send_ConfigInfo):
2813         * fvwm/functions.c (__execute_function):
2814         * fvwm/events.c (My_XNextEvent):
2815         * fvwm/module_interface.h (msg_masks_t):
2816         (fmodule):
2817         * fvwm/execcontext.c (__exc_change_context):
2818         (exc_create_null_context):
2819         * fvwm/execcontext.h:
2820         Initial module struct patches
2822         BEGIN MODULE STRUCT PATCHES
2824 2006-12-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2826         * fvwm/events.c (HandleFocusOut):
2827         (__refocus_stolen_focus_win):
2828         (HandleEnterNotify):
2829         less disruptive way of restoring focus to the window it was stolen from
2831 2006-12-31  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2833         * fvwm/events.c (HandleEnterNotify):
2834         restore focus to windows that had it stolen by
2835         unmanaged windows on enter of any unmanaged windows.
2837 2006-12-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2839         * fvwm/menubindings.c:
2840         don't include menus.h
2842         * fvwm/ConfigFvwmMenuDefaults:
2843         all bindings are silent
2845 2006-12-30  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2847         * fvwm/ConfigFvwmMenuDefaults:
2848         make all numpad keys silent -- not all keyboads have a numpad
2849         add KP_Separator for MenuClose
2851 2006-12-30  Serge Koksharov  <gentoosiast dog yandex dot ru>
2853         * fvwm/fvwm.1.in:
2854         documented missing menu bindings.
2856         * fvwm/ConfigFvwmMenuDefaults:
2857         fixed wrong menu bindings.
2859 2006-12-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2861         * fvwm/menubindings.c:
2862         * fvwm/menubindings.h:
2863         * fvwm/menucmd.c:
2864         * fvwm/menudim.c:
2865         * fvwm/menudim.h:
2866         * fvwm/menugeometry.c:
2867         * fvwm/menugeometry.h:
2868         * fvwm/menuitem.c:
2869         * fvwm/menuitem.h:
2870         * fvwm/menuroot.h:
2871         * fvwm/menus.c:
2872         * fvwm/menus.h:
2873         * fvwm/move_resize.c:
2874         * fvwm/move_resize.h:
2875         * fvwm/windowlist.c:
2876         simplified including header files
2878         * fvwm/menus.c (__mloop_handle_event):
2879         * fvwm/menuparameters.h:
2880         * fvwm/menubindings.c (menu_shortcuts):
2881         do not call find_entry directly but return MENU_NEWITEM_FIND instead
2883         * fvwm/menus.c (__mloop_handle_event):
2884         * fvwm/menuparameters.h:
2885         * fvwm/menubindings.c (menu_shortcuts):
2886         do not call move_any_menu directly but return MENU_NEWITEM_MOVEMENU
2887         instead
2889         * fvwm/menus.h (MenuParameters):
2890         (MenuOptions):
2891         (MenuPosHints):
2892         (MenuRC):
2893         (MenuReturn):
2894         (MenuRepaintTransparentParameters):
2895         * fvwm/menuparameters.h (MenuParameters):
2896         (MenuOptions):
2897         (MenuPosHints):
2898         (MenuRC):
2899         (MenuReturn):
2900         (MenuRepaintTransparentParameters):
2901         moved to menuparameters.h
2903         * fvwm/menus.h (MenuRoot):
2904         (MenuRootDynamic):
2905         (MenuRootStatic):
2906         * fvwm/menutypes.h (MenuRoot):
2907         (MenuRootDynamic):
2908         (MenuRootStatic):
2909         moved to menuroot.h
2911         * fvwm/menus.c (menu_get_geometry):
2912         (menu_get_outer_geometry):
2913         * fvwm/menugeometry.c (menu_get_geometry):
2914         (menu_get_outer_geometry):
2915         moved to menugeometry.c
2917         * fvwm/menuparameters.h:
2918         * fvwm/menutypes.h:
2919         * fvwm/menugeometry.c:
2920         * fvwm/menugeometry.h:
2921         * fvwm/Makefile.am:
2922         new files
2924         * fvwm/menubindings.h (enum):
2925         * fvwm/menus.c (enum):
2926         moved enum menu_shortcut_action to menubindings.h
2927         (get_selectable_item_index):
2928         (get_selectable_item_from_index):
2929         (get_selectable_item_from_section):
2930         (get_selectable_item_count):
2931         (parse_menu_action):
2932         moved to menubindings.c
2934         * fvwm/menus.c (enum):
2935         (parse_menu_action):
2936         (menuShortcuts):
2937         renamed enum shortcut_action to menu_shortcut_action
2939         * fvwm/fvwm.c (SetRCDefaults):
2940         read default config file after all other defaults
2942 2006-12-29  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2944         * fvwm/ConfigFvwmMenuDefaults:
2945         * fvwm/fvwm.c (SetRCDefaults):
2946         make the hard coded menu bindings load before ConfigFvwmDefaults
2947         move Mouse 0 ... to ConfigFvwmMenuDefaults
2949 2006-12-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2951         * fvwm/ConfigFvwmMenuDefaults:
2952         * fvwm/fvwm.c (SetRCDefaults):
2953         added hard coded default menu bindings
2955 2006-12-29  Serge Koksharov  <gentoosiast dog yandex dot ru>
2957         * fvwm/fvwm.1.in:
2958         documentation fixes.
2960 2006-12-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2962         * fvwm/bindings.c:
2963         * fvwm/menubindings.h:
2964         * fvwm/menubindings.c:
2965         * fvwm/menus.h:
2966         * fvwm/menus.c:
2967         * fvwm/Makefile.am:
2968         moved new menu binding code to menubindings.c, menubindings.h
2969         split binding into a regular list and a fallback list that can not be
2970         modified
2972         * libs/fvwmrect.c (fvwmrect_move_into_rectangle):
2973         fixed calculation of new geometry if x or y is negative
2975         * fvwm/geometry.c (maximize_adjust_offset):
2976         fixed calculations of normal geometry when maximized
2978 2006-12-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2980         * NEWS:
2981         * fvwm/ConfigFvwmMenuDefaults:
2982         * fvwm/fvwm.c (SetRCDefaults):
2983         * fvwm/menus.c (parse_menu_action):
2984         * fvwm/fvwm.1.in:
2985         rename menu action to menu bindings and make menu binding commands
2986         more verbose.  Move "Mouse 0 M A MenuSelectItem" to SetRCDefaults to
2987         ensure basic function with ConfigFvwmMenuDefaults missing.
2989 2006-12-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2991         * fvwm/menus.c (menuShortcuts):
2992         fixed compiler warning.
2994 2006-12-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2996         * fvwm/fvwm.1.in:
2997         corrected mis-spelling
2999         * AUTHORS:
3000         * NEWS:
3001         * fvwm/fvwm.1.in:
3002         * fvwm/menus.h:
3003         * fvwm/menus.c (handle_emacs_bindings):
3004         (parse_menu_action)
3005         (menuShortcuts):
3006         (__mloop_handle_event):
3007         (menu_binding):
3008         * fvwm/bindings.c (ParseBinding):
3009         * fvwm/Makefile.am (config_DATA):
3010         * fvwm/ConfigFvwmDefaults:
3011         * fvwm/ConfigFvwmMenuDefaults:
3012         fully configurable mouse any key bindings for menu navigation.
3014 2006-12-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3016         * fvwm/virtual.c (HandlePaging):
3017         removed bogus comment
3019         * fvwm/move_resize.c (__move_loop):
3020         cleanup
3021         (__resize_window):
3022         allow paging during resize with "EdgeScroll 0 0" as documented in the
3023         man page
3024         fixed disappearing windows with "maximize; resize - abort; unmaximize"
3026         * fvwm/fvwm.h (FvwmWindow):
3027         * fvwm/add_window.c (AddWindow):
3028         * fvwm/add_window.c (setup_frame_window):
3029         * fvwm/add_window.c (setup_parent_window)
3030         * fvwm/borders.c (border_draw_decorations):
3031         * fvwm/borders.c (border_draw_one_border_part):
3032         * fvwm/borders.c (border_get_parts_and_pos_to_draw)
3033         * fvwm/borders.c (border_get_titlebar_descr)
3034         * fvwm/builtins.c (__remove_window_decors):
3035         * fvwm/conditional.c (MatchesConditionMask):
3036         * fvwm/events.c (HandleMapNotify):
3037         * fvwm/events.c (HandleMapRequestKeepRaised)
3038         * fvwm/events.c (HandlePropertyNotify):
3039         * fvwm/events.c (HandleShapeNotify):
3040         * fvwm/events.c (__cr_detect_icccm_move)
3041         * fvwm/events.c (__cr_get_grav_position):
3042         * fvwm/events.c (__cr_get_static_position)
3043         * fvwm/events.c (__handle_configure_request)
3044         * fvwm/events.c (__handle_cr_on_client):
3045         * fvwm/ewmh.c (EWMH_fullscreen):
3046         * fvwm/focus.c (__activate_window_by_command):
3047         * fvwm/focus.c (__set_focus_to_fwin):
3048         * fvwm/focus.c (warp_to_fvwm_window):
3049         * fvwm/frame.c (__frame_setup_window):
3050         * fvwm/frame.c (frame_create_move_resize_args)
3051         * fvwm/frame.c (frame_free_move_resize_args):
3052         * fvwm/frame.c (frame_move_resize_step)
3053         * fvwm/frame.c (frame_reshape_border):
3054         * fvwm/geometry.c (constrain_size):
3055         * fvwm/geometry.c (get_icon_corner)
3056         * fvwm/geometry.c (get_page_offset):
3057         * fvwm/geometry.c (get_page_offset_check_visible):
3058         * fvwm/geometry.c (get_shaded_client_window_pos):
3059         * fvwm/geometry.c (get_title_button_geometry):
3060         * fvwm/geometry.c (get_title_geometry)
3061         * fvwm/geometry.c (get_unshaded_geometry):
3062         * fvwm/geometry.c (get_visible_window_or_icon_geometry)
3063         * fvwm/geometry.c (gravity_constrain_size):
3064         * fvwm/geometry.c (maximize_adjust_offset):
3065         * fvwm/geometry.c (update_absolute_geometry):
3066         * fvwm/geometry.c (update_relative_geometry)
3067         * fvwm/gnome.c (GNOME_SetWinArea):
3068         * fvwm/icons.c (AutoPlaceIcon):
3069         * fvwm/icons.c (DeIconify):
3070         * fvwm/icons.c (Iconify):
3071         * fvwm/module_interface.c (CONFIGARGS):
3072         * fvwm/move_resize.c (AnimatedMoveAnyWindow)
3073         * fvwm/move_resize.c (CMD_Maximize):
3074         * fvwm/move_resize.c (CMD_ResizeMaximize):
3075         * fvwm/move_resize.c (CMD_ResizeMoveMaximize):
3076         * fvwm/move_resize.c (__move_loop):
3077         * fvwm/move_resize.c (__move_window):
3078         * fvwm/move_resize.c (__resize_window):
3079         * fvwm/move_resize.c (maximize_fvwm_window):
3080         * fvwm/move_resize.c (resize_move_window):
3081         * fvwm/move_resize.c (stick_across_pages):
3082         * fvwm/move_resize.c (unmaximize_fvwm_window):
3083         * fvwm/placement.c (__explain_placement):
3084         * fvwm/placement.c (__place_get_wm_pos):
3085         * fvwm/placement.c (get_next_x):
3086         * fvwm/placement.c (get_next_y):
3087         * fvwm/placement.c (test_fit)
3088         * fvwm/session.c (MatchWinToSM):
3089         * fvwm/session.c (SaveWindowStates):
3090         * fvwm/update.c (apply_window_updates):
3091         * fvwm/virtual.c (MoveViewport):
3092         * fvwm/windowlist.c (CMD_WindowList):
3093         * fvwm/windowshade.c (CMD_WindowShade):
3094         put some of the window geometry members into a separate struct window_g
3095         with members frame, normal, max, max_defect, max_offset
3097 2006-12-21  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3099         * NEWS:
3100         * AUTHORS:
3101         * fvwm/window_flags.h:
3102         * fvwm/style.h:
3103         * fvwm/style.c (style_parse_one_style_option):
3104         * fvwm/icons.c (DrawIconTitleWindow):
3105         * fvwm/fvwm.h (common_flags_t):
3106         * fvwm/fvwm.1.in (Style):
3107         * fvwm/borders.c:
3108         (border_draw_title_stick_lines):
3109         Applied Stippled patch by Thomas Adam with some fixes.
3111 2006-12-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3113         * NEWS:
3114         FvwmWinList button/list syncronization fixed (bug #1393)
3116 2006-12-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3118         * NEWS:
3119         * configure.ac:
3120         updated for 2.5.20.
3122         * NEWS:
3123         * configure.ac:
3124         updated for 2.5.19 release
3126         * NEWS:
3127         updated after 2.4.20 release
3129         * NEWS:
3130         * fvwm/focus.c (focus_get_fpol_context_flag):
3131         * fvwm/events.c (__check_click_to_focus_or_raise)
3132         (__handle_click_to_focus):
3133         Treat EWMH desktop as client window under click to focus. (#1492)
3135 2006-12-08  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3137         * libs/Module.h (MX_REPLY):
3138         (MAX_EXTENDED_MESSAGES):
3139         (MAX_XMSG_MASK):
3140         * fvwm/module_interface.c (CMD_Send_Reply):
3141         * fvwm/functable.c (func_table):
3142         * fvwm/commands.h:
3143         Added Send_Reply module only command.
3145 2006-11-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3147         * libs/PictureUtils.c (init_static_colors_table):
3148         fix fvwm for < 8 bit depth, bug #1677
3150 2006-11-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3152         * fvwm/misc.c (IsRectangleOnThisPage):
3153         new fix for signedness problems.
3155 2006-10-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3157         * fvwm/misc.c (IsRectangleOnThisPage):
3158         fix signedness problem with test introduced by gcc4 fix below.
3160 2006-09-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3162         * libs/fvwmrect.h (fvwmrect_subtract_rectangles):
3163         (size_rect):
3164         (rectangle)
3165         (signed_rectangle):
3166         * libs/fvwmrect.c (fvwmrect_subtract_rectangles):
3167         * libs/gravity.h (gravity_move_resize_parent_child):
3168         * libs/gravity.c (gravity_move_resize_parent_child):
3169         * fvwm/frame.h (frame_get_titlebar_dimensions)
3170         * fvwm/frame.c (frame_get_titlebar_dimensions_only)
3171         (frame_get_resize_decor_gravities):
3172         (mr_args_internal):
3173         (frame_setup_border):
3174         (frame_setup_titlebar)
3175         (frame_get_resize_decor_gravities):
3176         (frame_get_titlebar_dimensions):
3177         split rectangle into a signed size and an unsigned size type.
3179         * fvwm/screen.h (ScreenInfo):
3180         * libs/FScreen.h (FScreenGetScrRect):
3181         (FScreenGetResistanceRect):
3182         * libs/FScreen.c (XineramaScreenInfo):
3183         (FScreenGetGeometry)
3184         (FScreenGetScrRect):
3185         (FScreenClipToScreen):
3186         (FScreenCenterOnScreen)
3187         (FScreenGetResistanceRect):
3188         (FScreenIsRectangleOnScreen):
3189         * fvwm/fvwm.h (FvwmWindow):
3190         * fvwm/screen.h (DecorFace):
3191         * libs/fvwmlib.h (CreateGradientPixmap):
3192         * libs/Graphics.c (CreateGradientPixmap):
3193         * libs/PictureUtils.h (PictureCloseImageColorAllocator):
3194         * libs/PictureUtils.c (PictureCloseImageColorAllocator):
3195         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData)
3196         (PImageLoadPixmapFromFile):
3197         (PImageLoadPixmapFromXpmData):
3198         * libs/PictureImageLoader.c (FIMAGE_CMD_ARGS)
3199         (PImageCreatePixmapFromArgbData):
3200         (PImageLoadPixmapFromFile)
3201         (PImageLoadFvwmPictureFromFile):
3202         (PImageLoadPixmapFromXpmData):
3203         * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
3204         * fvwm/ewmh_icons.c (EWMH_DeleteWmIcon):
3205         (EWMH_SetIconFromWMIcon):
3206         * fvwm/ewmh.h (EWMH_GetWorkAreaIntersection):
3207         * fvwm/ewmh.c (EWMH_GetWorkAreaIntersection):
3208         * fvwm/colorset.c (parse_colorset):
3209         * fvwm/icons.c (DrawIconTitleWindow):
3210         (AutoPlaceIcon)
3211         (do_all_iconboxes):
3212         * fvwm/menus.h (MenuRootDynamic):
3213         * fvwm/menus.c (update_menu):
3214         (pop_menu_up):
3215         (do_menu)
3216         (get_menu_options):
3217         * fvwm/move_resize.c (GetMoveArguments):
3218         (ParseOneResizeArgument)
3219         (GetResizeArguments):
3220         (GetResizeMoveArguments):
3221         (DoSnapAttract)
3222         (__move_loop):
3223         (CMD_Maximize):
3224         change dimensions and allocation counts to unsigned types.
3226         * libs/Flocale.h (FlocaleStringNumberOfBytes)
3227         (FlocaleStringByteToCharOffset):
3228         (FlocaleStringCharToByteOffset)
3229         (FlocaleStringCharLength)
3230         * libs/Flocale.c (FlocaleStringNumberOfBytes)
3231         (FlocaleStringByteToCharOffset):
3232         (FlocaleStringCharToByteOffset)
3233         (FlocaleStringCharLength):
3234         (FlocaleUtf8ToUnicodeStr2b)
3235         (FlocaleStringToString2b):
3236         (FlocaleEncodeString):
3237         * libs/Ficonv.c (convert_charsets):
3238         change most string types to char* from unsigned char* to match
3239         with system headers without casts.
3241         * libs/Flocale.c (FlocaleLoadFont):
3242         init shadow_dir to make gcc 4 happy.
3244         * libs/Colorset.h (CSETS_IS_TRANSPARENT_PR_TINT)
3245         (CSETS_IS_TRANSPARENT_ROOT_TRAN):
3246         (CSETS_IS_TRANSPARENT_ROOT_PURE)
3247         (CSETS_IS_TRANSPARENT_PR_PURE):
3248         (CSETS_IS_TRANSPARENT_ROOT)
3249         (CSETS_IS_TRANSPARENT):
3250         compare pointer with NULL, not >= 0.
3252         * libs/FTips.h (ftips_position_t):
3253         * fvwm/expand.c (partial_extended_vars):
3254         * fvwm/placement.c (preason_screen_t):
3255         remove comma last in enums.
3257         * fvwm/style.c (style_parse_focus_policy_style):
3258         change 0xffffffff to ~0 to silience truncation warning.
3260         * fvwm/session.h (mwtsm_state_args):
3261         make flags unsigned.
3263         * fvwm/schedule.c (sq_object_type):
3264         change // to /* ... */
3266         * libs/Fft.c (FftGetFontWidths):
3267         (FftTextWidth):
3268         * libs/FScreen.c (FScreenConfigureSLSScreens):
3269         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
3270         (EWMH_SetDesktopNames):
3271         * fvwm/fvwm.c (LoadDefaultLeftButton):
3272         (LoadDefaultRightButton):
3273         * fvwm/builtins.c (ReadDecorFace):
3274         (CMD_State):
3275         silence signedness warnings by casts.
3277         * fvwm/borders.c (ROTATE_RECTANGLE):
3278         make sure tr is initialized.
3280         * fvwm/add_window.c (FetchWmProtocols):
3281         use unsigned type for l_protocols.
3283 2006-09-17  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3285         * fvwm/events.c (HandleFocusIn):
3286         (HandleFocusOut):
3287         * fvwm/focus.c (__set_focus_to_fwin):
3288         fix focus decoration when unmanaged are focused, unless
3289         FlickeringQtDialogsWorkaround is on. Closes bug #758.
3291 2006-09-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3293         * fvwm/geometry.c (constrain_size):
3294         repeat aspect-resizing in a loop to get a stable result that does not
3295         change the next time the frame is set up
3297 2006-09-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3299         * NEWS:
3300         * configure.ac:
3301         increased version to 2.5.19
3302         released 2.5.18
3304         * NEWS:
3305         * configure.ac:
3306         updated for 2.5.18 release
3308 2006-09-04  Renato Caldas  <seventhguardian@gmail.com>
3310         * acinclude.m4:
3311         removed the unused test for imlib
3312         removed the Imlib.h header from gdk_imlib test programs
3314 2006-08-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3316         * fvwm/ewmh.c (atom_get):
3317         fix offset and length args for XGetWindowProperty() (to support 64bit
3318         architectures)
3320 2006-08-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3322         * fvwm/events.c (HandleUnmapNotify):
3323         immediately handle MapRequests after unmapping a window while we still
3324         have the context fvwm window; this is necessary to allow the client to
3325         re-map a window before fvwm can reparent it to the root window
3326         (HandleMapRequestKeepRaised):
3327         cleaned up
3329 2006-08-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3331         * fvwm/ewmh.c (ewmh_HandleDesktop):
3332         fixed handling of ClickToFocusPassesClick with the EWMH desktop
3333         window
3335 2006-08-29  Harald Dunkel  <harald.dunkel@t-online.de>
3337         * fvwm/icccm2.c:
3338         * fvwm/gnome.c:
3339         * fvwm/decorations.c:
3340         fix offset and length args for XGetWindowProperty() (to support 64bit
3341         architectures)
3343 2006-08-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3345         * NEWS:
3346         * fvwm/expand.c (expand_vars_extended):
3347         correctly expand break.
3348         * fvwm/conditional.c (__rc_matches_rcstring_consume):
3349         fix matching break.
3351 2006-08-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3353         * fvwm/decorations.h (is_function_allowed):
3354         * fvwm/decorations.c (__is_resize_allowed):
3355         (is_function_allowed):
3356         work on 'const FvwmWindow *'
3358         * fvwm/fvwm.h (action_flags):
3359         * fvwm/style.c (check_window_style_change):
3360         * fvwm/module_interface.c (__get_allowed_actions)
3361         (CONFIGARGS):
3362         * libs/vpacket.h (ConfigWinPacket):
3363         expose fvwm allowed actions to modules
3365 2006-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3367         * fvwm/move_resize.c (__move_icon):
3368         *do* map icon windows for pictured icons on move, but only if they end
3369         up on the current desk
3371 2006-08-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3373         * fvwm/move_resize.c (__move_icon):
3374         don't map icon windows for pictured icons on move
3376 2006-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3378         * fvwm/style.c (remove_all_of_style_from_list):
3379         (__simplify_style_list):
3380         (blockor):
3381         (blockand):
3382         (blockunmask)
3383         (blockissubset):
3384         (style_ids_are_equal):
3385         (style_id_equals_id)
3386         (styles_have_same_id):
3387         (fw_match_style_id)
3388         (one_fw_can_match_both_ids):
3389         (check_window_style_change):
3390         use int/0/1 instead of Bool/False/True
3392         * fvwm/move_resize.c (stick_across_pages):
3393         use False instead of FALSE
3395         * fvwm/style.c (fw_match_style_id):
3396         * fvwm/read.c (run_command_file):
3397         (push_read_file):
3398         * fvwm/add_window.c (MappedNotOverride):
3399         * libs/wild.c (matchWildcards):
3400         use 0 and 1 instead of FALSE and TRUE
3402         * fvwm/fvwm.h:
3403         removed TRUE and FALSE
3405 2006-08-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3407         * NEWS:
3408         FvwmPager !IconTitle style bugfix.
3410 2006-07-31  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
3412         * fvwm/fvwm.1.in:
3413         Updated description of Wait command in man page.
3415 2006-07-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3417         * libs/Flocale.c (FlocaleFontStructDrawString)
3418         (FlocaleRotateDrawString):
3419         (FlocaleDrawString):
3420         fixed drawing of forecolor/hilightfore
3422         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
3423         always unmaximize and resize window when leaving fullscreen state,
3424         not just if it did not start as fullscreen
3426 2006-07-17  Renato Caldas  <seventhguardian@gmail.com>
3428         * fvwm/fvwm.1.in (MenuStyle):
3429         added a reference to the prefered ! style negation flag,
3430         and listed the other deprecated negative forms in one place.
3431         (ActiveForeOff):
3432         (AnimationOff):
3433         (AutomaticHotkeysOff):
3434         (HilightBackOff):
3435         (TitleWarpOff):
3436         changed to the ! negation form and listed as deprecated.
3437         (ActiveBack):
3438         removed relics from the man page
3440 2006-07-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3442         * NEWS:
3443         * configure.ac:
3444         increased version to 2.5.18
3445         released 2.5.17
3447         * NEWS:
3448         * configure.ac:
3449         updated for 2.5.17 release
3451 2006-07-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3453         * fvwm/move_resize.c (__move_window):
3454         allow moving a window without an icon while it's iconified based on the
3455         frame geometry
3457 2006-07-17  Serge Koksharov  <gentoosiast dog yandex dot ru>
3459         * fvwm/menustyle.c (menustyle_copy):
3460         Now 'TitleColorset' also copied by 'CopyMenuStyle' command.
3462 2006-07-17  Renato Caldas  <seventhguardian@gmail.com>
3464         * fvwm/fvwm.1.in:
3465         NoTitle, StippledTitleOff, NoHandles, NoButton, NoIconTitle styles
3466         changed the manpage to reflect the prefered style negation method,
3467         that is, using the !* negation sign.
3469 2006-07-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3471         * fvwm/fvwm.1.in (COMMAND EXPANSION):
3472         removed documentation of filters.
3474         * NEWS:
3475         * fvwm/expand.c (check_first_filter):
3476         (apply_filters)
3477         (expand_args_extended):
3478         (expand_vars_extended):
3479         (expand_vars):
3480         removed variable filter implementation and backslash-escaping.
3482 2006-07-15  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3484         * NEWS:
3485         News blurb for variable filters and backslash-escaping.
3486         * fvwm/fvwm.1.in:
3487         documentation of variable filters.
3489 2006-07-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3491         * fvwm/expand.c (chec):
3492         (first_filter):
3493         (apply_filters)
3494         (expand_args_extended):
3495         (expand_vars_extended):
3496         (expand_vars):
3497         implemented variable filters.
3499         * fvwm/expand.c (expand_vars):
3500         made backslash work as escape character within extended variables.
3502         * libs/Strings.h (QuoteEscapeString):
3503         (QuoteEscapeStringLength):
3504         * libs/Strings.c (QuoteEscapeString):
3505         (QuoteEscapeStringLength):
3506         new functions: QuoteEscapeString and QuoteEscapeStringLength for
3507         generic quoting.
3509         * fvwm/expand.c (expand_args_extended):
3510         make upper limit inclusive.
3512         * fvwm/functions.c (__execute_function):
3513         Changed PeekToken to GetNextToken before expand_vars call.
3515         * fvwm/fvwm.1.in:
3516         updated documentation regarding quoting in expand_args_extended
3518 2006-07-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3520         * fvwm/expand.c (__eae_parse_range):
3521         reject everything that does not begin with a digit
3523         * libs/Parse.c (SkipNTokens):
3524         stop skipping tokens at the end of input
3526         * fvwm/expand.c (__eae_parse_range):
3527         bugfixes
3528         (expand_vars):
3529         reformatted
3530         (__eae_parse_range):
3531         fixed parsing of $[n-]
3533 2006-07-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3535         * fvwm/expand.c (expand_args_extended):
3536         fixed core dump
3537         added range check for positional parameters
3538         (expand_args_extended):
3539         (__eae_parse_range):
3540         cleaned up and simplified parsing code
3541         properly unquote arguments when expanding
3542         removed the patch below
3544 2006-07-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3546         * fvwm/expand.c (expand_args_extended):
3547         removed range check for positional parameters
3548         make single arguments not use the 'upper' variable
3549         changed back to PeekToken for single arguemnts.
3550         improved some comments.
3552 2006-07-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3554         * fvwm/expand.c (expand_args_extended):
3555         Fix segfault when called with a tokenless string for single arguments.
3557 2006-07-12  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
3558         * docs/FAQ:
3559         Usage of FvwmAuto module in FAQ 7.17 was incorrect.
3560         Reported by Serge Koksharov.
3562 2006-07-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3564         * fvwm/placement.c (__explain_placement):
3565         print initial size of window too
3567         * libs/Makefile.am (libfvwm_a_SOURCES):
3568         * libs/fvwm_sys_stat.h:
3569         added compat file
3571         * configure.ac:
3572         added O_NOFOLLOW replacement and always include fcntl.h
3574 2006-07-12  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
3575         * libs/Parse.c:
3576         Added DV's mailing-list comments about how PeekToken & GetNextToken
3577         work as comments to the source code. (slightly modified)
3579 2006-07-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3581         * fvwm/schedule.c (CMD_Schedule):
3582         Fixed parsing of "Periodic" option.
3584 2006-07-11  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3586         * NEWS:
3587         Fix for tempfile vulnerabilities in FvwmCommand.
3588         * configure.ac:
3589         Added check for lstat.
3591 2006-07-12  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
3592         * fvwm/schedule.c:
3593         * NEWS:
3594         * AUTHORS:
3595         * fvwm/fvwm.1.in:
3596         Added "Periodic" option to Schedule command.
3598 2006-07-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3600         * fvwm/module_interface.c (KillModule):
3601         (ClosePipes):
3602         fixed KillModule
3605 2006-07-09  Renato Caldas  <seventhguardian@gmail.com>
3607         * fvwm/fvwm.c (main):
3608         changed the -blackout warning to say it will be removed in 3.0
3610         * fvwm/fvwm.1.in (-blackout):
3611         updated the manual regarding the future remotion of -blackout
3613 2006-07-08  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3615         * NEWS:
3616         * configure.ac:
3617         added $EXEEXT to FvwmGtk in order to compile on Cygwin (bug #3772).
3619 2006-07-08  Renato Caldas  <seventhguardian@gmail.com>
3621         *libs/alloca.c (DEBUG_I00FUNC)
3622         removed old debug code
3624 2006-07-07  Renato Caldas  <seventhguardian@gmail.com>
3626         * libs/debug.c:
3627         removed the old unused file
3629         * libs/Makefile.am (libfvwm_a_SOURCES):
3630         removed the reference to debug.c
3632         * libs/fvwmlib.h:
3633         removed the code related to libs/debug.c
3635         * fvwm/module_interface.c (make_named_packet)
3636         removed the #if 0'ed debug code related to debug.c
3638         fvwm/focus.h (DEBUG_FOCUS)
3639         removed the #ifdef'ed to 0 debug code related to debug.c
3642 2006-07-06  Renato Caldas  <seventhguardian@gmail.com>
3644         * libs/PictureUtils.c (PICTURE_DEBUG_COLORS_ALLOC_FAILURE):
3645         removed useles definition.
3647         * modules/FvwmPager/FvwmPager.c (main):
3648         (ParseOptions):
3649         removed most of the debug code.
3650         changed termination debug to use 'isTerminated' instead of
3651         'debug_term_signal'.
3652         changed termination debug to compile on FVWM_DEBUG_MSGS instead
3653         of DEBUG.
3655         * libs/fvwmsignal.h (FVWM_DEBUG_MSGS):
3656         * libs/fvwmsignal.c (FVWM_DEBUG_MSGS):
3657         (fvwmSetTerminate):
3658         removed unused debug_term_signal.
3660 2006-07-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3662         * NEWS:
3663         Work around for Cygwin not requiering '_GNU_SOURCE' to use
3664         stdio's getline; news entry.
3666 2006-06-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3668         * fvwm/commands.h:
3669         * fvwm/module_interface.c (CMD_ModuleListenOnly):
3670         (do_execute_module):
3671         (PositiveWrite):
3672         (ClosePipes):
3673         (KillModule):
3674         * fvwm/commands.h (enum):
3675         * fvwm/functable.c (func_table):
3676         new command ModuleListenOnly
3678 2006-06-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3680         * fvwm/move_resize.c (__move_loop):
3681         make sure a window is snapped in __move_loop when a button is released
3682         if it was snapped before
3684 2006-06-04  Mikhael Goikhman  <migo@homemail.com>
3686         * fvwm/expand.c (expand_vars_extended):
3687         convert function to have a single return point; this is good to
3688         implement doc/todo-vars filters in the future;
3689         fix $[w.name], $[w.iconname], $[w.class] and $[w.resource]
3690         to behave like deprecated $n, $c and $r, i.e. quote them
3692 2006-06-03  Mikhael Goikhman  <migo@homemail.com>
3694         * fvwm/expand.c:
3695         multiple minor tweaks: remove trailing spaces and other
3696         re-spacing and re-indenting, remove old "#if 0" code
3698 2006-06-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3700         * fvwm/move_resize.c (ParseOneResizeArgument):
3701         rewrote parsing of resize arguments
3702         new prefix 'w' for resizing
3704 2006-05-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3706         * fvwm/conditional.c (MatchesConditionMask):
3707         fixed handling of some conditions (iconifiable, fixed, ...)
3709 2005-01-28  Scott Smedley  <scottie7@tpg.com.au>
3711         * fvwm/fvwm.1.in:
3712         s/reverted/negated/
3714         * fvwm/conditional.c:
3715         Output an error message if an unrecognised conditional is used
3716         with the Test or TestRc commands.
3718 2006-05-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3720         * fvwm/frame.c (frame_mrs_hide_changing_parts):
3721         do not map hide windows if their width or height is zero
3723 2006-05-09  Serge Koksharov  <gentoosiast dog yandex dot ru>
3725         * fvwm/ewmh_events.c:
3726         * fvwm/fvwm.1.in:
3727         * fvwm/gnome.c:
3728         * libs/FlocaleCharset.c:
3729         corrected typos
3731         * libs/Flocale.c:
3732         corrected typos in warning messages
3734         * libs/Colorset.c:
3735         * libs/PictureGraphics.c:
3736         * libs/PictureGraphics.h:
3737         renamed function PGraphicsCreateTransprency to
3738         PGraphicsCreateTransparency
3740 2006-04-17  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3742         * fvwm/fvwm.1.in (COMMAND EXPANSION):
3743         * fvwm/expand.c (expand_args_extended):
3744         fixed $[n] to work exactly as $n, i.e. dequote the expansion.
3746 2006-04-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3748         * NEWS:
3749         * fvwm/fvwm.1.in (COMMAND EXPANSION):
3750         * fvwm/expand.c (expand_args_extended):
3751         (expand_vars):
3752         added support for $[n], $[n-m], $[n-] and $[*] variable expansion.
3754         * fvwm/conditional.c (CMD_All):
3755         * fvwm/fvwm.1.in (All):
3756         changed Reverse and UseStack options to have free order.
3758         * NEWS:
3759         * fvwm/fvwm.1.in (WindowShade):
3760         * fvwm/windowshade.c (CMD_WindowShade):
3761         * fvwm/add_window.c (setup_window_structure):
3762         added last direction to WindowShade command.
3764 2006-04-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3766         * fvwm/fvwm.1.in (All):
3767         corrected typo
3769 2006-04-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3771         * NEWS:
3772         * fvwm/fvwm.1.in (All):
3773         * fvwm/conditional.c (CMD_All):
3774         added reverse option to All command to do the action in opposite order
3775         added UseStack option to All command to use the stack ring instead of
3776         the window ring.
3778 2006-04-07  Serge Koksharov  <gentoosiast dog yandex dot ru>
3780         * bin/fvwm-bug.in:
3781         changed fallback editor from `emacs' to `vi' because it much
3782         more widespread on non-Linux systems
3783         fixed errors (because of incorrect syntax fallback entries were
3784         not used)
3785         now script honors `TMPDIR' env. variable and if it's not set it
3786         fallback to `/tmp' directory when creating temporary file
3788 2006-04-06  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3790         * fvwm/fvwm.1.in:
3791         changed description of the fvwmstyle resource usage
3792         to state that it's used in addition to the other
3793         matches
3794         * fvwm/style.c (fw_match_style_id):
3795         fixed a typo in style_name matching
3797 2006-04-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3799         * fvwm/style.c (fw_match_style_id):
3800         reformatted code and fixed a warning
3802 2006-04-04  Serge Koksharov  <gentoosiast dog yandex dot ru>
3804         * ChangeLog:
3805         * bin/ChangeLog:
3806         * libs/Fft.c (FftGetFont):
3807         * libs/System.c:
3808         corrected typos
3810         * libs/System.c (fvwm_mkstemp):
3811         because of typo in the 'ifdef' pragma underlying OS's 'mkstemp'
3812         function was never used, even if it was considered secure by configure
3813         script.
3815 2006-04-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3817         * AUTHORS:
3818         added some more suff to the list of what I've done.
3819         * NEWS:
3820         * fvwm/fvwm.1.in:
3821         * fvwm/add_window.c (__add_window_handle_x_resources)
3822         (destroy_window):
3823         (AddWindow):
3824         * fvwm/fvwm.h (FvwmWindow):
3825         added fvwmstyle resource to override style name
3827 2006-03-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3829         * fvwm/menus.c (pop_menu_up):
3830         as documented, do not warp to title for root menus with TitleWarp
3832 2006-03-21  Serge Koksharov  <gentoosiast dog yandex dot ru>
3834         * fvwm/fvwm.1.in:
3835         Removed duplicated 'NoIcon' style option description in the end
3836         of the `The Style command...' section.
3837         Removed `Recapture True' option setting in example of BusyCursor
3838         description, because `Recapture' isn't valid option of `BusyCursor'
3839         command anymore.
3840         Updated ewmh specification URL (the old was 404)
3841         Added URL to ICCCM 2.0 manual
3843         * modules/FvwmAnimate/FvwmAnimate.c:
3844         corrected delay for Zoom3D animation effect
3846         * modules/FvwmConsole/FvwmConsoleC.pl.1.in:
3847         * modules/FvwmConsole/FvwmConsole.1.in:
3848         replaced all `Cntl' modificator key mentions with `Ctrl' to be
3849         consistent with rest of the documentation and because it's more
3850         conventional abbreviation.
3852         * modules/FvwmTaskBar/FvwmTaskBar.1.in:
3853         slightly clarified the `StartName' option description
3854         added the undocumented `MailDir' option description. Somebody
3855         violated section `K' of the convention list.
3857         * fvwm/fvwm.1.in:
3858         * fvwm/ConfigFvwmSetup:
3859         * modules/FvwmForm/FvwmForm.1.in:
3860         * modules/FvwmForm/FvwmForm-Rlogin:
3861         * sample.fvwmrc/system.fvwm2rc:
3862         * sample.fvwmrc/system.fvwm2rc-sample-1:
3863         replaced all mentions of `rsh' with `ssh'. rsh is obsolete and
3864         inherently insecure. We shouldn't teach our users bad things,
3865         should we?
3867         * AUTHORS:
3868         * Changelog:
3869         * INSTALL.fvwm:
3870         * NEWS:
3871         * bin/fvwm-config.1.in:
3872         * bin/fvwm-menu-headlines.1:
3873         * bin/fvwm-menu-headlines.in:
3874         * bin/fvwm-perllib.in:
3875         * bin/fvwm-root.1.in:
3876         * docs/CONVENTIONS:
3877         * docs/FAQ:
3878         * fvwm/fvwm.1.in:
3879         * fvwm/fvwm.h:
3880         * fvwm/virtual.c:
3881         * libs/PictureGraphics.c:
3882         * libs/Picture.h:
3883         * modules/FvwmBacker/FvwmBacker.1.in:
3884         * modules/FvwmDebug/FvwmGtkDebug.in:
3885         * modules/FvwmDebug/FvwmGtkDebug.1:
3886         * modules/FvwmEvent/FvwmEvent.1.in:
3887         * modules/FvwmForm/FvwmForm.1.in:
3888         * modules/FvwmIconMan/xmanager.c:
3889         * modules/FvwmIdent/FvwmIdent.c:
3890         * modules/FvwmIdent/FvwmIdent.1.in:
3891         * modules/FvwmPerl/FvwmPerl.in:
3892         * modules/FvwmPerl/FvwmPerl.1:
3893         * modules/FvwmScript/FvwmScript.1.in:
3894         * modules/FvwmScript/Widgets/Menu.c:
3895         * modules/FvwmTabs/ConfigFvwmTabs:
3896         * modules/FvwmTabs/FvwmTabs-DefaultSetup:
3897         * modules/FvwmTaskBar/FvwmTaskBar.1.in:
3898         * modules/FvwmTheme/FvwmTheme.1.in:
3899         * perllib/FVWM/Module/Tk.pm:
3900         * perllib/FVWM/Tracker.pm:
3901         * perllib/FVWM/Module.pm.in:
3902         corrected typos
3904 2006-03-21  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3906         * fvwm/style.c (style_parse_focus_policy_style):
3907         fix ISO C90 compability with unconsumed styleoption warnings
3909 2006-03-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3911         * fvwm/events.c (HandlePropertyNotify):
3912         fix for bug 1557/3950 (possible free of Untilted constant or
3913         already used name (if app reset the name already given to them))
3915 2006-03-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3917         * fvwm/focus.c (__activate_window_by_command)
3918         (warp_to_fvwm_window):
3919         (CMD_WarpToWindow):
3920         * fvwm/builtins.c (CMD_CursorMove):
3921         set last pointer event position after warping the pointer
3923         * libs/FEvent.h:
3924         * libs/FEvent.c (FWarpPointerUpdateEvpos):
3925         new function
3927 2006-03-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3929         * acinclude.m4 (AM_PATH_GTK):
3930         (AM_PATH_IMLIB):
3931         (AM_PATH_GDK_IMLIB):
3932         (AM_CHECK_FT2):
3933         (AM_CHECK_XFT):
3934         (AM_CHECK_FC):
3935         fixed to cope with 4 digit version numbers
3937 2006-02-15  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3939         * NEWS:
3940         * fvwm/style.c (parse_and_set_window_style)
3941         (style_parse_one_style_option):
3942         (style_parse_icon_fill_style)
3943         (style_parse_icon_grid_style):
3944         (style_parse_icon_box_style)
3945         (style_parse_icon_size_style):
3946         (style_parse_focus_policy_style)
3947         (style_parse_button_style):
3948         warn if parts of style options are not consumed
3950 2006-02-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3952         * fvwm/menuitem.c (menuitem_paint):
3953         use the MenuColorset in all cases if TitleColorset is not given
3955 2006-02-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3957         * fvwm/style.c (style_parse_one_style_option):
3958         * fvwm/placement.c (__place_get_wm_pos):
3959         (__explain_placement):
3960         new placement style UnderMousePlacement
3962 2006-02-11  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3964         * NEWS:
3965         * fvwm/fvwm.1.in (EdgeScroll):
3966         * fvwm/virtual.c (CMD_EdgeScroll):
3967         fixed EdgeScroll dividing pixel sizes by 1000 if > 1000 (bug 3162)
3968         added wrap/wrapx/wrapy option to EdgeScroll
3970 2006-02-10  Mikhael Goikhman  <migo@homemail.com>
3972         * fvwm/fvwm.1.in:
3973         spell check the whole file (dozens of typos)
3975 2006-02-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3977         * fvwm/module_interface.c (do_execute_module):
3978         removed accidentally committed FVWM_MODULE_ALIAS patch
3980 2006-02-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3982         * fvwm/module_interface.c (do_execute_module):
3983         unset envvars FVWM_VISUALID and FVWM_COLORMAP if they are not needed
3985         * fvwm/menus.c (size_menu_horizontally):
3986         fix for drawing menus with sidepic on the right
3988         * libs/Flocale.c (FlocaleFontStructDrawString):
3989         (FlocaleDrawString):
3990         set the foreground colour before drawing a string
3992         * fvwm/menustyle.h:
3993         * fvwm/menustyle.c (menustyle_get_styleopt_index):
3994         (menustyle_free):
3995         (menustyle_update):
3996         (menustyle_parse_style):
3997         (menustyle_copy):
3998         * fvwm/menus.c (calculate_item_sizes):
3999         (size_menu_vertically):
4000         (UpdateMenuColorset):
4001         * fvwm/menuitem.c (menuitem_paint):
4002         Applied patch by David Maciver
4003         new menu styles TitleColorset, HilightTitleBack and TitleFont
4005 2006-02-09  Renato Caldas  <seventhguardian@gmail.com>
4007         * libs/Module.h:
4008         * libs/Module.c (ParseModuleArgs):
4009         added variable "namelen" to ModuleArgs struct
4011 2006-02-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4013         * libs/Module.h:
4014         removed duplicate declaration
4016 2006-01-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4018         * fvwm/fvwm.c (main):
4019         replaced previous patch with a better one
4021         * fvwm/virtual.c (unmap_window):
4022         * fvwm/menus.c (do_menu):
4023         * fvwm/events.c (fake_map_unmap_notify):
4024         (HandleMapNotify):
4025         * fvwm/add_window.c (MappedNotOverride):
4026         Added XFlush after XSelectInput
4028 2006-01-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4030         * NEWS:
4031         * fvwm/fvwm.c (main):
4032         fix for fvwm not detecting non ICCCM2 wm (bug #3151)
4034 2006-01-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4036         * NEWS:
4037         * configure.ac:
4038         increased version to 2.5.17
4039         released 2.5.16
4041         * NEWS:
4042         * configure.ac:
4043         updated for 2.5.16 release
4045         * acinclude.m4 (CHECK_LIBCHARSET):
4046         removed debug code
4048 2006-01-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4050         * fvwm/functions.c (execute_complex_function):
4051         print a message to the console instead of ringing the bell when a
4052         grab fails
4054 2006-01-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4056         * NEWS:
4057         fixed typo (NEWS still said 2.5.15)
4059 2006-01-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4061         * NEWS:
4062         * configure.ac:
4063         increased version to 2.5.16
4064         released 2.5.15
4066         * NEWS:
4067         * configure.ac:
4068         updated for 2.5.15 release
4070 2006-01-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4072         * fvwm/move_resize.c (GetOnePositionArgument):
4073         (GetMoveArguments):
4074         new option "screen" to Move type commands
4076 2006-01-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4078         * acinclude.m4 (smr_SWITCH):
4079         updated
4081 2006-01-08  Mikhael Goikhman  <migo@homemail.com>
4083         * Makefile.am
4084         restore requirement of automake-1.4; 1.8 is too new even for my system
4086 2006-01-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4088         * configure.in:
4089         * configure.ac:
4090         renamed configure.in to configure.ac
4092         * acinclude.m4:
4093         some updates for new autoconf/automake versions
4095         * configure.in:
4096         * acconfig.h:
4097         removed acconfig.h
4099         * configure.in:
4100         require autoconf-2.53 or later
4102         * Makefile.am (AUTOMAKE_OPTIONS):
4103         require automake-1.8 or later
4105         * configure.in:
4106         check for X library path before X library checks
4107         removed obsolete C++ compiler check
4108         removed duplicate type size checks
4109         replaced M4 comment ("dnl") with shell comment ("#") in many places
4111         * acinclude.m4:
4112         fixed aclocal warnings
4114 2006-01-01  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4116         * fvwm/style.c (style_parse_button_style):
4117         corrected typo in error message, and made errorous buttons not apply
4118         (style_parse_one_style_option):
4119         changed NoButton to use style_parse_button_style
4121 2005-12-23  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4123         * libs/Fft.h:
4124         new fix for incompatible pointer type warning with gcc 3.4.
4126 2005-12-21  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4128         * NEWS:
4129         * AUTHORS:
4130         * fvwm/menuitem.c:
4131         * fvwm/menustyle.h:
4132         * fvwm/fvwm.1.in:
4133         commited patch by Malcolm Still adding TrianglesUseFore MenuStyle
4134         option.
4136 2005-12-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4138         * fvwm/fvwm.1.in:
4139         corrected typos
4141 2005-11-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4143         * fvwm/frame.c (frame_free_move_resize_args):
4144         fixed drawing of transparent decorations or when using lazy shading
4145         during resize
4147 2005-11-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4149         * configure.in:
4150         * libs/fvwmsignal.c:
4151         * libs/Graphics.c:
4152         c89 fixes
4154         * fvwm/ewmh_names.c:
4155         * libs/CombineChars.c:
4156         * libs/FGettext.c:
4157         * libs/FScreen.c:
4158         * libs/FTips.c:
4159         * libs/Flocale.c:
4160         * libs/Parse.c:
4161         * libs/PictureUtils.c:
4162         * libs/System.c:
4163         * libs/XError.c:
4164         * libs/alloca.c:
4165         * libs/envvar.c:
4166         * libs/safemalloc.c:
4167         * libs/strdup.c:
4168         * libs/usleep.c:
4169         do not #include stdlib.h (comes from config.h)
4171         * libs/Flocale.c:
4172         do not #include string.h (comes from config.h)
4174         * acconfig.h:
4175         fixed detection of string.h/strings.h
4177 2005-11-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4179         * libs/Fft.c (FftGetFont):
4180         fixed compiler warning with gcc 3.4.4
4182 2005-11-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4184         * fvwm/menuitem.c (menuitem_paint):
4185         properly undraw unselected item area
4187 2005-11-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4189         * fvwm/menuitem.c (menuitem_paint):
4190         * fvwm/menus.c (get_menu_paint_item_parameters)
4191         (get_menu_paint_item_parameters):
4192         (make_menu):
4193         fixed text offset of menu items with icons but with an item format that
4194         disables icons
4195         (size_menu_horizontally):
4196         allow sidepic to be placed in the middle of menu items; this is better
4197         than ignoring the item format completely but does not draw the items
4198         properly either
4200         * fvwm/menus.c (__mloop_handle_event):
4201         (menu_expose):
4202         fixed delayed menu drawing issue
4203         (select_menu_item):
4204         do not draw the selected menu item before the menu is drawn for the
4205         first time
4206         (repaint_transparent_menu):
4207         (select_menu_item):
4208         (paint_menu):
4209         don't call get_menu_paint_item_parameters when the result is not used
4210         (get_menu_paint_item_parameters):
4212 2005-11-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4214         * fvwm/ewmh.h (EWMH_CMD_Style):
4215         * fvwm/ewmh_conf.c (EWMH_CMD_Style):
4216         * fvwm/style.c (style_parse_one_style_option):
4217         Added support for inverting boolean EWMH styles with !.
4219         * NEWS:
4220         * fvwm/fvwm.h
4221         * fvwm/style.h:
4222         * fvwm/window_flags.h:
4223         * fvwm/ewmh_conf.c (EWMH_CMD_Style):
4224         * fvwm/ewmh.c (ewmh_HandleWindowType):
4225         * fvwm/fvwm.1.in:
4226         Added style EWMHIgnoreWindowType to make fvwm ignore window types.
4228 2005-10-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4230         * fvwm/icons.c (GetIconWindow):
4231         * fvwm/fvwm.h (FvwmWindow):
4232         * fvwm/events.c (__handle_cr_on_icon):
4233         properly handle icon border width; fixes an xterm active icon loop
4235 2005-10-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4237         * fvwm/borders.c (border_draw_one_border_part):
4238         fix for the TiledPixmap borderstyle fix not to affect RootTransparent
4239         borders.
4241 2005-10-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4243         * fvwm/menustyle.c (menustyle_copy_face):
4244         (menustyle_copy):
4245         (menustyle_free_face):
4246         (menustyle_free):
4247         (menustyle_parse_style):
4248         use new functions and fix a bug
4250         * fvwm/Makefile.am:
4251         * fvwm/colors.c:
4252         * fvwm/colors.h:
4253         removed empty files colors.c and colors.h
4255         * fvwm/colors.c (CopyColor):
4256         (FreeColors):
4257         moved to libs/ColorUtils.c and renamed to fvwmlib_free_colors and
4258         fvwmlib_copy_color
4260         * fvwm/frame.c (frame_reshape_border):
4261         removed unused code
4263 2005-10-23  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4265         * fvwm/menustyle.c (menustyle_copy_face):
4266         separated from menustyle_copy; color copies are reallocated.
4267         (menustyle_free):
4268         all colors freed
4269         (menustyle_copy):
4270         color copies are reallocated.
4272         * fvwm/colors.c (CopyColor):
4273         * fvwm/colors.h (CopyColor):
4274         added CopyColor
4276 2005-10-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4278         * fvwm/move_resize.c (__resize_window):
4279         fix for not being able to finish resize with mouse when resizing on
4280         click with modifiers active. (intruduced with 'removed duplicate
4281         pointer query' at sep 29)
4283         * NEWS:
4284         * fvwm/fvwm.1.in:
4285         * fvwm/menustyle.c (menustyle_parse_style):
4286         made style pairs negatable with '!' prefix
4287         ActiveForeOff and HilightBackOff frees colors used.
4289         * fvwm/menustyle.c (menustyle_copy):
4290         fix for freeing color from sorce instead of destination.
4292 2005-10-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4294         * fvwm/functions.c (__execute_function):
4295         fixed an error in yesterdays patch to complex fuctions. the commands
4296         pressed window were not retored correctly after running move functions
4297         without it, and functions would be run twice.
4299 2005-10-18  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4301         * fvwm/fvwm.1.in:
4302         added NoLayer to list of allowed options for WindowList command
4303         fixed grammar of test-conditions list. formatting fixes for
4304         MoveToPage command. Added CirculateSkipIcon / CirculateHitIcon to
4305         style option list.
4307         * NEWS:
4308         * fvwm/functions.c (__execute_function)
4309         (__run_complex_function_items):
4310         (execute_complex_function):
4311         fix for moving/resizing reference window usage with complex functions.
4313 2005-10-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4315         * fvwm/move_resize.c (__move_loop):
4316         reimplemented a fix for the place with keyboard setting a button as
4317         used for place bug; this time without breaking escape key.
4319 2005-10-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4321         * fvwm/move_resize.c (__move_loop):
4322         removed the previous patch as it breaks aborting window motion with the
4323         escape key.
4325 2005-10-03  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4327         * fvwm/move_resize.c (__move_loop):
4328         fixed bug where finishing movment with keyboard would set a random
4329         button as used for placement.
4331 2005-09-30  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4333         * NEWS
4334         * fvwm/frame.c (frame_setup_border):
4335         reverted change for move of window parts (reset of PressedW).
4337 2005-09-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4339         * fvwm/frame.c (frame_setup_border):
4340         fixed a Warning
4342 2005-09-29  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4344         * NEWS:
4345         * fvwm/move_resize.c (__resize_window):
4346         removed duplicate pointer query for enter/leave notify events.
4347         resizing of shaded windows in the shaded direction no longer
4348         results in bogus ref points.
4350         * fvwm/frame.c (frame_setup_border):
4351         reset PressedW if the part has moved. This prevents strange
4352         ref points in resize if called from some complex functions.
4354         * fvwm/frame.c (frame_create_move_resize_args):
4355         shaded windows use get_client_geometry for client geometry.
4357 2005-09-25  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4359         * NEWS:
4360         * AUTHORS:
4361         * fvwm/fvwm.h (window_flags):
4362         (WindowConditionMask):
4363         (FvwmWindow):
4364         * fvwm/window_flags.h (IS_PLACED_BY_WB3):
4365         (SET_PLACED_WB3)
4366         (SETM_PLACED_WB3):
4367         * fvwm/session.c (_match):
4368         (SaveWindowStates):
4369         (LoadWindowStates):
4370         * fvwm/conditional.c (MatchesConditionMask):
4371         (CreateConditionMask):
4372         * fvwm/add_window.c (setup_window_structure):
4373         * fvwm/move_resize.h (placement_binding):
4374         * fvwm/move_resize.c (__move_loop):
4375         (placement_binding):
4376         * fvwm/bindings.c (ParseBinding):
4377         * libs/wcontext.c (win_contexts):
4378         * libs/wcontext.h (enum):
4379         * fvwm/fvwm.1.in:
4380         Added placement context for simple mouse bindings to allow
4381         specification of buttons to finish/cancel movment. Buttons >3
4382         may now be used to place windows.
4383         Replaced window flag placed_wb3 with placed_by_button
4384         FvwmWindow member. Added window condition PlacedByButton.
4386 2005-09-22  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4388         * NEWS:
4389         * AUTHORS:
4390         * fvwm/menustyle.h (enum):
4391         (MenuFeel):
4392         (ST_DO_SCROLL):
4393         (MST_DO_SCROLL)
4394         (ST_SCROLL_OFF_PAGE):
4395         (MST_SCROLL_OFF_PAGE):
4396         * fvwm/menustyle.c (menustyle_copy):
4397         (menustyle_get_styleopt_index):
4398         (menustyle_parse_style):
4399         (CMD_MenuStyle):
4400         * fvwm/menus.c (menuShortcuts):
4401         (enum):
4402         (__mloop_handle_event):
4403         (menu_get_outer_geometry):
4404         (move_any_menu):
4405         * fvwm/fvwm.1.in:
4406         added MouseWheel and ScrollOffPage menu styles
4408 2005-09-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4410         * NEWS:
4411         * fvwm/menus.c (append_item_to_menu):
4412         fixed bug #1121: Use of pointer without checking for NULL
4414 2005-09-19  Mikhael Goikhman  <migo@homemail.com>
4416         * NEWS:
4417         * fvwm/expand.c (expand_vars):
4418         warn on usage of obsolete one-letter variables
4420 2005-09-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4422         * NEWS:
4423         * AUTHORS:
4424         * fvwm/expand.c (expand_vars_extended):
4425         (expand_vars):
4426         allow nesting of variables
4428 2005-09-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4430         * fvwm/ewmh.c (EWMH_SetWMDesktop):
4431         * fvwm/ewmh_events.c (ewmh_WMDesktop):
4432         (ewmh_WMDesktop):
4433         64-bit fixes
4435 2005-09-03  Mikhael Goikhman  <migo@homemail.com>
4437         * fvwm/borders.c (border_draw_one_border_part)
4438         (border_draw_all_border_parts):
4439         fix the previous patch to work with title-less windows too
4441 2005-08-30  Mikhael Goikhman  <migo@homemail.com>
4443         * fvwm/borders.c (border_draw_one_border_part)
4444         (border_draw_all_border_parts):
4445         improve offsets when drawing borders for "BorderStyle TiledPixmap"
4446         windows to make the borders look homogeneous (based on the patch of
4447         Evgeny Stambulchik)
4449 2005-08-26  Mikhael Goikhman  <migo@homemail.com>
4451         * NEWS:
4452         * acconfig.h:
4453         * configure.in:
4454         * libs/FBidi.c:
4455         support new spelling FRIBIDI_CHAR_SET_NOT_FOUND introduced in
4456         fribidi-0.10.5; autodetect old spelling FRIBIDI_CHARSET_NOT_FOUND
4458 2005-08-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4460         * NEWS:
4461         * configure.in:
4462         increased version to 2.5.15
4463         released 2.5.14
4465         * NEWS:
4466         * configure.in:
4467         updated for 2.5.14 release
4469         * fvwm/ewmh_events.c (ewmh_WMStateShaded)
4470         (ewmh_WMStateSkipTaskBar):
4471         (ewmh_WMStateSkipPager):
4472         (ewmh_WMStateModal):
4473         fixed several ewmh-hints
4475 2005-08-24  Mikhael Goikhman  <migo@homemail.com>
4477         * fvwm/fvwm.1.in:
4478         fix TestRc example error, s/Any/All/
4480 2005-08-17  Jonathan Kotta  <jpkotta@gmail.com>
4482         * NEWS:
4483         * AUTHORS:
4484         * fvwm/fvwm.1.in:
4485         * fvwm/conditions.c (MatchesConditionMask):
4486         (CreateConditionMask):
4487         added FixedPosition condition
4489 2005-08-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4491         * fvwm/virtual.c (HandlePaging):
4492         use FQueryPointer every time to track the pointer position; this fixes
4493         fvwm hanging in HandlePaging for the given delay once the pointer
4494         touches the pan frames
4496 2005-08-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4498         * fvwm/session.c (SaveWindowStates):
4499         (LoadWindowStates):
4500         (MatchWinToSM):
4501         save and restore the default layer during a restart
4503 2005-08-13  Mikhael Goikhman  <migo@homemail.com>
4505         * fvwm/conditional.c (CMD_Test):
4506         * fvwm/fvwm.1.in:
4507         rename previously added Test conditions to EnvIsSet and EnvMatch,
4508         tweak the logic when the variable is set, but empty
4510 2005-08-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4512         * fvwm/conditional.c (CMD_Test):
4513         * fvwm/fvwm.1.in:
4514         added test conditions EdgeHasPointer and EdgeIsActive
4516 2005-08-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4518         * fvwm/virtual.c (raisePanFrames):
4519         prevent cycling of pan frame window stacking order
4521 2005-08-12  Mikhael Goikhman  <migo@homemail.com>
4523         * fvwm/conditional.c (CMD_Test):
4524         * fvwm/fvwm.1.in:
4525         add Test conditions IsEnvSet and MatchEnv
4527 2005-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4529         * fvwm/menus.c (pop_menu_up):
4530         * fvwm/menustyle.c (menustyle_copy):
4531         two fixes by Viktor Griph
4533         * fvwm/events.c (HandleEvents):
4534         simplify the style list if there is nothing else to do
4536         * fvwm/style.c (__simplify_style_list):
4537         (styles_have_same_id):
4538         (style_id_equals_id):
4539         (style_ids_are_equals):
4540         (__style_command):
4541         (remove_all_of_style_from_list):
4542         (one_fw_can_match_both_ids):
4543         pass pointers instead of the whole style structure
4544         (__simplify_style_list):
4545         fixed memory leak and tweaked the code
4547         * libs/Strings.c (CatString3):
4548         fixed a buffer overflow
4550 2005-08-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4552         * configure.in:
4553         detect if Window, Pixel or void * are bigger than long and refuse to
4554         compile
4556         * libs/vpacket.h (ConfigWinPacket):
4557         * fvwm/windowshade.c (CMD_WindowShade):
4558         * fvwm/virtual.c (MoveViewport):
4559         (goto_desk):
4560         (CMD_DesktopSize):
4561         (CMD_GotoDeskAndPage):
4562         * fvwm/update.c (apply_window_updates):
4563         * fvwm/stack.c (BroadcastRestack):
4564         (RaiseWindow):
4565         (LowerWindow):
4566         * fvwm/icons.c (DeIconify):
4567         (Iconify):
4568         * fvwm/geometry.c (broadcast_icon_geometry):
4569         * fvwm/events.c (HandleEnterNotify):
4570         (HandleFocusIn):
4571         (HandleLeaveNotify):
4572         (HandleMapNotify):
4573         (HandleMapRequestKeepRaised):
4574         * fvwm/add_window.c (destroy_window):
4575         * fvwm/module_interface.c (SendFvwmPicture)
4576         (BroadcastFvwmPicture):
4577         (CMD_Send_WindowList):
4578         * fvwm/modconf.c (CMD_Send_ConfigInfo):
4579         * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4580         64-bit fixes
4582         * fvwm/virtual.c (GetDeskNumber):
4583         fixed bug #1396: applied patch by srivasta@debian.org to fix wrapping
4584         around the given desk range with a relative desk
4586         * fvwm/focus.c (focus_grab_buttons_on_layer):
4587         fixed a hang
4589         * fvwm/gnome.c:
4590         * fvwm/stack.c:
4591         * fvwm/ewmh.c:
4592         reindented some code and renamed some variables
4594 2005-08-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4596         * fvwm/events.c (__check_click_to_focus_or_raise):
4597         small cleanup patch
4599 2005-08-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4601         * FvwmIconMan/xmanager.c (set_win_iconified):
4602         fixed select/focus button state lost when deiconifying a window
4604 2005-07-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4606         * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4607         fixed bogus warning
4609         * libs/Colorset.c (get_aspect_dimensions):
4610         fixed aspectpixmap size calculations
4612 2005-07-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4614         * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4615         fixed a core dump
4617         * fvwm/ewmh_events.c (ewmh_WMDesktop):
4618         (ewmh_CurrentDesktop):
4619         (ewmh_DesktopGeometry):
4620         (ewmh_NumberOfDesktops):
4621         (ewmh_WMDesktop):
4622         (ewmh_WMIconGeometry):
4623         * fvwm/gnome.c (GNOME_ProcessClientMessage):
4624         print error messages for broken gnome client messages
4626         * fvwm/ewmh_events.c (ewmh_DesktopGeometry):
4627         removed duplicate call of execute_function_override_window
4629         * fvwm/stack.c (new_layer):
4630         fixed a hang if a window sets an layer < 0 via gnome hints
4632         * fvwm/add_window.c (GetWindowSizeHints):
4633         * fvwm/misc.c (fvwm_msg_report_app):
4634         (fvwm_msg_report_app_and_workers):
4635         new utility functions
4637 2005-07-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4639         * fvwm/stack.c (dump_stack_ring):
4640         (verify_stack_ring_consistency):
4641         * fvwm/module_interface.c (HandleModuleInput):
4642         * fvwm/events.c (__cr_detect_icccm_move):
4643         * fvwm/style.c (print_styles):
4644         64-bit fixes
4646 2005-07-19  Mikhael Goikhman  <migo@homemail.com>
4648         * libs/FlocaleCharset.c:
4649         support euc-jp encodings (Yasuhiro Nakazaki)
4651 2005-07-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4653         * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4654         * fvwm/ewmh_names.c (EWMH_WMName):
4655         (EWMH_WMIconName):
4656         * fvwm/ewmh.c (EWMH_SetCurrentDesktop):
4657         (EWMH_SetNumberOfDesktops):
4658         (EWMH_SetDesktopViewPort):
4659         (EWMH_SetDesktopGeometry):
4660         (EWMH_SetWMDesktop):
4661         (ewmh_SetWorkArea):
4662         (EWMH_SetFrameStrut):
4663         (EWMH_Init):
4664         * fvwm/gnome.c (AtomGet):
4665         (atom_size):
4666         (GNOME_GetHintIcons):
4667         (GNOME_GetHintLayer):
4668         (GNOME_GetHintState):
4669         (GNOME_GetExpandedSize):
4670         (GNOME_SetAreaCount):
4671         (GNOME_SetCurrentArea):
4672         (GNOME_SetDeskCount):
4673         (GNOME_SetCurrentDesk):
4674         (GNOME_SetCurrentDesk):
4675         (GNOME_SetWinArea):
4676         (GNOME_Init):
4677         (CMD_GnomeShowDesks):
4678         (GNOME_SetHints):
4679         (GNOME_SetDesk):
4680         (GNOME_SetLayer):
4681         * libs/fsm.c (GetClientID):
4682         (set_session_manager):
4683         * fvwm/session.c (GetClientID):
4684         * fvwm/fvwm.h (FvwmWindow):
4685         * fvwm/colorset.c (get_root_pixmap):
4686         * fvwm/add_window.c (FetchWmProtocols):
4687         * libs/FTips.c (__initialize_window):
4688         * fvwm/icccm2.c (convertProperty)
4689         (icccm2_handle_selection_request)
4690         * fvwm/fvwm.c (SetMWM_INFO):
4691         64-bit fixes
4693 2005-07-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4695         * fvwm/move_resize.c (GetOnePositionArgument):
4696         don't use the unportable fuction rintf()
4698 2005-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4700         * NEWS:
4701         * configure.in:
4702         increased version to 2.5.14
4703         released 2.5.13
4705         * ANNOUNCE:
4706         * NEWS:
4707         * configure.in:
4708         updated for 2.5.13 release
4710 2005-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4712         * libs/Graphics.c (do_relieve_rectangle_with_rotation):
4713         fixed drawing of relief with very small rectangles, i.e. when
4714         line_width * 2 > height or width
4716 2005-07-04  Dan Espen  <dane@mk.telcordia.com>
4718         * NEWS: fvwm-menu-desktop changes.
4720 2005-07-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4722         * fvwm/placement.c (get_next_x):
4723         fixed collision detection of windows on pages other than the current
4724         one during placement
4726 2005-06-17  Olivier Chapuis  <olivier.chapuis@free.fr>
4728         * fvwm/move_resize.c (__resize_window):
4729         Fixed interactive resize (reduction) via the bottom border
4731         * libs/Fpng.h:
4732         Typo
4734 2005-06-02  Dan Espen  <dane@mk.telcordia.com>
4736         * NEWS:
4737         * fvwm/fvwm.1.in:
4738         Spelling fix contition -> condition
4740 2005-04-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4742         * fvwm/style.c (style_ids_are_equals):
4743         (style_id_equals_id):
4744         (styles_have_same_id):
4745         (fw_match_style_id):
4746         (one_fw_can_match_both_ids):
4747         (cleanup_style_defaults):
4748         * libs/fsm.c (fprintfhex):
4749         (CloseDownClient):
4750         * libs/FGettext.c (fgettext_free_fgpath_list):
4751         * libs/Parse.c (_get_suffixed_integer_arguments):
4752         * libs/Graphics.c (AllocNonlinearGradient):
4753         * libs/PictureUtils.c (build_mapping_table):
4754         (finish_ct_init):
4755         made static
4757         * libs/setpgrp.c:
4758         * libs/Event.c:
4759         * libs/FRenderInit.c:
4760         include own header file
4762         * libs/System.c (getFileStamp):
4763         * libs/Fft.c (FftPDumyFunc):
4764         * libs/FScreen.c (FScreenSetDefaultModuleScreen):
4765         exported
4767 2005-03-01  Dan Espen  <dane@mk.telcordia.com>
4769         * fvwm/fvwm.1.in (Example): Piperead in dynamic menu example,
4770         not exec.
4772 2005-02-25  Dan Espen  <dane@mk.telcordia.com>
4774         * fvwm/fvwm.1.in (Focus): Typos in focus section.
4776 2005-02-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4778         * fvwm/conditional.c (Circulate):
4779         added tests for fw == Scr.FvwmRoot again to fix a crash
4781 2005-02-05  Dan Espen  <dane@mk.telcordia.com>
4783         * AUTHORS: New author, FvwmScript patch.
4785 2005-01-28  Scott Smedley  <scottie7@tpg.com.au>
4787         * fvwm/fvwm.1.in: elaborate on how window-specific bindings work.
4788         * AUTHORS: s/Hover/Active/
4790 2005-01-19  Dan Espen  <dane@mk.telcordia.com>
4792         * fvwm/bindings.c (ParseBinding): Patch from Frank Gruellich,
4793         avoid dump with empty key/mouse binding command.
4794         * fvwm/conditional.c (direction_cmd): Safety check after PeekToken
4795         Checked all other uses of PeekToken in fvwm dir.
4797 2005-01-08  Olivier Chapuis  <olivier.chapuis@free.fr>
4799         * fvwm/session.c (matchWin):
4800         (SaveWindowStates):
4801         On restarts compare window ids only. Base our matching decision on
4802         window role only if we have a client id.
4804         * fvwm/move_resize.c (GetOnePositionArgument):
4805         Fixed a one pixel bug in the Move and AnimatedMove commands by rounding
4806         float values to nearest int
4808 2005-01-06  Olivier Chapuis  <olivier.chapuis@free.fr>
4810         * AUTHORS:
4811         * fvwm/move_resize.c (CMD_Maximize):
4812         Applied Arnaud Vrac patch which fixes maximize by growing vs
4813         EWMH working area
4815 2004-12-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4817         * fvwm/builtins.c (do_button_style):
4818         ButtonStyle Reset takes effect immediately
4820 2004-12-08  Dan Espen  <dane@mk.telcordia.com>
4822         * fvwm/fvwm.1.in: lang check.
4824 2004-12-06  Olivier Chapuis  <olivier.chapuis@free.fr>
4826         * fvwm/fvwm.1.in:
4827         Really commit EWMHUseStackingOrderHints documentation update
4829 2004-12-02  Olivier Chapuis  <olivier.chapuis@free.fr>
4831         * fvwm/fvwm.1.in:
4832         Fixed bug #1480 by updating EWMHUseStackingOrderHints documentation
4834         * NEWS:
4835         FvwmIconMan new options
4837         * libs/FTips.c (new file):
4838         * libs/FTips.h (new file):
4839         * libs/defaults.h:
4840         * libs/Makefile.am:
4841         Added a set of functions for implementing tool tips
4843 2004-11-30  Dan Espen  <dane@mk.telcordia.com>
4845         * fvwm/fvwm.1.in: Fix keysym description add XKeysymDB.
4847 2004-11-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4849         * fvwm/menus.c (__mloop_get_event):
4850         * fvwm/functions.c (execute_complex_function):
4851         * fvwm/add_window.c (AddWindow):
4852         * fvwm/module_interface.c (ExecuteModuleCommand):
4853         * fvwm/move_resize.c (__move_loop):
4854         (__resize_window):
4855         properly set the "state" member of faked motion and key events;
4856         fixes broken "nosnap" feature
4858 2004-10-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4860         * fvwm/bindings.c (ParseBinding):
4861         reformatted
4862         * libs/Bindings.c (bindingAppliesToWindow):
4863         (__compare_binding):
4864         * fvwm/module_interface.c (CMD_ModuleSynchronous):
4865         * fvwm/builtins.c (CMD_Wait):
4866         (CMD_StrokeFunc):
4867         * fvwm/events.c (__handle_bpress_on_root):
4868         (HandleButtonRelease):
4869         fixed crash in window specific binding code
4870         fixed handling of root window in window specific binding code
4871         renamed some functions
4873 2004-10-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4875         * fvwm/focus.c (__update_windowlist):
4876         replaced while loop by for loop
4878         * fvwm/style.c (style_destroy_style):
4879         * fvwm/conditional.c (Circulate):
4880         removed useless check whether fw == &Scr.FvwmRoot
4882         * fvwm/icons.c (DeIconify):
4883         defused possible endless loop when a window iconified by the
4884         transientfor window loses the "transient" relationship
4886 2004-10-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4888         * fvwm/move_resize.c (__move_loop):
4889         (__resize_window):
4890         fixed overwriting the initial button_mask during move/resize
4892         * fvwm/menus.c (__mloop_handle_action_with_mi):
4893         do not "post" a submenu menu item it the submenu does not exist
4895 2004-10-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4897         * fvwm/events.c (__handle_bpress_on_managed):
4898         do not draw the decorations pressed in if executing a function is
4899         forbidden
4901         * libs/Parse.c (CopyToken):
4902         fixed parsing of delimiters
4904 2004-10-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4906         * fvwm/virtual.c (GetDeskNumber):
4907         fixed MoveToDesk without argument
4909 2004-10-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4911         * fvwm/fvwm.1.in:
4912         re-formatted and some spelling corrections
4914         * fvwm/colorset.c (CMD_CleanupColorsets):
4915         (CMD_Colorset):
4916         * fvwm/builtins.c (CMD_Colorset):
4917         (CMD_CleanupColorsets):
4918         moved functions to colorset.c
4920 2004-10-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4922         * libs/Parse.c (CopyToken):
4923         skip any whitespace before a delimiter; this allows to have spaces
4924         before the commas in an option list
4926 2004-10-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4928         * fvwm/frame.c (frame_reshape_border):
4929         re-shaping shaded windows no longer unshades them
4930         re-shaping unshaded windows on pages other than 0 0 no longer moves
4931         them out of the current page
4933 2004-10-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4935         * fvwm/events.c (__cr_detect_icccm_move):
4936         * fvwm/screen.h (ScreenInfo):
4937         * fvwm/builtins.c (CMD_BugOpts):
4938         new BugOpts option DebugCRMotionMethod for ConfigureRequest debugging
4940         * fvwm/move_resize.c (__move_loop):
4941         (__resize_window):
4942         query the pointer position in the move loop when an
4943         EnterNotify/LeaveNotify event arrives; same change in resize loop.
4945         * NEWS:
4946         * configure.in:
4947         increased version to 2.5.13
4948         released 2.5.12
4950         * ANNOUNCE:
4951         * NEWS:
4952         * configure.in:
4953         updated for 2.5.12 release
4955         * fvwm/frame.c (frame_create_move_resize_args):
4956         fixed xemacs growing or shrinking when title height changed; this was
4957         caused by calculating the old client window geometry using the new
4958         title dimensions; query the window size instead
4960 2004-10-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4962         * fvwm/events.c (test_map_request):
4963         (test_button_event):
4964         (test_typed_window_event):
4965         (test_resizing_event):
4966         (__predicate_button_click):
4967         (__merge_cr_moveresize):
4968         (HandleUnmapNotify):
4969         (flush_property_notify):
4970         (is_resizing_event_pending):
4971         (__test_for_motion):
4972         use type XPointer for last argument of predicate procedures for
4973         XCheckPeekIfEvent and XCheckIfEvent, not char *
4974         (HandleUnmapNotify):
4975         fixed core dump
4977 2004-10-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4979         * fvwm/window_flags.h:
4980         removed useless and broken SETM_ macros
4982         * fvwm/update.c (init_style):
4983         fixed resetting user states
4985 2004-10-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4987         * libs/envvar.c (add_to_envlist):
4988         fixed crash
4990 2004-09-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4992         * fvwm/builtins.c (CMD_UnsetEnv):
4993         use flib_unsetenv
4995         * libs/envvar.c (flib_unsetenv):
4996         (add_to_envlist):
4997         new functions
4998         (flib_putenv):
4999         split in ftwo functions
5001         * configure.in:
5002         check for unsetenv function
5004         * fvwm/builtins.c (CMD_SetEnv):
5005         assume an empty value if no value is given
5007 2004-09-30  Rafal Bisingier <ravbc@man.poznan.pl>
5009         * fvwm/commands.h:
5010         * fvwm/events.c:
5011         * fvwm/functable.c:
5012         * fvwm/fvwm.1.in:
5013         * fvwm/fvwm.c:
5014         * fvwm/screen.h:
5015         * fvwm/virtual.c:
5016         * perllib/FVWM/Commands.pm:
5017         new command EdgeLeaveCommand
5019 2004-09-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5021         * NEWS:
5022         updated for 2.4.19
5024         * NEWS:
5025         * configure.in:
5026         increased version to 2.5.12
5027         released 2.5.11
5029         * NEWS:
5030         * configure.in:
5031         updated for 2.5.11 release
5033 2004-09-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5035         * fvwm/geometry.c (get_page_offset):
5036         (get_page_offset_rectangle):
5037         (get_absolute_geometry):
5038         new functions
5040         * fvwm/virtual.c (CMD_GotoPage):
5041         * fvwm/move_resize.c (__move_window):
5042         * fvwm/virtual.c (CMD_GotoPage):
5043         (get_page_arguments):
5044         new options wrapx, wrapy, nodesklimitx, nodesklimity to MoveToPage
5045         command
5047 2004-09-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5049         * libs/Flocale.c (FlocaleGetNameProperty):
5050         fixed freeing uninitialized pointer
5052 2004-09-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5054         * fvwm/conditional.c (select_cmd):
5055         (direction_cmd):
5056         (CMD_NoWindow):
5057         (CMD_All):
5058         fixed conditional return code in Pick, PointerWindow, ThisWindow, All,
5059         WindowId and Direction commands; fixes break from these commands
5061         * fvwm/geometry.c (get_shaded_geometry):
5062         shading geometry fix for windows without decoration
5064         * libs/FScreen.c (XineramaQueryExtension):
5065         fixed xinerama crash
5067 2004-09-04  Scott Smedley  <scottie7@tpg.com.au>
5069         * configure.in:
5070         Parse man pages with config.status so man pages have correct date.
5071         Man pages also specify FVWM version that they relate to.
5073         * bin/fvwm-bug.1:
5074         * bin/fvwm-config.1:
5075         * bin/fvwm-convert-2.2.1:
5076         * bin/fvwm-convert-2.4.1:
5077         * bin/fvwm-convert-2.6.1:
5078         * bin/fvwm-menu-desktop.1:
5079         * bin/fvwm-root.1:
5080         * modules/FvwmAnimate/FvwmAnimate.1:
5081         * modules/FvwmAuto/FvwmAuto.1:
5082         * modules/FvwmBacker/FvwmBacker.1:
5083         * modules/FvwmBanner/FvwmBanner.1:
5084         * modules/FvwmButtons/FvwmButtons.1:
5085         * modules/FvwmCommand/FvwmCommand.1:
5086         * modules/FvwmConsole/FvwmConsole.1:
5087         * modules/FvwmConsole/FvwmConsoleC.pl.1:
5088         * modules/FvwmCpp/FvwmCpp.1:
5089         * modules/FvwmDragWell/FvwmDragWell.1:
5090         * modules/FvwmEvent/FvwmEvent.1:
5091         * modules/FvwmForm/FvwmForm.1:
5092         * modules/FvwmGtk/FvwmGtk.1:
5093         * modules/FvwmIconBox/FvwmIconBox.1:
5094         * modules/FvwmIconMan/FvwmIconMan.1:
5095         * modules/FvwmIdent/FvwmIdent.1:
5096         * modules/FvwmM4/FvwmM4.1:
5097         * modules/FvwmPager/FvwmPager.1:
5098         * modules/FvwmProxy/FvwmProxy.1:
5099         * modules/FvwmRearrange/FvwmRearrange.1:
5100         * modules/FvwmSave/FvwmSave.1:
5101         * modules/FvwmSaveDesk/FvwmSaveDesk.1:
5102         * modules/FvwmScript/FvwmScript.1:
5103         * modules/FvwmScroll/FvwmScroll.1:
5104         * modules/FvwmTaskBar/FvwmTaskBar.1:
5105         * modules/FvwmTheme/FvwmTheme.1:
5106         * modules/FvwmWharf/FvwmWharf.1:
5107         * modules/FvwmWinList/FvwmWinList.1:
5108         These man pages were renamed to have a .in suffix.
5109         ie. bin/fvwm-bug.1 renamed to bin/fvwm-bug.1.in
5111 2004-09-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5113         * fvwm/placement.c (__place_window):
5114         fixed starting desk output with bugopts explainwindowplacement
5116 2004-09-03  Olivier Chapuis  <olivier.chapuis@free.fr>
5118         * fvwm/eventhandler.h:
5119         * fvwm/events.c (InitEventHandlerJumpTable):
5120         (__handle_key):
5121         (HandleKeyPress):
5122         (HandleKeyRelease):
5123         Fixed window specific bindings "patch" by sending key release event
5124         when needed
5126 2004-09-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5128         * libs/defaults.h:
5129         * fvwm/screen.h:
5130         * fvwm/move_resize.c:
5131         * fvwm/fvwm.c:
5132         * fvwm/fvwm.h:
5133         * fvwm/frame.h:
5134         * fvwm/decorations.c:
5135         * fvwm/frame.c:
5136         * fvwm/builtins.c:
5137         * fvwm/borders.c:
5138         * fvwm/add_window.c:
5139         * fvwm/bindings.c:
5140         * fvwm/style.c:
5141         renamed NUMBER_OF_BUTTONS to NUMBER_OF_TITLE_BUTTONS to avoid confusing
5142         it with NUMBER_OF_MOUSE_BUTTONS
5144         * fvwm/style.c (style_parse_focus_policy_style):
5145         * fvwm/focus_policy.h:
5146         * libs/Bindings.c (GrabWindowButton):
5147         * fvwm/bindings.c (bind_get_bound_button_contexts):
5148         (ParseBinding):
5149         * fvwm/events.c (WaitForButtonsUp):
5150         * fvwm/style.c (style_parse_focus_policy_style):
5151         * fvwm/builtins.c (__fake_event):
5152         fixed use of NUMBER_OF_MOUSE_BUTTONS vs.
5153         NUMBER_OF_EXTENDED_MOUSE_BUTTONS
5155 2004-08-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5157         * configure.in:
5158         put -Wall -Wno-implicit-int before user specified flags
5160         * libs/FScreen.c:
5161         Applied below patch again.  It didn't make it to CVS (?)
5163 2004-08-26  Dan Espen  <dane@mk.telcordia.com>
5165         * libs/FScreen.c: Fixed case error.  Patch from Chris Ross.
5167 2004-08-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5169         * libs/FScreen.c:
5170         cleaned up ifdef hell
5172         * configure.in:
5173         fixed solaris xinerama test
5175 2004-08-25  Dan Espen  <dane@mk.telcordia.com>
5177         * configure.in:
5178         * acconfig.h:
5179         * libs/FScreen.c (solaris_XineramaQueryScreens):
5180         Solaris Xinerama support.
5181         * AUTHORS:
5182         Update.
5183         Patch by Chris Ross.
5185 2004-08-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5187         * fvwm/events.c (__handle_cr_on_client):
5188         don't reevaluate window geometry when a ConfigureRequest has no size or
5189         position set
5191 2004-08-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5193         * fvwm/menus.c (get_menu_options):
5194         (do_menu):
5195         new menu option TearOffImmediately
5197 2004-08-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5199         * fvwm/placement.c (__place_get_wm_pos):
5200         cascade placemnt fix by Paul Vojta
5202 2004-08-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5204         * fvwm/geometry.c (constrain_size):
5205         Don't touch the aspect ratio if modifying the width/height does not
5206         improve the situation
5208         * fvwm/frame.c (frame_free_move_resize_args):
5209         (__frame_setup_window):
5210         (frame_update_hidden_window_pos):
5211         (frame_mrs_resize_move_windows):
5212         (frame_create_move_resize_args):
5213         * fvwm/move_resize.c (__resize_window):
5214         some event handling fixes
5216         * fvwm/geometry.c (constrain_size):
5217         look up the latest size hints if necessary
5219 2004-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5221         * fvwm/geometry.c (constrain_size):
5222         * fvwm/ewmh.c (EWMH_fullscreen):
5223         * fvwm/window_flags.h (DO_DISABLE_CONSTRAIN_SIZE_FULLSCREEN):
5224         (SET_DISABLE_CONSTRAIN_SIZE_FULLSCREEN):
5225         (SETM_DISABLE_CONSTRAIN_SIZE_FULLSCREEN):
5226         * fvwm/fvwm.h (window_flags_t):
5227         allow windows to override their size hints when going fullscreen:
5228         minimum and maximum size, size inc, aspect ratio, etc.
5230 2004-08-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5232         * fvwm/decorations.c (struct):
5233         MWM hints on 64 bit machines fix
5235 2004-07-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5237         * fvwm/fvwm.1.in (Note):
5238         * fvwm/read.c (CMD_Read):
5239         (CMD_PipeRead):
5240         the Read and PipeRead commands have a return code
5242         * fvwm/read.c (run_command_stream):
5243         (CMD_Read):
5244         (CMD_PipeRead):
5245         removed debug code
5247 2004-07-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5249         * fvwm/move_resize.c (GetResizeArguments):
5250         (GetMoveArguments):
5251         fixed parsing of the frame option to the resize command and the pointer
5252         option to the move command
5254         * fvwm/conditional.c (CMD_None):
5255         Fixed CMD_None return code
5257 2004-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5259         * fvwm/stack.c (is_above_unmanaged):
5260         windows on other Desks are always considered on top
5262         * fvwm/conditional.c (CreateConditionMask):
5263         (MatchesConditionMask):
5264         * fvwm/fvwm.h (WindowConditionMask):
5265         new condition Overlapped
5267         * config.h:
5268         inproved strings.h / sring.h iclusion logic
5270         * libs/PictureUtils.c (finish_ct_init):
5271         (PictureInitColors):
5272         use flib_putenv instead of putenv
5274 2004-07-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5276         * fvwm/screen.h:
5277         * libs/gravity.h (enum):
5278         * libs/wcontext.h (enum):
5279         -pedantic fixes
5281         * fvwm/fvwm.c (StartupStuff):
5282         do not ungrab the pointer while the startup functions execute
5283         (Done):
5284         ungrab the pointer only after executing the RestartFunction or
5285         ExitFunciton.  Otherwise these functions may not be executed if some
5286         other application grabs the pointer.
5288         * fvwm/fvwm.h:
5289         * fvwm/conditional.c (CreateConditionMask):
5290         renamed CurrentGlobbalPageAnyDesk to CurrentGlobalPageAnyDesk
5291         new condition AnyScreen
5293         * libs/Bindings.c:
5294         * fvwm/builtins.c (__fake_event):
5295         * fvwm/bindings.c (ParseBinding):
5296         removed C++ comments
5298 2004-07-15  Scott Smedley  <scottie7@tpg.com.au>
5300         * NEWS:
5301         New options for FvwmButtons module.
5303 2004-07-12  Mikhael Goikhman  <migo@homemail.com>
5305         * fvwm/fvwm.1.in:
5306         use commas between conditions
5308 2004-07-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5310         * fvwm/builtins.c (CMD_Wait):
5311         ignore MapNotify reported to any window except the root window
5313         * fvwm/module_interface.c (CONFIGARGS):
5314         correct number of CONFIGARGS arguments
5316         * libs/vpacket.h (ConfigWinPacket):
5317         frame_x and frame_y are signed
5319 2004-07-11  Scott Smedley  <scottie7@tpg.com.au>
5321         * fvwm/conditional.c:
5322         * fvwm/fvwm.h:
5323         * fvwm/fvwm.1.in:
5324         * AUTHORS:
5325         Committed patch by Norman Yarvin (with a few minor mods) to extend
5326         conditionals to handle multiple window names.
5328 2004-07-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5330         * fvwm/module_interface.c (CONFIGARGS):
5331         * libs/vpacket.h (ConfigWinPacket):
5332         put window_flags at end of structure
5334 2004-07-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5336         * fvwm/module_interface.c (CONFIGARGS):
5337         (OLDCONFIGARGS):
5338         (SETOLDFLAGS):
5339         (SendConfig):
5340         (BroadcastConfig):
5341         removed old module interface
5342         (CONFIGARGS):
5344         * libs/vpacket.h (ConfigWinPacket):
5345         64 bit fix
5347 2004-07-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5349         * fvwm/execcontext.c (__exc_change_context):
5350         fixed handling of etrigger event, fixing a problem with PropertyNotify
5351         events during resizing and possibly other problems too
5353         * fvwm/add_window.c (RestoreWithdrawnLocation):
5354         fixed travelling windows if application changed gravity hint before
5355         recapture
5357         * fvwm/frame.c (combine_decor_gravities):
5358         (combine_gravities):
5359         renamed
5360         (frame_restore_client_gravities):
5361         fixed window gravity after resize
5363         * libs/FEvent.c (FPeekEvent):
5364         (FPeekIfEvent):
5365         (FCheckPeekIfEvent):
5366         fixed some event handling bugs
5368         * fvwm/conditional.c (CMD_Test):
5369         (match_version):
5370         corrected use of Bool types
5371         (match_version):
5372         simplified, fixed compilation
5373         (ver):
5374         use int as return type
5376         * libs/Ficonv.c (convert_charsets):
5377         reindented
5379         * libs/Ficonv.c (convert_charsets):
5380         * acinclude.m4 (ICONV_SECOND_ARG):
5381         rewrote iconf configure test to save an ifdef
5383 2004-07-07  Scott Smedley  <scottie7@tpg.com.au>
5385         * fvwm/fvwm.1.in:
5386         * libs/Bindings.h:
5387         * libs/Bindings.c:
5388         * fvwm/bindings.c:
5389         Allow user to specify window-specific bindings that should NOT be
5390         intercepted by FVWM. This is accomplished with an '--' binding action.
5392 2004-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5394         * fvwm/move_resize.c (__resize_window):
5395         Fixed event handling
5397         * fvwm/virtual.c (HandlePaging):
5398         removed check for leave events on pan frames; better query the pointer
5399         each time
5401 2004-07-06  Scott Smedley  <scottie7@tpg.com.au>
5403         * fvwm/fvwm.1.in:
5404         * fvwm/conditional.c:
5405         Extend "Test (Version >= x.y.z)" syntax to allow version comparison.
5407 2004-07-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5409         * fvwm/move_resize.c (GetResizeArguments):
5410         (GetResizeMoveArguments):
5411         (__resize_window):
5412         (__resize_step):
5413         (__resize_get_refpos):
5414         (__resize_get_dir_proximity):
5415         (__resize_get_dir_from_window):
5416         implemented fluxbox-like Alt-Button3 resizing
5418         * fvwm/virtual.c (HandlePaging):
5419         * fvwm/events.c (__merge_cr_moveresize):
5420         (__test_for_motion):
5421         (flush_property_notify):
5422         do not use XPutBackEvent as it shuffles events on the queue
5423         (test_button_event):
5424         (test_typed_window_event):
5425         new functions
5427         * libs/FEvent.c (fev_get_evpos_or_query):
5428         take pointer position from EnterNotify and LeaveNotify events
5430         * fvwm/move_resize.c (__move_loop):
5431         fixed multiple paging with certain SnapGrid / Move interactions
5432         (__resize_window):
5433         (__move_loop):
5434         * fvwm/virtual.c (HandlePaging):
5435         Workaround for buggy XFree not delivering some Pointer events
5436         simplified code
5438         * fvwm/virtual.c (MoveViewport):
5439         don't eat MotionNotify events
5441         * libs/FEvent.c (fev_get_last_event):
5442         new function
5443         (FWindowEvent):
5444         (FPutBackEvent):
5445         (FPeekIfEvent):
5446         (FPeekEvent):
5447         (FNextEvent):
5448         (FMaskEvent):
5449         (FIfEvent):
5450         (FCheckWindowEvent):
5451         (FCheckTypedWindowEvent):
5452         (FCheckTypedEvent):
5453         (FCheckMaskEvent):
5454         (FCheckIfEvent):
5455         keep a copy of the previous event in case FPutBackEvent is called
5457 2004-06-30  Scott Smedley  <scottie7@tpg.com.au>
5459         * fvwm/fvwm.1.in:
5460         Indicate optional window argument in section headings for
5461         Key, Mouse, PointerKey & Stroke commands.
5462         Remove strange "-Key" option listed for PointerKey.
5464 2004-06-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5466         * libs/Fft.c (FftDrawString):
5467         * fvwm/session.c (get_version_string):
5468         * fvwm/module_interface.c (FlushMessageQueue):
5469         * fvwm/fvwm.c (SaveDesktopState):
5470         * fvwm/colorset.h:
5471         * fvwm/colorset.c (cleanup_colorsets):
5472         * libs/PictureUtils.c (struct):
5473         fixed compilation with -Wall -Wstrict-prototypes -Wpointer-arith
5475 2004-06-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5477         * fvwm/events.c (__cr_detect_icccm_move):
5478         windows with ewmh hints are assumed to use icccm2 compliant movement
5480         * fvwm/ewmh_events.c (ewmh_WMStateMaxVert):
5481         (ewmh_WMStateMaxHoriz):
5482         fixed restart/maximized problem
5484         * libs/fvwmsignal.c (fvwmReapChildren):
5485         * fvwm/fvwm.c (ReapChildren):
5486         moved function to lib
5488 2004-06-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5490         * fvwm/modconf.c (send_desktop_geometry):
5491         (send_color_limit):
5492         (send_click_time):
5493         (send_move_threshold):
5494         (send_ignore_modifiers):
5495         increased static buffer size
5497 2004-06-13  Marcus Lundblad  <ml@update.uu.se>
5499         * libs/CombineChars.c (convert_to_ucs2):
5500         Replace illegal UTF-8 character sequences in input
5502 2004-06-11  Scott Smedley  <scottie7@tpg.com.au>
5504         * libs/Bindings.c:
5505         bugfix: wrong stroke action being invoked.
5507 2004-06-10  Scott Smedley  <scottie7@tpg.com.au>
5509         * fvwm/builtins.c:
5510         * fvwm/events.c:
5511         * libs/Bindings.c:
5512         Active _last_ matching binding. (ie. same behaviour as before
5513         win-specific bindings patch.)
5514         bugfix: segfault when looking up stroke bindings in root context.
5516 2004-06-07  Scott Smedley  <scottie7@tpg.com.au>
5518         * fvwm/bindings.c:
5519         * fvwm/builtins.c:
5520         * fvwm/events.c:
5521         * fvwm/fvwm.1.in:
5522         * fvwm/module_interface.c:
5523         * libs/Bindings.c:
5524         * libs/Bindings.h:
5525         * modules/FvwmScript/FvwmScript.c:
5526         * modules/FvwmScript/Instructions.c:
5527         Implemented window-specific key/mouse bindings.
5529         * modules/FvwmIconBox/FvwmIconBox.h:
5530         * libs/fvwmlib.h:
5531         * libs/wild.c:
5532         * libs/wild.h:
5533         Make args to matchWildcards() const.
5535 2004-06-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5537         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
5538         use EWMH_fullscreen
5539         * fvwm/ewmh.c (EWMH_fullscreen):
5540         new function
5542         * fvwm/add_window.c (AddWindow):
5543         implemented MAXVERT, MAXHORIZ and FULLSCREEN initial EWMH states
5545         * fvwm/ewmh_events.c (ewmh_WMStateMaxHoriz):
5546         (ewmh_WMStateMaxVert):
5547         (ewmh_WMStateShaded):
5548         (ewmh_WMStateSticky):
5549         (ewmh_WMStateStaysOnBottom):
5550         fixed core dumps
5551         (ewmh_WMState):
5552         don't try to maximize window when looking up the style
5553         (ewmh_WMDesktop):
5554         (ewmh_WMStateFullScreen):
5555         (ewmh_WMStateHidden):
5556         (ewmh_WMStateMaxVert):
5557         (ewmh_WMStateModal):
5558         (ewmh_WMStateShaded):
5559         (ewmh_WMStateSkipPager):
5560         (ewmh_WMStateSticky):
5561         (ewmh_WMStateStaysOnBottom):
5562         fixed ignoring ewmh hints
5564         * fvwm/expand.c (expand_vars_extended):
5565         include full path in iconfile and miniiconfile variables
5567 2004-06-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5569         * fvwm/functions.c (execute_complex_function):
5570         (CheckActionType):
5571         fixed double click patch
5573 2004-06-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5575         * fvwm/ewmh.c (EWMH_SetWMDesktop):
5576         use 0xFFFFFFFF instead of 0xFFFFFFFE for "sticky across all desks"
5578 2004-05-31  Dan Espen  <dane@mk.telcordia.com>
5580         * fvwm/fvwm.1.in (COLORSETS): Moved FvwmTheme description of colorsets
5581         into fvwm man page.
5583 2004-05-29  Norbert Buchmuller  <norbi@nix.hu>
5585         * libs/FImage.c (FShmSafeCreateImage):
5586         Yet another fix to SHM remote client problem
5588 2004-05-26  Francis Litterio  <franl@world.std.com>
5590         * fvwm/fvwm.1.in
5591         * fvmw/fvwm.h
5592         * fvwm/placement.c (__place_get_wm_pos)
5593         * fvwm/style.c (style_parse_one_style_option)
5594         Added support for new CenterPlacement style (cf. macro PLACE_CENTER).
5596 2004-05-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5598         * fvwm/events.c (HandleEnterNotify):
5599         fixed endless loop of edge commands when doing something that grabs
5600         the pointer
5602         * fvwm/functions.c (CheckActionType):
5603         (execute_complex_function):
5604         double clicks no longer work when pressing different buttons
5606 2004-05-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5608         * fvwm/placement.c (__place_get_wm_pos):
5609         fixed placement in top left corner when pressing escape during manual
5610         placement
5612 2004-05-23  Mikhael Goikhman  <migo@homemail.com>
5614         * configure.in:
5615         * AUTHORS:
5616         added Chinese translations
5618 2004-05-18  Olivier Chapuis  <olivier.chapuis@free.fr>
5620         * fvwm/ewmh.c (EWMH_SetFrameStrut):
5621         Fixed a miss-print
5623 2004-05-09  Mikhael Goikhman  <migo@homemail.com>
5625         * fvwm/conditional.c:
5626         * fvwm/fvwm.1.in:
5627         clean up Test code and documentation, add new False condition,
5628         unrecognized conditions produce Error return code now
5630 2004-05-06  Dan Espen  <dane@mk.telcordia.com>
5632         * fvwm/style.c: Remove extra char.
5634 2004-05-01  Olivier Chapuis  <olivier.chapuis@free.fr>
5636         * fvwm/ewmh.c (ewmh_atom_client_win):
5637         * fvwm/ewmh_intern.h:
5638         * fvwm/ewmh_events.c (EWMH_ProcessClientMessage):
5639         (ewmh_MoveResizeWindow):
5640         Added _NET_RESTACK_WINDOW as it is similar than _NET_MOVERESIZE_WINDOW
5642         * fvwm/events.c (__handle_cr_on_client):
5643         (__handle_configure_request):
5644         (events_handle_configure_request):
5645         Some renaming for consistency, force restacking if the event come from
5646         an ewmh restack
5648         * fvwm/ewmh_events.c (ewmh_MoveResize):
5649         Fixed _NET_WM_MOVERESIZE
5651         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
5652         Removed debug code
5654         * fvwm/ewmh.c (ewmh_atom_fvwm_win):
5655         (EWMH_SetFrameStrut):
5656         Added _NET_FRAME_EXTENTS as it is just _KDE_NET_WM_FRAME_STRUT
5658 2004-04-29  Olivier Chapuis  <olivier.chapuis@free.fr>
5660         * libs/FImage.c (FShmSafeCreateImage):
5661         Finished to fix SHM remote client problem
5663 2004-04-29  Olivier Chapuis  <olivier.chapuis@free.fr>
5665         * libs/FImage.c (FShmSafeCreateImage):
5666         Fixed when we are a remote client
5668 2004-04-21  Mikhael Goikhman  <migo@homemail.com>
5670         * INSTALL.fvwm:
5671         * NEWS:
5672         * acconfig.h:
5673         * fvwm/fvwm.1.in:
5674         * fvwm/fvwm.c:
5675         * fvwm/gnome.h:
5676         * fvwm/session.c:
5677         * libs/envvar.c:
5678         * libs/envvar.h:
5679         new default ~/.fvwm/config file is now recommended instead of
5680         still supported ~/.fvwm/.fvwm2rc
5682 2004-04-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5684         * fvwm/menus.c (NewMenuRoot):
5685         do not strip whitespace from menu names when creating a new menu
5687 2004-04-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5689         * fvwm/menuitem.c (menuitem_get_size):
5690         * fvwm/menuitem.h:
5691         renamed remaining "mips" to mipst
5693 2004-04-09  Olivier Chapuis  <olivier.chapuis@free.fr>
5695         * fvwm/events.c (HandleMapRequestKeepRaised):
5696         * fvwm/ewmh_events.c (ewmh_DesktopGeometry):
5697         Fixed EWMH DesktopGeometry and Stacking list
5699 2004-04-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5701         * fvwm/virtual.c (GetDeskNumber):
5702         (CMD_MoveToDesk):
5703         (CMD_GotoDesk):
5704         fixed MoveToDesk with one argument
5706 2004-04-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5708         * fvwm/style.c (style_parse_one_style_option):
5709         * fvwm/style.h:
5710         * fvwm/conditional.c (MatchesConditionMask):
5711         * fvwm/fvwm.h:
5712         * fvwm/window_flags.h:
5713         new style "State"
5715 2004-03-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5717         * fvwm/fvwm.1.in:
5718         corrected a typo
5720 2004-03-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5722         * fvwm/move_resize.c (unmaximize_fvwm_window):
5723         fixed redrawing of maximize button when unmaximizing but when the size
5724         and position does not change
5726 2004-03-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5728         * fvwm/expand.c (expand_vars_extended):
5729         new extended variable $[w.layer]
5731         * fvwm/move_resize.c (MaximizeHeight):
5732         (MaximizeWidth):
5733         (CMD_Maximize):
5734         applied modified layer patch for maximize by Rafal Bisingier
5736 2004-03-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5738         * fvwm/add_window.c (setup_frame_attributes):
5739         Hopefully fixed BackingStore code and removed now useless backing store
5740         for decorations
5742         * fvwm/expand.c (expand_vars_extended):
5743         new extended variable $[w.desk]
5745 2004-03-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5747         * NEWS:
5748         * configure.in:
5749         increased version to 2.5.11
5750         released 2.5.10
5752         * NEWS:
5753         * configure.in:
5754         updated for 2.5.10 release
5756         * libs/Graphics.c (do_relieve_rectangle_with_rotation):
5757         improved rotation code
5759         * libs/gravity.c (gravity_add_rotations):
5760         new function
5762 2004-03-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5764         * fvwm/placement.c (__explain_placement):
5765         new function
5767         * libs/FScreen.c (FScreenIsRectangleOnScreen):
5768         new function
5770         * fvwm/builtins.c (CMD_BugOpts):
5771         * fvwm/screen.h (ScreenInfo):
5772         new BugOpts option ExplainWindowPlacement
5773         renamed some members of Screen
5775 2004-03-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5777         * fvwm/placement.c (__place_get_wm_pos):
5778         (__place_get_nowm_pos):
5779         (__place_get_placement_flags):
5780         (__place_window):
5781         (__place_handle_x_resources):
5782         (setup_window_placement):
5783         split into multiple functions
5784         cleaned up a little
5786 2004-03-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5788         * fvwm/add_window.c (setup_window_placement):
5789         * fvwm/placement.c (setup_window_placement):
5790         moved function to placement.c
5791         fixed using PLACE_AGAIN placement mode
5792         (PlaceWindow):
5793         (__place_window):
5794         renamed function
5796 2004-03-15  Chris Ross  <cross+fvwm@distal.com>
5798         * libs/Graphics.c (do_relieve_rectangle_with_rotation)
5799         allow a negative line_width to invert the relief
5801 2004-03-06  Marcus Lundblad  <ml@update.uu.se>
5803         * libs/Flocale.c (FlocaleDrawString)
5804         (FlocaleDrawUnderline)
5805         (FlocaleTextWidth):
5806         reduced redundant calls to iconv
5808 2004-03-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5810         * fvwm/move_resize.c (CMD_XorValue):
5811         fixed a very small outline drawing problem caused by using 0 line width
5812         instead of 1
5814         * NEWS:
5815         * configure.in:
5816         increased version to 2.5.10
5818         * configure.in:
5819         * NEWS:
5820         updated for 2.5.9 release
5822         * fvwm/functions.c (execute_function_override_window):
5823         * fvwm/module_interface.c (ExecuteModuleCommand):
5824         * fvwm/conditional.c (circulate_cmd):
5825         sometimes, DeferExecution was called although a window was already
5826         selected, for example with the "Current" commend; fixed
5828 2004-02-28  Olivier Chapuis  <olivier.chapuis@free.fr>
5830         * libs/FImage.c (FShmSafeCreateImage):
5831         Fixed some safety tests
5833 2004-02-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5835         * fvwm/events.c (__handle_cr_on_client):
5836         fixed a bug in the Jave configure request workaround
5838 2004-02-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5840         * fvwm/events.c (__cr_detect_icccm_move):
5841         improved motion method detection for fullscreen requests
5843 2004-02-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5845         * fvwm/add_window.c (AddWindow):
5846         * fvwm/screen.h (ScreenInfo):
5847         * fvwm/builtins.c (CMD_BugOpts):
5848         new BugOpts option DisplayNewWindowNames intended for debugging
5850 2004-02-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5852         * libs/Bindings.c (FvwmStringToKeysym):
5853         small performance enhancement
5855         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
5856         (__move_loop):
5857         fixed the FlickeringMoveWorkaround option which did nothing before
5859 2004-02-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5861         * fvwm/style.c (style_parse_one_style_option):
5862         * fvwm/fvwm.h:
5863         * fvwm/style.h (SIS_UNMANAGED):
5864         * fvwm/add_window.c (AddWindow):
5865         New style Unmanaged
5867         * fvwm/expand.c (expand_vars_extended):
5868         new variables $[w.iconfile] and $[w.miniiconfile]
5870         * libs/Graphics.c (do_relieve_rectangle_with_rotation):
5871         made left side of a relief one pixel longer at the bottom
5873 2004-02-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5875         * libs/defaults.h (DEF_FP_SORT_WINDOWLIST_BY):
5876         * fvwm/style.c (style_set_old_focus_policy):
5877         fixed default window list order with ClickToFocus
5879 2004-02-04  Marcus Lundblad  <ml@update.uu.se>
5881         * fvwm/libs/Flocale.h:
5882         * fvwm/libs/Flocale.c (FlocaleStringNumberOfBytes)
5883         (FlocaleStringByteToCharOffset)
5884         (FlocaleStringCharToByteOffset)
5885         (FlocaleStringCharLength):
5886         Made utility functions available outside of Flocale
5888 2004-01-31  Olivier Chapuis  <olivier.chapuis@free.fr>
5890         * fvwm/events.c (__test_for_motion):
5891         Fixed a lockup, see the long comment in the code
5893 2004-01-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5895         * fvwm/schedule.c (execute_obj_func):
5896         fixed using uninitialised return code
5898 2004-01-25  Olivier Chapuis  <olivier.chapuis@free.fr>
5900         * fvwm/builtins.c (do_title_style):
5901         Fixed MinHeight, it must reset the Height
5903 2004-01-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5905         * fvwm/menus.c (menuShortcuts):
5906         applied menu navigation patch by Anton Kazennikov
5908 2003-12-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5910         * libs/gravity.c (gravity_dir_to_string):
5911         (gravity_parse_dir_argument):
5912         use a constant for the dir table
5914 2003-12-16  Marcus Lundblad  <ml@update.uu.se>
5916         * fvwm/Flocale.c (FlocaleEncodeString)
5917         (FlocaleDrawUnderline):
5918         Fixed crash when there's no Iconv support
5920 2003-12-16  olicha  <olivier.chapuis@free.fr>
5922         * fvwm/functions.h:
5923         Used the FUNC_FLAGS_TYPE in find_func_t declaration
5925         * sample.fvwmrc/system.fvwm2rc-sample-95:
5926         Added some Xft fonts
5928 2003-12-12  olicha  <olivier.chapuis@free.fr>
5930         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
5931         Fixed ewmh FullScreen when an application start fullscreen and
5932         desactivate this state
5934 2003-12-04  olicha  <olivier.chapuis@free.fr>
5936         * fvwm/placement.c (test_fit):
5937         * fvwm/ewmh.h:
5938         * fvwm/ewmh.c (ewmh_GetStrutIntersection):
5939         (EWMH_GetBaseStrutIntersection):
5940         (EWMH_GetStrutIntersection):
5941         Fixed placement vs the base struts
5943 2003-11-29  Mikhael Goikhman  <migo@homemail.com>
5945         * sample.fvwmrc/system.fvwm2rc-sample-95:
5946         improved Debian specific menu
5948 2003-11-15  Mikhael Goikhman  <migo@homemail.com>
5950         * sample.fvwmrc/system.fvwm2rc-sample-95:
5951         several updates; added Debian menu if found
5953 2003-11-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5955         * configure.in:
5956         new configure option --en/disable-iconv
5958 2003-11-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5960         * fvwm/menus.c (__mloop_handle_event):
5961         * fvwm/menustyle.c (menustyle_parse_style):
5962         (menustyle_copy):
5963         new MenuStyle options PopupIgnore and PopupClose
5965 2003-11-02  Dan Espen  <dane@mk.telcordia.com>
5967         * fvwm/menus.c (menu_binding): Remove debug code.
5968         * fvwm/bindings.c (ParseBinding): Hand off menu bindings to menu code.
5969         * fvwm/menus.h: Add menu_binding function.
5970         * fvwm/fvwm.1.in: Document the menu context in the mouse command for
5971         tear off menus.
5972         * fvwm/menus.c (__mloop_handle_event): Really crude ability to disable
5973         button 2 tearoff.
5974         * libs/wcontext.h (enum): Add MENU context.
5975         * libs/wcontext.c (win_contexts): More common binding contexts first in
5976         table.
5977         * libs/charmap.c (charmap_string_to_mask): Space before char in error
5978         message.
5980 2003-11-01  Mikhael Goikhman  <migo@homemail.com>
5982         * NEWS:
5983         * configure.in:
5984         increase version to 2.5.9
5986 2003-10-31  Mikhael Goikhman  <migo@homemail.com>
5988         * Makefile.am:
5989         fixed deb creation
5991         * configure.in:
5992         * NEWS:
5993         updated for 2.5.8 release
5995 2003-10-29  Mikhael Goikhman  <migo@homemail.com>
5997         * Makefile.am:
5998         * configure.in:
5999         initially added files for deb package auto-creating procedure
6001 2003-10-26  Mikhael Goikhman  <migo@homemail.com>
6003         * AUTHORS:
6004         * configure.in:
6005         added Swedish translations by Johan Svedberg
6007         * NEWS:
6008         updated
6010 2003-10-25  Mikhael Goikhman  <migo@homemail.com>
6012         * fvwm/add_window.c (GetWindowSizeHints):
6013         reindented broken hint messages
6015 2003-10-23  Mikhael Goikhman  <migo@homemail.com>
6017         * configure.in:
6018         improved Perl detection messages,
6019         restored FvwmGtkDebug independence from gtk libs
6021 2003-10-15  Mikhael Goikhman  <migo@homemail.com>
6023         * configure.in:
6024         * AUTHORS:
6025         added German translations by Andrei Mitrofanow
6027         * fvwm/fvwm.1.in:
6028         typos
6030 2003-10-11  Mikhael Goikhman  <migo@homemail.com>
6032         * NEWS:
6033         added 2.4.17 NEWS
6035 2003-09-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6037         * fvwm/fvwm.1.in:
6038         * fvwm/conditional.c (CreateConditionMask):
6039         (MatchesConditionMask):
6040         (CreateConditionMask):
6041         * fvwm/fvwm.h (WindowConditionMask):
6042         !CurrentPage, !CurrentDesk, !Layer ... now work as they should
6044 2003-09-23  olicha  <olivier.chapuis@free.fr>
6046         * libs/FImage.c (FShmInit):
6047         Removed debug code
6049 2003-09-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6051         * fvwm/focus.c (warp_to_fvwm_window):
6052         don't unnecessarily call MoveViewport
6054 2003-09-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6056         * fvwm/decorations.c (__is_resize_allowed):
6057         fixed a condition
6059 2003-09-06  malu  <ml@update.uu.se>
6061         * libs/FBidi.c (FBidiConvert):
6062         * libs/CombineChars.c (CombineChars):
6063         Fixed drawing combining characters on correct positions in
6064         right-to-left context
6066 2003-09-05  malu  <ml@update.uu.se>
6068         * libs/Flocale.c (FlocaleDrawString):
6069         (FlocaleTextWidth):
6070         Fixed drawing of combining characters with font shadow
6071         (character offsets were miscalculated, since FlocaleTextWidth
6072         adds shadow width)
6074 2003-09-05  malu  <ml@update.uu.se>
6076         * libs/Flocale.c (FlocaleDrawUnderline):
6077         Fixed bug with text width when a string contains only
6078         "orphaned" combining characters (compensation for font shadowd
6079         was counted twice)
6081 2003-09-04  olicha  <olivier.chapuis@free.fr>
6083         * todo-2.6:
6084         Added E.18, added comments on C.9 and C.15
6086 2003-09-03  olicha  <olivier.chapuis@free.fr>
6088         * libs/Flocale.c (FlocaleTextWidth):
6089         Fixed a comb_char core dump
6091         * libs/Makefile.am:
6092         Fixed compilation if either iconv, libpng or Xrender headers are
6093         not at a standard place
6095 2003-09-03  Mikhael Goikhman  <migo@homemail.com>
6097         * acinclude.m4:
6098         fixed error message for incorrect --with-SOMETHING-library argument
6100 2003-09-03  olicha  <olivier.chapuis@free.fr>
6102         * todo-2.6:
6103         Closed C.2 as Dominik fix it on 2003-03-13. Move B.5 to C.27
6105 2003-09-02  olicha  <olivier.chapuis@free.fr>
6107         * todo-2.6:
6108         C.12 is fixed
6110 2003-09-01  olicha  <olivier.chapuis@free.fr>
6112         * libs/gravity.c (gravity_dir_to_string):
6113         A new interface function to transform a direction_t to a string
6115 2003-08-31  S. Anderson  <sa@xmission.com>
6117         * libs/defaults.h (FLOCALE_MB_FALLBACK_FONT):
6118         Fixed missing font charsets
6120 2003-08-28  olicha  <olivier.chapuis@free.fr>
6122         * fvwm/move_resize.c (__move_loop):
6123         (AnimatedMoveAnyWindow):
6124         Updated bg of transparent tear off menu when moved
6126         * fvwm/events.c (HandlePropertyNotify):
6127         Updated ParentRelative tear off menu on bg change
6129         * fvwm/menus.c (UpdateMenuColorset):
6130         Updated colorsets of tear off menu when they change, this handle the
6131         case of root background change for RootTransparent
6133         * fvwm/menus.h:
6134         * fvwm/menus.c (menu_redraw_pr_tear_off_menu):
6135         An utility function for redrawing transparent tear off menu. Maybe
6136         we can merge
6138         * fvwm/add_window.c (validate_transientfor):
6139         Fixed transient for an ewmh desktop
6141 2003-08-27  olicha  <olivier.chapuis@free.fr>
6143         * libs/FRender.c (FRenderRender):
6144         * libs/PictureGraphics.c (PGraphicsCreateTranslucent):
6145         Removed and fixed some unused code
6147 2003-08-25  olicha  <olivier.chapuis@free.fr>
6149         * fvwm/misc.c (GrabEm):
6150         Fixed fvwm freeze if GRAB_FREEZE_CURSOR fail repeatedly
6152         * fvwm/modconf.c (send_color_limit):
6153         ifndefed color limit config info message which is not used anymore
6155         * fvwm/colorset.c (parse_colorset):
6156         Added a note on average bg
6158 2003-08-23  olicha  <olivier.chapuis@free.fr>
6160         * fvwm/style.c (print_styles):
6161         More info on memory used
6163         * fvwm/style.c (__simplify_style_list):
6164         Fixed upward simplication
6166 2003-08-14  olicha  <olivier.chapuis@free.fr>
6168         * fvwm/ewmh.c (ewmh_HandleMenu):
6169         Fixed the MENU window type, they are tear off menus
6171         * fvwm/fvwm.h:
6172         * fvwm/update.c (apply_window_updates):
6173         * fvwm/stack.c (new_layer):
6174         * fvwm/ewmh.c (EWMH_GetStyle):
6175         Fixed EWMHUseStackingHints update
6177         * fvwm/window_flags.h:
6178         * fvwm/fvwm.h:
6179         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6180         (ewmh_WMStateMaxHoriz):
6181         (ewmh_WMStateMaxVert):
6182         * fvwm/move_resize.c (unmaximize_fvwm_window):
6183         Fixed _NET_WM_STATE_FULLSCREEN: set the correct _NET_WM_STATE,
6184         uniconify and unshade when putting a window fullscreen
6186         * fvwm/ewmh_intern.h:
6187         * fvwm/ewmh.c (ewmh_AllowsFullScreen):
6188         Added _NET_WM_ACTION_FULLSCREEN as we have _NET_WM_STATE_FULLSCREEN
6190         * fvwm/move_resize.c (unmaximize_fvwm_window):
6191         (CMD_Resize):
6192         (CMD_ResizeMove):
6193         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6194         * fvwm/decorations.c (SelectDecor):
6195         * fvwm/windowshade.c (CMD_WindowShade):
6196         Removed the decor for EWMH fullscreen windows, forbid shading and
6197         allows Resize and MoveResize without unsetting the fullscreen/maximized
6198         state
6200         * fvwm/move_resize.c (CMD_ResizeMoveMaximize):
6201         (CMD_ResizeMaximize):
6202         Fixed ewmh state which was not set after these cmds
6204 2003-08-09  olicha  <olivier.chapuis@free.fr>
6206         * todo-2.6:
6207         Updated
6209 2003-08-08  olicha  <olivier.chapuis@free.fr>
6211         * fvwm/borders.c (border_draw_vector_to_pixmap):
6212         Fixed inversion of fg and bg in vector buttons
6214         * fvwm/style.c (__simplify_style_list):
6215         Fixed a memory leak
6217         * libs/System.c (fvwm_mkstemp):
6218         Removed debug code
6220 2003-08-07  olicha  <olivier.chapuis@free.fr>
6222         * configure.in:
6223         * acinclude.m4 (AM_SAFETY_CHECK_MKSTEMP):
6224         * acconfig.h:
6225         * libs/System.c (fvwm_mkstemp):
6226         * libs/fvwmlib.h:
6227         Added fvwm_mkstemp for replacing tempnam. configure check if mkstemp
6228         exists and work correctly, if not a replacement function is used
6229         (written by Michael Han in 2001-02 and inspired by the glibc mkstemp
6230         implementation).
6232         * libs/fsm.c (unique_filename):
6233         (SetAuthentication):
6234         * fvwm/session.c (getUniqueStateFilename):
6235         Replaced tempnam by fvwm_mkstemp
6237 2003-08-07  olicha  <olivier.chapuis@free.fr>
6239         * libs/Makefile.am:
6240         * libs/FSMlib.h (new file):
6241         * fvwm/session.c (*):
6242         * fvwm/session.h:
6243         fvwmize SMlib and ICElib
6245         * fvwm/session.c (matchWin):
6246         Fixed window matching for windows with no SM_CLIENT_ID and a
6247         window_role
6249         * libs/fsm.c (new file):
6250         * libs/fsm.h (new file):
6251         * fvwm/ConfigFvwmDefaults
6252         A set of functions for implementing a dummy session manager
6254         * fvwm/fvwm.1.in:
6255         GNOME 1 hints and EWHM support is not a configure time option
6256         (anymore).
6258 2003-08-06  Robert Wittek  <r.wittek@gmx.net>
6260         * fvwm/add_window.c (AddWindow):
6261         fixed stickyness across desks over a restart
6263 2003-08-06  olicha  <olivier.chapuis@free.fr>
6265         * fvwm/ewmh.c (EWMH_WindowInit):
6266         (EWMH_SetFrameStrut):
6267         Fixed position of kde tray windows in kicker
6269 2003-07-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6271         * fvwm/module_interface.c (FlushMessageQueue):
6272         retry writing pipe if write returns EINTR
6274 2003-07-28  olicha  <olivier.chapuis@free.fr>
6276         * fvwm/events.c (events_handle_configure_request):
6277         (HandleConfigureRequest):
6278         (__handle_configure_request):
6279         (__handle_cr_on_client):
6280         * fvwm/ewmh.c (ewmh_atom_client_win):
6281         * fvwm/ewmh_intern.h:
6282         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
6283         (EWMH_ProcessClientMessage):
6284         Implemented _NET_MOVERESIZE_WINDOW
6286         * fvwm/fvwm.c (main):
6287         A -Wall fix
6289 2003-07-25  olicha  <olivier.chapuis@free.fr>
6291         * fvwm/ewmh.c (ewmh_HandleWindowType):
6292         Fixed handling of the _NET_WINDOW_TYPE prop when there are more
6293         that one type and we do not support the first one.
6295         * fvwm/expand.c (expand_vars_extended):
6296         Fixed conflict between extended variables name (desk.name and
6297         desk.n)
6299         * fvwm/session.c (callback_save_yourself):
6300         Respect the SmSaveGlobal save type. This should fix some session
6301         locking in the sm protocol
6303         * fvwm/session.c (setSmProperties):
6304         (SessionInit):
6305         Set some sm properties when fvwm start for fixing a problem with
6306         the restart style hint after a restart.
6308         * fvwm/fvwm.c (get_display_name):
6309         (usage):
6310         (main):
6311         * fvwm/session.c (setSmProperties):
6312         * fvwm/fvwm.1.in
6313         Added a possible positive or null arg to --single-screen which
6314         forces fvwm to start on the "current" display and the given
6315         screen. Use this to fix fvwm starting under a session manager:
6316         specify only the screen and not the display.screen for the
6317         restart sm command.
6319         * fvwm/fvwm.c (main):
6320         Fixed possible memory corruption if a display has more than
6321         10 screens.
6323         * fvwm/session.c (*):
6324         Better debuging msg
6326 2003-07-24  Mikhael Goikhman  <migo@homemail.com>
6328         * acinclude.m4:
6329         fixed xft/fontconfig detection with pkg-config
6331         * fvwm/fvwm.1.in:
6332         corrections in some long option names
6334 2003-07-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6336         * fvwm/add_window.c (setup_style_and_decor):
6337         * fvwm/geometry.c (set_window_border_size):
6338         * fvwm/fvwm.h (FvwmWindow):
6339         * fvwm/events.c (HandleShapeNotify):
6340         * fvwm/frame.c (frame_free_move_resize_args):
6341         (frame_setup_shape):
6342         (frame_reshape_border):
6343         fixed resizing of window borders if a window shape was added or deleted
6344         after the initial window setup
6346         * fvwm/update.c (apply_window_updates):
6347         removed unused code
6349         * fvwm/events.c (__cr_detect_icccm_move):
6350         disable motion method detection for shaped windows
6352 2003-07-21  olicha  <olivier.chapuis@free.fr>
6354         * fvwm/add_window.c (setup_window_structure):
6355         * fvwm/session.c (MatchWinToSM):
6356         Preserve is_name_changed window_flags within restart, session loading
6357         and recapture
6359 2003-07-20  olicha  <olivier.chapuis@free.fr>
6361         * fvwm/ewmh.c (EWMH_Init):
6362         fixed _NET_WM_NAME for our ewmh WM_CHECK window
6364         * fvwm/fvwm.c (InternUsefulAtoms):
6365         * fvwm/externs.h:
6366         * fvwm/session.c (GetWindowRole):
6367         Some applications use WINDOW_ROLE and not WM_WINDOW_ROLE
6369         * fvwm/session.c (GetClientID):
6370         Better determination of the CLIENT_LEADER
6372         * fvwm/session.c (setSmProperties):
6373         Set the CloneCommand for gnome-session editor (the sm spec says this
6374         properties is required). Removed the commented XSM ifdef.
6376         * fvwm/session.c (matchWin):
6377         (SaveWindowStates):
6378         Consider client only if it has a client id or a wm command.
6379         Removed the "two entries" session previous commit
6381 2003-07-16  olicha  <olivier.chapuis@free.fr>
6383         * fvwm/session.c (MatchWinToSM):
6384         Fixed restoring session state, if two window session entries have the
6385         same identifier ignore these entries
6387 2003-07-16  olicha  <olivier.chapuis@free.fr>
6389         * NEWS:
6390         * fvwm/style.h (SID_GET_NAME):
6391         (SID_SET_NAME):
6392         (SID_GET_WINDOW_ID):
6393         (SID_SET_WINDOW_ID):
6394         (SID_SET_HAS_NAME):
6395         (SID_GET_HAS_NAME):
6396         (SID_SET_HAS_WINDOW_ID):
6397         (SID_GET_HAS_WINDOW_ID):
6398         (SGET_ID):
6399         (SGET_WINDOW_ID):
6400         (SSET_WINDOW_ID):
6401         (SSET_ID_HAS_NAME):
6402         (SGET_ID_HAS_NAME):
6403         (SSET_ID_HAS_WINDOW_ID):
6404         (SGET_ID_HAS_WINDOW_ID):
6405         * fvwm/style.c (style_ids_are_equals):
6406         (style_id_equals_id):
6407         (styles_have_same_id):
6408         (fw_match_style_id):
6409         (one_fw_can_match_both_ids):
6410         (remove_all_of_style_from_list):
6411         (__simplify_style_list):
6412         (style_parse_one_style_option):
6413         (__style_command):
6414         (style_destroy_style):
6415         (print_styles):
6416         (CMD_Style):
6417         (CMD_WindowStyle):
6418         (CMD_FocusStyle):
6419         (CMD_DestroyStyle):
6420         (CMD_DestroyWindowStyle):
6421         * fvwm/fvwm.h (style_id_t):
6422         (window_style):
6423         * fvwm/functable.c (func_table):
6424         * fvwm/add_window.c (destroy_window):
6425         * fvwm/commands.h:
6426         * fvwm/fvwm.1:
6427         New WindowStyle and DestroyWindowStyle command for setting styles
6428         per window
6430 2003-07-14  Marcus Lundblad  <ml@update.uu.se>
6432         * libs/Flocale.c (FlocaleDrawString):
6433         * libs/FBidi.c (FBidiConvert):
6434         fixed drawing of combining characters in the case where a string
6435         consists of only combining characters
6437 2003-07-13  Marcus Lundblad  <ml@update.uu.se>
6439         * libs/CombineChars.c (CombineChars):
6440         bugfix: array mapping visual to logical position was allocated
6441         to small (factor 2) in decoposing code
6443 2003-07-11  Marcus Lundblad  <ml@update.uu.se>
6445         * libs/Flocale.c (FlocaleEncodeWinString):
6446         fixed a memory leak
6448         * libs/Flocale.c (FlocaleDrawString):
6449         (FlocaleRotatedDrawString):
6450         removed some code duplication
6452 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6454         * libs/CombineChars.c (combclass_table):
6455         (CombineChars):
6456         fixed supporting drawing marks superimposed that are in a combining
6457         class
6459 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6461         * libs/Flocale.c (FlocaleRotateDrawString):
6462         (FlocaleDrawString)
6463         fixed core dump when composing characters can't be converted to
6464         locale charset
6466 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6468         * AUTHORS:
6469         updated
6471 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6473         * todo-2.6 (todo):
6474         updated summary
6476 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6478         * NEWS:
6479         updated with reagrds to combing characters
6481 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6483         * todo-2.6
6484         closed B.8
6486 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6488         * libs/Flocale.c (FlocaleEncodeString):
6489         (FlocaleEncodeWinString):
6490         (FlocaleRotateDrawString):
6491         (FlocaleDrawString):
6492         (FlocaleDrawUnderline):
6493         fixed rendering combining characters using Unicode font in a
6494         non-UTF-8 locale
6496 2003-07-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6498         * fvwm/fvwm.1.in:
6499         renamed MoveWindowByProgramMethod to MoveByProgramMethod
6501 2003-07-08  Marcus Lundblad  <ml@update.uu.se>
6503         * libs/FBidi.h:
6504         fixed FBidi.h macro to work with no FriBIDI
6506 2003-07-08  Marcus Lundblad  <ml@update.uu.se>
6508         * libs/CombineChars.h (CombineChars):
6509         * libs/CombineChars.c (CombineChars):
6510         * libs/FBidi.h (FBidiConvert):
6511         * libs/FBidi.c (FBidiConvert):
6512         * libs/Flocale.c (FlocaleEncodeString):
6513         (FlocaleEncodeWinString):
6514         (FlocaleDrawUnderline):
6515         (FlocaleTextWidth):
6516         fixed drawing of underlines on characters to work in with BIDI
6517         and combining characters
6519 2003-07-08  Mikhael Goikhman  <migo@homemail.com>
6521         * todo-2.6:
6522         closed D.1 with "no consensus" resolution
6524 2003-07-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6526         * fvwm/fvwm.1.in:
6527         documented tear off menus
6529         * fvwm/placement.c (PlaceWindow):
6530         StartsOnPage + SkipMapping overrides PPosition
6532 2003-07-07  Mikhael Goikhman  <migo@homemail.com>
6534         * fvwm/functable.c:
6535         solved a problem with CMD_Dummy and exact command spelling
6537         * libs/CombineChars.c:
6538         * libs/CombineChars.h:
6539         * libs/FBidi.c:
6540         minor reformattings (use TABs not 8 spaces and a space after keywords
6541         like for, if or while)
6543 2003-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6545         * fvwm/update.c (apply_window_updates):
6546         * fvwm/update.h:
6547         * fvwm/add_window.c (setup_style_and_decor):
6548         * fvwm/style.h:
6549         * fvwm/style.c (style_parse_one_style_option):
6550         (check_window_style_change):
6551         new style MoveWindowByProgramMethod
6553         * libs/PictureImageLoader.c (PImageLoadXpm):
6554         use RETSIGTYPE and SIGNAL_RETURN for all signal handlers
6556         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6557         implemented _NET_WM_STATE_FULLSCREEN handling
6559         * fvwm/move_resize.c (GetOnePositionArgument):
6560         fixed parsing of "+-x +-y" Move arguments
6561         (CMD_Maximize):
6562         use get_page_offset_check_visible
6564         * fvwm/geometry.c (get_page_offset_check_visible):
6565         new convenience function
6567         * fvwm/events.c (__handle_cr_on_client):
6568         fixed handling of gravities other than NW or Static
6569         (__cr_detect_icccm_move):
6570         fixed several bugs
6572 2003-07-06  Marcus Lundblad  <ml@update.uu.se>
6574         * libs/BidiJoin.c:
6575         * libs/BidiJoin.h:
6576         * libs/BidiJoin.c:
6577         * libs/BidiJoin.h:
6578         * libs/CombineChars.c:
6579         * libs/CombineChars.h:
6580         * libs/Flocale.c (FlocaleEncodeString):
6581         * libs/FBidi.c:
6582         * libs/FBidi.h:
6583         * libs/Makefile.am:
6584         Removed "F" prefix on FBidiJoin.c, FBidiJoin.h, FCombineChars.c and
6585         FCombineChars.h
6587 2003-07-06  olicha  <olivier.chapuis@free.fr>
6589         * libs/FRender.c (FRenderRender):
6590         Fixed compilation
6592 2003-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6594         * fvwm/ewmh.c (ewmh_check_wm_pid):
6595         (EWMH_WindowInit):
6596         detect whether a window has _NET_WM_PID set; use that to detect ICCCM
6597         compliant ConfigureNotify handling
6599 2003-07-05  Marcus Lundblad  <ml@update.uu.se>
6601         * libs/Flocale.c (FlocaleDrawUnderline):
6602         Commented out some non-working new code
6604 2003-07-05  Marcus Lundblad  <ml@update.uu.se>
6606         * libs/Flocale.c (FlocaleDrawString):
6607         fixed drawing superimposed characters with a fontset
6609 2003-07-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6611         * fvwm/events.c (__cr_detect_icccm_move):
6612         (__handle_cr_on_client):
6613         (__cr_get_grav_position):
6614         (__cr_get_static_position):
6615         * fvwm/window_flags.h:
6616         * fvwm/fvwm.h:
6617         try to autodetect whether application uses the icccm way of moving
6618         windows of the traditional way always using static gravity
6620         * acconfig.h:
6621         moved SIGNAL_RETURN macro definition to acconfig.h
6623         * fvwm/module_interface.c (DeadPipe):
6624         * fvwm/fvwm.c (SigDone):
6625         (Restart):
6626         (ReapChildren):
6627         use SIGNAL_RETURN macro
6629         * fvwm/events.c (__handle_cr_on_client):
6630         (__merge_cr_moveresize):
6631         (__cr_detect_icccm_move):
6633         * fvwm/events.c (__handle_cr_on_unmanaged):
6634         (__handle_cr_on_icon):
6635         (__handle_cr_on_shaped):
6636         (__handle_cr_restack):
6637         (__handle_cr_on_client):
6638         (HandleConfigureRequest):
6639         split the ConfigureRequest code into multiple functions
6641         * fvwm/update.c (apply_window_updates):
6642         fixed drawing of window decorations when "Style * Neverfocus" is used
6644         * fvwm/events.c (HandleKeyPress):
6645         fixed a bug with key binding contexts
6647         * fvwm/functions.c (__execute_function):
6648         * fvwm/expand.c (expand_vars):
6649         (expand_vars_extended):
6650         new extended variable $[func.context]
6652         * libs/Bindings.h:
6653         * libs/Bindings.c:
6654         moved some code to the new files
6656         * libs/charmap.h:
6657         * libs/charmap.c:
6658         * libs/modifiers.h:
6659         * libs/modifiers.c:
6660         * libs/wcontext.c:
6661         * libs/wcontext.h:
6662         new files
6664         * libs/Bindings.c:
6665         fixed a problem with uninitialised global variable
6667 2003-07-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6669         * libs/Bindings.c (key_modifiers):
6670         moved to new file wcontext.c
6672         * libs/gravity.c (gravity_parse_dir_argument):
6673         added aliases for compass directions:
6674           - = N
6675           _ = S
6676           [ = W
6677           ] = E
6678           ^ = NE
6679           > = SE
6680           v = SW
6681           [ = nw
6682           . = center
6684 2003-07-02  Marcus Lundblad  <ml@update.uu.se>
6686         * libs/FBidi.h:
6687         * libs/Flocale.c (FlocaleDrawString):
6688         (FlocaleRotateDrawString):
6689         Fixes to work without Fribidi
6691 2003-07-01  Marcus Lundblad  <ml@update.uu.se>
6693         * todo-2.6:
6694         Updated
6696 2003-07-01  Marcus Lundblad  <ml@update.uu.se>
6698         * libs/FbidiJoin.c (get_shaped_combined_char):
6699         (shape_n_join):
6700         Removed unused (get_shaped_combined_char) and commented out code
6701         Combining ligatures done in FCombineChars
6703 2003-07-01  Marcus Lundblad  <ml@update.uu.se>
6705         * libs/Flocale.c (FlocaleDrawString):
6706         (FlocaleRotateDrawString):
6707         (FlocaleTextWidth):
6708         * libs/FBidi.h:
6709         * libs/FBidi.c (FBidiConvert):
6710         * libs/FBidiJoin.c:
6711         * libs/FCombineChars.h:
6712         * libs/FCombineChars.c (FCombineChars):
6713         Added support for drawing superimposed combining characters
6715 2003-07-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6717         * fvwm/commands.h:
6718         * fvwm/functable.c (func_table):
6719         * fvwm/functions.c (CMD_TearMenuOff):
6720         (CMD_Title):
6721         (CMD_Silent):
6722         (CMD_Function):
6723         (CMD_KeepRc):
6724         merged all dummy commands into one: CMD_Dummy
6726 2003-07-01  olicha  <olivier.chapuis@free.fr>
6728         * fvwm/menus.c (DestroyMenu):
6729         (do_menu):
6730         Cleanup
6732 2003-07-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6734         * fvwm/menustyle.c (menustyle_copy):
6735         (copy_menu_style):
6736         renamed function
6738 2003-06-30  Marcus Lundblad  <ml@update.uu.se>
6740         * todo-2.6:
6741         Updated
6743 2003-06-30  olicha  <olivier.chapuis@free.fr>
6745         * fvwm/menus.c (do_menu):
6746         (DestroyMenu):
6747         (do_menu_close_tear_off_menu):
6748         (menu_close_tear_off_menu):
6749         Allowed to destroy tear off menu!
6751         * fvwm/menus.c (menu_tear_off):
6752         (menu_close_tear_off_menu):
6753         (do_menu_close_tear_off_menu):
6754         (clone_menu_root_static):
6755         (pop_menu_up):
6756         (menu_tear_off):
6757         (make_menu_window):
6758         (make_menu):
6759         (update_menu):
6760         Fixed client leaks (only create new client for menu if it is a tear off
6761         menu). Created a dedicated menu style for each tear off menu.
6763         * fvwm/menustyle.c (CMD_CopyMenuStyle):
6764         (copy_menu_style):
6765         * fvwm/menustyle.h:
6766         Split CMD_CopyMenuStyle into CMD_CopyMenuStyle and copy_menu_style
6768 2003-06-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6770         * fvwm/virtual.c (do_move_window_to_desk):
6771         (UnmapDesk):
6772         fixed "Visible" condition on non current desks
6774 2003-06-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6776         * **/*.c:
6777         * **/*.h:
6778         shortened some comments
6779         removed GPL from .h files
6780         added GPL to all .c files
6781         include config.h in all .c files
6782         added "/* -*-c-*- */" where missing
6783         some reformatting and reindenting
6785         * fvwm/module_interface.c:
6786         * fvwm/module_interface.h:
6787         * libs/Fft.c:
6788         * libs/Flocale.c:
6789         * libs/gravity.h:
6790         * libs/Flocale.h:
6791         * fvwm/screen.h:
6792         * fvwm/misc.c:
6793         * fvwm/misc.h:
6794         * fvwm/windowshade.c:
6795         * fvwm/virtual.c:
6796         * fvwm/conditional.c:
6797         * fvwm/geometry.h:
6798         * fvwm/geometry.c:
6799         * fvwm/borders.c:
6800         * fvwm/frame.h:
6801         * fvwm/frame.c:
6802         * fvwm/update.c:
6803         * fvwm/session.c:
6804         * fvwm/placement.c:
6805         * fvwm/menus.c:
6806         * fvwm/icons.c:
6807         * fvwm/events.c:
6808         * fvwm/add_window.c:
6809         * fvwm/session.h:
6810         * fvwm/placement.h:
6811         * fvwm/icons.h:
6812         * fvwm/eventhandler.h:
6813         * fvwm/fvwm.h:
6814         * fvwm/add_window.h:
6815         * fvwm/repeat.c:
6816         * fvwm/functions.c:
6817         * fvwm/functable.c:
6818         * fvwm/functable.h:
6819         * fvwm/functions.h:
6820         renamed types func_type, repeat_t, initial_window_options_t,
6821         frame_title_layout_type, rotation_t, direction_t, fvwm_msg_t,
6822         last_added_item_type, common_flags_type, multi_direction_type,
6823         msg_masks_type to ..._t
6825         * fvwm/functions.c (__execute_function):
6826         (execute_complex_function):
6827         * fvwm/condrc.c (condrc_init):
6828         new function in new file to encapsulate all cond_rc_t handling
6830         * fvwm/condrc.h:
6831         * fvwm/fvwm.h (cond_rc_t):
6832         (cond_rc_enum):
6833         moved typed to new file
6835         * fvwm/functable.h:
6836         * fvwm/commands.h:
6837         * fvwm/functable.c (func_table):
6838         * fvwm/functions.c (__run_complex_function_items):
6839         (__execute_function):
6841         * fvwm/conditional.c (CMD_Break):
6842         (__rc_matches_rcstring_consume):
6843         Break takes the number of function levels to break out of as an
6844         argument
6846         * fvwm/expand.c (expand_vars_extended):
6847         * fvwm/conditional.c (circulate_cmd):
6848         (select_cmd):
6849         (direction_cmd):
6850         (__rc_matches_rcstring_consume):
6851         (CMD_All):
6852         (CMD_WindowId):
6853         (CMD_TestRc):
6854         (CMD_Test):
6855         * fvwm/read.c:
6856         * fvwm/read.h:
6857         * fvwm/functions.h:
6858         * fvwm/functions.c:
6859         (__run_complex_function_items):
6860         (execute_complex_function):
6861         * fvwm/expand.h:
6862         * fvwm/expand.c:
6863         * fvwm/fvwm.h:
6864         * fvwm/conditional.c:
6865         renamed fvwm_cond_func_rc by cond_rc_t
6866         made a type a struct
6867         added a member to indicate the number of function levels to break out
6868         of
6870         * fvwm/functable.c (func_table):
6871         * fvwm/conditional.c (CMD_TestRc):
6872         replaced conditional commands:
6873                 Cond -> TestRc
6874                 CondCase -> KeepRc TestRc
6875                 On -> Test
6876         (__rc_matches_rcstring_consume):
6877         new function
6879         * fvwm/conditional.c (CMD_CondCase):
6880         fixed the CondCase command
6882 2003-06-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6884         * configure.in:
6885         new configure option --deisable-gtk to disable detection of gtk library
6887         * fvwm/fvwm.1.in:
6888         cleaned up documentation of conditional commands
6889         general man page cleanup
6891 2003-06-17  Dan Espen  <dane@mk.telcordia.com>
6893         * fvwm/builtins.c (ReadDecorFace): Off by one patch from
6894         Anil Madhavapeddy.
6896 2003-06-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6898         * fvwm/fvwm.1.in:
6899         cleaned up of CirculateHit... conditions
6901 2003-06-15  olicha  <olivier.chapuis@free.fr>
6903         * fvwm/style.c (__simplify_style_list):
6904         Fixed is_merged_allowed: rest it to True when cur change
6905         Added "upward" simplification
6907 2003-06-14  olicha  <olivier.chapuis@free.fr>
6909         * fvwm/style.c (__simplify_style_list):
6910         (blocksintersect):
6911         (blockand):
6912         Fixed blockand which always returned True. Added blocksintersect which
6913         returns the same value as blockand but faster.
6915 2003-06-13  olicha  <olivier.chapuis@free.fr>
6917         * configure.in:
6918         * acinclude.m4:
6919         Fixed fontconfig and xft2 for version without *-config binnary. Used
6920         pkg-config for this: new macro AM_CHECK_PKG_CONFIG. Really reject
6921         fontconfig and xft2 if the version is < the required version
6922         (even if --disable-*test).
6924 2003-06-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6926         * libs/Graphics.c:
6927         define M_PI and M_PI_2 if they are not defined by math.h
6929 2003-06-10  Mikhael Goikhman  <migo@homemail.com>
6931         * libs/Colorset.c (LoadColorset):
6932         added a note to update Colorsets.pm too when the format is changed
6934 2003-06-09  Mikhael Goikhman  <migo@homemail.com>
6936         * WindowStyle_proposal.txt:
6937         s/WindowId/ThisWindow/ and other minor changes
6939 2003-06-06  olicha  <olivier.chapuis@free.fr>
6941         * libs/PictureImageLoader.c (PImageLoadPng):
6942         Fixed loading of png images if the caller want no alpha
6944 2003-06-04  olicha  <olivier.chapuis@free.fr>
6946         * libs/Flocale.c (FlocaleEncodeString):
6947         Fixed memroy leaks
6949 2003-06-03  Mikhael Goikhman  <migo@homemail.com>
6951         * libs/Makefile.am:
6952         only FCombineChars.c was distributed not FCombineChars.h
6954 2003-06-03  Marcus Lundblad  <ml@update.uu.se>
6956         * libs/FCombineChars.c (convert_to_utf8)
6957         fixed a bug when converting back to UTF-8 and a bug giving
6958         garbage at end of string in some cases
6960         * libs/Flocale.c (FlocaleEncodeString)
6961         fixed problem regarding combining-characters when BIDI is used
6963 2003-05-31  Marcus Lundblad  <ml@update.uu.se>
6965         * libs/Makefile.am:
6966         * libs/Flocale.c (FlocaleEncodeString):
6967         * libs/FCombineChars.c:
6968         * libs/FCombineChars.h:
6969         implemeted support for combining characters
6971 2003-05-31  Mikhael Goikhman  <migo@homemail.com>
6973         * configure.in:
6974         set the version 2.5.8
6976 2003-05-30  Mikhael Goikhman  <migo@homemail.com>
6978         * fvwm/builtins.c:
6979         * fvwm/fvwm2.1:
6980         SetEnv with only one parameter is ignored now
6982 2003-05-30  Dan Espen  <dane@mk.telcordia.com>
6984         * NEWS: Add 2.4.16 news.
6986 2003-05-29  Mikhael Goikhman  <migo@homemail.com>
6988         * fvwm/functions.c (expand_extended_var):
6989         (expand):
6990         fixed expanding variables that are empty, for example $[w.resource]
6991         or $[gt.a] or $[version.info] or $[EMPTY_STRING]
6993         * fvwm/fvwm.1.in:
6994         s/$w/$[w.id]/
6996 2003-05-29  olicha  <olivier.chapuis@free.fr>
6998         * fvwm/ewmh.c (ewmh_atom_wm_state):
6999         Do not claim that we support _NET_WM_STATE_FULLSCREEN
7001 2003-05-28  olicha  <olivier.chapuis@free.fr>
7003         * NEWS:
7004         A TaskBar news
7006 2003-05-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7008         * fvwm/focus.c (__update_windowlist):
7009         don't fiddle with the window list for windows that are going to be
7010         destroyed
7012         * fvwm/add_window.c (delete_client_context):
7013         (destroy_auxiliary_windows):
7014         (destroy_window):
7015         fixed empty frame windows when X reused the window id for a new window
7016         while the old one was scheduled to be destroyed
7018 2003-05-26  olicha  <olivier.chapuis@free.fr>
7020         * fvwm/icons.c (GetIconBitmap):
7021         (set_icon_pixmap_background):
7022         (CreateIconWindow):
7023         (DrawIconPixmapWindow):
7024         (DrawIconWindow):
7025         Fixed loading of application supplied pixmap on 8/24 depth screen
7027 2003-05-25  Dan Espen  <dane@mk.telcordia.com>
7029         * fvwm/builtins.c (CMD_Exec): Another attempt to fix problem with
7030         Rox Filer.
7032         * fvwm/decorations.c: Sync up motif hints structure to aix,hp,
7033         solaris.
7035 2003-05-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7037         * fvwm/misc.c (GrabEm):
7038         do not confine the pointer to the root window when grabbed; this can
7039         cause the pointer to be warped to another screen
7040         * fvwm/menus.c (get_menu_options):
7041         fixed placement of menus on Xinerama screens
7042         * libs/FScreen.c (FScreenGetResistanceRect):
7043         fixed function to do something useful
7044         * libs/Flocale.c (FlocaleDrawString):
7045         support font shadowing without colorsets
7046         * libs/ColorUtils.c:
7047         reformatted file
7048         * fvwm/menuitem.c (menuitem_paint):
7049         do not use colorsets in menus if they are not defined
7050         * fvwm/menustyle.c (menustyle_parse_style):
7051         fixed initialisation of MenuStyle colorsets when mwm/fvwm menu style is
7052         issued again
7054 2003-05-23  olicha  <olivier.chapuis@free.fr>
7056         * fvwm/bindings.c (ParseBinding):
7057         (bind_get_bound_button_contexts):
7058         * libs/Bindings.c (GrabWindowButton):
7059         Fixed window button grabbing
7061 2003-05-22  olicha  <olivier.chapuis@free.fr>
7063         * fvwm/colorset.c (parse_colorset):
7064         Fixed an uninit mem
7066         * fvwm/borders.c (border_fill_pixmap_background):
7067         Fixed problem with depth 1 pixmap
7069         * fvwm/conditional.c (CMD_On):
7070         Fixed memory leaks
7072         * fvwm/conditional.c (CreateConditionMask):
7073         Fixed memory leaks for layer and state
7075 2003-05-22  Mikhael Goikhman  <migo@homemail.com>
7077         * configure.in:
7078         added perllib/FVWM/Tracker/Makefile
7080 2003-05-22  olicha  <olivier.chapuis@free.fr>
7082         * fvwm/fvwm.1.in:
7083         * fvwm/style.h:
7084         * fvwm/style.c (print_styles):
7085         * fvwm/builtins.c (CMD_PrintInfo):
7086         New style subject to PrintInfo
7088 2003-05-20  olicha  <olivier.chapuis@free.fr>
7090         * libs/Flocale.c (FlocaleGetFontOrFontSet):
7091         Allowed empty xft font name
7093         * libs/Makefile.am:
7094         * libs/flist.c (new file):
7095         * libs/flist.h (new file):
7096         Added a flist structure and some basic function for handling such
7097         stucture
7099         * libs/FGettext.c (*):
7100         Use the new flist struct and functions interface
7102         * fvwm/screen.h (ScreenInfo):
7103         * fvwm/update.c (destroy_scheduled_windows):
7104         * fvwm/add_window.c (destroy_window):
7105         Added a list for the windows which are scheduled for destroy
7106         Remove a fw at once from the fw list when we destroy_window
7108 2003-05-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7110         * fvwm/style.c (CMD_DestroyStyle):
7111         do not update windows if no style was deleted
7112         (check_window_style_change):
7113         fixed update of window styles w/ DestroyStyle
7115 2003-05-18  olicha  <olivier.chapuis@free.fr>
7117         * fvwm/conditional.c (CMD_On):
7118         Added x,r,w,f and i file condition to the On command
7120         * fvwm/add_window.c (destroy_window):
7121         Fixed a memory leak (a FvwmWindow !) when a window is not destroyed
7122         but scheduled for destroy. Not sure that the fix is good.
7124         * fvwm/functions.c (__execute_function):
7125         * libs/defaults.h:
7126         Limited the depth of function to MAX_FUNCTION_DEPTH (=512).
7127         This fixes some cores dumps with "recursives" functions
7129         * fvwm/borders.c (border_create_root_transparent_pixmap):
7130         (border_draw_decor_to_pixmap):
7131         Fixed a core dump with a root transparent rotated title
7132         Fixed X errors 56 with RootTransparent titlebar and no E pixmap
7134         * libs/FGettext.c (fgettext_add_one_path):
7135         (FGettextInit):
7136         (FGettextSetLocalePath):
7137         Fixed memory leak and chainning
7139         * fvwm/builtins.c (CMD_PrintInfo):
7140         Fixed a parsing leak
7142         * fvwm/conditional.c (Circulate):
7143         Fixed a mask memory leaks
7145         * libs/defaults.h:
7146         * libs/Flocale.c (FlocaleGetFont):
7147         (FlocaleGetFontSet):
7148         (FlocaleGetFftFont):
7149         Fixed a core dump when a 0 font is given with an encoding hints.
7150         Added a default FFT font
7152         * fvwm/builtins.c (CMD_DefaultFont):
7153         Fixed a core dump when the default font change and a redraw
7154         (icon or window) is proceeded before flush_window_updates is called
7156         * fvwm/menustyle.c (CMD_CopyMenuStyle):
7157         Fixed gradients copy
7159         * fvwm/menustyle.c (menustyle_parse_style):
7160         Fixed UMR's related to colorset
7162         * fvwm/builtins.c (ReadDecorFace):
7163         Removed inconsistent #if 0 code and comments about leak and MiniIcon
7164         decor style.
7166         * fvwm/menustyle.h:
7167         * fvwm/menustyle.c (menustyle_free):
7168         Fixed a fore stipple gc leak
7170         * fvwm/windowlist.c (CMD_WindowList):
7171         Fixed a sor_keyname memory leak
7173         * fvwm/fvwm.c (ResetAllButtons):
7174         Fixed the default buttons memory leak
7176 2003-05-08  olicha  <olivier.chapuis@free.fr>
7178         * fvwm/windowlist.c (CMD_WindowList):
7179         Fixed a memory leak if MaxLabelWidth is used
7181 2003-05-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7183         * fvwm/functions.c (__context_has_window):
7184         (__execute_function):
7185         * fvwm/functions.h:
7186         fixed excution of functions requiring a window without a window when
7187         called with "silent" from a complex function
7189 2003-05-07  olicha  <olivier.chapuis@free.fr>
7191         * libs/System.c (searchPath):
7192         Fixed a core dump
7194 2003-05-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7196         * fvwm/move_resize.c (__move_loop):
7197         (__resize_window):
7198         fixed core dumps
7200 2003-05-03  olicha  <olivier.chapuis@free.fr>
7202         * todo-2.6:
7203         Updated
7205 2003-05-01  Bob Woodside  <dumbledore@woodsway.com>
7207         * fvwm/NEWS:
7208         Minor typo corrections.
7210 2003-04-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7212         * fvwm/move_resize.c (__move_loop):
7213         fixed UMR
7214         removed debug code
7215         (__resize_window):
7216         fixed UMR
7218 2003-04-28  olicha  <olivier.chapuis@free.fr>
7220         * fvwm/ewmh.c (ewmh_atom_wm_state):
7221         (ewmh_HandleDock):
7222         * fvwm/ewmh_events.c (ewmh_WMStateStaysOnTop):
7223         (ewmh_WMStateStaysOnBottom):
7224         Fixed EwmhUseStackingHints and EwmhIgnoreStackingHints style update
7226 2003-04-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7228         * fvwm/module_interface.c (do_execute_module):
7229         * fvwm/fvwm.c (main):
7230         * libs/envvar.c (flib_putenv):
7231         * fvwm/builtins.c (add_to_env_list):
7232         (CMD_SetEnv):
7233         (CMD_UnsetEnv):
7234         fixed putenv memory leaks
7236         * libs/envvar.c (strIns):
7237         removed debug code
7238         reformatted file
7239         (flib_putenv):
7240         replacement for putenv without memory leaks
7242         * fvwm/frame.c:
7243         removed debug code
7245         * fvwm/fvwm.c (StartupStuff):
7246         fixed UMR
7247         * fvwm/add_window.c (free_window_names):
7248         fixed memory leaks
7249         * fvwm/events.c (HandlePropertyNotify):
7250         fixed memory leak
7251         * fvwm/menus.c (do_menu):
7252         fixed core dump
7253         (__mloop_exit_selected):
7254         safety patch
7255         * fvwm/menucmd.c (menu_func):
7256         fixed memory leak
7258         * fvwm/builtins.c (CMD_Destroy):
7259         (CMD_Close):
7260         call destroy_window right after XKillClient; do not wait for the window
7261         to die on its own
7263         * fvwm/menucmd.c (menu_func):
7264         * fvwm/windowlist.c (CMD_WindowList):
7265         fixed core dumps
7267 2003-04-26  Mikhael Goikhman  <migo@homemail.com>
7269         * INSTALL.fvwm:
7270         several updates (FvwmGtk, gettext)
7272 2003-04-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7274         * fvwm/menucmd.c (menu_func):
7275         * fvwm/windowlist.c (CMD_WindowList):
7276         * fvwm/menus.h:
7277         * fvwm/menus.c (is_double_click):
7278         (pop_menu_up):
7279         (pop_menu_down):
7280         (pop_menu_down_and_repaint_parent):
7281         (__mloop_get_event_timeout_loop):
7282         (__mloop_get_event):
7283         (__mloop_handle_event):
7284         (__mloop_select_item):
7285         (__mloop_make_popup):
7286         (__mloop_get_mi_actions):
7287         (__mloop_do_popup):
7288         (__mloop_do_menu):
7289         (__mloop_handle_action_with_mi):
7290         (__mloop_handle_action_without_mi):
7291         (__mloop_exit):
7292         (menu_enter_tear_off_menu):
7293         (menu_close_tear_off_menu):
7294         (do_menu):
7295         replaced the pfw and pcontext members of the MenuParameters structure
7296         with an execution context pointer
7297         (_menu_execute_function):
7298         wrapper function to simplyfy command execution from within menus
7299         (do_menu):
7300         fixed warping pointer to first menu item when invoked with the mouse
7302         * fvwm/execcontext.c:
7303         removed debug code
7305 2003-04-26  Mikhael Goikhman  <migo@homemail.com>
7307         * libs/XError.c:
7308         reformatted
7310         * fvwm.1.in:
7311         * fvwm.c:
7312         replaced "Mouse 0 R N Menu MenuFvwmRoot" binding with "Mouse 1 R A"
7314 2003-04-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7316         * fvwm/menus.c (do_menu):
7317         the NoWarp position hint option works with root menus too
7319         * fvwm/ConfigFvwmDefaults:
7320         removed GrabFocusOff and GrabFocusTransient since they nullify the
7321         default with the plain focus policies
7323 2003-04-24  olicha  <olivier.chapuis@free.fr>
7325         * fvwm/ewmh_events.c (ewmh_WMStateStaysOnBottom):
7326         Fixed a miss print in my previous commit
7328         * fvwm/ewmh_events.c (ewmh_WMStateStaysOnBottom):
7329         (ewmh_MoveResize)
7330         (ewmh_WMStateStaysOnBottom):
7331         * fvwm/ewmh.c (ewmh_AllowsMinimize):
7332         * fvwm/ewmh_intern.h:
7333         Added comment on the implementation at the top of ewmh.c.
7334         Fixed _NET_WM_MOVERESIZE.  Added _NET_WM_ACTION_MINIMIZE in
7335         _NET_WM_ALLOWED_ACTIONS (almost nothing todo). Added
7336         _NET_WM_STATE_ABOVE (just an alias of _NET_WM_STATE_STAYS_ON_TOP)
7337         and _NET_WM_STATE_BELOW.
7339         * AUTHORS:
7340         Added David Fries. Updated my entries.
7342         * todo-2.6:
7343         One update
7345 2003-04-23  olicha  <olivier.chapuis@free.fr>
7347         * fvwm/module_interface.c (CMD_KillModule):
7348         Fixed a leak when we have an alias
7350         * libs/Picture.c (PFreeFvwmPictureData):
7351         * libs/Picture.h:
7352         New interface function for just freeing the allocated data (not
7353         the pixmaps).
7355 2003-04-22  olicha  <olivier.chapuis@free.fr>
7357         * fvwm/colorset.c (get_root_pixmap):
7358         Fixed a minor memory leak
7360         * fvwm/functions.c (execute_complex_function):
7361         Fixed uninitialized d.type
7363         * libs/Ficonv.c (FiconvSetupConversion):
7364         (FiconvUtf8ToCharset):
7365         (FiconvCharsetToUtf8):
7366         Formating clean-up
7368         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
7369         (EWMH_WMIconName):
7370         (EWMH_WMName):
7371         Fixed a core dump and safety check related to not loaded font
7373 2003-04-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7375         * libs/Module.h:
7376         reformatted
7378 2003-04-16  olicha  <olivier.chapuis@free.fr>
7380         * fvwm/ewmh_events.c (ewmh_CloseWindow):
7381         (ewmh_MoveResize):
7382         (ewmh_WMState):
7383         (ewmh_WMStateHidden):
7384         Check if functions are allowed
7386         * fvwm/ewmh.c (ewmh_HandleDesktop):
7387         (ewmh_HandleDock):
7388         Set Desktop and Dock uniconifiable and unmaximazable
7390         * fvwm/menuitem.c (menuitem_paint):
7391         * fvwm/screen.h:
7392         Fixed greyed action with EWMH desktop
7394 2003-04-16  Mikhael Goikhman  <migo@homemail.com>
7396         * NEWS:
7397         documented FvwmEvent behaviour of executing window related event
7398         handlers within a window context
7400         * fvwm/fvwm.1.in:
7401         updated WindowId entry
7403 2003-04-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7405         * fvwm/schedule.c (deschedule):
7406         (squeue_execute):
7407         (execute_obj_func):
7408         * fvwm/module_interface.c (DeleteMessageQueueBuff):
7409         (ExecuteCommandQueue):
7410         * libs/queue.c (fqueue_init):
7411         (fqueue_remove_or_operate_from_front):
7412         (fqueue_remove_or_operate_from_end):
7413         (fqueue_remove_or_operate_all):
7414         (fqueue_init):
7415         (fqueue_unlock_queue):
7416         (fqueue_lock_queue):
7417         (fqueue_add_at_front):
7418         (fqueue_add_inside):
7419         (fqueue_get_first):
7420         core dump fixes
7422         * libs/queue.c (fqueue_remove_or_operate_all):
7423         (fqueue_remove_or_operate_from_end):
7424         (fqueue_remove_or_operate_from_front):
7425         * fvwm/module_interface.c (DeleteMessageQueueBuff):
7426         (ExecuteCommandQueue):
7427         * fvwm/schedule.c (deschedule):
7428         (check_deschedule_obj_func):
7429         (deschedule_obj_func):
7430         (squeue_execute):
7431         (check_execute_obj_func):
7432         (execute_obj_func):
7433         (copy_obj_func):
7434         core dump fixes
7436 2003-04-15  Mikhael Goikhman  <migo@homemail.com>
7438         * fvwm/ConfigFvwmDefaults:
7439         * fvwm/fvwm.1.in:
7440         * fvwm/windowlist.c:
7441         * sample.fvwmrc/system.fvwm2rc-sample-95:
7442         * NEWS:
7443         WindowListFunc is executed now within a window context,
7444         so "WindowId $0" is not needed anymore in its definition
7446 2003-04-14  olicha  <olivier.chapuis@free.fr>
7448         * fvwm/fvwm.1.in:
7449         * NEWS:
7450         Documented LocalePath and $[gt.str]. FvwmScript news.
7452         * fvwm/expand.c (expand_vars_extended):
7453         Fixed $[gt.str] expansion
7455         * configure.in:
7456         New gettext domain FvwmScript
7458         * libs/FGettext.c (FGettextCopy):
7459         * libs/FGettext.h:
7460         New interface function which copies the string
7462 2003-04-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7464         * fvwm/conditional.c (CMD_Cond):
7465         allow to negate the condition code with '!' prefix
7467         * fvwm/schedule.c (CMD_Schedule):
7468         (CMD_Deschedule):
7469         support hexadecimal ids
7471         * libs/Parse.c (GetIntegerArguments):
7472         (_get_suffixed_integer_arguments):
7473         (GetSuffixedIntegerArguments):
7474         (GetIntegerArgumentsAnyBase):
7475         new utitily function to allow hexadecimal integer arguments
7477 2003-04-10  olicha  <olivier.chapuis@free.fr>
7479         * libs/Flocale.c (FlocaleGetFullNameOfFontStruct):
7480         (FlocaleGetCharsetOfFontStruct):
7481         (FlocaleGetCharsetFromName):
7482         (FlocaleFixNameForFontSet):
7483         (FlocaleGetFontSet):
7484         (FlocalePrintLocaleInfo):
7485         * libs/FlocaleCharset.h:
7486         * libs/FlocaleCharset.c (FlocaleCharsetIsCharsetXLocale):
7487         (FlocaleCharsetPrintXOMInfo):
7488         Load a FontSet only when this is reasonable. Finished PrintInfo locale 2
7490 2003-04-08  olicha  <olivier.chapuis@free.fr>
7492         * libs/defaults.h (FLOCALE_MB_FALLBACK_FONT):
7493         fixed the default font name
7495 2003-04-07  Mikhael Goikhman  <migo@homemail.com>
7497         * fvwm/events.c (HandlePropertyNotify):
7498         * fvwm/ewmh_names.c (EWMH_WMName, EWMH_WMIconName):
7499         completely ignore application requests to set exactly the same
7500         window name or icon name (xmms sets it every second),
7501         this avoids some redundant module messages and redraws
7503 2003-04-05  Mikhael Goikhman  <migo@homemail.com>
7505         * Makefile.am:
7506         fixed DIST
7508 2003-04-04  olicha  <olivier.chapuis@free.fr>
7510         * configure.in:
7511         Fixed a miss print in fribidi config check
7513 2003-04-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7515         * fvwm/focus.c (__restore_focus_after_unmap):
7516         iconified windows without an icon do not receive focus
7518 2003-03-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7520         * fvwm/virtual (CMD_GotoDeskAndPage):
7521         different "GotoDeskAndPage prev" fix that works with any viewports, not
7522         just multiples of the screen size
7524 2003-03-29  Mikhael Goikhman  <migo@homemail.com>
7526         * fvwm/virtual (CMD_GotoDeskAndPage):
7527         fixed "GotoDeskAndPage prev" with desks larger than 2x2
7529 2003-03-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7531         * ETHICAL_LICENSE:
7532         added file
7534         * fvwm/menucmd.c (menu_func):
7535         fixed double key presses to choose default menu action
7537         * fvwm/focus.c (__update_windowlist):
7538         fixed order of window list with SloopyFocus when using the Focus
7539         command
7541 2003-03-22  Mikhael Goikhman  <migo@homemail.com>
7543         * fvwm/fvwm.1.in:
7544         clarified some things, typo fixed
7546 2003-03-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7548         * libs/Colorset.c (CreateBackgroundPixmap):
7549         (GetWindowBackgroundPixmapSize):
7550         (get_aspect_dimensions):
7551         fixed size calculation of aspect pixmaps
7553 2003-03-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7555         * fvwm/icons.c (clear_icon):
7556         (clear_icon):
7557         (AutoPlaceIcon):
7558         (Iconify):
7559         * fvwm/geometry.c (get_icon_geometry):
7560         (modify_icon_position):
7561         set a valid icon picture position if there is neither a picture nor a
7562         title
7564 2003-03-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7566         * NEWS:
7567         * AUTHORS:
7568         reformatted to fit better on the web page
7570 2003-03-15  Mikhael Goikhman  <migo@homemail.com>
7572         * todo-2.6:
7573         added items from "My TODO" message on 2003-01-02
7575         * fvwm/fvwm.1.in:
7576         actually remove duplicate Iconify entry, use $[w.id] not $w, more fixes
7578 2003-03-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7580         * libs/FScreen.c:
7581         removed debug output
7583 2003-03-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7585         * libs/FScreen.c (FScreenMangleScreenIntoUSPosHints):
7586         (FScreenFetchMangledScreenFromUSPosHints):
7587         two functions to allow USPosition hints from modules and StartsOnScreen
7588         work at the same time
7590         * fvwm/conditional.c (direction_cmd):
7591         Some fixes, reformatting and improvements.
7593 2003-03-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7595         * fvwm/icons.c (Iconify):
7596         initialise icon position to +0+0 if there is neiter a picture nor a
7597         title
7599         * fvwm/functions.c (DeferExecution):
7600         action trigger fix
7602         * todo-2.6 (todo):
7603         closed some items
7605         * fvwm/update.c (apply_window_updates):
7606         fixed drawing of sticky icon titles when the stickyicon style is being
7607         set
7609 2003-03-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7611         * fvwm/placement.c (CMD_PlaceAgain):
7612         * fvwm/add_window.c (setup_window_placement):
7613         * fvwm/virtual.c (MapDesk):
7614         update the GNOME hints desk when changing desks; fixes placeagain with
7615         stickyicon style
7616         some placeagain fixes
7618         * fvwm/fvwm.1.in (Example):
7619         removed duplicate Iconify section
7621         * todo-2.6 (todo):
7622         closed C.11
7624         * fvwm/functable.c (func_table):
7625         * fvwm/functions.h (func_type):
7626         * fvwm/functions.c (__execute_function):
7627         (execute_complex_function):
7628         (DeferExecution):
7629         fixed a new and and old window selection bug
7631 2003-03-09  Dan Espen  <dane@mk.telcordia.com>
7633         * todo-2.6 (todo): Close C.13 (861): cant reproduce, no problems
7634         detected with Purify.
7636 2003-03-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7638         * libs/Colorset.c (SetWindowBackgroundWithOffset):
7639         use None, not 0 for Window structures
7641         * fvwm/events.c (InitEventHandlerJumpTable):
7642         (HandleKeyRelease):
7643         (__handle_key_event):
7644         * fvwm/bindings.c (ParseBinding):
7645         (activate_binding):
7646         * libs/Bindings.h:
7647         * fvwm/fvwm.1.in:
7648         removed key release binding because they can not work reliably
7650 2003-03-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7652         * fvwm/functable.c (func_table):
7653         trigger on ButtonPress for many of the functions
7655         * fvwm/functions.c (__execute_function):
7656         (__execute_function):
7657         fixed conditional commands a la "Current" triggered on root window
7659 2003-03-01  Dan Espen  <dane@mk.telcordia.com>
7661         * todo-2.6: Closed B.2, C.21.
7663 2003-02-28  olicha  <olivier.chapuis@free.fr>
7665         * libs/defaults.h:
7666         * fvwm/events.c (HandleConfigureRequest):
7667         Added a workaround for application with broken max/min size hints
7668         vs a size configure request. This "fixes" floating java JToolBar.
7670         * fvwm/add_window.c (GetWindowSizeHints):
7671         Check that the max size hint is not broken relatively to the the base
7672         size hint
7674 2003-02-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7676         * NEWS:
7677         * configure.in:
7678         released 2.5.6, set version to 2.5.7
7680         * NEWS:
7681         * configure.in:
7682         updated for 2.5.6
7684 2003-02-26  Tony Finch  <dot@dotat.at>
7686         * fvwm/borders.c (border_draw_one_border_part):
7687         Don't draw the handle relief marks when the border is flat.
7689 2003-02-27  Mikhael Goikhman  <migo@homemail.com>
7691         * configure.in:
7692         s/fribdi_in_path/fribidi_in_path/
7694         * todo-2.6:
7695         spell checking and some reformatting
7697 2003-02-26  olicha  <olivier.chapuis@free.fr>
7699         * fvwm/borders.c (border_setup_bar_pixmaps):
7700         Fixed a miss-print which can cause a core dump
7702         * todo-2.6:
7703         Added a 2.6 TODO file
7705 2003-02-25  Dan Espen  <dane@mk.telcordia.com>
7707         * fvwm/focus.c (focus_grab_buttons): Fix compile problems Forte7,
7708         void functioin cannot return a value.
7710 2003-02-25  olicha  <olivier.chapuis@free.fr>
7712         * configure.in:
7713         Fixed compilation warning if fribidi is in path
7715 2003-02-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7717         * fvwm/windowlist.c (CMD_WindowList):
7718         removed unused instruction
7720 2003-02-22  Dan Espen  <dane@mk.telcordia.com>
7722         * configure.in: Remove nested function from -Werror check.
7723         Lets configure work without gcc.
7725         * fvwm/read.h:
7726         * fvwm/read.c (run_command_stream): Make Break work from PipeRead.
7728 2003-02-21  Dan Espen  <dane@mk.telcordia.com>
7730         * fvwm/functions.c (__run_complex_function_items): Make Break start
7731         working again.
7733 2003-02-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7735         * fvwm/move_resize.c (get_outline_rects):
7736         (draw_move_resize_grid):
7737         initial drawing and final undrawing of wire frame no longer toggles the
7738         pixel in the top left corner of the screen
7740         * fvwm/expand.c (expand_vars):
7741         disabled warnings about one letter variables
7743 2003-02-17  Dan Espen  <dane@mk.telcordia.com>
7745         * README: Update to reflect release 2.5.x.
7746         * NEWS: Update news for FvwmPager drag fix.
7748 2003-02-15  olicha  <olivier.chapuis@free.fr>
7750         * fvwm/fvwm.1.in:
7751         Fixed a typo
7753 2003-02-13  olicha  <olivier.chapuis@free.fr>
7755         * fvwm/gnome.c (GNOME_SetClientList):
7756         Applied David Fries patch which fixes a possible crash with more
7757         than 256 windows
7758         (GNOME_SetClientList):
7759         malloc -> safemalloc
7761 2003-02-09  Dan Espen  <dane@mk.telcordia.com>
7763         * fvwm/fvwm.1.in (Note): Update %space/%tab description in menu.
7764         Give the XorValue range.
7766 2003-02-08  Dan Espen  <dane@mk.telcordia.com>
7768         * fvwm/fvwm.1.in: Fully document the emulate command.
7770 2003-02-06  olicha  <olivier.chapuis@free.fr>
7772         * fvwm/borders.c (get_common_decorations):
7773         (border_get_border_background):
7775 2003-02-05  Dan Espen  <dane@mk.telcordia.com>
7777         * fvwm/builtins.c (CMD_Exec): Use STDIN_FILENO instead of a zero.
7779 2003-02-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7781         * fvwm/menuitem.h:
7782         * fvwm/menuitem.c (menuitem_get_size):
7783         * fvwm/menus.c (calculate_item_sizes):
7784         renamed "mips" to mipst
7786         * fvwm/menuitem.c (menuitem_get_item_size):
7787         * fvwm/menus.c (_calculate_item_sizes):
7788         backed out patch from 30-Jan-2003
7790 2003-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7792         * fvwm/menuitem.h:
7793         * fvwm/menuitem.c (menuitem_get_item_size):
7794         * fvwm/menus.c (_calculate_item_sizes):
7795         functions renamed due to global name space collision with IRIX 6.5
7797 2003-01-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7799         * configure.in:
7800         added tests/hints/Makefile.am
7802 2003-01-24  Dan Espen  <dane@mk.telcordia.com>
7804         * fvwm/fvwm.1.in: Fixed next->previous in Prev command.
7806 2003-01-20  Dan Espen  <dane@mk.telcordia.com>
7808         * sample.fvwmrc/DecorWin95:
7809         * sample.fvwmrc/DecorMwm: Remove bad mouse binding, that I meant to
7810         Replace a long time ago.
7812 2003-01-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7814         * fvwm/stack.c (new_layer):
7815         (collect_transients_recursive):
7816         (__restack_window):
7817         fixed Layer command
7819         * fvwm/events.c (HandleConfigureRequest):
7820         fixed placement of icons
7821         fixed size calculations of icons
7823 2003-01-18  Mikhael Goikhman  <migo@homemail.com>
7825         * fvwm/expand.c:
7826         fixed $[desk.name<n>] that was masked by $[desk.n],
7827         added $[desk.pagesx] and $[desk.pagesy]
7829 2003-01-16  Dan Espen  <dane@mk.telcordia.com>
7831         * NEWS: Update news.  Spelling fixes 2.5.x news.
7832         * fvwm/builtins.c (CMD_Exec): Close stdin so the exec'd process knows
7833         its not interactive.
7835 2003-01-12  Mikhael Goikhman  <migo@homemail.com>
7837         * fvwm/functable.c:
7838         added a short description together with the commands
7840 2003-01-12  Marcus Lundblad  <ml@update.uu.se>
7842         * NEWS:
7843         Added conditionals Closable,Iconifiable,Maximizable,FixedSize and
7844         HasHandles
7846 2003-01-11  Mikhael Goikhman  <migo@homemail.com>
7848         * expand.c:
7849         * NEWS:
7850         deprecate all single letter variables, new variables are supported now
7851         $[w.id], $[w.name], $[w.iconname], $[w.class], $[w.resource],
7852         $[desk.n], $[version.num], $[version.info], $[version.line].
7854 2003-01-07  Marcus Lundblad <ml@update.uu.se>
7856         * fvwm/style.c (style_parse_one_style_option):
7857         * fvwm/fvwm.1.in:
7858         Removed duplicate styles Unclosable,Unmaximizable,Uniconifiable and
7859         DisallowMaximizeFixedSize
7861 2003-01-06  Dan Espen  <dane@mk.telcordia.com>
7863         * fvwm/fvwm.1.in: Lang check.
7865 2003-01-03  olicha  <olivier.chapuis@free.fr>
7867         * fvwm/commands.h:
7868         * INSTALL.fvwm:
7869         * fvwm/ewmh.h:
7870         * fvwm/ewmh_intern.h:
7871         * fvwm/ewmh_names.c:
7872         * fvwm/ewmh_icons.c:
7873         * fvwm/ewmh_events.c:
7874         * fvwm/ewmh_conf.c:
7875         * fvwm/ewmh.c:
7876         * fvwm/gnome.c:
7877         * fvwm/gnome.h:
7878         * fvwm/functable.c (func_table):
7879         * fvwm/fvwm.c (setVersionInfo):
7880         * acconfig.h:
7881         * configure.in:
7882         Removed GNOME and HAVE_EWMH ifdef
7884         * fvwm/fvwm.1.in:
7885         Documented UseTitleDecorRotation
7887 2003-01-03  Mikhael Goikhman  <migo@homemail.com>
7889         * fvwm/module_interface.c (MoveViewport):
7890         * fvwm/virtual.c (CMD_DesktopSize, CMD_Send_WindowList):
7891         M_NEW_PAGE now has 7 arguments
7893 2003-01-02  olicha  <olivier.chapuis@free.fr>
7895         * fvwm/fvwm.1.in:
7896         Documented  the new icon style options
7898         * fvwm/fvwm.h:
7899         * fvwm/icons.h:
7900         * fvwm/icons.c (DrawIconTitleWindow):
7901         (DrawIconPixmapWindow):
7902         (setup_icon_title_size):
7903         * fvwm/style.c (style_parse_one_style_option):
7904         Fixed IconTitleRelief and IconBackgroundRelief arguments
7906         * fvwm/icons.c (GetIconPicture):
7907         (SetIconPixmapSize):
7908         Fixed IconSize style for non shaped depth > 1 pixmaps
7910 2003-01-02  Mikhael Goikhman  <migo@homemail.com>
7912         * NEWS:
7913         * fvwm/commands.h:
7914         * fvwm/conditional.c (CMD_On):
7915         * fvwm/functable.c:
7916         * fvwm/fvwm.1.in:
7917         new conditional command On for non-window related conditions
7919         * fvwm/execcontext.h:
7920         * fvwm/fvwm.c (Done, SetRCDefaults, StartupStuff):
7921         two new exec contexts for restarting
7923 2003-01-02  olicha  <olivier.chapuis@free.fr>
7925         * fvwm/builtins.c (ReadMultiPixmapDecor):
7926         StretchedPixmap -> AdjustedPixmap
7928         * fvwm/fvwm.1.in:
7929         Documented Colorset in BorderStyle, TitleStyle and ButonsStyle
7930         Documented the new MultiPixmap syntax
7932 2002-12-31  Mikhael Goikhman  <migo@homemail.com>
7934         * NEWS:
7935         * fvwm/fvwm.1.in:
7936         * fvwm/builtins.c (ReadTitleButton):
7937         * fvwm/screen.h:
7938         new button state shortcuts AllActiveUp, AllActiveDown,
7939         AllInactiveUp, AllInactiveDown
7941 2002-12-31  olicha  <olivier.chapuis@free.fr>
7943         * libs/PictureGraphics.c (PCopyArea):
7944         Fixed rendering of depth 1 pixmap with a mask
7946         * fvwm/update.c (apply_window_updates):
7947         Fixed icon bg cset update
7949         * fvwm/events.c (HandlePropertyNotify):
7950         * fvwm/geometry.c (move_icon_to_position):
7951         Fixed non shaped icons with a bg padding but without cs bg
7953         * NEWS:
7954         * fvwm/style.c (style_parse_icon_size_style):
7955         (merge_styles):
7956         * fvwm/fvwm.h (window_style):
7957         * fvwm/add_window.c (setup_icon_size_limits):
7958         * fvwm/icons.c (SetIconPixmapSize):
7959         (GetIconPicture):
7960         New option to IconSize style: Adjusted, Streched, Shrunk
7962         * fvwm/icons.c (SetIconPixmapSize):
7963         (GetIconPicture):
7964         Always center the icon with IconSize if the icon has a background
7966 2002-12-30  Mikhael Goikhman  <migo@homemail.com>
7968         * configure.in:
7969         FvwmWindowMenu renaming; compact long diagnostics into half of line
7971         * NEWS:
7972         documeted and corrected new features
7974         * fvwm/fvwm.1.in:
7975         removed a "deprecated" tag from TitleStyle/ButtonStyle/BorderStyle
7976         since these are the only way currently to create themes
7978         * fvwm/fvwm.c:
7979         small reformatting
7981 2002-12-30  olicha  <olivier.chapuis@free.fr>
7983         * NEWS:
7984         * fvwm/icons.c (setup_icon_title_size):
7985         (set_icon_pixmap_background):
7986         (CreateIconWindow):
7987         (DrawIconTitleWindow):
7988         (DrawIconPixmapWindow):
7989         (DrawIconWindow):
7990         (ChangeIconPixmap):
7991         (RedoIconName):
7992         * fvwm/events.c (HandleEnterNotify):
7993         (HandleExpose):
7994         (HandleLeaveNotify):
7995         (HandlePropertyNotify):
7996         * fvwm/borders.c (border_draw_decorations):
7997         * fvwm/default.h:
7998         * fvwm/fvwm.h:
7999         * fvwm/add_window.c (setup_icon_background_parameters):
8000         (setup_icon_title_parameters):
8001         (setup_style_and_decor):
8002         (setup_icon_font):
8003         * fvwm/geometry.c (move_icon_to_position):
8004         * fvwm/style.h:
8005         * fvwm/style.c (check_window_style_change):
8006         (update_style_colorset):
8007         (update_icon_title_cs_style):
8008         (update_icon_title_cs_hi_style):
8009         (update_icon_background_cs_style):
8010         (merge_styles):
8011         * fvwm/update.h:
8012         * fvwm/update.c (apply_window_updates):
8013         New style options IconBackgroundColorset, IconTitleColorset,
8014         HilightIconTitleColorset, IconTitleRelief, IconBackgroundRelief
8015         and IconBackgroundPadding
8017 2002-12-28  Mikhael Goikhman  <migo@homemail.com>
8019         * libs/FShm.h:
8020         fixed compilation without XShm
8022         * fvwm/borders.c (border_rotate_titlebar_descr):
8023         fixed warning: deprecated use of label at end of compound statement
8025 2002-12-27  olicha  <olivier.chapuis@free.fr>
8027         * fvwm/ConfigFvwmDefaults:
8028         UseTitleDecorRotation is a default
8030         * libs/Graphics.c (do_relieve_rectangle_with_rotation):
8031         (do_relieve_rectangle):
8032         * libs/fvwmlib.h:
8033         * fvwm/borders.c (border_draw_title_stick_lines):
8034         (border_create_root_transparent_pixmap):
8035         (border_mp_render_into_pixmap):
8036         (border_draw_decor_to_pixmap):
8037         (border_mp_render_into_pixmap):
8038         (border_mp_get_titlebar_descr):
8039         (border_mp_draw_mp_titlebar):
8040         (border_draw_decor_to_pixmap):
8041         (border_set_button_pixmap):
8042         (border_get_titlebar_draw_descr):
8043         (border_set_title_pixmap):
8044         (border_rotate_titlebar_descr):
8045         (border_get_titlebar_descr):
8046         Completed UseTitleDecorRotation
8048 2002-12-26  olicha  <olivier.chapuis@free.fr>
8050         * fvwm/update.c (apply_window_updates):
8051         * fvwm/frame.c (frame_get_titlebar_dimensions):
8052         (frame_set_decor_gravities):
8053         * fvwm/borders.c (border_set_button_pixmap):
8054         (border_get_titlebar_descr):
8055         (border_draw_one_button):
8056         Buttons order follows the title text rotations.
8057         More UseTitleDecorRotation preparation
8059         * fvwm/borders.c (border_draw_decor_to_pixmap):
8060         Fixed SolidButton
8062 2002-12-24  olicha  <olivier.chapuis@free.fr>
8064         * fvwm/borders.c (border_mp_render_into_pixmap):
8065         (border_fill_pixmap_background):
8066         Some borders drawing fixes
8068         * libs/Graphics.c (CreateRotatedPixmap):
8069         * fvwm/geometry.c (get_title_font_size_and_offset):
8070         * fvwm/update.c (apply_window_updates):
8071         * fvwm/borders.c (border_set_button_pixmap):
8072         (border_get_titlebar_draw_descr):
8073         (border_draw_title):
8074         (border_rotate_titlebar_descr):
8075         (border_get_titlebar_descr):
8076         More UseTitleDecorRotation preparation
8078 2002-12-22  Dan Espen  <dane@mk.telcordia.com>
8080         * fvwm/add_window.c (GetWindowSizeHints): Change hint warning message
8081         so we won't get so many application bugs report to fvwm-workers.
8083         * fvwm/fvwm.1.in: Grammar: allows to -> allows for.
8085 2002-12-21  Marcus Lundblad <ml@update.uu.se>
8087         * fvwm/style.c (style_parse_one_style_option):
8088         * fvwm/style.h:
8089         * fvwm/fvwm.h:
8090         * fvwm/window_flags:
8091         * fvwm/decorations.c (is_function_allowed,
8092                               __is_resize_allowed):
8093         Added styles Closable, Iconifiable, Maximizable and
8094         AllowMaximizeFixedSize
8095         * fvwm/conditional.c (MatchesConditionMask,
8096                               CreateConditionMask):
8097         Added conditionals Closable,Iconifiable and Maximizable
8098         * fvwm/fvwm.1.in:
8099         Documented styles Closable, Iconifiable, Maximizable and
8100         AllowMaximizeFixedSize and conditionals
8101         Closable,Iconifiable and Maximizable
8103 2002-12-20  olicha  <olivier.chapuis@free.fr>
8105         * fvwm/window_flags.h:
8106         * fvwm/update.h:
8107         * fvwm/update.c (apply_window_updates):
8108         * fvwm/style.h:
8109         * fvwm/style.c (style_parse_one_style_option):
8110         * fvwm/fvwm.h:
8111         UseTitleDecorRotation style preparation
8113         * fvwm/fvwm.c (main):
8114         Use best TrueColor visual
8116         * fvwm/borders.c (border_get_border_gcs):
8117         Create the transparent_gc with the Scr.NoFocusWin and not the FW_W_FRAME
8118         window which may have a depth != Pdepth
8120         * fvwm/menus.c (paint_side_pic):
8121         * fvwm/menuitem.c (menuitem_paint):
8122         * fvwm/icons.c (DrawIconPixmapWindow):
8123         * fvwm/colorset.c (parse_colorset):
8124         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
8125         Used Scr.AlphaGC
8127 2002-12-19  olicha  <olivier.chapuis@free.fr>
8129         * libs/Graphics.c (CreateRotatedPixmap):
8130         * libs/fvwmlib.h:
8131         New interface function CreateRotatedPixmap
8133         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
8134         (PImageLoadXpm):
8135         * libs/PictureGraphics.c (PCreateRenderPixmap):
8136         (PCreateDitherPixmap):
8137         * libs/Graphics.c (CreateGradientPixmap):
8138         (CreateRotatedPixmap):
8139         * acconfig.h:
8140         * configure.in:
8141         * libs/FShm.h (new file):
8142         * libs/FImage.h (new file):
8143         * libs/FImage.c (new file):
8144         * libs/Makefile.am:
8145         * fvwm/fvwm.c (setVersionInfo):
8146         Added MIT Shared Memory Extension for XImage
8148         * NEWS:
8149         Some news
8151         * fvwm/screen.h:
8152         * fvwm/builtins.c (ReadDecorFace):
8153         (FreeDecorFace):
8154         * fvwm/borders.c (border_draw_decor_to_pixmap):
8155         (border_fill_pixmap_background):
8156         AdjustedPixmap, StretchedPixmap and ShrunkPixmap
8158 2002-12-17  Mikhael Goikhman  <migo@homemail.com>
8160         * libs/FBidiJoin.c:
8161         shape-and-join fixes from Nadim Shaikli (slightly modified)
8163 2002-12-16  olicha  <olivier.chapuis@free.fr>
8165         * libs/PictureGraphics.h:
8166         * libs/PictureGraphics.c (PTileRectangle):
8167         (PGraphicsCreateTiledPicture):
8168         * libs/Graphics.c (CreateTiledPixmap):
8169         New interface function: PGraphicsCreateTiledPicture
8171         * fvwm/screen.h:
8172         * fvwm/fvwm.c (CreateGCs):
8173         Added a global (Scr) alpha GC
8175         * configure.in:
8176         * fvwm/screen.h:
8177         * fvwm/builtins.c (ReadMultiPixmapDecor):
8178         (update_decorface_colorset):
8179         (FreeDecorFace):
8180         * fvwm/borders.c (border_get_tb_parts_to_draw):
8181         (border_fill_pixmap_background):
8182         (border_setup_bar_pixmaps):
8183         (border_get_bar_pixmaps):
8184         (border_free_bar_pixmaps):
8185         (border_mp_render_into_pixmap):
8186         (border_mp_get_length):
8187         (border_mp_get_titlebar_descr):
8188         (border_mp_get_geometry):
8189         (border_mp_get_use_title_style_parts_and_geometry):
8190         (border_mp_draw_mp_titlebar):
8191         (border_draw_decor_to_pixmap):
8192         (border_draw_title_deep):
8193         (border_get_titlebar_draw_descr):
8194         (border_setup_use_title_style):
8195         (border_get_titlebar_descr_state):
8196         (border_get_titlebar_descr):
8197         (border_get_transparent_decorations_part):
8198         (border_draw_title_stick_lines):
8199         MultiPixmap can use Colorset and Solid color. Various others minor
8200         improvement in MultiPixmap. "Merge" the MultiPixmap code into the
8201         "main" drawing code and remove the #ifdef.
8202         New option to ButtonStyle and TitleStyle: StretchedPixmap.
8203         Use the new Scr.AlphaGC.
8205 2002-12-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8207         * fvwm/add_window.c (validate_transientfor):
8208         do not ignore transientfor hint for iconified windows
8210 2002-12-12  Jason Weber <baboon@imonk.com>
8212         * fvwm/fvwm.1.in:
8213         * fvwm/conditional.c (CMD_ScanForWindow):
8214         * fvwm/commands.h:
8215         * fvwm/functable.c:
8216         rename ScanWindow to ScanForWindow
8218 2002-12-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8220         * fvwm/menuitem.c (menuitem_paint):
8221         * fvwm/colorset.c (parse_colorset):
8222         * fvwm/icons.c (DrawIconPixmapWindow):
8223         * fvwm/focus.c (_SetFocusWindow):
8224         (_ReturnFocusWindow):
8225         (_DeleteFocus):
8226         (_ForceDeleteFocus):
8227         (__activate_window_by_command):
8228         patches to prevent UMR messages in memory debuggers
8230 2002-12-11  Jason Weber <baboon@imonk.com>
8232         * fvwm/fvwm.1.in: Added ScanWindow
8234         * fvwm/conditional.c (CMD_Direction, CMD_ScanWindow, direction_cmd):
8235         * fvwm/commands.h:
8236         * fvwm/functable.c:
8237         Generalized CMD_Direction into direction_cmd.
8238         Pipe CMD_Direction and CMD_ScanWindow into direction_cmd.
8239         Replace Cycle prefix with secondary direction argument.
8241 2002-12-10  Dan Espen  <dane@mk.telcordia.com>
8243         * fvwm/fvwm.1.in: Applied Mikhael's quote fix.
8245 2002-12-05  Marcus Lundblad <ml@update.uu.se>
8246         * fvwm/conditional.c (CreateConditionMask):
8247         Implemented conditional "FixedSize" and "HasHandles"
8248         * fvwm/fvwm.1.in
8249         Documented conditional options "FixedSize" and "HasHandles".
8251 2002-12-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8253         * fvwm/placement.c (PlaceWindow):
8254         fixed StickyAcrossDesks w/ StartsOnPage
8256         * fvwm/functable.c:
8257         * fvwm/commands.h:
8258         * fvwm/ewmh_conf.c (set_state_workaround):
8259         * fvwm/update.c (apply_window_updates):
8260         * fvwm/windowlist.c (CMD_WindowList):
8261         * fvwm/ewmh_events.c (ewmh_WMDesktop):
8262         (ewmh_WMStateSticky):
8263         * fvwm/conditional.c (CreateConditionMask):
8264         * fvwm/gnome.c (GNOME_SetHints):
8265         (GNOME_GetStyle):
8266         (GNOME_HandlePropRequest):
8267         * fvwm/placement.c (SmartPlacement):
8268         (get_next_x):
8269         (get_next_y):
8270         (test_fit):
8271         (PlaceWindow):
8272         * fvwm/session.c (SaveWindowStates):
8273         (MatchWinToSM):
8274         (MatchWinToSM):
8275         * fvwm/ewmh.c (check_desk):
8276         (EWMH_SetWMDesktop):
8277         (ewmh_ComputeAndSetWorkArea):
8278         (ewmh_HandleDynamicWorkArea):
8279         (ewmh_HandleDesktop):
8280         (ewmh_HandleDock):
8281         (ewmh_HandleMenu):
8282         (ewmh_HandleToolBar):
8283         * fvwm/virtual.c (UnmapDesk):
8284         (MapDesk):
8285         (MoveViewport):
8286         (do_move_window_to_desk):
8287         * fvwm/icons.c (setup_icon_title_size):
8288         (DrawIconTitleWindow):
8289         (AutoPlaceIcon):
8290         (Iconify):
8291         * fvwm/borders.c (is_button_toggled):
8292         (get_common_decorations):
8293         (border_draw_title_stick_lines):
8294         * fvwm/add_window.c (AddWindow):
8295         * fvwm/move_resize.c (__move_window):
8296         (__move_window):
8297         (is_window_sticky_across_pages):
8298         (is_window_sticky_across_desks):
8299         (MaximizeHeight):
8300         (MaximizeWidth):
8301         (stick_page):
8302         (stick_desk):
8303         (CMD_Stick):
8304         (CMD_StickAcrossPages):
8305         (CMD_StickAcrossDesks):
8306         (stick_across_pages):
8307         (stick_across_desks):
8308         (handle_stick_across_desks):
8309         (handle_stick_across_pages):
8310         (handle_stick):
8311         * fvwm/fvwm.h (struct):
8312         * fvwm/style.c (style_parse_one_style_option):
8313         (check_window_style_change):
8314         * fvwm/style.h:
8315         * fvwm/window_flags.h:
8316         renamed StickDesk to StickAcrossDesks, StickyDesk to StickyAcrossDesks,
8317         StickPage to StickAcrossPages and StickyPage to StickyAcrossPages
8318         everywhere
8320         * fvwm/focus.c (CMD_Focus):
8321         (CMD_FlipFocus):
8322         (__activate_window_by_command):
8323         (__update_windowlist):
8324         (__set_focus_to_fwin):
8325         (_SetFocusWindow):
8326         (_ReturnFocusWindow):
8327         (_DeleteFocus):
8328         (_ForceDeleteFocus):
8329         fixed window list order with FlipFocus command
8331 2002-12-08  Mikhael Goikhman  <migo@homemail.com>
8333         * AUTHORS:
8334         * NEWS:
8335         document bidi entry undocumented in 2.5.5
8337 2002-12-06  olicha  <olivier.chapuis@free.fr>
8339         * acinclude.m4:
8340         Fixed the "detection" of the LINGUAS variable
8342         * configure.in:
8343         Added ar to ALL_LINGUAS
8346 2002-12-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8348         * fvwm/move_resize.c (__resize_window):
8349         fixed handling of MontionNotify and PropertyNotify events
8351 2002-12-03  olicha  <olivier.chapuis@free.fr>
8353         * fvwm/borders.c (border_draw_decor_to_pixmap):
8354         (border_get_border_background):
8355         (get_common_decorations):
8356         BorderGC cleanup
8358         * fvwm/builtins.c (CMD_PrintInfo):
8359         New subject nls to PrintInfo
8361         * libs/FGettext.c (*):
8362         New command FlocalePath
8364 2002-12-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8366         * NEWS:
8367         * configure.in:
8368         changed version to 2.5.6
8370         * NEWS:
8371         * configure.in:
8372         updated for 2.5.5
8374 2002-12-02  olicha  <olivier.chapuis@free.fr>
8376         * libs/FRenderInit.c (FRenderInit):
8377         Fixed alpha depth if !XRenderSupport
8379         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
8380         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
8381         (PImageLoadPng):
8382         * libs/PictureImageLoader.h:
8383         Fixed image loading on bigedian machine
8385 2002-12-01  Mikhael Goikhman  <migo@homemail.com>
8387         * libs/FBidi.c (FBidiConvert):
8388         several small changes
8389         * libs/FBidiJoin.c (shape_n_join):
8390         enabled a new bidi shaping code
8392 2002-11-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8394         * fvwm/frame.c (frame_restore_client_gravities):
8395         (frame_free_move_resize_args):
8396         fixed a redrawing problem after shading a window
8398 2002-11-29  olicha  <olivier.chapuis@free.fr>
8400         * acinclude.m4:
8401         Defined AM_PATH_PROG_WITH_TEST and re-enable it
8403         * configure.in:
8404         * Makefile.am:
8405         Fixed two missprints
8407 2002-11-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8409         * fvwm/bindings.c (ParseBinding):
8410         fix for stroke-less compile
8412 2002-11-29  olicha  <olivier.chapuis@free.fr>
8414         * fvwm/commands.h (enum):
8415         * fvwm/functable.c (func_table):
8416         * fvwm/builtins.c (CMD_LocalePath):
8417         * libs/FGettext.c (FGettextSetLocalePath):
8418         * libs/FGettext.h:
8419         Preparation for LocalePath command
8421         * fvwm/screen.h (ScreenInfo):
8422         * fvwm/fvwm.c (CreateGCs):
8423         Rename Scr.TileGC to Scr.BordersGC
8425         * acinclude.m4:
8426         A libintl autoconf fix
8428         * libs/Colorset.c (CreateBackgroundPixmap):
8429         Do not grab the server when we dump the E setroot pixmap
8431 2002-11-29  olicha  <olivier.chapuis@free.fr>
8433         * acconfig.h:
8434         * fvwm/Makefile.am:
8435         * Makefile.am:
8436         * configure.in:
8437         * acinclude.m4:
8438         Added NLS support with gnu gettext
8440         * fvwm/fvwm.c (main):
8441         FGettextInit
8443         * fvwm/expand.c (expand_vars_extended):
8444         New extanded variable $[gt.any_string]
8446         * fvwm/virtual.c (CMD_DesktopName):
8447         * fvwm/windowlist.c (get_desk_title):
8448         * fvwm/expand.c (expand_vars_extended):
8449         * fvwm/fvwm.c (SetRCDefaults):
8450         * fvwm/ConfigFvwmSetup:
8451         Mark some strings to be translated
8453         * libs/FGettext.c (new file):
8454         * libs/FGettext.c (new file):
8455         * libs/Makefile.am:
8456         gnu gettext libintl warper
8458 2002-11-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8460         * fvwm/add_window.c (RestoreWithdrawnLocation):
8461         rixed rxvts with S/E gravity travelling off screen upon recapture after
8462         they were resized.
8464         * fvwm/events.c (__handle_key_event):
8465         * fvwm/bindings.c (activate_binding):
8466         (__rebind_global_key):
8467         fixed unbinding pointerkey bindings removing the grab for this key
8468         completely
8470         * fvwm/events.c (__is_bpress_window_handled):
8471         fixed click on override redirect windows being handled by the root
8472         window
8474         * fvwm/misc.c (GrabEm):
8475         confine the pointer to the root window when grabbed
8477         * fvwm/events.c (HandleUnmapNotify):
8478         fixed reparenting problem with restarts from desks != 0
8480 2002-11-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8482         * fvwm/events.c:
8483         removed experimental code
8485 2002-11-28  olicha  <olivier.chapuis@free.fr>
8487         * fvwm/borders.c (border_get_border_background):
8488         (border_draw_decor_to_pixmap):
8489         (border_fill_pixmap_background):
8490         Scr.TitleGC/Scr.TileGC cleanup. I will rename TileGC to BorderGC
8491         soon.
8493 2002-11-26  Mikhael Goikhman  <migo@homemail.com>
8495         * fvwm/fvwm.c (InitVariables):
8496         fixed DEFAULT_EDGE_SCROLL being interpretted as 100 pixels instead
8497         of 100%
8498         * fvwm/virtual.c (CMD_EdgeScroll):
8499         minor spacing
8501         * fvwm/ConfigFvwmDefaults:
8502         do not include empty ConfigFvwmProxyDefaults, added one binding
8504 2002-11-26  olicha  <olivier.chapuis@free.fr>
8506         * libs/Colorset.c (CreateBackgroundPixmap):
8507         * fvwm/colorset.c (parse_colorset):
8508         Be more safe with the E root pixmap
8510 2002-11-25  olicha  <olivier.chapuis@free.fr>
8512         * fvwm/move_resize.c (__move_loop):
8513         Redraw the transparent decoration parts when a move is abored
8515         * fvwm/colorset.c (parse_colorset):
8516         Fixed the fgsh Colorset colors when the Image change but not the bg
8518 2002-11-24  Jason Weber  <baboon@imonk.com>
8520         * fvwm/conditional.c (CMD_Direction):
8521         Extended Direction to allow CycleWest, CycleEast, etc that guarantees
8522         eventual traversal of all windows over repeated calls.  It also cycles
8523         back to the opposite extent when it hits the limit in the given
8524         direction.
8526 2002-11-22  olicha  <olivier.chapuis@free.fr>
8528         * fvwm/borders.h:
8529         * fvwm/borders.c (get_common_decorations):
8530         (border_get_parts_and_pos_to_draw):
8531         (border_get_changed_border_parts):
8532         (border_get_frame_pixmap, new):
8533         (border_get_border_background):
8534         (border_draw_one_border_part):
8535         (border_draw_decorations):
8536         (border_get_tb_parts_to_draw):
8537         (border_fill_pixmap_background):
8538         (border_get_titlebar_descr_state, new):
8539         (border_draw_titlebar):
8540         (border_setup_bar_pixmaps, new):
8541         (border_get_bar_pixmaps, new):
8542         (border_free_bar_pixmaps, new):
8543         (border_setup_use_title_style, new):
8544         (border_set_button_pixmap):
8545         (border_set_title_pixmap):
8546         (border_draw_one_button):
8547         (border_set_button_pixmap):
8548         (border_draw_title_deep):
8549         (border_get_transparent_decorations_part, new):
8550         Title, Border and Buttons Style Colorset Option: Drawing
8552         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
8553         (__move_window):
8554         (__move_loop):
8555         * fvwm/frame.c (__frame_setup_window):
8556         (frame_has_handles_and_tiled_border):
8557         (frame_create_move_resize_args):
8558         (frame_free_move_resize_args):
8559         Title, Border and Buttons Style Colorset Option: External drawing
8560         stuff. Basically additional redrawing for RootTransparent
8562         * fvwm/builtins.c (update_decorface_colorset, new):
8563         (update_titlebutton_colorset, new):
8564         (update_decors_colorset, new):
8565         (update_fvwm_colorset):
8566         Title, Border and Buttons Style Colorset Option: Dynamic updating
8568         * fvwm/screen.h:
8569         * fvwm/builtins.c (ReadDecorFace):
8570         Title, Border and Buttons Style Colorset Option: Configuration
8572         * libs/Colorset.c (GetWindowBackgroundPixmapSize, new):
8573         * libs/Colorset.h:
8574         Title, Border and Buttons Style Colorset Option: Convinent macros and
8575         function
8577 2002-11-18  Dan Espen  <dane@mk.telcordia.com>
8579         * libs/Makefile.am: Add missing Bindings.h.
8581 2002-11-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8583         * fvwm/move_resize.c (__move_loop):
8584         send M_CONFIGURE_WINDOW only when the window actually moves
8586 2002-11-16  Mikhael Goikhman  <migo@homemail.com>
8588         * libs/FBidi.c:
8589         * libs/FBidi.h:
8590         * libs/FBidiJoin.c:
8591         * libs/FBidiJoin.h:
8592         * libs/Makefile.am:
8593         incorporated a shape-and-join bidi functionality from Nadim Shaikli
8594         with minor improvements; it is disabled for now (#if 0) since
8595         some Arabic chars cause core dump
8597 2002-11-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8599         * fvwm/fvwm.1.in (Examples):
8600         added documentation of Icon option for PlaceAgain command
8602         * fvwm/events.c (__handle_key_event):
8603         fixed global key binding problem
8605 2002-11-15  olicha  <olivier.chapuis@free.fr>
8607         * libs/Bindings.c (MatchBindingExactly):
8608         (__compare_binding):
8609         compile fixes w/o stroke lib
8611         * NEWS:
8612         * fvwm/geometry.c (get_title_font_size_and_offset):
8613         * fvwm/builtins.c (do_title_style):
8614         New MinHeight option to TitleStyle
8616 2002-11-15  olicha  <olivier.chapuis@free.fr>
8618         * fvwm/builtins.c (update_fvwm_colorset):
8619         (CMD_Colorset):
8620         (do_title_style):
8622         * fvwm/builtins.h:
8623         * fvwm/colorset.c (update_root_transparent_colorset):
8624         Fixed update of the RootTransparent colorset in fvwm
8626 2002-11-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8628         * libs/Bindings.c (__compare_binding):
8629         (MatchBindingExactly):
8630         compoile fixes w/o stroke lib
8632 2002-11-14  olicha  <olivier.chapuis@free.fr>
8634         * fvwm/fvwm.1.in:
8635         * INSTALL.fvwm:
8636         * NEWS
8637         Removed any reference on "xft and flickering"
8639 2002-11-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8641         * fvwm/eventmask.h (XEVMASK_ICONW):
8642         * fvwm/events.c (HandleKeyRelease):
8643         (HandleKeyPress):
8644         (__handle_key_event):
8645         * fvwm/bindings.c (ParseBinding):
8646         (activate_binding):
8647         * libs/Bindings.h (enum):
8648         implemented key release bindings; prefix the key name with a '-';
8649         does not work well with some applications
8651 2002-11-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8653         * libs/Bindings.h:
8654         new file
8656         * fvwm/bindings.c (ParseBinding):
8657         (binding_cmd):
8658         (activate_binding):
8659         (bind_get_bound_button_contexts):
8660         (ParseBinding):
8661         (CMD_Stroke):
8662         (CMD_Mouse):
8663         (CMD_PointerKey):
8664         (CMD_Key):
8665         (RemoveMatchingBinding):
8666         (AddBinding):
8667         (AreBindingsEqual):
8668         (GrabWindowKey):
8669         (GrabWindowButton):
8670         (GrabAllWindowKeysAndButtons):
8671         * fvwm/module_interface.c (CMD_ModuleSynchronous):
8672         * fvwm/events.c (__handle_bpress_on_root):
8673         (__handle_bpress_on_managed):
8674         (HandleButtonRelease):
8675         * fvwm/builtins.c (CMD_Wait):
8676         (CMD_StrokeFunc):
8677         * libs/fvwmlib.h (enum):
8678         fixed Key vs. PointerKey with "A"ny context
8680 2002-11-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8682         * fvwm/icons.c (Iconify):
8683         icon placement safety patch
8684         (CreateIconWindow):
8685         fixed initial position of application provided icon windows
8687         * fvwm/session.c (LoadWindowStates):
8688         fixed parsing of strings beginning with whitespace in session file
8690         * fvwm/fvwm.1.in (Note):
8691         * fvwm/style.c (style_set_old_focus_policy):
8692         * libs/defaults.h (DEF_FP_MODIFIERS):
8693         set default modifiers for raising/focusing to N again
8695 2002-11-11  olicha  <olivier.chapuis@free.fr>
8697         * fvwm/fvwm.1.in:
8698         * fvwm/fvwm.c (main):
8699         (usage):
8700         named-palette -> visual-palette, -N -> -P
8702 2002-11-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8704         * fvwm/ConfigFvwmDefaults:
8705         include ConfigFvwmProxyDefaults
8707         * fvwm/fvwm.c (usage):
8708         polished usage message
8710 2002-11-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8712         * fvwm/fvwm.c (usage):
8713         (main):
8714         cleaned up usage and error messages
8715         use short option names in usage message an man page synopsis
8716         all options are case sensitive
8717         do not mention the "-" style long options in the man page; instead use
8718         the "--" style
8720         * fvwm/add_window.c (setup_frame_window):
8721         * fvwm/events.c (HandleMapNotify):
8722         * fvwm/eventmask.h (XEVMASK_FRAMEW_RECAPTURE):
8723         fixed empty decorations after recapture
8725         * fvwm/geometry.c (get_icon_geometry):
8726         * fvwm/icons.c (clear_icon):
8727         fixed icon jumping to 0 0 when the icon layout changes after the icon
8728         has been moved manually
8730         * fvwm/move_resize.c (__move_icon):
8731         fixed MoveToPage with icons
8733 2002-11-09  olicha  <olivier.chapuis@free.fr>
8735         * libs/Fft.c (FftGetRotatedFont):
8736         (FftGetFont):
8737         * libs/Fft.h:
8738         Check the return result of FftPatternGetMatrix
8740         * libs/Flocale.h:
8741         * libs/PictureBase.h:
8742         Added two macro
8744 2002-11-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8746         * fvwm/ewmh_conf.c (set_state_workaround):
8747         * fvwm/functable.c (func_table):
8748         * fvwm/update.c (apply_window_updates):
8749         * fvwm/windowlist.c (CMD_WindowList):
8750         * fvwm/ewmh_events.c (ewmh_WMDesktop):
8751         (ewmh_WMStateSticky):
8752         * fvwm/conditional.c (CreateConditionMask):
8753         (CreateConditionMask):
8754         * fvwm/gnome.c (GNOME_SetHints):
8755         (GNOME_GetStyle):
8756         (GNOME_HandlePropRequest):
8757         * fvwm/placement.c (SmartPlacement):
8758         (get_next_x):
8759         (test_fit):
8760         (get_next_y):
8761         (PlaceWindow):
8762         * fvwm/session.c (SaveWindowStates):
8763         (MatchWinToSM):
8764         * fvwm/ewmh.c (check_desk):
8765         (EWMH_SetWMDesktop):
8766         (ewmh_ComputeAndSetWorkArea):
8767         (ewmh_HandleDynamicWorkArea):
8768         (ewmh_HandleDesktop):
8769         (ewmh_HandleDock):
8770         (ewmh_HandleMenu):
8771         (ewmh_HandleToolBar):
8772         * fvwm/virtual.c (UnmapDesk):
8773         (MapDesk):
8774         (MoveViewport):
8775         (MoveViewport):
8776         (do_move_window_to_desk):
8777         * fvwm/icons.c (setup_icon_title_size):
8778         (DrawIconTitleWindow):
8779         (AutoPlaceIcon):
8780         (Iconify):
8781         * fvwm/borders.c (is_button_toggled):
8782         (get_common_decorations):
8783         (border_draw_title_stick_lines):
8784         * fvwm/add_window.c (AddWindow):
8785         * fvwm/move_resize.c (__move_window):
8786         (is_window_sticky_on_page):
8787         (is_window_sticky_on_desk):
8788         (MaximizeWidth):
8789         (MaximizeHeight):
8790         (stick_page):
8791         (stick_desk):
8792         (handle_stick):
8793         (handle_stick_page):
8794         (handle_stick_desk):
8795         (__handle_stick_exit):
8796         (CMD_StickDesk):
8797         (CMD_StickPage):
8798         * fvwm/style.c (style_parse_one_style_option):
8799         (check_window_style_change):
8800         * fvwm/style.h:
8801         * fvwm/fvwm.h:
8802         New Style options stickypage and stickydesk
8803         New WindowList options NoStickyPage, NoStickyDesk, StickyPage,
8804         StickyDesk, OnlyStickyPage, OnlyStickyDesk
8805         New conditions StickyPage and StickyDesk
8806         New commands StickPage and StickDesk
8808         * fvwm/move_resize.c (__move_window):
8809         do not unstick a window when using MoveToScreen
8811         * fvwm/ewmh_conf.c:
8812         reindented
8814         * fvwm/commands.h:
8815         * fvwm/functable.c (func_table):
8816         * fvwm/ewmh_conf.c (CMD_EwmhBaseStruts):
8817         renamed EWMHBaseStrut to EwmhBaseStruts
8819         * fvwm/style.c (style_set_old_focus_policy):
8820         SloppyFocus and MouseFocus use "FPFocusClickModifiers N" by default
8821         (style_parse_one_style_option):
8822         renamed "Border" style to "Borders"
8823         removed "NoBorder" style; use !Borders instead
8824         renamed PlacmentOverlapPenalties to MinOverlapPlacementPenalties
8825         renamed PlacmentOverlapPercentPenalties to
8826         MinOverlapPercentPlacementPenalties
8828         * fvwm/fvwm.1.in:
8829         * NEWS:
8830         corrected typo
8832         * libs/Fft.c:
8833         Fixed compiler warnings
8835 2002-11-09  Mikhael Goikhman  <migo@homemail.com>
8837         * configure.in:
8838         autogenerate FvwmWindowLister files
8840         * fvwm/fvwm.1.in:
8841         mention fvwm-menu-directory and fvwm-menu-desktop as examples
8842         of MissingSubmenuFunction and DynamicPopupAction
8844 2002-11-08  olicha  <olivier.chapuis@free.fr>
8846         * libs/PictureUtils.c (alloc_color_proportion):
8847         (alloc_color_proportion_dither):
8848         (alloc_color_proportion_grey):
8849         (alloc_color_x):
8850         (free_colors_in_table):
8851         (free_colors_x):
8852         (init_static_colors_table):
8853         (PictureFreeColors):
8854         (PictureInitColors):
8855         (PicturePrintColorInfo):
8856         Fixed StaticColor visual. Rename some of the color allocators. Clean up
8857         free colors stuff
8859 2002-11-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8861         * fvwm/move_resize.c (__move_window):
8862         ignore MoveToPage with sticky windows
8864         * fvwm/conditional.c (Circulate):
8865         (circulate_cmd):
8866         Next and Prev commands begin looking at the context window, if any
8868         * fvwm/focus.c (__focus_grab_buttons):
8869         fixed initial button grabbing on client window
8871         * fvwm/stack.c (BroadcastRestack):
8872         split long packets, fixed a bug and cleaned up
8874         * libs/Module.c (ReadFvwmPacket):
8875         ignore packets that are too long
8877         * fvwm/fvwm.1.in:
8878         document PopupDelay and PopdownDelay defaults
8880 2002-11-06  olicha  <olivier.chapuis@free.fr>
8882         * libs/Fft.c (FftGetFont):
8883         (FftGetRotatedFont):
8884         Use a more perfectioned method for loading font with Xft/Fc. This
8885         method allows sanity check. Preserve the matrix when rotating
8886         Xft/Fc fonts.
8888         * libs/Flocale.c (FlocaleGetMinOffset):
8889         (FlocaleRotateDrawString):
8890         (FlocaleGetFontSet):
8891         (FlocaleGetFont):
8892         * libs/Fft.c (FftDrawString):
8893         (FftGetFont):
8894         * libs/FftInterface.h:
8895         * fvwm/geometry.c (get_title_font_size_and_offset):
8896         Move the computation of the good "y" for drawing text into Flocale.
8897         Use the max ascent, descent and height for font metric (in the place
8898         of the min's one).
8900         * libs/Flocale.c (FlocalePrintLocaleInfo):
8901         * libs/Flocale.h:
8902         * libs/Fft.c (FftPrintPatternInfo):
8903         * libs/Fft.h:
8904         * fvwm/builtins.c (CMD_PrintInfo):
8905         * NEWS:
8906         * fvwm.1.in:
8907         New option "Locale" to PrintInfo Command
8909 2002-11-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8911         * fvwm/events.c (HandleExpose):
8912         removed no-op
8914 2002-11-04  Dan Espen  <dane@mk.telcordia.com>
8916         * fvwm/fvwm.1.in: colour -> color
8917         Language check.
8919 2002-11-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8921         * fvwm/fvwm.1.in:
8922         * fvwm/fvwm.c (usage):
8923         (main):
8924         pallet -> palette
8926 2002-11-04  olicha  <olivier.chapuis@free.fr>
8928         * configure.in:
8929         Added -lXrender in Xft 1 tests (Ethan Blanton <eblanton@cs.ohiou.edu>)
8931         * libs/PictureUtils.c (alloc_color_dynamic_no_limit):
8932         (finish_ct_init):
8933         (PictureFreeColors):
8934         (PicturePrintColorInfo):
8935         Trace colours allocation out of the pallet in depth <= 8. Better
8936         information on coulours
8938         * libs/Fft.c (FftGetRotatedFont):
8939         * libs/Fft.h:
8940         Fixed rotated font when the original font has a matrix
8942         * libs/PictureBase.c (PictureInitCMapRoot):
8943         * libs/PictureUtils.h:
8944         * libs/PictureUtils.c (PictureInitColors):
8945         (PictureAllocColorTable):
8946         * libs/PictureBase.h (PictureColorLimitOption):
8947         * fvwm/fvwm.c (main):
8948         * fvwm/fvwm.1.in
8949         New options -strict-color-limit, -allocate-pallet, -static-pallet,
8950         -named-pallet. -color-limit now take only integer argument.
8953 2002-11-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8955         * libs/Module.h (struct):
8956         new type FvwmWinPacketBodyHeader to access the standard fields in a
8957         packet with a window
8959 2002-11-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8961         * NEWS:
8962         updated for 2.4.13
8964         * fvwm/functable.c (func_table):
8965         * fvwm/commands.h:
8966         * fvwm/style.c (style_parse_one_style_option):
8967         (parse_and_set_window_style):
8968         (__style_command):
8969         (CMD_Style):
8970         (CMD_FocusStyle):
8971         added a new command FocusStyle as a shorthand for
8972         "Style * FP..., FP..."
8974         * fvwm/builtins.c (__parse_vector_line_one_coord):
8975         (__parse_vector_line):
8976         (ReadDecorFace):
8977         split vector line parsing into sub functions
8978         (FreeDecorFace):
8979         fixed core dump in vector button offset patch
8981 2002-11-01  Marcus Lundblad <ml@update.uu.se>
8983         * fvwm/screen.h (vector_coords):
8984         added fields for offsets
8985         * fvwm/builtins.c (ReadDecorFace):
8986         rewrote parser for vector definitions to accept optional offsets
8987         * fvwm/fvwm.c (LoadDefaultLeftButton):
8988         (LoadDefaultRightButton)
8989         set default values for offsets
8990         * fvwm/borders.c (border_draw_vector_to_pixmap):
8991         updated XDrawLine call to take offsets into account
8992         * fvwm/fvwm.1.in:
8993         documented new options for vector offsets
8995 2002-11-01  olicha  <olivier.chapuis@free.fr>
8997         * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
8998         Fixed icon tint pixel, it was set to icon tint percent during some
8999         renaming
9001 2002-10-31  olicha  <olivier.chapuis@free.fr>
9003         * libs/PictureUtils.c (PictureAllocColorImage):
9004         (PictureOpenImageColorAllocator):
9005         (PictureCloseImageColorAllocator):
9006         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
9007         (FIMAGE_CMD_ARGS):
9008         (PImageLoadXpm):
9009         (PImageCreatePixmapFromArgbData):
9010         (PImageLoadPixmapFromFile):
9011         * libs/PictureBase.h (FvwmPictureThing):
9012         (PictureImageColorAllocator):
9013         * libs/Picture.h:
9014         * libs/Picture.c (PDestroyFvwmPicture):
9015         (PLoadFvwmPictureFromPixmap):
9016         * libs/Graphics.c (CreateGradientPixmap):
9017         * fvwm/fvwm.c:
9018         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
9019         Added a new way to allocate colors for image and gradient. This method
9020         allows, in particular, to save (in a "fast" way) the allocated pixels
9021         with a minimal memory usage.
9022         Fixed color leaks for png, ewmh and dithered xpm images.
9024         * fvwm/add_window.c (destroy_icon):
9025         * fvwm/fvwm.h (FvwmWindow):
9026         * fvwm/icons.c (GetIconFromFile):
9027         Fixed color leaks
9029 2002-10-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9031         * fvwm/commands.h:
9032         * fvwm/functable.c:
9033         * fvwm/stack.c (enum):
9034         (position_new_window_in_stack_ring):
9035         (new_layer):
9036         (must_move_transients):
9037         (restack_windows):
9038         (__restack_window):
9039         (__raise_lower_recursion):
9040         (__raise_or_lower_window):
9041         (raise_or_lower_window):
9042         (collect_transients_recursive):
9043         (__is_restack_transients_needed):
9044         (RestackWindow):
9045         (CMD_RestackTransients):
9046         new command RestackTransients which works like Raise and Lower but does
9047         not restack windows that are not transient
9048         renamed some functions
9049         general cleanup
9051         * fvwm/fvwm.1.in:
9052         corrected cursor movement key bindings
9054         * fvwm/bindings.c (activate_binding):
9055         fixed problem w/ bindings being overridden by applications OpenOffice
9056         and the Gnome panel
9058 2002-10-29  Mikhael Goikhman  <migo@homemail.com>
9060         * configure.in:
9061         * NEWS:
9062         switched to 2.5.5
9064         * configure.in:
9065         include FvwmProxy to build
9067 2002-10-29  Mikhael Goikhman  <migo@homemail.com>
9069         * configure.in:
9070         exclude FvwmProxy from build
9072         * configure.in:
9073         * NEWS:
9074         updated for 2.5.4
9076 2002-10-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9078         * configure.in:
9079         added FvwmProxy module
9081 2002-10-29  Mikhael Goikhman  <migo@homemail.com>
9083         * fvwm/fvwm.1.in:
9084         * fvwm/windowlist.c (CMD_WindowList):
9085         renamed SortClassName to SortByClass
9087 2002-10-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9089         * fvwm/menustyle.c (menustyle_update):
9090         (menustyle_parse_style):
9091         (menustyle_get_styleopt_index):
9092         (menustyle_parse_style):
9093         (CMD_CopyMenuStyle):
9094         * fvwm/menustyle.h:
9095         removed HilightRelief MenuStyle and hard coded it
9097 2002-10-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9099         * fvwm/menus.c (make_menu_window):
9100         fixed updating menu background with "Menustyle * Background"
9102         * fvwm/stack.c (__get_stacking_sibling):
9103         (restack_windows):
9104         fixed another stacking problem
9106 2002-10-28  Mikhael Goikhman  <migo@homemail.com>
9108         * acinclude.m4:
9109         * configure.in:
9110         corrected and lined up several help lines
9112         * INSTALL.fvwm:
9113         added --enable-xinerama-emulation description
9115 2002-10-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9117         * fvwm/stack.c (restack_windows):
9118         (__get_stacking_sibling):
9119         fixed another stacking problem
9121 2002-10-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9123         * fvwm/add_window.c (AddWindow):
9124         braodcast M_RESTACK_WINDOW after M_ADD_WINDOW to fix problem with
9125         windows starting lowered or on other layers in FvwmPager
9127         * fvwm/stack.c (restack_windows):
9128         (__get_visible_window):
9129         fixed a stacking problem with layers
9131 2002-10-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9133         * fvwm/functable.c (func_table):
9134         fixed Pick command
9136 2002-10-24  Mikhael Goikhman  <migo@homemail.com>
9138         * NEWS:
9139         * fvwm/fvwm.1.in:
9140         * fvwm/windowlist.c:
9141         new WindowList option SortByResource
9143         * fvwm/style.c (check_window_style_change):
9144         * libs/FlocaleCharset.c:
9145         fixed gcc warning
9147         * AUTHORS:
9148         place recent authors to the top, not bottom
9150         * fvwm/builtins.c:
9151         corrected typo in error message
9153 2002-10-23  Dan Espen  <dane@mk.telcordia.com>
9155         * fvwm/fvwm.1.in: Lang check done.
9157 2002-10-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9159         * fvwm/menus.c:
9160         work on new menu loop code
9162         * libs/timeout.h:
9163         * libs/timeout.c:
9164         new files
9166         * fvwm/menus.c (__mloop_handle_event):
9167         (__mloop_get_event):
9168         (__mloop_handle_action_with_mi):
9169         * fvwm/menus.h (MenuReturn):
9170         renamed MenuReturn member menu to target_menu
9172         * fvwm/menus.c (__mloop_handle_event):
9173         * fvwm/menus.h (MenuReturn):
9174         removed a "write only" member of MenuReturn
9176         * fvwm/conditional.c (circulate_cmd):
9177         fixed the "Any" command
9179 2002-10-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9181         * fvwm/stack.c (mark_transient_subtree):
9182         fixed stack ring corruption with iconified transients
9183         (restack_windows):
9184         fixed a problem with lowering windows below the icons of their
9185         transients
9187 2002-10-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9189         * libs/Colorset.c:
9190         * fvwm/menustyle.c:
9191         * libs/Colorset.h:
9192         * libs/Flocale.h:
9193         * libs/PictureBase.h:
9194         * fvwm/menuitem.c:
9195         * fvwm/geometry.c:
9196         * fvwm/colorset.c:
9197         renamed colorset_struct to colorset_t
9199 2002-10-22  olicha  <olivier.chapuis@free.fr>
9201         * libs/PictureUtils.c:
9202         Minor fixes and add #if O experimental code
9204 2002-10-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9206         * fvwm/icons.c (DrawIconPixmapWindow):
9207         (DrawIconWindow):
9208         * fvwm/events.c (HandlePropertyNotify):
9209         * libs/Fft.c (FftDrawString):
9210         * libs/Colorset.c (DumpColorset):
9211         (LoadColorset):
9212         * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
9213         use renamed colorset_struct members
9215         * libs/Colorset.h (colorset_struct):
9216         renamed and re-sorted members and cut down bit field lengths for
9217         percentile members
9219         * fvwm/menustyle.c (menustyle_update):
9220         fixed core dump
9222         * fvwm/stack.c (restack_windows):
9223         fixed flickering when raising transients; can't prevent flickering when
9224         lowering a window completely
9225         (restack_windows):
9226         fixed unnecessary error message
9228         * fvwm/fvwm.c (main):
9229         init Scr to zeros
9231         * fvwm/stack.c (__restack_window):
9232         fixed a stacking problem with icons
9234         * fvwm/add_window.c (destroy_icon):
9235         fixed a memory leak
9237 2002-10-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9239         * fvwm/menuitem.c (menuitem_paint):
9240         * fvwm/menustyle.c (menustyle_parse_style):
9241         * fvwm/menus.c (paint_side_pic):
9242         (paint_menu):
9243         (select_menu_item):
9244         (repaint_transparent_menu):
9245         * fvwm/menustyle.h (MenuLook):
9246         cleaned up menu drawing code, fixed last patch
9248         * fvwm/menuitem.c (menuitem_paint):
9249         * fvwm/menustyle.c (menustyle_parse_style):
9250         fixed HilightBack default
9252         * fvwm/bindings.c (binding_cmd):
9253         (bind_get_bound_button_contexts):
9254         (ParseBinding):
9255         * fvwm/screen.h (ScreenInfo):
9256         fixed mouse bindings with buttons > 5
9258         * fvwm/menuitem.c (menuitem_paint):
9259         * fvwm/menustyle.c (menustyle_parse_style):
9260         (menustyle_parse_style):
9261         (CMD_CopyMenuStyle):
9262         (menustyle_update):
9263         (menustyle_free):
9264         * fvwm/menus.c (repaint_transparent_menu):
9265         * fvwm/menustyle.h:
9266         HilightBack and ActiveFore are now independent
9268 2002-10-18  olicha  <olivier.chapuis@free.fr>
9270         * libs/PictureUtils.c (get_color_index):
9271         (create_mapping_table):
9272         (PictureAllocColorTable):
9273         Use a new distance and method for color approximation. Use 68 colors
9274         for the default under depth 8. I am happy with this, should use a
9275         similar distance method for dithering
9277         * libs/PictureUtils.c (alloc_color_dynamic_no_limit):
9278         (PictureAllocColorTable):
9279         (PictureDitherByDefault):
9280         (PictureUseBWOnly):
9281         (PictureIitColors):
9282         (PicturePrintColorInfo):
9283         * libs/PictureUtils.h:
9284         Allows -color-limit to work with any visual and depth for testing
9285         propose. Should replace (Pdepht < 2) test by (PictureUseBWOnly())
9287         * fvwm/colorset.c:
9288         Replaced (Pdepht < 2) test by (PictureUseBWOnly())
9290 2002-10-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9292         * fvwm/add_window.c (get_default_window_attributes):
9293         cleaned up
9295         * fvwm/builtins.c (CMD_ChangeDecor):
9296         removed some duplicate redrawing
9298         * fvwm/update.c (apply_decor_change):
9299         suppress duplicate window update upon ChangeDecor
9300         (apply_window_updates):
9301         do not delete the focus window
9303 2002-10-17  olicha  <olivier.chapuis@free.fr>
9305         * NEWS:
9306         A bunch of news
9308         * libs/Colorset.c (CreateBackgroundPixmap):
9309         Use a 1x1 pixmap and not a widthxheight pixmap for Plain color
9311         * fvwm/builtins.c (CMD_Colorset):
9312         Do not BroadcastColorset in CMD_Colorset, parse_colorset do that!
9314 2002-10-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9316         * fvwm/add_window.c (AddWindow):
9317         * fvwm/update.c (apply_window_updates):
9318         * fvwm/move_resize.c (handle_stick):
9319         (CMD_Stick):
9320         suppress drawing of sticky decorations initially
9321         reduce module communication overhead when (un)sticking windows
9323         * fvwm/borders.c (border_draw_decorations):
9324         * fvwm/window_flags.h:
9325         * fvwm/fvwm.h:
9326         * fvwm/frame.c (frame_create_move_resize_args):
9327         (get_resize_decor_gravities_one_axis):
9328         (frame_mrs_setup_draw_decorations):
9329         (mr_args_internal):
9330         initialize window decorations with a "None" pixmap;
9331         delay drawing window decorations initially to prevent drawing multiple
9332         times;
9333         => windows grabbing the focus upon startup are drawn focused
9334         immediately
9336         * fvwm/frame.c (frame_free_move_resize_args):
9337         reparent the frame hide windows to NoFocusWin instead of Root to
9338         suppress unnecessary ReparentNotify events
9340 2002-10-16  olicha  <olivier.chapuis@free.fr>
9342         * fvwm/fvwm.c (main):
9343         Fixed a typo
9345         * libs/FRender.h:
9346         Fixed compilation with X cvs
9348         * libs/Colorset.c (CreateBackgroundPixmap):
9349         Fixed a GC leak
9351         * fvwm/events.c (HandlePropertyNotify):
9352         * fvwm/colorset.c (update_root_pixmap):
9353         Use _XROOTPMAP_ID and not ESETROOT_PMAP_ID neither XSETROOT_ID
9354         to found a root pixmap
9356 2002-10-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9358         * fvwm/bindings.c (bind_get_bound_button_contexts):
9359         another mouse binding fix
9361         * fvwm/conditional.c (CreateConditionMask):
9362         simplified parsing
9363         all conditions have a negation with '!' prepended
9364         (Circulate):
9365         (CMD_All):
9366         (select_cmd):
9367         Current, All, Pick, ThisWindow and PointerWindow imply the
9368         CirculateHitShaded condition.
9370         * fvwm/focus.c (__focus_grab_buttons):
9371         * libs/defaults.h (NUMBER_OF_EXTENDED_MOUSE_BUTTONS):
9372         fixed bindings using mouse buttons >= 6
9374 2002-10-15  olicha  <olivier.chapuis@free.fr>
9376         * libs/PictureUtils.c (PicturePrintColorInfo):
9377         (print_colormap):
9378         * fvwm/commands.h:
9379         * fvwm/functable.c (func_table):
9380         * fvwm/builtins.c (CMD_PrintInfo):
9381         * fvwm/fvwm.1.in:
9382         New cmd PrintInfo. Only one arg at present time: "Colors"
9384         * fvwm/fvwm.c (main):
9385         Auto detect card with 2 hardware colormaps and choose the best
9386         visual and colormap
9388         * libs/PictureUtils.c (PictureInitColors):
9389         (*):
9390         * libs/PictureUtils.h:
9391         * fvwm/fvwm.c (main):
9392         * libs/PictureBase.c (PictureInitCMapRoot):
9393         (PictureInitCMap):
9394         * libs/PictureBase.h:
9395         Try to support DirectColor visual in a good way, I do not think
9396         this is really useful.
9397         Added a flexible interface function PictureInitColors for
9398         colors allocation initialization.
9399         Some cleanup in color allocation and some preparation for a new
9400         method for saving and freeing colors allocated by images and gradients.
9401         Removed some ifdefed to 0 debug code.
9403         * libs/Picture.c (*):
9404         * libs/Picture.h:
9405         * libs/PictureImageLoader.c (*):
9406         * libs/PictureImageLoader.h:
9407         Replace Root by win
9409 2002-10-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9411         * fvwm/add_window.c (setup_key_and_button_grabs):
9412         * fvwm/bindings.c (ParseBinding):
9413         (activate_binding):
9414         * fvwm/add_window.c (setup_key_and_button_grabs):
9415         don't grab window context specific bindings anymore; instead, set
9416         Scr.buttons2grab accordingly
9418         * fvwm/bindings.c (activate_binding):
9419         fixed stroke bindings on window context being ignored if no other
9420         action was bound to that context
9422         * fvwm/add_window.c (destroy_icon):
9423         fixed duplicate icon pixmap when switching from NoIconOverride to
9424         IconOverride
9426 2002-10-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9428         * fvwm/icons.c:
9429         re-indented some code
9430         (AutoPlaceIcon):
9431         fixed random position of icon title for icons with a position hint
9433         * fvwm/fvwm.1.in:
9434         corrected default of Use/NoIconPosition style
9436 2002-10-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9438         * fvwm/windowlist.c (CMD_WindowList):
9439         fixed random string for iconified windows in the WindowList
9441 2002-10-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9443         * NEWS:
9444         updated for 2.4.12
9446 2002-10-08  olicha  <olivier.chapuis@free.fr>
9448         * libs/PictureBase.c (*):
9449         (PictureInitCMapRoot)
9450         (PictureSetupWhiteAndBlack):
9451         (PictureWhitePixel):
9452         (PictureBlackPixel):
9453         (PictureDefaultGC):
9454         New interface function PictureWhitePixel, PictureBlackPixel. Analogue
9455         of the Xlib WhitePixel and BlackPixel functions but in the Pvisaul.
9456         New interface function PictureInitCMapRoot analogue to PictureInitCMap,
9457         but always use the root visual and allows to set or not a private
9458         color limit table.
9459         New interface PictureDefaultGC, analogue of Xlib DefaultGC function
9460         but which respects the Pvisual
9462         * libs/PictureGraphics.c (*):
9463         * libs/FScreen.c (FScreenInit):
9464         * libs/FRender.c (FRenderRender):
9465         * libs/Fft.c (FftDrawString):
9466         * fvwm/icons.c (CreateIconWindow):
9467         * fvwm/colorset.c (parse_colorset):
9468         * fvwm/move_resize.c (CMD_XorValue):
9469         * fvwm/colorset.c (alloc_colorset):
9470         * fvwm/fvwm.c (main):
9471         Use the new interface functions and some fix if the fvwm depth !=
9472         the root depth.
9474         * libs/PictureUtils.c (PictureAllocColorTable):
9475         Change the default color table to a 4x4x4 cc + 4 grey
9477 2002-10-07  Dan Espen  <dane@mk.telcordia.com>
9479         * fvwm/fvwm.1.in: Use built-in, not builtin.
9481 2002-10-06  Mikhael Goikhman  <migo@homemail.com>
9483         * configure.in:
9484         s/FvwmNewDebug/FvwmDebug/
9486         * fvwm/commands.h:
9487         * fvwm/conditional.c (CMD_NoWindow):
9488         * fvwm/functable.c:
9489         * NEWS:
9490         new command NoWindow to remove window context
9492         * fvwm/fvwm.1.in:
9493         use "fvwm" spelling, at least in the middle of sentences
9495 2002-10-06  Dan Espen  <dane@mk.telcordia.com>
9497         * fvwm/fvwm.1.in: Dont refer to fvwm commands as
9498         builtin commands.  Use "builtin", not "built in" or "built-in".
9499         Other adjustments.
9501 2002-10-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9503         * libs/Graphics.c (do_relieve_rectangle):
9504         removed debug message
9506         * fvwm/focus.c (__update_windowlist):
9507         (__set_focus_to_fwin):
9508         fixed reversal of __update_windowlist arguments causing FlipFocus to
9509         break [and maybe other things]
9511 2002-10-05  olicha  <olivier.chapuis@free.fr>
9513         * libs/PictureUtils.c (alloc_color_cube):
9514         It si possible to enable "gamma correction" for colors cubes (disabled,
9515         define USE_GAMMA_CORRECTION to 1 and set COLOR_GAMMA and GREY_GAMMA)
9517         * libs/PictureUtils.c (get_color_index):
9518         (create_mapping_table):
9519         Use a more exact approximation of colors for pur cc without the big
9520         16x16x16 cc
9522         * libs/PictureUtils.c (PictureFreeColors):
9523         Fixed a memory leak
9525         * libs/Graphics.c (CreateGradientPixmap):
9526         (CreateGradientPixmapFromString):
9527         Cleanup
9529 2002-10-04  olicha  <olivier.chapuis@free.fr>
9531         * libs/PictureUtils.c (*):
9532         Used a better color approximation for color cube when we do not dither.
9533         Added some new colors tables: color cube with some grey colors.
9534         Change the default to a 4x4x3 cc with 6 grey (54 colors).
9535         Some visual fixes.
9537         * fvwm/fvwm.c (main):
9538         Fixed the visual option
9540 2002-10-03  Mikhael Goikhman  <migo@homemail.com>
9542         * configure.in:
9543         generate FvwmNewDebug and FvwmGtkDebug
9545 2002-10-02  olicha  <olivier.chapuis@free.fr>
9547         * libs/PictureUtils.c (USED_DIST):
9548         Used the euclidian distance for colors distance
9550         * libs/Fft.c (FftGetFont):
9551         Disable Xft if the Xserver does not support XRender
9553 2002-10-01  olicha  <olivier.chapuis@free.fr>
9555         * libs/Fft.c (FftGetFont):
9556         Disable Xft if the Xserver does not support XRender
9558         * libs/FRender.c (FRenderRender):
9559         * libs/PictureGraphics.c (PGraphicsTintRectangle):
9560         Fixed
9562         * libs/Colorset.c (SetRectangleBackground):
9563         (SetClippedRectangleBackground):
9564         * libs/Colorset.h:
9565         New interface function for drawing a subset of a colorset rectangle
9567 2002-09-26  olicha  <olivier.chapuis@free.fr>
9569         * fvwm/update.c (apply_window_updates):
9570         Fixed icons colorset update
9572         * libs/FRender.c (FRenderRender):
9573         Fixed bitmap rendering
9575         * fvwm/update.c (apply_window_updates):
9576         * fvwm/geometry.c (move_icon_to_position):
9577         * fvwm/events.c (HandleEnterNotify):
9578         (HandleExpose):
9579         (HandleLeaveNotify):
9580         (HandlePropertyNotify):
9581         * fvwm/add_window.c (setup_icon_font):
9582         * fvwm/icons.c (DrawIconWindow):
9583         (DrawIconTitleWindow):
9584         (DrawIconPixmapWindow):
9585         (ChangeIconPixmap):
9586         (RedoIconName):
9587         Fixed focus/unfocus flickering
9589 2002-09-25  olicha  <olivier.chapuis@free.fr>
9591         * fvwm/icons.c (DrawIconTitleWindow):
9592         One more drawing fix
9594 2002-09-24  olicha  <olivier.chapuis@free.fr>
9596         * fvwm/icons.c (DrawIconTitleWindow):
9597         An other drawing fix
9599 2002-09-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9601         * fvwm/move_resize.c (__move_loop):
9602         fixed uninitialised variable
9603         (InteractiveMove):
9604         fixed starting move at random position
9606 2002-09-24  olicha  <olivier.chapuis@free.fr>
9608         * fvwm/update.c (apply_window_updates):
9609         * fvwm/geometry.c (move_icon_to_position):
9610         * fvwm/events.c (HandleEnterNotify):
9611         (HandleExpose):
9612         (HandleLeaveNotify):
9613         (HandlePropertyNotify):
9614         * fvwm/add_window.c (setup_icon_font):
9615         * fvwm/icons.c (DrawIconWindow):
9616         (DrawIconTitleWindow):
9617         (DrawIconPixmapWindow):
9618         (ChangeIconPixmap):
9619         (RedoIconName):
9620         Fixed icon drawing. Split icon window drawing.
9622         * libs/FRender.c (*):
9623         Fixed compilation and small clean up
9625 2002-09-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9627         * fvwm/conditional.c (CreateFlagString):
9628         fixed quoting in conditional command conditions
9630         * fvwm/menus.c (__mloop_handle_event):
9631         removed unnecessary querying of pointer position on button release in
9632         menus
9633         (__menu_loop):
9634         fixed posting menus
9636         * fvwm/bindings.c (ParseBinding):
9637         increased maximum allowed key symbol name length to 200 characters
9639         * fvwm/execcontext.h (enum):
9640         * fvwm/fvwm.c (Done):
9641         (SetRCDefaults):
9642         (main):
9643         (StartupStuff):
9644         use new contexts
9646         * fvwm/execcontext.h (enum):
9647         added EXCT_INIT ['I'] and EXCT_EXIT ['X'] contexts
9649         * fvwm/menus.c (pop_menu_up):
9650         fixed accidental menu animation with certain menu position hints
9652 2002-09-23  olicha  <olivier.chapuis@free.fr>
9654         * libs/FRender.c (*):
9655         Fixed(?) XRender rendering with some Xserver
9657         * fvwm/update.c (apply_window_updates):
9658         * fvwm/geometry.c (move_icon_to_position):
9659         * fvwm/events.c (HandleEnterNotify):
9660         (HandleExpose):
9661         (HandleLeaveNotify):
9662         (HandlePropertyNotify):
9663         * fvwm/add_window.c (setup_icon_font):
9664         * fvwm/icons.c (DrawIconWindow):
9665         (ChangeIconPixmap):
9666         (RedoIconName):
9667         Clip text and icon drawing for the icons
9669 2002-09-21  Mikhael Goikhman  <migo@homemail.com>
9671         * NEWS:
9672         * libs/System.c:
9673         Path commands now support form: "path1;ext1:path2:path3;ext3"
9674         where ext1 (for example, ".png") means all files in path1 should
9675         be forced to have extention ".png" even if the requested icon
9676         has ".xpm" ("calculator.xpm" or has no extention at all ("calculator")
9678         * fvwm/execcontext.h:
9679         small changes in latters used for EXCT_* constants
9681         * fvwm/module_interface.c:
9682         * libs/Picture.c:
9683         * libs/PictureBase.c:
9684         * fvwm/cursor.c:
9685         some spacing reindentation
9687 2002-09-21  olicha  <olivier.chapuis@free.fr>
9689         * libs/FRender.c (FRenderCompositeAndCheck):
9690         Temporally take GraphicsExposure in account
9692 2002-09-20  Mikhael Goikhman  <migo@homemail.com>
9694         * libs/vpacket.h:
9695         fixed incorrect MiniIconPacket definition: s/char *name/char name[1]/
9697 2002-09-20  olicha  <olivier.chapuis@free.fr>
9699         * fvwm/icons.c (GetIconPicture):
9700         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
9701         Fixed the alpha channel
9703 2002-09-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9705         * NEWS:
9706         updated for 2.4.11
9708 2002-09-20  olicha  <olivier.chapuis@free.fr>
9710         * libs/FRender.c (FRenderTintPicture):
9711         (FRenderTintRectangle):
9712         (FRenderRender):
9713         * libs/FRenderInterface.h:
9714         * libs/PictureGraphics.c (PGraphicsTintRectangle):
9715         Make FRender code more modular. Add a 24+8 tinting method and enable it
9716         in the place of the 32 tinting method (which can be enabled by defining
9717         USE_ABSOLUTE_FORMATE)
9719 2002-09-19  olicha  <olivier.chapuis@free.fr>
9721         * fvwm/menus.c (get_menu_repaint_transparent_parameters):
9722         (animated_move_back):
9723         (pop_menu_up):
9724         (repaint_transparent_menu):
9725         * fvwm/move_resize.c (AnimatedMoveOfWindow):
9726         (AnimatedMoveAnyWindow):
9727         * fvwm/move_resize.h:
9728         Support the new colorset transparent options and fix greyed item
9729         of transparent animated menus
9731         * fvwm/menus.c (pop_menu_up):
9732         (animated_move_back):
9734         * libs/Rectangles.c:
9735         * libs/Rectangles.h:
9736         * libs/Makefile.am:
9737         New libs files for rectangles, segments, regions ..etc
9739         * fvwm/menus.c (clear_expose_menu_area):
9740         (get_menu_paint_item_parameters):
9741         (paint_menu):
9742         (select_menu_item):
9743         (ParentalMenuRePaint):
9744         (ParentalMenuRePaint):
9745         * fvwm/menuitem.c (clear_menu_item_background):
9746         (menuitem_paint):
9747         * fvwm/menuitem.h (MenuPaintItemParameters):
9748         Clip the item icons and text drawing
9750         * fvwm/menus.c (__mloop_exit):
9751         Fixed an indirect uninitialized variable bug
9753         * fvwm/menus.c (__mloop_handle_event): *
9754         (__mloop_handle_action_with_mi): *
9755         Update some comments
9757         * libs/FRender.c (FRenderVisualInit):
9758         (FRenderRender):
9759         * fvwm/colorset.c (parse_colorset):
9760         Small clean up
9762 2002-09-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9764         * fvwm/menus.c (__menu_loop):
9765         (__mloop_handle_action_with_mi):
9766         fixed parent menu redrawing
9768         * fvwm/style.c (check_window_style_change):
9769         * fvwm/update.c (apply_window_updates):
9770         * fvwm/add_window.c (setup_icon_size_limits):
9771         honour changes in IconSize style without recapture
9773         * fvwm/focus.c (focus_query_open_grab_focus):
9774         * fvwm/events.c (HandlePropertyNotify):
9775         * fvwm/add_window.c (setup_transientfor):
9776         take care of various funny initial transientfor settings
9778         * fvwm/stack.c (__raise_lower_recursion):
9779         new function
9780         fixed stacking core dump
9782 2002-09-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9784         * libs/Graphics.c:
9785         ANSI C fixes
9787         * configure.in:
9788         added a program that tests for -Werror option and similar; bug out of
9789         configure if the test program doesn't compile
9791 2002-09-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9793         * fvwm/fvwm.1.in:
9794         * configure.in:
9795         add a "do not edit" warning at the beginning of the man page
9797         * configure.in:
9798         enable the original CFLAGS and CPPFLAGS before generating the Makefiles
9800         * libs/FScreen.c (XineramaQueryScreens):
9801         fixed linking problem when compiling without Xinerama
9803         * fvwm/cursor.c (CMD_CursorStyle):
9804         fixed cursorstyle command being applied to windows without handles
9806         * fvwm/ewmh.h (EWMH_ProcessClientMessage):
9807         (EWMH_ProcessPropertyNotify):
9808         * fvwm/gnome.h (GNOME_ProcessClientMessage):
9809         (GNOME_HandlePropRequest):
9810         fixed dummy macros when compiling without gnome/ewmh support
9812 2002-09-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9814         * libs/queue.c (fqueue_add_inside):
9815         add a new command with the same execution time as a previous one behind
9816         it
9818         * configure.in:
9819         override CFLAGS and CPPFLAGS with empty strings instead of generating an
9820         error message
9822         * fvwm/functions.c (__execute_function):
9823         * fvwm/execcontext.h (exec_context_type_t):
9824         replace enum values with letters for readability
9826         * fvwm/functions.c (__execute_function):
9827         improved command log output
9829         * fvwm/schedule.c (execute_obj_func):
9830         fixed schedule queue timing
9832         * configure.in:
9833         refuse to run configure if CFLAGS is not empty
9835 2002-09-16  Mikhael Goikhman  <migo@homemail.com>
9837         * fvwm/misc.c:
9838         fixed compilation with --enable-command-log; simplified fvwm_msg()
9840         * libs/Module.c:
9841         reformatted; don't send end-of-line with SET_*MASK
9843 2002-09-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9845         * fvwm/borders.c (border_draw_multi_pixmap_titlebar):
9846         fixed multipixmap title drawing
9848         * fvwm/frame.h (struct):
9849         * fvwm/frame.c (frame_get_titlebar_dimensions):
9850         removed unused code
9852         * fvwm/events.c (HandlePropertyNotify):
9853         applied FlocaleGetNameProperty core dump fix by Suzanne Skinner
9855         * libs/Fft.c (FftDrawString):
9856         -Wall fix when compiling w/o Xft
9858 2002-09-15  olicha  <olivier.chapuis@free.fr>
9860         * libs/Colorset.c (CreateBackgroundPixmap):
9861         Fixed a dpy problem with FvwmBacker
9862         * libs/Colorset.c (CreateBackgroundPixmap):
9863         Fixed creation a root transparent pixmap for small root pixmap
9865 2002-09-14  olicha  <olivier.chapuis@free.fr>
9867         * libs/Fft.c (FftDrawString):
9868         Fixed clip region with shadow font
9870         * libs/PictureGraphics.c (PGraphicsCreateTranslucent):
9871         Added a function to create translucent pixmaps
9872         * libs/Colorset.c (CreateBackgroundPixmap):
9873         A small fix
9874         * libs/FRender.c (FRenderRender):
9875         Allows to use the root window as src pixmap
9877 2002-09-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9879         * fvwm/fvwm.1.in:
9880         Fixed open double quotes in ButtonState section
9882 2002-09-13  Dan Espen  <dane@mk.telcordia.com>
9884         * fvwm/fvwm.1.in: Add -cmd module timeout information.
9886 2002-09-13  olicha  <olivier.chapuis@free.fr>
9888         * libs/Colorset.c (CreateBackgroundPixmap):
9889         (UpdateBackgroundTransparency):
9890         (SetRectangleBackground):
9891         * libs/Colorset.h:
9892         * fvwm/colorset.c (*):
9893         * fvwm/colorset.h:
9894         * fvwm/events.c (HandlePropertyNotify):
9895         Starting implementation of RootTransparent colorset. Worked on
9896         tinted Transparent colorset. Various colorset parsing fixes.
9898         * libs/Fft.c (FftDrawString):
9899         * libs/Flocale.h:
9900         Added the possibility to draw with a clipping region.
9902         * libs/FRender.c (FRenderRender):
9903         * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
9904         (PCreateRenderPixmap):
9905         (PGraphicsCreateTransprency):
9906         (PGraphicsTintRectangle):
9907         Improve current rendering functions to be able to tint the
9908         ParentalRelative pixmap or the background of a window.
9909         Re-enabled XRender rendering.
9911         * fvwm/borders.c:
9912         remove a #if 0 debug "render" code
9914 2002-09-13  Mikhael Goikhman  <migo@homemail.com>
9916         * fvwm/builtins.c (ReadTitleButton):
9917         * fvwm/screen.h:
9918         new button state shortcuts AllNormal, AllToggled,
9919         AllActive, AllInactive, AllUp, AllDown
9921         * fvwm/module_interface.c:
9922         minor reformatting
9924         * acconfig.h:
9925         possibly fixed compilation with non gcc
9927 2002-09-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9929         * fvwm/focus.c (_focus_grab_buttons):
9930         (__focus_grab_buttons):
9931         renamed
9932         (__focus_grab_one_button):
9933         grab all modifier combinations on client windows by default if
9934         necessary; this saves a lot of traffic but may grab unnecessary
9935         modifiers with mouse bindings on the client window
9937         * fvwm/fvwm.1:
9938         * libs/defaults.h (DEF_FP_MODIFIERS):
9939         * fvwm/events.c (__handle_focus_raise_click):
9940         * fvwm/style.c (style_parse_focus_policy_style):
9941         * fvwm/focus_policy.h (FPOL_ANY_MODIFIER_MASK):
9942         default is now to use any modifiers for clicktofocus/raise purposes
9944         * fvwm/menus.c (__mloop_get_event):
9945         fixed menu hang
9946         (menu_tear_off):
9947         fixed tear off menus
9949         * libs/FEvent.c (FCheckIfEvent):
9950         (FCheckMaskEvent):
9951         (FCheckTypedEvent):
9952         (FCheckTypedWindowEvent):
9953         (FCheckWindowEvent):
9954         fixed FCheck...Event functions thus fixing Menu command behaving like
9955         Popup
9957         * fvwm/move_resize.c (InteractiveMove):
9958         fixed offset between pointer and window when dragging
9960         * fvwm/virtual.c (HandlePaging):
9961         * fvwm/icons.c (CMD_Iconify):
9962         * fvwm/move_resize.c (InteractiveMove):
9963         * fvwm/menus.c (get_menu_options):
9964         (get_menu_options):
9965         * libs/FScreen.c (GetMouseXY):
9966         use new function fev_get_evpos_or_query()
9968         * libs/Makefile.am:
9969         * libs/Pointer.c:
9970         removed file
9972         (GetLocationFromEventOrQuery):
9973         moved to FEvent.c and renamed to fev_get_evpos_or_query()
9974         * libs/FEvent.c (fev_set_evpos):
9975         new function
9977         * fvwm/functions.c (__execute_function):
9978         (execute_complex_function):
9979         fixed complex action clicking logic
9981         * fvwm/add_window.c (CaptureOneWindow):
9982         fixed RecaptureWindow
9983         (CaptureAllWindows):
9984         fixed Restart
9986         * fvwm/functable.c (func_table):
9987         fixed running RecaptureWindow without a context window
9989         * fvwm/conditional.c (circulate_cmd):
9990         fixed action to run
9992         * fvwm/events.c (HandleVisibilityNotify):
9993         fixed VisibilityNotify handling
9995         * fvwm/functions.c (execute_complex_function):
9996         fixed memory corruption
9997         (__execute_function):
9998         fixed using wrong context
9999         (__execute_function):
10000         removed conditional that was always true now
10001         (DeferExecution):
10002         fixed core dump
10004         * fvwm/module_interface.c (ExecuteModuleCommand):
10005         initialise module number
10007 2002-09-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10009         * fvwm/add_window.c (CaptureOneWindow):
10010         fixed memory corruption
10012         * fvwm/icons.c (Iconify):
10013         (DeIconify):
10014         fixed bug introduced with transient stacking patch
10016         * fvwm/functions.c (DeferExecution):
10017         (__execute_function):
10018         (execute_complex_function):
10019         cleaned up and optimized exec_context handling
10021         * fvwm/schedule.c:
10022         * fvwm/menucmd.c:
10023         * fvwm/update.c:
10024         * fvwm/windowlist.c:
10025         * fvwm/conditional.c:
10026         * fvwm/focus.c:
10027         * fvwm/functions.c:
10028         * fvwm/placement.c:
10029         * fvwm/colorset.c:
10030         * fvwm/stack.c:
10031         * fvwm/virtual.c:
10032         * fvwm/module_interface.c:
10033         * fvwm/icons.c:
10034         * fvwm/builtins.c:
10035         * fvwm/add_window.c:
10036         * fvwm/move_resize.c:
10037         * fvwm/fvwm.h (F_CMD_ARGS):
10038         (F_PASS_ARGS):
10039         completely removed the builtin command arguments fw, w, and context
10041         * fvwm/functions.c (DeferExecution):
10042         fixed core dump
10044         * fvwm/stack.c (BroadcastRestack):
10045         removed global lastTimestamp
10047         * fvwm/ewmh_events.c (EWMH_ProcessClientMessage):
10048         (EWMH_ProcessPropertyNotify):
10049         (ewmh_WMStateShaded):
10050         (ewmh_WMStateSticky):
10051         (ewmh_WMStateHidden):
10052         (ewmh_WMState):
10053         (ewmh_MoveResize):
10054         (ewmh_WMDesktop):
10055         (ewmh_CloseWindow):
10056         (ewmh_DesktopGeometry):
10057         (ewmh_ActiveWindow):
10058         use new function interface
10060         * fvwm/menus.c (do_menu):
10061         * fvwm/menucmd.c (menu_func):
10062         * fvwm/windowlist.c (CMD_WindowList):
10063         use new function interface
10064         replaced "(XEvent *)1" hack with a regular flag
10066 2002-09-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10068         * fvwm/add_window.c (destroy_window):
10069         * fvwm/update.c (destroy_scheduled_windows):
10070         * fvwm/screen.h (ScreenInfo):
10071         new member is_executing_menu_function
10073         * fvwm/windowlist.c (CMD_WindowList):
10074         * fvwm/menucmd.c (menu_func):
10075         * fvwm/gnome.c (CMD_GnomeButton):
10076         (GNOME_ProcessClientMessage):
10077         (GNOME_HandlePropRequest):
10078         * fvwm/modconf.c (CMD_Send_ConfigInfo):
10079         * fvwm/update.c (apply_window_updates):
10080         * fvwm/repeat.c (CMD_Repeat):
10081         * fvwm/conditional.c (circulate_cmd):
10082         (CMD_Prev):
10083         (CMD_Next):
10084         (CMD_None):
10085         (CMD_Any):
10086         (CMD_Current):
10087         (CMD_Cond):
10088         (CMD_CondCase):
10089         (select_cmd):
10090         (CMD_All):
10091         (CMD_Direction):
10092         (CMD_WindowId):
10093         * fvwm/focus.c (warp_to_fvwm_window):
10094         (CMD_WarpToWindow):
10095         * fvwm/read.c (run_command_stream):
10096         (run_command_file):
10097         (CMD_Read):
10098         (CMD_PipeRead):
10099         * fvwm/fvwm.c (Done):
10100         (SetRCDefaults):
10101         (StartupStuff):
10102         (main):
10103         use new function interface
10104         (main):
10105         fixed running startup script under random module number
10107         * fvwm/functions.c (execute_function_override_window):
10108         * fvwm/functions.c (execute_function_override_wcontext):
10109         new convenience functions
10111         * fvwm/gnome.c:
10112         * fvwm/modconf.c:
10113         * fvwm/session.c:
10114         re-indented
10116         * fvwm/module_interface.c (CMD_Send_WindowList):
10117         (CMD_set_mask):
10118         (CMD_set_sync_mask):
10119         (CMD_set_nograb_mask):
10120         fixed core dumps
10121         don't use "Module" argument anymore
10122         (ExecuteModuleCommand):
10123         made static
10124         use new function interface
10126         * fvwm/add_window.c (CaptureOneWindow):
10127         (do_recapture):
10128         (CaptureAllWindows):
10129         * fvwm/events.c (HandleMapRequestKeepRaised):
10130         * fvwm/add_window.c (AddWindow):
10131         AddWindow takes executiuon context as its argument instead of the
10132         window; changed caller
10133         don't use "Event" anymore
10135         * fvwm/fvwm.c (StartupStuff):
10136         generate an execution context for startup
10138         * fvwm/move_resize.c (DoResize):
10139         (__resize_step):
10140         (moveLoop):
10141         (__move_loop):
10142         renamed and used new function interface in args
10144         * fvwm/geometry.c (constrain_size):
10145         added XEvent *e argument to remove use of global "Event"; changed all
10146         callers
10148 2002-09-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10150         * fvwm/stack.c (get_next_window_in_stack_ring):
10151         (get_prev_window_in_stack_ring):
10152         (get_transientfor_fvwmwindow):
10153         * fvwm/icons.c (SetMapStateProp):
10154         * fvwm/events.c (fake_map_unmap_notify):
10155         * fvwm/misc.c (IsRectangleOnThisPage):
10156         * fvwm/menus.c (menu_enter_tear_off_menu):
10157         (menu_close_tear_off_menu):
10158         * fvwm/icons.c (DrawIconWindow):
10159         * fvwm/focus.c:
10160         * fvwm/colormaps.c (InstallWindowColormaps):
10161         made FvwmWindow * arguments const in many functions
10163         * fvwm/menus.c (pop_menu_up):
10164         (pop_menu_down):
10165         (__mloop_do_menu):
10166         (__mloop_do_popup):
10167         (do_menu):
10168         (menu_enter_tear_off_menu):
10169         (__mloop_get_event):
10170         (__mloop_get_event_timeout_loop):
10171         (__mloop_do_menu):
10172         (__mloop_get_mi_actions):
10173         (is_double_click):
10174         * fvwm/events.c (HandleEnterNotify):
10175         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
10176         (__move_window):
10177         (__move_loop):
10178         (__resize_step):
10179         (__resize_window):
10180         * fvwm/functions.c (DeferExecution):
10181         (__execute_function):
10182         * fvwm/windowlist.c (CMD_WindowList):
10183         * fvwm/colormaps.c (colormap_handle_colormap_notify):
10184         * fvwm/module_interface.c (CMD_ModuleSynchronous):
10185         (ExecuteModuleCommand):
10186         * fvwm/builtins.c (CMD_Wait):
10187         * fvwm/events.c (WaitForButtonsUp):
10188         (HandleShapeNotify):
10189         (HandleVisibilityNotify):
10190         (HandleUnmapNotify):
10191         (HandleSelectionRequest):
10192         (HandleReparentNotify):
10193         (HandlePropertyNotify):
10194         (HandleMotionNotify):
10195         (HandleMapRequestKeepRaised):
10196         (HandleMapRequest):
10197         (HandleMappingNotify):
10198         (HandleMapNotify):
10199         (HandleLeaveNotify):
10200         (HandleKeyPress):
10201         (HandleFocusOut):
10202         (HandleFocusIn):
10203         (HandleExpose):
10204         (HandleEnterNotify):
10205         (HandleDestroyNotify):
10206         (HandleColormapNotify):
10207         (HandleClientMessage):
10208         (HandleButtonRelease):
10209         (HandleButtonPress):
10210         (__handle_bpress_on_root):
10211         (__handle_bpress_action):
10212         (__handle_click_to_raise):
10213         (__handle_click_to_focus):
10214         (__is_bpress_window_handled):
10215         (__handle_focus_raise_click):
10216         don't use "Event", "Fw" and old_execute_function() anymore
10218         * fvwm/events.c (dispatch_event):
10219         removed preserve_tmpwin argument; changed all callers
10221         * fvwm/events.c (CoerceEnterNotifyOnCurrentWindow):
10222         fixed random focus member of faked event
10224         * fvwm/gnome.c (GNOME_ProcessClientMessage):
10225         * fvwm/ewmh_events.c (EWMH_ProcessClientMessage):
10226         (EWMH_ProcessPropertyNotify):
10227         * fvwm/move_resize.c (DisplaySize):
10228         (DisplayPosition):
10229         (position_geometry_window):
10230         * fvwm/geometry.c (get_window_borders):
10231         (get_window_borders_no_title):
10232         made args const
10234         * fvwm/events.c (dispatch_event):
10235         create event execution context
10236         (HandleClientMessage):
10237         removed useless local "button"
10238         (GetContext):
10239         don't fiddle with global Fw anymore; added argument to return context
10240         window; changed all callers
10242         * fvwm/events.c (CoerceEnterNotifyOnCurrentWindow):
10243         * fvwm/move_resize.c (__resize_window):
10244         use new event handle interface
10246         * fvwm/events.c:
10247         * fvwm/eventhandler.h:
10248         new event handler interface
10250         * fvwm/functions.c (CMD_Plus):
10251         * fvwm/builtins.c (AddToDecor):
10252         (CMD_AddToDecor):
10253         (CMD_DestroyDecor):
10254         use F_CMD_ARGS in AddToDecor
10255         (CMD_StrokeFunc):
10256         removed useless check for realloc return value
10257         use new function interface
10258         fixed another memory leak
10260         * fvwm/builtins.c (__remove_window_decors):
10261         replace old_execute_function with execute_function
10263         * fvwm/add_window.c (setup_window_placement):
10264         * fvwm/placement.c (PlaceWindow):
10265         * fvwm/schedule.c (execute_obj_func):
10266         * fvwm/colorset.c (add_to_junk):
10267         use new function call interface
10269         * fvwm/fvwm.h (F_EXEC_ARGS):
10270         (F_PASS_EXEC_ARGS):
10271         removed now unused macros
10273         * fvwm/functions.c (CheckActionType):
10274         (cf_cleanup):
10275         (DeferExecution):
10276         (__execute_function):
10277         (__run_complex_function_items):
10278         (execute_complex_function):
10279         rewrote function call interface
10281         * fvwm/functions.c (__run_complex_function_items):
10282         new function split off from execute_complex_function
10284         * fvwm/externs.h:
10285         * fvwm/events.c:
10286         removed "Event" global
10288 2002-09-08  Dan Espen  <dane@mk.telcordia.com>
10290         * fvwm/fvwm.1.in: Language check.
10292 2002-09-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10294         * fvwm/functions.c (old_execute_function):
10295         removed
10297         * fvwm/module_interface.c (do_execute_module):
10298         don't write module argument anymore; code claimed that writing 0 into
10299         *Module prevented WaitForButtonsUp from being called, but that was
10300         either a lie or a relic of the past
10302         * fvwm/fvwm.h (exec_func_args_type):
10303         removed type
10304         (F_CMD_ARGS):
10305         (F_PASS_ARGS):
10306         removed *Module argument
10308         * fvwm/functions.c (__execute_function):
10309         new interface
10311         * fvwm/functions.h (enum):
10312         added more function execution falgs
10314         * fvwm/fvwm.h:
10315         add exec_context_t *exc to builtin arguments
10317         * libs/FEvent.c (fev_copy_last_event):
10318         new function
10320         * fvwm/execcontext.h:
10321         * fvwm/execcontext.c:
10322         new files introducing the "exec_context_t" structure that shall replace
10323         the builtin command interface
10325         * fvwm/stack.c (__RaiseOrLowerWindow):
10326         (RaiseOrLowerWindow):
10327         (__restack_window):
10328         (mark_transient_subtree):
10329         (__sort_transient_ring):
10330         properly handle restacking of windows with more than one transient and
10331         multiple levels of transients at the same time
10332         (__RaiseOrLowerWindow):
10333         (RaiseOrLowerWindow):
10334         renamed function and added wrapper
10336         * fvwm/fvwm.h (FvwmWindow):
10337         added new scratch registers
10339 2002-09-06  Mikhael Goikhman  <migo@homemail.com>
10341         * configure.in:
10342         * Makefile.am:
10343         minor improvements in the new release procedure
10345 2002-09-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10347         * fvwm/stack.c (RaiseOrLowerWindow):
10348         (__restack_window):
10349         (mark_transient_subtree):
10350         (must_move_transients):
10351         (is_on_top_of_layer_ignore_rom):
10352         handle restacking trees of transient windows; still does not work too
10353         well if a window has multiple transients at the same time
10355 2002-09-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10357         * fvwm/stack.h:
10358         * fvwm/stack.c:
10359         restored versions from before 9th of September
10360         (RaiseOrLowerWindow):
10361         fixed StackTransientParent style without RaiseTransient or
10362         LowerTransient on transient_for window
10363         StackTransientParent works only on window in the same layer
10364         (mark_transient_subtree):
10365         fixed handling of window group hint w/ iconify
10366         (restack_windows):
10367         (RaiseOrLowerWindow):
10368         (new_layer):
10369         fixed flickering when overlapping transients aree lowered
10371         * fvwm/move_resize.c (__resize_window):
10372         * fvwm/colorset.c (add_to_junk):
10373         cleaned up event handling
10375         * fvwm/move_resize.c (__resize_window):
10376         renamed function and changed callers
10378         * fvwm/fvwm.h (F_PASS_ARGS):
10379         (F_CMD_ARGS):
10380         removed eventp command argument
10382         * fvwm/events.c (DispatchEvent):
10383         (dispatch_event):
10384         renamed function, added event argument and changed all callers
10386         * libs/FEvent.c (fev_fake_event):
10387         * libs/FEvent.c (fev_get_evtype__remove_me):
10388         new functions
10390         * fvwm/menus.c (menuShortcuts):
10391         (is_double_click):
10392         (pop_menu_up):
10393         (pop_menu_up):
10394         (pop_menu_down):
10395         (pop_menu_down):
10396         (__mloop_init):
10397         (__mloop_get_event_timeout_loop):
10398         (__mloop_get_event):
10399         (__mloop_do_popup):
10400         (__mloop_do_popup):
10401         (do_menu):
10402         * fvwm/builtins.c (CMD_FakeClick):
10403         * fvwm/functions.c (CheckActionType):
10404         (CheckActionType):
10405         * fvwm/focus.c (__try_program_focus):
10406         (__try_program_focus):
10407         * fvwm/icccm2.c (SetupICCCM2):
10408         * fvwm/virtual.c (HandlePaging):
10409         * fvwm/module_interface.c (make_vpacket):
10410         (make_new_vpacket):
10411         * fvwm/schedule.c (squeue_get_next_ms):
10412         (squeue_get_next_ms):
10413         (CMD_Schedule):
10414         * fvwm/stack.c (BroadcastRestack):
10415         * fvwm/move_resize.c (resize_window):
10416         (moveLoop):
10417         * libs/FEvent.c (fev_get_evtime):
10418         removed global lastTimestamp; use fev_get_evtime() from FEvent.c instead
10420         * fvwm/events.c (HandleEnterNotify):
10421         (DispatchEvent):
10422         (My_XNextEvent):
10423         (discard_events):
10424         (discard_window_events):
10425         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
10426         (moveLoop):
10427         (resize_window):
10428         * fvwm/menus.c (__mloop_get_event):
10429         * fvwm/virtual.c (HandlePaging):
10430         (MoveViewport):
10431         * fvwm/functions.c (DeferExecution):
10432         (CheckActionType):
10433         * fvwm/misc.c (get_server_time):
10434         * fvwm/builtins.c (CMD_StrokeFunc):
10435         * fvwm/menus.c (pop_menu_up):
10436         (pop_menu_down):
10437         (__mloop_init):
10438         * libs/FEvent.c (fev_update_last_timestamp):
10439         removed StashEventTime function; handle this directly in FEvent.c
10441         * fvwm/module_interface.c (ExecuteModuleCommand):
10442         * fvwm/misc.c (Keyboard_shortcuts):
10443         * fvwm/colormaps.c (colormap_handle_colormap_notify):
10444         * fvwm/events.c (handle_all_expose):
10445         (dispatch_event):
10446         (HandleEvents):
10447         (HandleKeyPress):
10448         don't use Event global anymore
10450         * fvwm/bindings.c (activate_binding):
10451         fixed key bindings on window corners
10453         * libs/fvwmlib.h (C_DECOR):
10454         context including all parts of the decorations
10456 2002-09-04  Mikhael Goikhman  <migo@homemail.com>
10458         * libs/FEvent.h:
10459         fixed compilation warning in #endif comment
10461         * fvwm/borders.c:
10462         removed debug fprintf
10464         * acconfig.h:
10465         * configure.in:
10466         * fvwm/fvwm.c:
10467         * fvwm/fvwm.1:
10468         another solution for reporting the cvs status
10470 2002-09-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10472         * configure.in (LIBOBJS):
10473         * acinclude.m4 (smr_SWITCH):
10474         fix for autoconf 2.53
10476         * fvwm/*.[ch]:
10477         removed unnecessary includes
10479         * fvwm/Makefile.am (fvwm_SOURCES):
10480         * fvwm/events.h:
10481         * fvwm/eventmasks.h:
10482         * fvwm/eventhandlers.h:
10483         new files split from events.h
10485         * fvwm/icccm2.c (HandleSelectionRequest):
10486         (HandleSelectionClear):
10487         * fvwm/colormaps.c (HandleColormapNotify):
10488         * fvwm/menus.c (menu_tear_off):
10489         * fvwm/move_resize.c (resize_window):
10490         * fvwm/events.c:
10491         * fvwm/events.h:
10492         new argument avh_args_t to the event handler functions; still unused
10493         moved all event handlers to events.c
10494         remove now unnecessary includes in some files
10496         * fvwm/icccm2.c (HandleSelectionRequest):
10497         re-indented file
10499         * **/*.c:
10500         use replacements for X event functions everywhere
10502 2002-09-03  Mikhael Goikhman  <migo@homemail.com>
10504         * fvwm/defaults.h:
10505         * fvwm/screen.h:
10506         * fvwm/borders.c (border_flags_to_button_state):
10507         (CMD_ButtonState):
10508         * fvwm/builtins.c (ReadTitleButton):
10509         * fvwm.1.in (ButtonStyle, TitleStyle, ButtonState):
10510         * fvwm/fvwm.c (InitVariables):
10511         Imlemented new title and button states InactiveUp and InactiveDown,
10512         new state shortcuts Active, Inactive, ToggledActive, ToggledInactive.
10513         So now there are 4+4 states and 2+2 aliases instead of 3+3 states.
10514         Updated all ButtonStyle, TitleStyle and ButtonState commands.
10516         * fvwm/fvwm.c:
10517         reformat license info in -version to be 3 lines and one empty line
10518         instead of 5 non-empty lines, for readability
10520 2002-09-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10522         * libs/FEvent.c:
10523         * libs/FEvent.h:
10524         * libs/Makefile.am:
10525         new files
10527         * fvwm/stack.c (__raise_or_lower_recursion):
10528         (RaiseOrLowerWindow):
10529         split into two functions
10530         renamed to __raise_or_lower_window
10531         (mark_transient_subtree):
10532         new flag MARK_CLEAR
10533         (position_new_window_in_stack_ring):
10534         (RaiseWindow):
10535         (LowerWindow):
10536         cleaned up stacking code
10538         * fvwm/menus.c (paint_menu):
10539         fixed a minor drawing problem with menu item reliefs
10541 2002-09-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10543         * fvwm/move_resize.c (InteractiveMove):
10544         removed eventp from interface
10545         changed all callers
10547         * fvwm/menucmd.c (menu_func):
10548         * fvwm/gnome.c (GNOME_ProxyButtonEvent):
10549         * fvwm/windowlist.c (CMD_WindowList):
10550         * fvwm/read.c (run_command_file):
10551         (run_command_stream):
10552         * fvwm/focus.c (warp_to_fvwm_window):
10553         * libs/Event.c (GetSubwindowFromEvent):
10554         * fvwm/events.c (GetContext):
10555         * libs/Pointer.c (GetLocationFromEventOrQuery):
10556         * fvwm/builtins.c (CMD_StrokeFunc):
10557         (CMD_StrokeFunc):
10558         * fvwm/events.c (StashEventTime):
10559         * fvwm/move_resize.c (InteractiveMove):
10560         * fvwm/functions.c (DeferExecution):
10561         (old_execute_function):
10562         * fvwm/fvwm.h (F_CMD_ARGS):
10563         (F_EXEC_ARGS):
10564         make eventp argument const to ease clean up work
10566         * fvwm/windowlist.c (CMD_WindowList):
10567         * fvwm/move_resize.c (InteractiveMove):
10568         * fvwm/menucmd.c (menu_func):
10569         * fvwm/icons.c (CMD_Iconify):
10570         always query pointer position in case a script modified the position
10571         in the input event
10573         * fvwm/focus.c (SetPointerEventPosition):
10574         removed function since it modifies the global event variable
10576         * fvwm/functable.c (func_table):
10577         added cursor and event type members fo DeferExecution call
10578         * fvwm/functions.c (DeferExecution):
10579         made static, call from inside functions.c only
10580         removed calls everywhere
10582         * fvwm/builtins.c (CMD_StrokeFunc):
10583         fixed memory leak
10585         * fvwm/virtual.c (HandlePaging):
10586         (MoveViewport):
10587         don't use global "Event" anymore
10588         (HandlePaging):
10589         pass in event structure through arguments
10590         changed all callers
10592 2002-09-02  olicha  <olivier.chapuis@free.fr>
10594         * libs/Colorset.c (*):
10595         * libs/Colorset.h:
10596         * libs/colorset.c (parse_colorset):
10597         * libs/PictureGraphics.c (PGrabXImage):
10598         (PCreateRenderPixmap):sx
10599         (PGraphicsCreateTransprency):
10600         * libs/PictureGraphics.h:
10601         An experimental implementation of ParentalRelative tinted background
10603         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
10604         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
10605         (PImageLoadPng):
10606         * libs/PictureGraphics.c (PGraphicsCreateStretchPicture):
10607         * libs/FRenderInit.c (FRenderInit):
10608         (FRenderGetAlphaDepth):
10609         * libs/FRenderInit.h:
10610         Fixed alpha blending for xserver without depth 8 pixmap
10611         (maybe a tmp fix)
10613         * fvwm/fvwm.1.in
10614         typo
10616 2002-09-01  olicha  <olivier.chapuis@free.fr>
10618         * NEWS:
10619         Colorset and alpha blending news
10621 2002-08-31  olicha  <olivier.chapuis@free.fr>
10623         * libs/Ficonv.c (convert_charsets):
10624         Fixed compilation on systems that do not have EILSEQ
10626 2002-08-30  olicha  <olivier.chapuis@free.fr>
10628         * libs/PictureGraphics.c (PGraphicsCreateStretchPicture):
10629         Fixed compilation of certain modules
10631         * fvwm/borders.c (border_render_into_pixmap):
10632         * libs/PictureGraphics.c (PGraphicsCreateStretchPicture):
10633         * libs/PictureGraphics.h:
10634         * libs/Graphics.c (CreateStretchPixmap):
10635         (CreateStretchYPixmap):
10636         (CreateStretchXPixmap):
10637         Progress with masks in multipixmap title
10639         * libs/PictureGraphics.c (PCopyArea):
10640         (PTileRectangle):
10641         (PCreateRenderPixmap):
10642         * fvwm/borders.c (border_fill_pixmap_background):
10643         Some drawing fixes
10645         * fvwm/icons.c (DrawIconWindow):
10646         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
10647         Fixed the shape mask of ewmh icons and icons with some alpha
10649 2002-08-30  olicha  <olivier.chapuis@free.fr>
10651         * libs/PictureGraphics.c (PCreateRenderPixmap):
10652         (PGrabImageErrorHandler):
10653         (PGraphicsCopyPixmaps):
10654         (PGraphicsCopyFvwmPicture):
10655         (PGraphicsTileRectangle):
10656         (PGraphicsRenderPixmaps):
10657         (PGraphicsRenderPicture):
10658         * libs/PictureGraphics.h:
10659         * libs/PictureBase.h:
10660         Replaced PGraphicsTileRectangle with a more powerful function,
10661         PCreateRenderPixmap, which performs *full* XRender simulation.
10662         So alpha blending is now supported even without Xrender support.
10663         New interface function PGraphicsRenderPixmaps and PGraphicsRenderPicture
10664         for direct rendering with tint and alpha channel.
10666         * libs/FRender.c (FRenderVisualInit):
10667         (FRenderCopyArea):
10668         (FRenderTintRectangle):
10669         (FRenderRender):
10670         * libs/FRenderInterface.h:
10671         Replaced FRenderCopyArea and FRenderTintRectangle with a more general
10672         and more powerfull function FRenderRender
10674         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
10675         (PImageLoadPng):
10676         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
10677         Load the alpha even without Xrender support
10679         * libs/Colorset.h:
10680         * fvwm/colorset.c (parse_pixmap_tint):
10681         (parse_colorset):
10682         (alloc_colorset):
10683         Implemented IconTint, IconAlpha, bgTint. Tint (~ PixmapTint or ImageTint
10684         or obsolete TintMask) also tints gradients and the tint is applied
10685         only to the pixmap not the bg color. The average bg is computed from
10686         the "original" pixmap and not the tinted one, bgTint should be used
10687         to get a real average bg in the case the pixmap is tinted
10689         * fvwm/icons.c (DrawIconWindow):
10690         (CreateIconWindow):
10691         * fvwm/menuitem.c (menuitem_paint):
10692         * fvwm/menus.c (paint_side_pic):
10693         * fvwm/borders.c (border_get_border_background):
10694         (border_draw_decor_to_pixmap):
10695         (border_fill_pixmap_background):
10696         * fvwm/events.c (HandlePropertyNotify):
10697         Picture rendering use the new PGraphicsRenderPixmaps and
10698         PGraphicsRenderPicture libs functions. Respect new colorset options
10700         * fvwm/colorset.c (parse_colorset):
10701         (alloc_colorset):
10702         (CMD_ReadWriteColors):
10703         * fvwm/fvwm.1.in:
10704         Removed the read write colorset codes
10706         * libs/Graphics.c (CalculateGradientDimensions):
10707         Fixed the size of dithered H and V gradients
10709         * libs/PictureUtils.c (*):
10710         * libs/PictureUtils.h:
10711         Some cleanup
10713 2002-08-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10715         * fvwm/menus.c (paint_menu_gradient_background):
10716         fixed drawing of SidePic menu background when not using SideColor
10718 2002-08-28  Hippo
10719         * FvwmIconBox/icons.c:
10720         Fixed core dump
10722 2002-08-26  Mikhael Goikhman  <migo@homemail.com>
10724         * NEWS: mention new FvwmButtons additions and TitleStyle MultiPixmap
10726 2002-08-26  Mikhael Goikhman  <migo@homemail.com>
10728         * configure.in:
10729         fixed --disable-ewmh
10731         * libs/Picture.c:
10732         * libs/Picture.h:
10733         added const to some prototypes
10735 2002-08-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10737         * fvwm/menus.c (MenuInteraction):
10738         (__menu_loop):
10739         renamed MenuInteraction to __menu_loop
10741         * fvwm/menus.c (pop_menu_up):
10742         (do_menu):
10743         (MenuInteraction):
10744         removed pdo_warp_to_title argument of pop_menu_up and changed all
10745         callers; logic is now in last_saved_position_hints
10746         (__menu_get_next_event_timeout_loop):
10747         began to split MenuInteraction into several sub functions
10748         go away, evil "goto"!
10750         * fvwm/style.c (style_parse_one_style_option):
10751         all boolean styles - and *only* boolean styles, can be prefixed with a
10752         '!' to invert their meaning
10753         (style_parse_button_style):
10754         moved Button and NoButton styles to separate function
10756         * configure.in:
10757         * NEWS:
10758         updated for 2.5.4-devel
10760         * configure.in:
10761         2.5.3 was released
10763         * configure.in:
10764         * NEWS:
10765         updated for 2.5.3
10767         * fvwm/menuitem.h (struct):
10768         * fvwm/menus.c (paint_menu_gradient_background):
10769         (paint_menu_pixmap_background):
10770         (paint_menu):
10771         (clear_expose_menu_area):
10772         fixed TiledPixmap menu background drawing bug
10773         sorted function in file and removed forward declarations
10775 2002-08-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10777         * fvwm/Makefile.am (LDADD):
10778         put -lfvwm at front of library list
10780         * fvwm/windowlist.c (CMD_WindowList):
10781         print window's page instead of current page in windowlist
10783 2002-08-24  Bob Woodside  <dumbledore@woodsway.com>
10785         * fvwm/events.c (HandleButtonPress, HandleEnterNotify):
10786         Fix for Experimental RaiseOverUnmanaged Handling.
10788 2002-08-22  Bob Woodside  <dumbledore@woodsway.com>
10790         * fvwm/focus.h:
10791         * fvwm/stack.h:
10792         New defs for Experimental RaiseOverUnmanaged Handling.
10794         * fvwm/events.c (HandleEnterNotify):
10795         * fvwm/focus.c:
10796         (set_focus_to_fwin)
10797         (focus_query_grab_buttons)
10798         (_focus_grab_buttons)
10799         (focus_grab_buttons)
10800         (focus_grab_buttons_client_entered)
10801         (_SetFocusWindow)
10802         (__activate_window_by_command)
10803         (_ReturnFocusWindow)
10804         (_DeleteFocus)
10805         (_ForceDeleteFocus)
10806         * fvwm/stack.c:
10807         (raise_over_unmanaged)
10808         (is_above_unmanaged)
10809         (_is_on_top_of_layer)
10810         (is_on_top_of_layer)
10811         (is_on_top_of_layer_and_above_unmanaged)
10812         Experimental RaiseOverUnmanaged Handling - an attempt to fix the
10813         interaction of RaiseOverUnmanaged with various focus policies,
10814         particularly mouse focus + client click raises; issue mouse
10815         button grabs when and only when they are actually needed; and
10816         fix the old "xfm + MouseFocusClickRaises" bug once and for all.
10817         (Thanks to the GFPR, this is much more straightforward to do!)
10819 2002-08-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10821         * fvwm/fvwm.1.in:
10822         added a paragraph about scripting and complex functions.
10824         * fvwm/style.c (style_parse_one_style_option):
10825         fixed flag_mask and change_mask of TitleAt... styles that broke left
10826         and bottom titles
10828 2002-08-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10830         * fvwm/fvwm.1.in:
10831         describe new focus policy styles
10833 2002-08-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10835         * fvwm/style.c (merge_styles):
10836         fixed applying style updates immediately
10838         * fvwm/geometry.c (constrain_size):
10839         fixed font resizing of maximized windows
10841         * fvwm/window_flags.h:
10842         * fvwm/fvwm.h (has_new_wm_normal_hints):
10843         new window flags
10845         * fvwm/events.c (HandleEnterNotify):
10846         fixed UngrabNotify returning focus to just unfocused window
10847         * fvwm/focus.h:
10848         added debug code
10850         * fvwm/style.c (merge_styles):
10851         (free_style_mask):
10852         (__simplify_style_list):
10853         fixed default style calculations
10855         * fvwm/events.c (HandleConfigureRequest):
10856         disabled debug output
10858         * fvwm/style.c (merge_styles):
10859         * fvwm/fvwm.h (window_style):
10860         new style member default_mask to allow two levels of defaults;
10861         fixes focus policy defaults
10862         * fvwm/style.h:
10863         rewrote many of the macros; changed all callers
10865         * fvwm/borders.c (RenderIntoPixmap):
10866         (DrawMultiPixmapTitlebar):
10867         (border_render_into_pixmap):
10868         (border_draw_multi_pixmap_titlebar):
10869         applied Suzanne Skinner's multi pixmap titles fix
10870         renamed functions and changed all callers
10872         * libs/FScreen.c (FScreenGetScrRect):
10873         (FindScreen):
10874         (FScreenGetScrId):
10875         new utility functions
10877         * fvwm/windowlist.c (CMD_WindowList):
10878         new option MaxLabelWidth for the WIndowList command based on patch by
10879         Maxim F. Ischenko
10880         new options NoLayer, ShowPage, ShowPageX, ShowPageY and ShowScreen to
10881         WindowList command.
10883         * fvwm/events.c (HandleConfigureRequest):
10884         removed debug code now that the EXPERIMENTAL_ANTI_RACE_CONDITION_CODE
10885         seems to work without problems
10887 2002-08-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10889         * fvwm/style.c (merge_styles):
10890         fixed style defaults getting stuck to on once set
10892         * configure.in:
10893         fixed a number of non portable uses of the "test" command and unified
10894         the used syntax of all calls to reduce chance of copy-and-paste
10895         problems
10897 2002-08-17  Mikhael Goikhman  <migo@homemail.com>
10899         * configure.in:
10900         * fvwm/fvwm.1.in:
10901         minor typos and improvements;
10902         better string quotings and detection of fribidi for autoconf-2.53
10904         * fvwm/Makefile.am:
10905         don't include *.in in EXTRA_DIST, they are auto-included
10907 2002-08-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10909         * fvwm/events.c (HandleConfigureRequest):
10910         (HandlePropertyNotify):
10911         (is_resizing_event_pending):
10912         fixed uninitialised return code of test_resizing_event
10914 2002-08-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10916         * fvwm/decorations.c (SelectDecor):
10917         * fvwm/style.h:
10918         * fvwm/window_flags.h:
10919         * fvwm/fvwm.h:
10920         moved common.s.has_no_border window flag to common.has_no_border to
10921         fix windows getting stuck without a border once the HandleWidth or
10922         BorderWidth was set to 0 and then increased again
10924         * fvwm/fvwm.1.in:
10925         removed reference to BUGS and TODO
10927         * configure.in:
10928         moved a lot of constant definitions to configure.in; the fvwm.lsm and
10929         fvwm.1 files don't have to be updated for a release anymore; the release
10930         number and date are set by configure
10932         * fvwm/fvwm.c (setVersionInfo):
10933         fixed output of "fvwm -version"
10935 2002-08-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10937         * fvwm/style.c (style_parse_one_style_option):
10938         Old focus styles override less of the behaviour specified with the
10939         FP... styles; use defaults instead without setting the mask
10940         (style_parse_one_style_option):
10941         removed the styles MouseFocusClickIgnoreMotion and
10942         MouseFocusClickIgnoreMotionOff, use the corresponfing FP... styles
10943         instead
10944         (style_parse_one_style_option):
10945         ClickToFocusRaises now works only on the client window, not on the
10946         decorations
10947         (style_parse_one_style_option):
10948         fixed FocusFollowsMouse style
10949         (style_set_old_focus_policy):
10950         moved old default focus settings to a separate function, simplified code
10952 2002-08-14  Dan Espen  <dane@mk.telcordia.com>
10954         * fvwm/fvwm.1: Add hot-spot is an offset information,
10955         fix spelling, "hot-spot", not "hotspot" (too bad its wrong in
10956         the xpm docs).
10958 2002-08-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10960         * fvwm/style.c (style_parse_focus_policy_style):
10961         fixed parsing of FPFocusClickButtons and FocusClickModifiers
10963         * libs/Makefile.am:
10964         added missing files
10966         * fvwm/events.c (HandleConfigureRequest):
10967         fixed ConfigureRequest race condition
10969 2002-08-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10971         * configure.in:
10972         quote environment variables
10974 2002-08-13  olicha  <olivier.chapuis@free.fr>
10976         * NEWS:
10977         Color limit and dithering news
10979         * fvwm/fvwm.1:
10980         Added a minimal doc for the -color-limit option
10982         * fvwm/builtins.c (CMD_ColorLimit):
10983         ColorLimit is obsolete
10985         * fvwm/builtins.c (ReadDecorFace):
10986         * libs/PictureUtils.c (my_dither_depth_15_16_init):
10987         (PictureAllocColorAllProp):
10988         Implemented dithering for depth 16 and 15. This is off by default
10989         in colorset (use the dither colorset option) and on by default
10990         for window title gradient. Gradient are visibly more smooth.
10992         * libs/PictureUtils.c (*):
10993         Some cleanup
10995 2002-08-13  Mikhael Goikhman  <migo@homemail.com>
10997         * fvwm/fvwm.1:
10998         corrected the pixmap cursor description, added an example
11000 2002-08-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11002         * fvwm/menus.c (select_menu_item):
11003         (paint_menu_gradient_background):
11004         fixed a redrawing problem with H/Vgradient menu faces
11005         (MenuInteraction):
11006         fixed a minor problem w/ entering submenus via keyboard
11008 2002-08-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11010         * fvwm/move_resize.c (CMD_ResizeMove):
11011         (CMD_Resize):
11012         (CMD_Maximize):
11013         (CMD_ResizeMaximize):
11014         (CMD_ResizeMoveMaximize):
11015         commands can be used on iconified windows again
11017         * ONEWS:
11018         * NEWS:
11019         moved pre-2.2 NEWS to ONEWS
11021         * libs/strdup.c:
11022         * libs/safemalloc.c:
11023         * libs/envvar.c:
11024         * libs/alloca.c:
11025         * libs/Target.c:
11026         * libs/Parse.c:
11027         * libs/Bindings.c:
11028         * fvwm/menustyle.c:
11029         * fvwm/menus.c:
11030         * fvwm/menuitem.c:
11031         * fvwm/menucmd.c:
11032         * fvwm/frame.c:
11033         * fvwm/events.c:
11034         * fvwm/borders.c:
11035         let config.h include strinh.h or strings.h
11037         * fvwm/style.c (style_parse_one_style_option):
11038         (style_parse_one_style_option):
11039         fixed icon box crash
11041         * fvwm/bindings.c (update_nr_buttons):
11042         fixed extra buttons on window decorations
11044         * fvwm/style.c (style_parse_one_style_option):
11045         fixed parsing of the FP... and !FP... styles
11047 2002-08-12  Bob Woodside  <dumbledore@woodsway.com>
11049         * fvwm/style.c (style_parse_one_style_option):
11050         Fixed a typo so that ClickToFocusRaisesOff actually turns
11051         the option off instead of on.
11053 2002-08-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11055         * fvwm/focus.c (focus_grab_buttons):
11056         only grab necessary buttons on the client window
11058 2002-08-11  olicha  <olivier.chapuis@free.fr>
11060         * libs/PictureUtils.c (PICTURE_DEBUG_COLORS_ALLOC_FAILURE):
11061         Removed some debug code
11063         * fvwm/fvwm.c (main):
11064         (usage):
11065         Added -color-limit to fvwm usage
11067 2002-08-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11069         * fvwm/style.c (style_parse_one_style_option):
11070         (style_parse_focus_policy_style):
11071         added style options "FP..." to control focus policy
11072         removed OverrideGrabFocus and AllowGrabFocus styles
11074         * fvwm/style.c (merge_styles):
11075         fixed style defaults != 0
11077         * fvwm/focus.c (__restore_focus_after_unmap):
11078         fixed a bug w/ reverting the focus from transients to the parent
11080         * fvwm/ewmh.c (ewmh_HandleDesktop):
11081         * fvwm/style.c (style_parse_one_style_option):
11082         fixed defaults for various focus styles
11084         * NEWS:
11085         updated for 2.4.9
11087         * fvwm/frame.c (frame_mrs_resize_move_windows):
11088         backed out anti-flicker patch that slowed down command processing
11090         * fvwm/bindings.c (update_nr_buttons):
11091         (ParseBinding):
11092         fixed sluggish processing of mouse bindings
11094         * fvwm/events.c (__handle_bpress_action):
11095         fixed drawing of pressed decorations w/o bindings
11097         * fvwm/frame.c (frame_move_resize):
11098         removed debug code that broke focus handling
11100         * fvwm/style.c (style_parse_one_style_option):
11101         fixed passing the focus click to the app by default
11103         * fvwm/events.c (__handle_click_to_focus):
11104         * fvwm/focus.c (set_focus_to_fwin):
11105         (__set_focus_to_fwin):
11106         removed drawing code that broke as many places as it fixed; plus it
11107         cause unnecessary redraws
11109         * fvwm/events.c (HandleConfigureRequest):
11110         send a synthetical ConfigureNotify if an application is not granted its
11111         wishes from a ConfigureRequest; this is necessary for FixedPPosition
11112         and FixedPSize to work properly; also to be ICCCM compliant
11113         always force border_width 0 in these events
11114         in the experimental cr merging code, send a number of cn events equal
11115         to the number of merged events
11117         * libs/Parse.c:
11118         * fvwm/style.c:
11119         reformatted
11121         * fvwm/style.c (style_parse_focus_policy_style):
11122         (style_parse_icon_size_style):
11123         (style_parse_icon_box_style):
11124         (style_parse_icon_grid_style):
11125         (style_parse_icon_fill_style):
11126         (style_parse_one_style_option):
11127         (parse_and_set_window_style):
11128         split into separate functions
11129         (style_parse_one_style_option):
11130         simplified and cleaned up
11132         * fvwm/events.h:
11133         * fvwm/decorations.c:
11134         * fvwm/cursor.h:
11135         * fvwm/cursor.c:
11136         * fvwm/conditional.h:
11137         * fvwm/conditional.c:
11138         * fvwm/colorset.h:
11139         * fvwm/colors.h:
11140         * fvwm/colors.c:
11141         * fvwm/colormaps.c:
11142         * fvwm/bindings.h:
11143         * fvwm/bindings.c:
11144         reformatted and cleaned up
11146 2002-08-11  olicha  <olivier.chapuis@free.fr>
11148         * libs/PictureUtils.c (*):
11149         * libs/PictureUtils.h:
11150         * libs/PictureDitherMatrice.h (new file):
11151         * libs/PictureImageLoader.c (*):
11152         * libs/PictureImageLoader.h:
11153         * libs/PictureGraphics.c  (PGraphicsCreateDitherPixmap):
11154         (PCreateDitherPixmap):
11155         (PCreateTintedPixmap):
11156         * libs/PictureGraphics.h:
11157         * libs/PictureBase.c (PictureInitCMap):
11158         * libs/PictureBase.h:
11159         * libs/Picture.c (*):
11160         * libs/Picture.h:
11161         * libs/Fxpm.h:
11162         * libs/Colorset.c (DumpColorset):
11163         (LoadColorset):
11164         * libs/Colorset.h:
11165         * libs/Graphics.c (all gradient functions):
11166         * libs/fvwmlib.h:
11167         * fvwm/screen.h:
11168         * fvwm/move_resize.c (CMD_XorPixmap):
11169         * fvwm/colors.c (FreeColors):
11170         * fvwm/builtins.c (CMD_DefaultColors):
11171         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
11172         * fvwm/builtins.c (FreeDecorFace):
11173         (ReadDecorFace):
11174         * fvwm/menus.c (pop_menu_down):
11175         (paint_menu_gradient_background):
11176         (scanForPixmap):
11177         * fvwm/menus.h:
11178         * fvwm/menustyle.c (menustyle_free_face):
11179         (menustyle_parse_face):
11180         (menustyle_free):
11181         (menustyle_update):
11182         (menustyle_parse_style):
11183         (CMD_CopyMenuStyle):
11184         * fvwm/menustyle.h:
11185         * fvwm/icons.c (GetIconFromFile):
11186         * fvwm/builtins.c (ReadMultiPixmapDecor):
11187         (ReadDecorFace):
11188         * fvwm/borders.c (border_draw_decor_to_pixmap):
11189         * fvwm/add_window.c (setup_mini_icon):
11190         * fvwm/fvwm.c (main):
11191         * fvwm/colorset.c (free_colorset_background):
11192         (parse_pixmap):
11193         (parse_shape):
11194         (parse_colorset):
11195         New color limit method and implement dithering in depth <= 8.
11196         Added a "fvwm picture attributes" structure for loading image.
11197         Some colors leaks fix. Add some (weak) color leaks. New option
11198         -color-limit for fvwm. 257 fix. Some prepartion for tint and
11199         alpha in colorset.
11201 2002-08-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11203         * libs/Flocale.c (FlocaleRotateDrawString):
11204         fixed a crash
11206 2002-08-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11208         * fvwm/style.c (parse_and_set_window_style):
11209         fixed the default for passing the click-to-raise click for mousey
11210         focus
11212         * fvwm/events.c (__handle_click_to_focus):
11213         removed redundant code
11214         (WaitForButtonsUp):
11215         fixed sluggish motion event handling when waiting for buttons to be
11216         released
11218         * fvwm/focus.c (__set_focus_to_fwin):
11219         (set_focus_to_fwin):
11220         fixed redrawing the border w/ mousey focus when the window was entered,
11221         then the border was clicked before the FocusIn event arrived
11223         * fvwm/events.c (__handle_bpress_on_managed):
11224         * fvwm/style.c (parse_and_set_window_style):
11225         fixed some small focus problems
11227         * fvwm/fvwm.c:
11228         reformatted and cleaned up
11230         * fvwm/fvwm.1:
11231         formatting fixes
11233         * fvwm/focus.c (focus_query_click_to_raise):
11234         (focus_query_click_to_focus):
11235         * fvwm/style.c (parse_and_set_window_style):
11236         * fvwm/events.c (__test_for_motion):
11237         (__check_click_to_focus_or_raise):
11238         (__handle_focus_raise_click):
11239         (__is_bpress_window_handled):
11240         (__handle_click_to_focus):
11241         (__handle_click_to_raise):
11242         (__handle_bpress_stroke):
11243         (__handle_bpress_action):
11244         (__handle_bpress_on_root):
11245         (__handle_bpress_on_unmanaged):
11246         (__handle_bpress_on_managed):
11247         (HandleButtonPress):
11248         GFPR: completely rewrote ButtonPress handler, thus finishing the core
11249         of the new focus code; only the parsing for the new styles is missing
11251         * fvwm/virtual.c (is_pan_frame):
11252         new function
11254 2002-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11256         * fvwm/add_window.c (AddWindow):
11257         fixed compile error
11259         * fvwm/events.c (__handle_focus_raise_click):
11260         (HandleButtonPress):
11261         clean up
11263         * fvwm/events.c (__handle_focus_raise_click):
11264         * fvwm/fvwm.h (struct):
11265         * fvwm/style.c (check_window_style_change):
11266         (parse_and_set_window_style):
11267         * fvwm/session.c (MatchWinToSM):
11268         * fvwm/window_flags.h:
11269         eliminated parts of the old focus code
11271         * fvwm/focus.c (__set_focus_to_fwin):
11272         (set_focus_to_fwin):
11273         * fvwm/fvwm.c (InitVariables):
11274         * fvwm/add_window.c (destroy_window):
11275         * fvwm/events.c (__handle_focus_raise_click):
11276         * fvwm/screen.h (ScreenInfo):
11277         eliminated Scr.Ungrabbed global
11279         * fvwm/update.c (apply_window_updates):
11280         (flush_window_updates):
11281         * fvwm/icons.c (DeIconify):
11282         (Iconify):
11283         * fvwm/move_resize.c (CMD_Maximize):
11284         (__move_window):
11285         (handle_stick):
11286         * fvwm/frame.c (frame_free_move_resize_args):
11287         (__frame_setup_window):
11288         * fvwm/virtual.c (do_move_window_to_desk):
11289         (CMD_GotoDeskAndPage):
11290         (goto_desk):
11291         (MoveViewport):
11292         * fvwm/stack.c (LowerWindow):
11293         * fvwm/events.c (HandleMapNotify):
11294         (HandleVisibilityNotify):
11295         (DispatchEvent):
11296         (HandleFocusIn):
11297         (__handle_focus_raise_click):
11298         (HandleEnterNotify):
11299         (HandleMapRequestKeepRaised):
11300         * fvwm/add_window.c (setup_key_and_button_grabs):
11301         (setup_focus_policy):
11302         (destroy_window):
11303         * fvwm/focus.c (__try_other_screen_focus):
11304         (__set_focus_to_fwin):
11305         (set_focus_to_fwin):
11306         (focus_grab_buttons_on_pointer_window):
11307         (focus_grab_buttons_on_layer):
11308         (focus_grab_buttons_new):
11309         cleaned up focus grab handling.
11311         * fvwm/focus.c (focus_grab_buttons_on_pointer_window):
11312         clean up
11314 2002-08-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11316         * fvwm/add_window.c (setup_window_structure):
11317         (AddWindow):
11318         discarded unused return code
11320         * fvwm/focus.c (focus_grab_buttons):
11321         split into two fucntions and fixed a bug with ungrabbing buttons
11323         * fvwm/focus_policy.c (fpol_query_allow_set_focus):
11324         * fvwm/style.c (parse_and_set_window_style):
11325         * fvwm/icons.c (DeIconify):
11326         (DeIconify):
11327         * fvwm/events.c (HandleButtonPress):
11328         (HandleEnterNotify):
11329         (HandleLeaveNotify):
11330         (HandleMapNotify):
11331         (HandleMapRequestKeepRaised):
11332         * fvwm/add_window.c (CaptureAllWindows):
11333         * fvwm/virtual.c (UnmapDesk):
11334         (MapDesk):
11335         (do_move_window_to_desk):
11336         * fvwm/update.c (flush_window_updates):
11337         * fvwm/focus.c (set_focus_model):
11338         (DeleteFocus):
11339         (__restore_focus_after_unmap):
11340         much more GFPR work; these patches may break lots of things
11342         * fvwm/focus.c (set_focus_to_fwin):
11343         (__activate_window_by_command):
11344         (SetFocusWindow):
11345         (ReturnFocusWindow):
11346         (DeleteFocus):
11347         (ForceDeleteFocus):
11348         renamed MoveFocus to set_focus_to_fwin
11350 2002-08-07  Mikhael Goikhman  <migo@homemail.com>
11352         * libs/Fft.c (FftDrawString):
11353         removed redudant and buggy code that called DrawStringFunc before
11354         this pointer gets initialized
11356         * fvwm/focus.c (focus_query_click_to_raise):
11357         fixed possibly-uninitialized variable warning
11359         * fvwm/Makefile.am:
11360         specify stroke includes before Xft includes, may improve some cases
11362 2002-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11364         * configure.in:
11365         fixed sys/time.h detection
11367         * fvwm/events.c (HandleMappingNotify):
11368         * libs/Bindings.c (AddBinding):
11369         added MappingNotify event handler
11371         * fvwm/events.c (HandleMapRequest):
11372         removed debug code
11374         * fvwm/events.c (InitEventHandlerJumpTable):
11375         another attempt at handling "unknown" modifiers in key bindings
11377 2002-08-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11379         * fvwm/stack.c (is_on_top_of_layer_ignore_rom):
11380         * fvwm/add_window.c (destroy_window):
11381         * fvwm/focus.c (focus_grab_buttons):
11382         fixed core dump
11384 2002-08-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11386         * fvwm/focus.c (focus_force_refresh_focus):
11387         * fvwm/events.c (HandleEnterNotify):
11388         (HandlePropertyNotify):
11389         (HandleButtonPress):
11390         * fvwm/icons.c (DeIconify):
11391         * fvwm/virtual.c (MapDesk):
11392         * fvwm/focus_policy.c (fpol_query_allow_user_focus):
11393         * fvwm/update.c (apply_window_updates):
11394         * fvwm/module_interface.c:
11395         * fvwm/conditional.c (MatchesConditionMask):
11396         more GFPR work
11398         * fvwm/icons.c (Iconify):
11399         removed "#if 0"ed code
11401         * fvwm/module_interface.c:
11402         disabled the old ConfigureWindow module interface
11404         * vms/vms.c:
11405         * libs/fvwmsignal.h:
11406         * libs/Picture.c:
11407         * fvwm/ewmh_intern.h:
11408         * fvwm/events.c:
11409         * fvwm/module_interface.c:
11410         * fvwm/misc.c:
11411         use ftime.h
11413         * libs/ftime.h:
11414         new file to encapsulate time.h and sys/time.h inclusion
11416         * fvwm/stack.c:
11417         re-indented
11418         (mark_transient_subtree):
11419         (__mark_group_member):
11420         cleaned up and split into two functions
11422         * fvwm/focus.c (CMD_Focus):
11423         (CMD_FlipFocus):
11424         * fvwm/icons.c (DeIconify):
11425         clean up
11426         (FocusOn)
11427         (__activate_window_by_command):
11428         renamed function
11430         * fvwm/focus_policy.c (fpol_query_allow_set_focus):
11431         * fvwm/focus_policy.h (fpol_set_focus_by_t):
11432         * fvwm/style.c (parse_and_set_window_style):
11433         (parse_and_set_window_style):
11434         began implementing new focus control styles
11436         * fvwm/focus.c (DoSetFocus):
11437         (__restore_focus_after_unmap):
11438         (MoveFocus):
11439         (refresh_focus):
11440         more GFPR work
11441         (DoSetFocus):
11442         (__set_focus_to_fwin):
11443         function renamed
11445         * fvwm/conditional.c (MatchesConditionMask):
11446         * fvwm/focus.c (focus_query_open_grab_focus):
11447         (focus_query_close_restore_focus):
11448         (focus_does_accept_input_focus):
11449         (MoveFocus):
11450         * fvwm/events.c (HandleUnmapNotify):
11451         (HandleEnterNotify):
11452         (HandleMapNotify):
11453         (HandleMapRequestKeepRaised):
11454         renamed some functions
11456         * libs/defaults.h:
11457         * fvwm/focus_policy.c:
11458         * fvwm/focus_policy.h:
11459         prepared some future focus policy flags
11461         * configure.in:
11462         enable error message when png or xpm test compilation fails
11464         * fvwm/style.h:
11465         * fvwm/window_flags.h:
11466         * fvwm/ewmh.c (ewmh_HandleDesktop):
11467         * fvwm/style.c (parse_and_set_window_style):
11468         (check_window_style_change):
11469         * fvwm/events.c (HandleButtonPress):
11470         (HandleVisibilityNotify):
11471         began GFPR migration of *raises* focus policy flags
11473         * fvwm/focus.c (focus_is_focusd):
11474         new function
11476         * libs/Bindings.c (AddBinding):
11477         fixed handling of "unknown" modifiers in key bindings
11479         * fvwm/focus.c (focus_grab_buttons):
11480         (focus_query_grab_buttons):
11481         moved focus policy code into separate function
11483 2002-08-02  Mikhael Goikhman  <migo@homemail.com>
11485         * Makefile.am:
11486         DESTDIR fix
11488 2002-08-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11490         * fvwm/style.c (parse_and_set_window_style):
11491         * fvwm/focus.c (focus_query_grab_focus):
11492         * fvwm/events.c (HandleMapNotify):
11493         (HandlePropertyNotify):
11494         * fvwm/focus_policy.c (fpol_init_default_fp):
11495         * libs/defaults.h:
11496         new styles OverrideGrabFocus and AllowGrabFocus
11497         cleaned up focus grabbing code and moved to focus.c
11499 2002-07-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11501         * fvwm/focus.c (CMD_WarpToWindow):
11502         fixed negative arguments for unmanaged windows
11504         * fvwm/conditional.c (CMD_Direction):
11505         use PeekToken instead of GetNextToken
11506         cleaned up
11507         new direction "center"
11509 2002-07-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11511         * fvwm/events.c (addkbsubinstoarray):
11512         disabled experimental pointer warping code
11514         * fvwm/menus.c:
11515         removed menu crash debug code
11517 2002-07-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11519         * fvwm/menus.c:
11520         added tons of crash debug code
11522         * fvwm/add_window.c:
11523         made a lot of internal functions static
11525         * fvwm/add_window.c (setup_button_windows):
11526         (destroy_title_window):
11527         (destroy_button_windows):
11528         (destroy_resize_handle_windows):
11529         (destroy_auxiliary_windows):
11530         (destroy_icon):
11531         (destroy_window):
11532         * fvwm/icons.c (CreateIconWindow):
11533         safety patches w/ XDeleteContext
11535         * fvwm/menus.c (DestroyMenu):
11536         fixed a crash w/ accessing already deleted menus
11538 2002-07-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11540         * fvwm/menus.c (get_menu_options):
11541         fixed menu context rectangle "icon" if the icon was not just a pixmap
11543 2002-07-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11545         * fvwm/events.c (HandleMapNotify):
11546         (HandleMapRequestKeepRaised):
11547         (HandleUnmapNotify):
11548         * fvwm/ewmh_events.c (ewmh_WMStateModal):
11549         * fvwm/ewmh.c (ewmh_HandleDesktop):
11550         * fvwm/style.c (parse_and_set_window_style):
11551         removed old do_grab_focus_when_created and *_when_transient_* flags
11553 2002-07-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11555         * fvwm/conditional.c (MatchesConditionMask):
11556         * fvwm/focus.c (DoSetFocus):
11557         * fvwm/session.c (MatchWinToSM):
11558         * fvwm/module_interface.c (SETOLDFLAGS):
11559         removed old is_lenient flag
11561         * fvwm/bindings.c:
11562         * fvwm/style.c (__simplify_style_list):
11563         (simplify_style_list):
11564         reformatted
11566         * fvwm/window_flags.h:
11567         * fvwm/style.h:
11568         access macros for focus policy flags structures
11569         reformatted
11571         * fvwm/focus_policy.c:
11572         * fvwm/focus_policy.h:
11573         new files, begin great focus policy rewrite aka GFPR
11575 2002-07-22  Bob Woodside  <dumbledore@woodsway.com>
11577         * fvwm/placement.c (PlaceWindow):
11578         Fixed interaction between CascadePlacement and StartsOnPage
11580 2002-07-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11582         * libs/fvwmsignal.c (fvwmSelect):
11583         call alloca(0) in fvwmSelect to make sure the memory is not leaked in
11584         modules
11586 2002-07-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11588         * fvwm/add_window.c (CaptureOneWindow):
11589         fixed a core dump w/ windows being destroyed during a recapture
11590         (AddWindow):
11591         removed duplicate check if new windows still exist
11593         * fvwm/placement.c (CMD_PlaceAgain):
11594         * fvwm/move_resize.c (move_window_doit):
11595         (__move_icon):
11596         * fvwm/virtual.c (MapDesk):
11597         (MoveViewport):
11598         (do_move_window_to_desk):
11599         * fvwm/icons.c (AutoPlaceIcon):
11600         (ChangeIconPixmap):
11601         (Iconify):
11602         some cleanup in movement code
11603         new option "Icon" to PlaceAgain command
11604         adapted documentation accordingly
11606         * fvwm/move_resize.c (move_window_doit):
11607         (__move_window):
11608         renamed function
11610 2002-07-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11612         * libs/Flocale.c (FlocaleRotateDrawString):
11613         create gcs only once
11615         * fvwm/fvwm.1:
11616         removed some references to Recapture
11617         UseDecor, UseStyle, AddToDecor, ChangeDecor, DestroyDecor, UpdateDecor,
11618         ButtonStyle, BorderStyle and TitleStyle are planned to be removed in 3.0
11620         * libs/gravity.c (gravity_parse_multi_dir_argument):
11621         fixed "all" multidir selecting "center" too
11623         * libs/Fft.c (FftDrawString):
11624         * libs/Flocale.c (FlocaleRotateDrawString):
11625         (FlocaleFontStructDrawString):
11626         (FlocaleDrawString):
11627         fixed some text placement bugs w/ shadow text
11628         (FlocaleGetShadowTextPosition):
11629         implemented "center" shadows
11631 2002-07-20  olicha  <olivier.chapuis@free.fr>
11633         * libs/Flocale.c (FlocaleRotateDrawString):
11634         Removed some static declarations
11636 2002-07-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11638         * libs/gravity.c (gravity_multi_dir_to_dir):
11639         * libs/gravity.h (enum):
11640         new function, cleaned up
11641         (enum):
11642         * fvwm/fvwm.h (FvwmWindow):
11643         * libs/Fft.c:
11644         * fvwm/geometry.c:
11645         * fvwm/borders.c:
11646         moved text_rotation_type to gravity.h and renamed to rotation_type
11648         * libs/Flocale.h:
11649         fixed several bugs in the access macros
11651         * libs/Flocale.c:
11652         removed unused static FlocaleSeted
11653         (FlocaleFontStructDrawString):
11654         simplified function
11656         * fvwm/virtual.c (CMD_EdgeCommand):
11657         * fvwm/windowshade.c (CMD_WindowShade):
11658         * fvwm/conditional.c (CMD_Direction):
11659         adapted to changes in ParseDirectionArgument
11661         * libs/gravity.h:
11662         * libs/gravity.c (ParseDirectionArgument):
11663         new direction "Center"
11665         * fvwm/virtual.c (CMD_EdgeCommand):
11666         reformatted
11668 2002-07-18  olicha  <olivier.chapuis@free.fr>
11670         * libs/PictureUtils.c (PictureRGBtoPixel):
11671         (decompose_mask):
11672         Fixed(??) color allocation for some visuals
11674 2002-07-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11676         * libs/Flocale.c (FlocaleFontStructDrawString):
11677         a little code cleanup
11679         * fvwm/events.c (HandleEnterNotify):
11680         removed debug code
11681         anothe click+drag fix
11683         * libs/Pointer.c (GetLocationFromEventOrQuery):
11684         * fvwm/focus.c (SetPointerEventPosition):
11685         * fvwm/functions.c (CheckActionType):
11686         * fvwm/builtins.c (CMD_StrokeFunc):
11687         * fvwm/move_resize.c (moveLoop):
11688         (resize_window):
11689         fixed some bugs w/ pointer on wrong screen
11691 2002-07-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11693         * fvwm/events.c (HandleLeaveNotify):
11694         fixed problem w/ click+drag and mousey focus
11696         * fvwm/menus.c (size_menu_horizontally):
11697         fixed menu style SubmenusLeft w/ icons in menu items
11699 2002-07-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11701         * fvwm/menuitem.c (menuitem_paint):
11702         * fvwm/menus.h:
11703         * fvwm/menus.c (paint_menu_gradient_background):
11704         (get_menu_paint_item_parameters):
11705         removed circular dependency of menus.c and menuitem.c by using callback
11706         functions
11708 2002-07-17  olicha  <olivier.chapuis@free.fr>
11710         * fvwm/menuitem.c:
11711         A -Wall fix
11713         * fvwm/fvwm.c (InitVariables):
11714         (main):
11715         * fvwm/colorset.c (parse_colorset):
11716         (alloc_colorset):
11717         (CMD_ReadWriteColors):
11718         * fvwm/builtins.c (CMD_ColorLimit):
11719         * libs/PictureUtils.h:
11720         * libs/PictureUtils.c (PictureReduceColor):
11721         (PictureReduceRGBColor):
11722         (PictureRGBtoPixel):
11723         (PictureAllocColor):
11724         (PictureFreeColors):
11725         (PictureGetNextColor):
11726         (colors_alloc_fail):
11727         (my_alloc_color):
11728         (AllocColors*):
11729         (AllocColorTable):
11730         (PictureAllocColorTable):
11731         * libs/PictureImageLoader.c (PImageXpmAllocColor):
11732         (PImageXpmFreeColor):
11733         (PImageLoadXpm):
11734         * libs/PictureBase.c (PictureInitCMap):
11735         * libs/Graphics.c (AllocLinearGradient):
11736         * libs/ColorUtils.c (GetShadow):
11737         (GetHilite):
11738         (GetForeShadow):
11739         (GetTintedPixel):
11740         (GetSimpleColor):
11741         (GetColor):
11742         (fvwmlib_clone_color):
11743         * libs/PictureGraphics.c (PGraphicsTintRectangle):
11744         Implemented a new color limit method
11746 2002-07-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11748         * fvwm/move_resize.c (moveLoop):
11749         fixed problem moving the pointer off screen while moving a window
11750         (AnimatedMoveAnyWindow):
11751         fixed pointer warping w/ multiple screens and animated window motion
11753 2002-07-12  olicha  <olivier.chapuis@free.fr>
11755         * fvwm/menus.c (get_menu_paint_item_parameters):
11756         (paint_menu_gradient_background):
11757         * fvwm/menuitem.c (menuitem_paint):
11758         * fvwm/menuitem.h:
11759         * fvwm/menus.h:
11760         Fixed B/DGradient with Xft fonts
11762         * libs/Colorset.h:
11763         * libs/ColorUtils.c (GetTintedColor):
11764         (GetTintedPixel):
11765         * fvwm/colorset.c (parse_simple_tint):
11766         (parse_colorset):
11767         (alloc_colorset):
11768         Implemented fgTint colorset option
11770         * libs/PictureImageLoader.c:
11771         * libs/PictureUtils.c:
11772         * libs/PictureUtils.h:
11773         * libs/Makefile.am:
11774         Moved color limitation and some rgb to pixel functions from
11775         PictureImageLoader to new files PictureUtils.c, PictureUtils.h
11777         * fvwm/colorset.c (parse_colorset):
11778         * libs/PictureGraphics.c (PCreateTintedPixmap):
11779         (PGraphicsTintRectangle):
11780         Implemented tinting for X server without Xrender support and
11781         did color limitation when tinting
11784 2002-07-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11786         * fvwm/events.c (WaitForButtonsUp):
11787         fixed handling of button release events
11789 2002-07-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11791         * fvwm/menus.c (MenuInteraction):
11792         fixed core dump w/ dynamic popdown action destroying a menu
11793         (paint_menu_gradient_background):
11794         fixed hang and/or incorrect drawing of b and d gradients in menus
11796         * fvwm/events.c (HandleEnterNotify):
11797         (HandleLeaveNotify):
11798         improved LEAVE_WINDOW/ENTER_WINDOW handling
11800 2002-07-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11802         * libs/Colorset.c (SetWindowBackground):
11803         (SetWindowBackgroundWithOffset):
11804         (ScrollPixmap):
11805         implemented new functions to allow pixmap backgrounds with an offset
11807 2002-07-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11809         * fvwm/events.c (HandleMapRequestKeepRaised):
11810         send Map/UnmapNotify before iconyfying, not after
11812 2002-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11814         * fvwm/events.c (HandleMapRequestKeepRaised):
11815         fake a MapNotify and then an UnmapNotify when a window is created iconic
11817         * fvwm/add_window.c (AddWindow):
11818         workaround for buggy TK menu positioning
11820         * fvwm/module_interface.c (FlushMessageQueue):
11821         (PositiveWrite):
11822         (get_pipe_name):
11823         tried to fix module communication deadlock w/ sync mask and a full write
11824         pipe
11826         * libs/Strings.c:
11827         re-indented file
11829         * libs/defaults.h:
11830 2002-07-06  olicha  <olivier.chapuis@free.fr>
11832         * libs/Flocale.c (FlocaleGetFontSet):
11833         Removed some unwanted code
11835 2002-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11837         * fvwm/events.c (HandleLeaveNotify):
11838         (HandleEnterNotify):
11839         reduced the number of MX_LEAVE/ENTER_WINDOW messages
11841         * fvwm/events.c (CMD_XSync):
11842         very experimental patch to cycle through subwindows accepting keyboard
11843         input; call Xsync command repeatedly to test; crashes fvwm if more than
11844         1000 subwindows are used;
11846         * fvwm/focus.c (CMD_WarpToWindow):
11847         fixed a bug in warpttowindow command with subwindows of unmanaged
11848         windows
11850 2002-07-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11852         * fvwm/events.c (HandlePropertyNotify):
11853         * fvwm/events.h:
11854         handle changes in the size_inc and base_size hints during opaque
11855         resizing.
11857         * fvwm/events.c (HandleButtonPress):
11858         ClickToFocus + ClickToFocusPassesClickOff now blocks event handling
11859         until the button is released again; this restores the old behaviour
11860         from 2.3.23 and before with click+drag and rxvt/aterm
11862 2002-06-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11864         * fvwm/update.c (apply_window_updates):
11865         fixed applying neverfocus to currently focused window; decorations
11866         partially drawn hilighted
11868 2002-07-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11870         * fvwm/menucmd.c (menu_func):
11871         another module/menu/context window fix
11872         do not use global Fw anymore
11874 2002-07-05  olicha  <olivier.chapuis@free.fr>
11876         * libs/Flocale.c (FlocaleStringToString2b):
11877         Fixed crash with big5-0 FontStruct
11879 2002-07-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11881         * fvwm/menucmd.c (menu_func):
11882         fixed context window of menus invoked by a module
11883         (menu_func):
11884         fixed context menus on windows
11886         * libs/vpacket.h (ConfigWinPacket):
11887         * fvwm/module_interface.c (CONFIGARGSNEW):
11888         * fvwm/fvwm.h (FvwmWindow):
11889         fixed bugs in type conversions for transmitting certain information to
11890         modules
11892         * fvwm/functions.c (CheckActionType):
11893         fixed window selection problem w/ menus invoked from modules
11895 2002-07-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11897         * fvwm/gnome.c (GNOME_HandlePropRequest):
11898         -Wall fixes
11900         * fvwm/module_interface.c (ExecuteCommandQueue):
11901         fixed compile bug w/ --enable-debug-msgs
11903 2002-06-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11905         * fvwm/events.c (HandleButtonPress):
11906         (HandleKeyPress):
11907         * fvwm/menus.c (MenuInteraction):
11908         (do_menu):
11909         * fvwm/windowlist.c (CMD_WindowList):
11910         * fvwm/menucmd.c (menu_func):
11911         * fvwm/module_interface.c (ExecuteModuleCommand):
11912         * fvwm/add_window.c (adjust_fvwm_internal_windows):
11913         go away, evil globals! [removed the useless global variable
11914         "ButtonWindow"]
11916         * fvwm/events.c (HandleUnmapNotify):
11917         (HandleMapNotify):
11918         * fvwm/icons.c (Iconify):
11919         * fvwm/window_flags.h (IS_ICONIFY_PENDING):
11920         * fvwm/fvwm.h (struct):
11921         renamed is_deiconify_pending to is_iconify_pending
11922         some re-indenting
11924 2002-06-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11926         * fvwm/menus.c (MenuInteraction):
11927         (pop_menu_down):
11928         (menu_enter_tear_off_menu):
11929         (do_menu):
11930         * fvwm/events.c (HandleButtonPress):
11931         (HandleButtonRelease):
11932         (HandleKeyPress):
11933         (GetContext):
11934         * fvwm/menucmd.c (menu_func):
11935         (menu_func):
11936         * fvwm/module_interface.c (ExecuteModuleCommand):
11937         go away, evil globals! [removed the useless global variable "Context"]
11938         removed is_menu_from_frame_or_window_or_titlebar flag
11940         * fvwm/module_interface.c:
11941         * fvwm/windowlist.c:
11942         re-indented files
11944 2002-06-28  Mikhael Goikhman  <migo@homemail.com>
11946         * fvwm/menuitem.c (menuitem_paint):
11947         fixed fg color of the inactive disabled menu item
11949         * NEWS:
11950         old typo
11951         * fvwm/fvwm.1:
11952         removed a mention of RedHat (I don't think it is correct),
11953         reworded a mention of fvwm95
11955 2002-06-26  Mikhael Goikhman  <migo@homemail.com>
11957         * **/*.c:
11958         tabify only the leading spaces, untabify the middle of line
11960 2002-06-25  David Fries  <dfries@mail.win.org>
11962         * fvwm/fvwm.1:
11963         * fvwm/windowlist.c:
11964         Added code to sort based on the class name of a window for
11965         the WindowList function.
11967 2002-06-25  olicha  <olivier.chapuis@free.fr>
11969         * acinclude.m4:
11970         A minor fix
11972 2002-06-25  Mikhael Goikhman  <migo@homemail.com>
11974         * AUTHORS:
11975         add Anders Andersson (spelling fixes in all man pages) and Steve Talley
11977 2002-06-24  Steve Talley  <stephen.talley@sun.com>
11979         * fvwm/add_window.c:
11980         * fvwm/add_window.h:
11981         * fvwm/fvwm.1:
11982         * fvwm/fvwm.h:
11983         * fvwm/icons.c:
11984         * fvwm/icons.h:
11985         * fvwm/style.c:
11986         * fvwm/style.h:
11987         * libs/defaults.h:
11988         New Style option IconSize
11990 2002-06-24  Mikhael Goikhman  <migo@homemail.com>
11992         * NEWS, configure.in:
11993         changed version to 2.5.3
11995 2002-06-24  Mikhael Goikhman  <migo@homemail.com>
11997         * INSTALL.fvwm:
11998         removed C++ section
12000         * fvwm/fvwm.1:
12001         * libs/FlocaleCharset.c:
12002         small fixes
12004 2002-06-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12006         * fvwm/events.c (WaitForButtonsUp):
12007         use the wait cursot only after the 20th pass through the loop
12009 2002-06-21  Dan Espen  <dane@mk.telcordia.com>
12011         * fvwm/fvwm.1 (Examples): Language check.
12012         PipeRead as synchronous Exec.
12013         Better example for PipeRead.
12015 2002-06-21  olicha  <olivier.chapuis@free.fr>
12017         * fvwm/fvwm.1:
12018         * NEWS:
12019         Documented StringEncoding= in font name
12021         * INSTALL.fvwm
12022         Removed --disable-compound-text doc
12024 2002-06-20  olicha  <olivier.chapuis@free.fr>
12026         * libs/FBidi.h (FBidiConvert):
12027         Fixed compile if !HAVE_BIDI
12029 2002-06-19  olicha  <olivier.chapuis@free.fr>
12031         * fvwm/fvwm.c (InitVariables):
12032         (StartupStuff):
12033         Allocate colorset 0 in InitVariable in the place of StartupStuff.
12034         This fix a "null expression" at init in menustyle.c (menustyle_update)
12036 2002-06-19  Mikhael Goikhman  <migo@homemail.com>
12038         * configure.in:
12039         reworded supported feature listing, fixed the default xft detection
12040         * INSTALL.fvwm:
12041         added the "Supported Features" section
12043 2002-06-19  olicha  <olivier.chapuis@free.fr>
12045         * fvwm/colorset.h:
12046         Removed not useful #define/#undef FVWM_COLORSET_PRIVATE
12048         * INSTALL.fvwm:
12049         Removed --enable-mulibyte and --disable-compound-text config option
12050         documentation. s/enable-xft/disable-xft/ and document --disable-xrender
12052         * configure.in:
12053         Xft is on by default no
12055         * libs/FlocaleCharset.c (*):
12056         * libs/FlocaleCharset.h:
12057         * libs/Ficonv.c (*):
12058         * libs/Ficonv.h:
12059         * libs/Flocale.c (*):
12060         * libs/Flocale.h:
12061         * libs/Fft.c (*):
12062         * libs/FftInterface.h:
12063         * libs/FBidi.c:
12064         * libs/FBidi.h:
12065         * fvwm/ewmh_names.c ():
12066         Some cleanup. Implemented StringEncoding= in font names. Fixed
12067         string encoding for xft fonts. Try to be more cleaver about defaults
12068         charsets. Improvement in the locale charset table.
12070         * fvwm/fvwm.1:
12071         Some documentation cleanup regarding Xft
12073 2002-06-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12075         * fvwm/functions.c (find_func_type):
12076         fixed bug i introduced w/ last commit
12078         * fvwm/fvwm.c (Done):
12079         (StartupStuff):
12080         * fvwm/functions.c (functions_is_complex_function):
12081         * fvwm/builtins.c (CMD_DestroyFunc):
12082         (CMD_AddToFunc):
12083         (CMD_Plus):
12084         moved functions to functions.c
12085         general cleanup
12087         * fvwm/functable.c:
12088         * fvwm/functable.h:
12089         * fvwm/functions.h:
12090         * fvwm/commands.h:
12091         * fvwm/functions.c:
12092         moved some types and functions to other/new files
12094         * fvwm/functions.c:
12095         * fvwm/expand.c (expand_vars_extended):
12096         (expand_vars):
12097         functions moved to new file
12099         * fvwm/functions.c:
12100         reindented file
12102 2002-06-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12104         * fvwm/events.c (CoerceEnterNotifyOnCurrentWindow):
12105         fixed colourmap focus problem
12107         * **/*.[ch]:
12108         tabified all files and removed all trailing spaces
12110         * fvwm/move_resize.c (move_window_doit):
12111         * fvwm/virtual.c (CMD_MoveToDesk):
12112         MoveToPage and MoveToDesk no longer unstick windows
12114 2002-06-17  Mikhael Goikhman  <migo@homemail.com>
12116         * INSTALL.fvwm:
12117         small improvements
12119         * configure.in:
12120         reworded some names of supported features
12122 2002-06-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12124         * fvwm/update.c (apply_window_updates):
12125         * fvwm/session.c (MatchWinToSM):
12126         * fvwm/add_window.c (setup_window_structure):
12127         * fvwm/windowshade.c (CMD_WindowShade):
12128         * fvwm/window_flags.h:
12129         fixed a problem w/ shaded windows changind the title direction
12131         * fvwm/geometry.c (get_shaded_geometry):
12132         fixed shading window to 0 width or height
12134         * fvwm/add_window.c (AddWindow):
12135         fixed a memory leak and an initial window placement bug
12137 2002-06-15  Mikhael Goikhman  <migo@homemail.com>
12139         * configure.in:
12140         minor improvements in output, added bin/fvwm-perllib
12142 2002-06-12  Mikhael Goikhman  <migo@homemail.com>
12144         * fvwm/menustyle.c (CMD_CopyMenuStyle):
12145         fixed copying PopupOffset values in CopyMenuStyle
12147         * NEWS:
12148         Copied 2.4.8 NEWS
12150 2002-06-10  Mikhael Goikhman  <migo@homemail.com>
12152         * libs/Strings.c:
12153         * libs/Strings.h:
12154         added CopyStringWithQuotes, not perfect, but works for now
12156 2002-06-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12158         * fvwm/functions.h:
12159         * fvwm/commands.h:
12160         * fvwm/functions.c (func_config):
12161         * libs/FScreen.c (FScreenConfigureSLSScreens):
12162         (FScreenConfigureModule):
12163         * fvwm/virtual.c (CMD_XineramaSlsScreens):
12164         new command XineramaSLSScreens
12166         * libs/FScreen.c:
12167         cleaned up Xinerama ifdefs
12169 2002-06-07  Dan Espen  <dane@mk.telcordia.com>
12171         * NEWS:
12172         * fvwm/fvwm.1 (FONT SHADOW EFFECTS): Reword.
12174 2002-06-07  olicha  <olivier.chapuis@free.fr>
12176         * libs/Flocale.h:
12177         * libs/Flocale.c (FlocaleGetShadowTextPosition):
12178         Some shadow text position fixes
12180 2002-06-06  olicha  <olivier.chapuis@free.fr>
12182         * fvwm/update.c (apply_window_updates):
12183         Fixed the position of shaded windows after certain style update
12185         * acinclude.m4:
12186         Fixed some options names
12188 2002-06-06  Mikhael Goikhman  <migo@homemail.com>
12190         * fvwm/module_interface.c (CMD_SendToModule):
12191         fixed SendToModule when the first parameter contains quotes
12193 2002-06-06  olicha  <olivier.chapuis@free.fr>
12195         * fvwm/fvwm.c (main):
12196         * fvwm/ewmh.c (EWMH_Init):
12197         Init the EWMH before reading the config. Always setup the working
12198         area.
12200 2002-06-05  olicha  <olivier.chapuis@free.fr>
12202         * fvwm/update.c (apply_window_updates):
12203         Fixed the position of a shaded window during a style update
12204         (do_redecorate)
12206         * libs/Flocale.c (FlocaleRotateDrawString):
12207         (FlocaleGetShadowTextPosition):
12208         Fixed side title text position if the font has no shadow
12210         * acconfig.h:
12211         * libs/Ficonv.c (FiconvInit):
12212         * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
12213         * libs/Flocale.c (FlocaleInit):
12214         (FlocaleRotateDrawString):
12215         (FlocaleGetFontSet):
12216         (FlocaleGetFontOrFontSet):
12217         (FlocaleLoadFont):
12218         (FlocaleDrawString):
12219         (FlocaleTextWidth):
12220         (FlocaleFreeNameProperty):
12221         (FlocaleGetNameProperty):
12222         (FlocaleTextListToTextProperty):
12223         Finish to remove the multibyte patch. This gives a more clean code
12224         and can only prevent bugs
12226 2002-06-05  Mikhael Goikhman  <migo@homemail.com>
12228         * fvwm/placement.c (PlaceWindow):
12229         fixed CascadePlacement with huge windows (xterm -g 240x100),
12230         that were aligned to bottom-right instead of top-left;
12231         small adjustments (removed border_width from calculations,
12232         don't place normal windows at 0, commented out some strange code)
12234 2002-06-04  Mikhael Goikhman  <migo@homemail.com>
12236         * NEWS:
12237         document CascadePlacement and FvwmIconMan improvements
12239         * fvwm/fvwm.1:
12240         typo
12242 2002-06-03  Mikhael Goikhman  <migo@homemail.com>
12244         * fvwm/add_window.c (adjust_fvwm_internal_windows):
12245         * fvwm/fvwm.c (InitVariables):
12246         * fvwm/placement.c (PlaceWindow):
12247         * fvwm/screen.h (struct ScreenInfo):
12248         improved *CascadePlacement, if the last placed window does not exist
12249         any more, reuse the last used position instead of adding a new cascade
12251 2002-06-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12253         * fvwm/events.c (HandleEnterNotify):
12254         * fvwm/fvwm.c (InitVariables):
12255         * fvwm/events.h:
12256         Fixed colormap handling over decorative parts of a window
12258 2002-06-03  olicha  <olivier.chapuis@free.fr>
12260         * fvwm/module_interface.c (make_named_packet):
12261         Fixed an write out of memory bug. This complete Mikhail Kruk patch
12262         related to named module packet
12264 2002-06-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12266         * fvwm/focus.c (focus_grab_buttons):
12267         * fvwm/events.c (HandleButtonPress):
12268         fixed a problem w/ ClickToFocus + ClickToFocusRaisesOff
12270 2002-06-03  Mikhael Goikhman  <migo@homemail.com>
12272         * fvwm/bindings.c (ParseBinding):
12273         replaced an error "Illegal mouse button" with a descriptive warning
12274         when a button number is greater than NUMBER_OF_MOUSE_BUTTONS
12276 2002-05-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12278         * fvwm/events.c (GetContext):
12279         fixed key bindings on decorations
12281         * fvwm/events.h:
12282         removed XEVMASK_DECORW
12284 2002-05-31  olicha  <olivier.chapuis@free.fr>
12286         * NEWS:
12287         * fvwm/fvwm.1:
12288         Documented shadow effect in a new section FONT EFFECTS
12290 2002-05-31  olicha  <olivier.chapuis@free.fr>
12292         * libs/Fft.c (FftDrawString):
12293         * libs/Colorset.c (DumpColorset):
12294         (LoadColorset):
12295         * libs/Colorset.h:
12296         * fvwm/colorset.c (parse_colorset):
12297         New colorset option fg_alpha which defines an alpha for rendering
12298         text with Xft
12300 2002-05-29  olicha  <olivier.chapuis@free.fr>
12302         * libs/Fft.c (FftSetupEncoding):
12303         * libs/Fft.h:
12304         * libs/FRender.h:
12305         Added Xft2 support
12307         * acinclude.m4:
12308         * configure.in:
12309         Added detection for fontconfig and Xft2. Added FT2 CFLAGS and LIBS
12310         to Xft FLAGS and LIBS
12312         * fvwm/Makefile.am:
12313         * libs/Makefile.am:
12314         Put $(Xft_CFLAGS) before $(X_CFLAGS) to be able to use an independent
12315         Xft2 library. Removed FT2 CFLAGS and LIBS
12317 2002-05-27  olicha  <olivier.chapuis@free.fr>
12319         * acinclude.m4:
12320         * acconfig.h:
12321         * configure.in:
12322         Some Xft2 and fontconfig preparation
12324         * libs/Flocale.h:
12325         * libs/Flocale.c (FlocaleParseShadow):
12326         (FlocaleLoadFont):
12327         (FlocaleGetShadowTextPosition):
12328         Added offset to shadow text
12330         * libs/Flocale.h:
12331         Fixed the position of ne shadow text and remove some unused #define
12333 2002-05-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12335         * fvwm/colorset.c (parse_colorset):
12336         fixed integer overflow in average colour calculation
12338 2002-05-27  olicha  <olivier.chapuis@free.fr>
12340         * libs/gravity.c (GetNextMultiDirection):
12341         (ParseMultiDirectionArgument):
12342         * libs/gravity.h:
12343         Added a multi direction type which is a "<<" version of direction
12344         type. Added a parse and a next functions
12346         * libs/Flocale.h:
12347         * libs/Flocale.c (FlocaleParseShadow):
12348         (FlocaleGetNextShadowDirection):
12349         (FlocaleGetShadowTextPosition):
12350         Used gravity multi direction type and functions. Removed
12351         FlocaleGetNextShadowDirection
12353 2002-05-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12355         * fvwm/focus.c (restore_focus_after_unmap):
12356         fixed a problem w/ colormap transition when transient window died
12358         * fvwm/add_window.c (AddWindow):
12359         clean up
12361         * fvwm/session.c (getUniqueStateFilename):
12362         applied security patch by Jan Echternach
12364         * fvwm/fvwm.c (InitVariables):
12365         Properly initialise Scr.flags.is_pointer_on_this_screen
12367         * libs/fvwmlib.h (FvwmFont):
12368         * fvwm/fvwm.c (setVersionInfo):
12369         * configure.in:
12370         * config.h.in:
12371         * acconfig.h (MULTIBYTE):
12372         removed MULTIBYTE option (unconditionally on)
12374 2002-05-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12376         * libs/gravity.c (ParseDirectionArgument):
12377         allow "t", "u", ... shortcuts as direction arguments
12379         * fvwm/style.c (check_window_style_change):
12380         (parse_and_set_window_style):
12381         * fvwm/frame.c (frame_setup_border):
12382         (frame_get_shading_laziness):
12383         (frame_get_sidebar_geometry):
12384         * fvwm/decorations.c (SelectDecor):
12385         * fvwm/add_window.c (setup_style_and_decor):
12386         (setup_resize_handle_cursors):
12387         (setup_resize_handle_windows):
12388         (change_resize_handle_windows):
12389         (destroy_auxiliary_windows):
12390         * fvwm/borders.c (border_get_border_gcs):
12391         (border_draw_border_parts):
12392         * fvwm/style.h (SCSET_HAS_BORDER):
12393         * fvwm/fvwm.h (FvwmWindow):
12394         * fvwm/window_flags.h (SET_HAS_BORDER):
12395         new styles NoBorder/Border
12397 2002-05-26  olicha  <olivier.chapuis@free.fr>
12399         * libs/Flocale.h:
12400         * libs/Flocale.c (FlocaleParseShadow):
12401         (FlocaleGetNextShadowDirection):
12402         (FlocaleGetShadowTextPosition):
12403         (FlocaleLoadFont):
12404         Implemented multidirectional shadow text rendering
12406         * libs/Flocale.h:
12407         * libs/Flocale.c
12408         (FlocaleFontStructDrawString):
12409         (FlocaleRotateDrawString):
12410         (FlocaleLoadFont):
12411         (FlocaleDrawString):
12412         (FlocaleTextWidth):
12413         * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
12414         * libs/Fft.c (FftDrawString):
12415         Cleanup the FlocaleFont structure by addings some flags
12417 2002-05-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12419         * fvwm/events.c (HandleFocusIn):
12420         * fvwm/add_window.c (adjust_fvwm_internal_windows):
12421         * fvwm/screen.h (ScreenInfo):
12422         * fvwm/focus.c (FocusOn):
12423         ignore EnterNotify events while a window is waiting to receive focus
12424         from the Focus or FlipFocus commands; should prevent plenty of race
12425         contidions caused by executing complex functions by a key press, button
12426         press or from a menu; fixes Alt-Tab problem
12428         * fvwm/events.c (HandleMapNotify):
12429         immediately draw window decorations when window is mapped; the new frame
12430         drawing code takes care of suppressing unnecessary redraws
12431         (HandleLeaveNotify):
12432         fixed a bug w/ LeaveNotify event with NotifyGrab
12434 2002-05-22  olicha  <olivier.chapuis@free.fr>
12436         * libs/Flocale.h:
12437         * libs/Fft.c (FftDrawString):
12438         * libs/Flocale.c (FlocaleFontStructDrawString):
12439         (FlocaleRotateDrawString):
12440         (FlocaleLoadFont):
12441         (FlocaleGetShadowTextPosition):
12442         (FlocaleDrawString):
12443         (FlocaleDrawUnderline):
12444         (FlocaleTextWidth):
12445         Implemented negative shadow text
12447 2002-05-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12449         * fvwm/menucmd.c (CMD_AddToMenu):
12450         * fvwm/windowlist.c (CMD_WindowList):
12451         * fvwm/menus.h:
12452         * fvwm/menus.c
12453         changed signature of AddToMenu
12455         * fvwm/menus.c (clone_menu_root_static):
12456         fixed problem w/ menu style usage count and tear off menus
12457         fixed core dump w/ not copying the missing sub menu function in tear
12458         off menus
12459         (clone_menu_item_list):
12460         (AddToMenu):
12461         (add_another_menu_item):
12462         (size_menu_vertically):
12463         fixed additional "More..." items in sub menus of torn off menus
12465 2002-05-22  Mikhael Goikhman  <migo@homemail.com>
12467         * libs/colorset.h:
12468         fixed #endif warning
12469         * fvwm/ConfigFvwmDefaults:
12470         added CirculateSkip to tear off menus
12471         * fvwm.1:
12472         fixed ShadeAgain quoting
12474 2002-05-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12476         * fvwm/events.c (HandleButtonPress):
12477         allow to pass the focus click to applications and have a function bound
12478         to it at the same time
12480         * fvwm/fvwm.c:
12481         * fvwm/colorset.h:
12482         fixed compilation problem
12484 2002-05-20  olicha  <olivier.chapuis@free.fr>
12486         * libs/PictureImageLoader.c (PImageRGBtoPixel):
12487         Fixed blue colour in png image and ewmh icons
12489         * libs/Flocale.c (FlocaleLoadFont):
12490         Removed some debug code
12492         * fvwm/colorset.c (parse_colorset):
12493         * libs/fvwmlib.h:
12494         * libs/ColorUtils.c (GetForeShadowColor):
12495         Added Mikhael algo to compute the default fgsh
12497 2002-05-18  Mikhael Goikhman  <migo@homemail.com>
12499         * fvwm/functions.c (expand_extended_var):
12500         expand $[fgsh.csN], use constants instead of numbers
12502 2002-05-17  olicha  <olivier.chapuis@free.fr>
12504         * libs/Flocale.c (FlocaleDrawString):
12505         (FlocaleDrawUnderline):
12506         * libs/Flocale.h:
12507         Removed some unused and debug code
12509 2002-05-17  olicha  <olivier.chapuis@free.fr>
12511         * fvwm/menuitem.c (draw_underline):
12512         * libs/Flocale.h:
12513         * libs/Flocale.c (FlocaleDrawUnderline):
12514         Move draw_underline into Flocale.c and fix underline position with
12515         shadow rendering
12517 2002-05-17  olicha  <olivier.chapuis@free.fr>
12519         * fvwm/style.c (update_window_color_style):
12520         (update_window_color_hi_style):
12521         * fvwm/move_resize.c (DisplayPosition):
12522         (DisplaySize):
12523         * fvwm/menuitem.c (menuitem_paint):
12524         * fvwm/borders.c (get_common_decorations):
12525         (border_get_titlebar_draw_descr):
12526         * fvwm/fvwm.h:
12527         * fvwm/icons.c (DrawIconWindow):
12528         Pass the colorset to text drawing via the FlocaleWinString structure
12530         * libs/fvwmlib.h:
12531         * libs/ColorUtils.c (GetForeShadowColor):
12532         (GetForeShadow):
12533         * fvwm/colorset.c (parse_colorset):
12534         * libs/Colorset.h:
12535         * libs/Colorset.c (DumpColorset):
12536         (LoadColorset):
12537         Added fgsh colorset and two new functions GetForeShadowColor and
12538         GetForeShadow which should be modified
12540         * libs/Makefile.am:
12541         * libs/Fft.h:
12542         * libs/FftInterface.h (new file):
12543         * libs/Fft.c (FftDrawString):
12544         * libs/Flocale.h:
12545         * libs/Flocale.c (FlocaleFontStructDrawString):
12546         (FlocaleRotateDrawString):
12547         (FlocaleDrawString):
12548         (FlocaleTextWidth):
12549         (FlocaleLoadFont):
12550         Implemented text shadow rendering
12552 2002-05-11  olicha  <olivier.chapuis@free.fr>
12554         * fvwm/builtins.h:
12555         * fvwm/builtins.c (refresh_window):
12556         * fvwm/update.c (apply_window_updates):
12557         * fvwm/update.h:
12558         * fvwm/style.c (check_window_style_change):
12559         ParentalRelativity style is now dynamic
12561 2002-05-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12563         * fvwm/menuitem.c (menuitem_paint):
12564         fixed menu item hilight area
12566 2002-05-09  olicha  <olivier.chapuis@free.fr>
12568         * libs/Makefile.am:
12569         * libs/XError.c (request_name):
12570         * libs/PictureImageLoader.c (PImageLoadPng):
12571         (PImageCreatePixmapFromArgbData):
12572         * libs/PictureGraphics.c (PGraphicsTintRectangle):
12573         (PGraphicsTileRectangle):
12574         (PGraphicsCopyFvwmPicture):
12575         * libs/FRenderInit.c (new file):
12576         * libs/FRenderInit.h (new file):
12577         * libs/FRenderInterface.h:
12578         * libs/FRender.c (*):
12579         * fvwm/colorset.c (parse_tint):
12580         (parse_colorset):
12581         * fvwm/fvwm.c (main):
12582         * fvwm/events.c (HandlePropertyNotify):
12583         Change the design of the previous commit. Now a module should call
12584         FRenderInit when it wants to use a function which depends on XRender.
12586 2002-05-09  olicha  <olivier.chapuis@free.fr>
12588         * fvwm/colorset.c:
12589         A -Wall fix
12591         * libs/Flocale.h:
12592         * libs/Fft.h:
12593         Fixed Compilation
12594         Include Fft.h include FRender.h as Xft.h include Xrender.h
12596         * libs/FRenderInterface.h:
12597         * libs/FRender.h:
12598         * libs/FRender.c (FRenderInit):
12599         (FRenderGetErrorCodeBase):
12600         (FRenderGetMajorOpCode):
12601         (FRenderGetExtensionSupported):
12602         (FRenderGetErrorText):
12603         Improve XRender initialization, check if the XRender extension is
12604         enabled and get the error code base and the major op code.
12605         Add error functions for the X error handler.
12607         * libs/XError.c (PrintXErrorAndCoredump):
12608         (request_name):
12609         Really enable USE_GET_ERROR_TEXT and take in account XRender error code
12610         and major op code
12612         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
12613         * fvwm/events.c (HandlePropertyNotify):
12614         * fvwm/colorset.c (parse_tint):
12615         (parse_colorset):
12616         * libs/PictureImageLoader.c (PImageLoadPng):
12617         (PImageCreatePixmapFromArgbData):
12618         * libs/PictureGraphics.c (PGraphicsCopyPixmaps):
12619         (PGraphicsCopyFvwmPicture):
12620         (PGraphicsTileRectangle):
12621         * libs/FRender.c (FRenderCopyArea):
12622         (FRenderTintRectangle):
12623         Check if the XRender extension is enabled on the display before
12624         performing XRender operations
12626 2002-05-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12628         * fvwm/menuitem.c (menuitem_paint):
12629         fixed item hilighting problems
12631 2002-05-07  olicha  <olivier.chapuis@free.fr>
12633         * fvwm/colorset.c (parse_colorset):
12634         More coloset fixes
12636 2002-05-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12638         * fvwm/events.c (HandlePropertyNotify):
12639         workaround for xterm resize problem
12641         * fvwm/colorset.c (parse_colorset):
12642         (free_colorset_background):
12643         (parse_pixmap):
12644         (parse_tint):
12645         fixed various bugs and core dumps w/ the cs->picture structure;
12646         note: it's a pointer, so compare with NULL, not with None
12648         * fvwm/frame.c (frame_setup_window):
12649         (frame_setup_window_app_request):
12650         (frame_force_setup_window):
12651         (frame_setup_window_internal):
12652         (frame_create_move_resize_args):
12653         (frame_free_move_resize_args):
12654         * fvwm/add_window.c (setup_window_attr):
12655         * fvwm/events.c (HandleConfigureRequest):
12656         (HandlePropertyNotify):
12657         fixed [?] bit_gravity/resize problem
12659         * fvwm/events.c (HandleEnterNotify):
12660         reformatted EdgeCommand code
12662 2002-05-06  olicha  <olivier.chapuis@free.fr>
12664         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
12665         Resize an ewmh icon to the wanted size if it is to big
12667         * fvwm/ewmh.c (EWMH_WindowDestroyed):
12668         Set also the stacking list when a window is destroyed
12670 2002-05-03  Dan Espen  <dane@mk.telcordia.com>
12672         * fvwm/fvwm.1: Finish language check.
12673         Fix typo in Mouse section, context should be on new line.
12675 2002-05-02  Dan Espen  <dane@mk.telcordia.com>
12677         * fvwm/fvwm.1 (file): Restore icons and images text with some
12678         improvement.
12679         Started on lang check, not done yet.
12681 2002-05-02  Mikhail Kruk  <meshko@cs.brandeis.edu>
12683         * fvwm/module_interface.c (make_named_packet):
12684         Applied Mikhail Kruk patch
12686 2002-05-02  olicha  <olivier.chapuis@free.fr>
12688         * libs/FlocaleCharset.h:
12689         * libs/Ficonv.c (FiconvSetupConversion):
12690         * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
12691         * libs/Flocale.h:
12692         * libs/Flocale.c (FlocaleGetFftFont):
12693         (FlocaleGetFontSet):
12694         (FlocaleGetFont):
12695         (FlocaleLoadFont):
12696         (FlocaleUnloadFont):
12697         * fvwm/fvwm.1:
12698         Implemented charset/iconv hints in font name
12700 2002-04-29  Stian Sletner  <stian@sletner.com>
12702         * fvwm/windowlist.c (CMD_WindowList):
12703         Added new Windowlist option IconifiedAtEnd
12705 2002-04-30  Mikhael Goikhman  <migo@homemail.com>
12707         * fvwm/module_interface.c:
12708         * libs/Module.c:
12709         * libs/Module.h:
12710         moved two constant strings to Module.h, so they may be used by perllib
12712 2002-04-29  olicha  <olivier.chapuis@free.fr>
12714         * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
12715         Fixed a core dump if the charset is not found
12717         * libs/Flocale.c (FlocaleStringToString2b):
12718         Removed some debug code
12720 2002-04-29  olicha  <olivier.chapuis@free.fr>
12722         * libs/Fft.c (FftGetFontWidths):
12723         (FftGetFontWidths):
12724         * libs/Fft.h
12725         * libs/Flocale.h:
12726         * libs/Flocale.c (FlocaleGetFont):
12727         (FlocaleGetFontSet):
12728         (FlocaleGetFftFont):
12729         Removed min_char_offset member of the FlocaleFont as it is not use
12730         since we rotate string for side title
12732         * libs/Ficonv.c (FiconvSetupConversion):
12733         * libs/FlocaleCharset.c (FlocaleGetBidiCharset):
12734         (FlocaleCharsetSetFlocaleCharset):
12735         * libs/Flocale.h:
12736         * libs/Flocale.c (FlocaleTextWidth):
12737         (FlocaleDrawString):
12738         (FlocaleUtf8ToUnicodeStr2b):
12739         (FlocaleLoadFont):
12740         (FlocaleStringToString2b):
12741         (FlocaleRotateDrawString):
12742         (FlocaleFontStructDrawString):
12743         Added support for drawing string with 10646-1 fonts without an utf8
12744         locale. Also, drawing strings with a multibyte font now work not so
12745         bad even if the locale have nothing to do with the font.
12747         * libs/Fft.c (FftUtf8ToFftString16):
12748         (FftDrawString):
12749         (FftTextWidth):
12750         Added utf8 rendering with iso10646-1 fonts on system without
12751         Xft Utf8 functions
12753         * fvwm/colorset.c (reset_cs_pixmap):
12754         (parse_pixmap):
12755         (parse_shape):
12756         (parse_tint):
12757         (parse_colorset):
12758         Colorset now accept bitmaps. Split a bit parse_colorset for readability
12760 2002-04-28  Mikhael Goikhman  <migo@homemail.com>
12762         * fvwm/menus.c:
12763         fixed core dump on default Alt-Tab (Alt released when mouse is outside)
12765 2002-04-27  Mikhael Goikhman  <migo@homemail.com>
12767         * fvwm/move_resize.c:
12768         don't start Move with snap disabled if Alt is initially pressed
12770 2002-04-26  Mikhael Goikhman  <migo@homemail.com>
12772         * NEWS, configure.in:
12773         changed version to 2.5.2
12775 2002-04-25  Mikhael Goikhman  <migo@homemail.com>
12777         * fvwm/fvwm.1:
12778         improved main headers, added new COLORSETS section;
12779         documented State condition
12781         * NEWS:
12782         documented Tint in colorsets and utility renaming
12784         * libs/Flocale.c:
12785         corrected several error reporting problems
12787 2002-04-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12789         * fvwm/events.h:
12790         fixed leaving tear off menus
12792 2002-04-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12794         * fvwm/borders.c (border_draw_part_relief):
12795         (border_set_button_pixmap):
12796         (border_draw_title_stick_lines):
12797         (border_draw_title_mono):
12798         (border_draw_title_relief):
12799         * libs/fvwmlib.h (RelieveRectangle2):
12800         (RelieveRectangle):
12801         replaced functions by macros
12803         * libs/Graphics.c (do_relieve_rectangle):
12804         applied performance patch by Dave Trollope
12806 2002-04-24  Mikhael Goikhman  <migo@homemail.com>
12808         * libs/FBidi.c:
12809         * libs/FBidi.h:
12810         * libs/Flocale.c:
12811         * libs/Flocale.h:
12812         * libs/FlocaleCharset.c:
12813         FBidi is now independent from Flocale* again;
12814         iso8859-6.8x fonts recognized now as bidi-enabled
12816 2002-04-23  Mikhael Goikhman  <migo@homemail.com>
12818         * libs/Flocale.c:
12819         fixed --disable-multibyte
12821 2002-04-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12823         * fvwm/borders.c (border_draw_title_deep):
12824         (border_set_title_pixmap):
12825         (border_set_button_pixmap):
12826         fixed SolidButton title and button style
12828 2002-04-23  Mikhael Goikhman  <migo@homemail.com>
12830         * fvwm/fvwm.1:
12831         * NEWS:
12832         * AUTHORS:
12833         added new entry about CurrentAtEnd
12835         * colorset.c:
12836         minor reformatting and spell checking
12838 2002-04-23  Jochen Klenner  <jochen.klenner@gmx.net>
12840         * fvwm/windowlist.c (CMD_WindowList):
12841         Added new Windowlist option CurrentAtEnd
12843 2002-04-22  olicha  <olivier.chapuis@free.fr>
12845         * fvwm/colorset.c (parse_colorset):
12846         * libs/Colorset.h:
12847         Fixed an enormous core dump which comes from a cvs merging problem
12849         * fvwm/Makefile.am:
12850         * acconfig.h:
12851         * configure.in:
12852         Added Xrender detection and link fvwm if needed
12854         * libs/PictureGraphics.c:
12855         * libs/PictureGraphics.h:
12856         * libs/FRender.c:
12857         * libs/FRender.h:
12858         * libs/FRenderInterface.h:
12859         * libs/PictureGrpahics.c (*):
12860         * libs/PictureGrpahics.h:
12861         New libs files to acheive alpha-blend rendering and better XBM
12862         support. PictureGraphics contains elaborated version and also
12863         simplified version of XFillRectangle, XCopyPlan and XCopyArea
12864         Xlib functions.
12866         * fvwm/fvwm.h:
12867         * fvwm/icons.c (clear_icon):
12868         (GetIconPicture):
12869         (DrawIconWindow):
12870         (GetIconFromFile):
12871         * fvwm/events.c (HandlePropertyNotify):
12872         * fvwm/borders.c (border_fill_pixmap_background):
12873         (border_get_border_background):
12874         (border_draw_decor_to_pixmap):
12875         * fvwm/menuitem.c (menuitem_paint):
12876         * fvwm/add_window.c (destroy_icon):
12877         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
12878         * fvwm/geometry.c (move_icon_to_position):
12879         * fvwm/colorset.c (free_colorset_background):
12880         (parse_colorset):
12881         * libs/Colorset.h:
12882         Implemented alpha-blend rendering with the new libs function
12884         * fvwm/colorset.c (free_colorset_background):
12885         (parse_colorset):
12886         * libs/Colorset.h:
12887         Implemented tinting of a Pixmap background colorset
12889         * fvwm/colorset.c (parse_colorset):
12890         Use the Scr.NoFocusWin as main window in the place of the
12891         Scr.SizeWindow, this fix a lot of X errors in my machine.
12893         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
12894         Donated our alpha channel
12896         * libs/vpacket.h:
12897         * fvwm/module_interface.h:
12898         * fvwm/module_interface.c (SendFvwmPicture):
12899         (BroadcastMiniIcon):
12900         (SendMiniIcon):
12901         (BroadcastFvwmPicture):
12902         (CMD_Send_WindowList):
12903         * fvwm/add_window.c (change_mini_icon):
12904         (broadcast_mini_icon):
12905         * fvwm/ewmh_icons.c:
12906         Replace BroadcastMiniIcon and SendMiniIcon by BroadcastFvwmPicture and
12907         SendFvwmPicture which send the alpha. Add a MiniIconPacket structure
12909         * libs/Makefile.am:
12910         * libs/PictureBase.c (*):
12911         * libs/PictureBase.h:
12912         * libs/Picture.c (*):
12913         * libs/Picture.h:
12914         * libs/PictureImageLoader.c (*):
12915         * libs/PictureImageLoader.h:
12916         * fvwm/*:
12917         Rename some libs file InitPicture -> PictureBase, FImageLoader ->
12918         PictureImageLoader.
12919         Rename some libs function: InitPictureCMap -> PictureInitCMap,
12920         UseDefaultVisual -> PictureUseDefaultVisual, UseFvwmVisual ->
12921         PictureUseFvwmVisual, PictureSaveFvwmVisual -> SaveFvwmVisual,
12922         SetImagePath -> PictureSetImagePath, findImageFile ->
12923         PictureFindImageFile, PictureList -> FvwmPictureList,
12924         LoadFvwmPicture removed now  PImageLoadFvwmPictureFromFile replace it,
12925         GetPicture -> PGetFvwmPicture, CachePicture -> PCacheFvwmPicture,
12926         DestroyPicture -> PDestroyFvwmPicture, LoadPictureFromPixmap ->
12927         PLoadFvwmPictureFromPixmap, CachePictureFromPixmap ->
12928         PCacheFvwmPictureFromPixmap, fvwm_clone_picture -> PCloneFvwmPicture.
12929         Also renamed more recent functions in PictureImageLoader.
12931         * fvwm/borders.c (border_draw_one_border_part):
12932         (border_draw_decor_to_pixmap):
12933         Fixed drawing of a TiledPixmap borded and fixed position of buttons
12934         pixmap
12936         * fvwm/menus.c (pop_menu_up):
12937         (animated_move_back):
12938         (ParentalMenuRePaint):
12939         * fvwm/move_resize.h (resize_geometry_window):
12940         * fvwm/move_resize.c (move_window_doit):
12941         (AnimatedMoveAnyWindow):
12942         (AnimatedMoveOfWindow):
12943         (AnimatedMoveFvwmWindow):
12944         Fixed transparent animated menu
12946 2002-04-21  Mikhael Goikhman  <migo@homemail.com>
12948         * fvwm/fvwm.1:
12949         fixed two places
12951 2002-04-19  Hippo
12953         * fvwm/colorset.c:
12954         * libs/Colorset.c:
12955         fixed running out of colors on 8bpp with ReadWriteColors;
12956         simulate colorsets on monochrome displays using three 1-bit pixmaps
12958 2002-04-19  Mikhael Goikhman  <migo@homemail.com>
12960         * configure.in:
12961         fixed $PERL detection again
12963 2002-04-18  Hippo
12965         * configure.in:
12966         added -Wno-implicit-int to -Wall in case of gcc
12968         * fvwm/colorset.c:
12969         * fvwm/fvwm.c:
12970         fixed ReadWriteColors on a PseudoColor display
12972 2002-04-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12974         * fvwm/move_resize.c (move_window_doit):
12975         set the is_icon_moved too flag if the icon was moved non-interactively
12977 2002-04-16  Hippo
12979         * fvwm/*.[ch]:
12980         * NEWS:
12981         Moved FvwmTheme functionality into fvwm.
12982         Added new commands Colorset, ReadWriteColors, CleanupColorsets.
12984 2002-04-17  Mikhael Goikhman  <migo@homemail.com>
12986         * configure.in:
12987         fixed $PERL detection
12989         * fvwm/fvwm.1:
12990         * fvwm/ConfigFvwmDefaults:
12991         several fixes and spelling
12993 2002-04-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12995         * libs/Bindings.c (CheckBinding):
12996         (MatchBinding):
12997         (GrabWindowKey):
12998         (GrabWindowButton):
12999         (MatchBindingExactly):
13000         patch by yeti@physics.muni.cz to help with a weird problem w/ czech
13001         keyboards
13003 2002-04-12  Mikhael Goikhman  <migo@homemail.com>
13005         * configure.in:
13006         configure now uses $PERL if set
13008         * **:
13009         all programs installed into ${bindir} have now fvwm- prefix;
13010         documentation updated
13012 2002-04-11  Mikhael Goikhman  <migo@homemail.com>
13014         * **:
13015         renamed fvwm2 executable to fvwm, fvwm2 man page to fvwm;
13016         documentation updated
13018 2002-04-11  Mikhael Goikhman  <migo@homemail.com>
13020         * NEWS:
13021         added 2.4.7 entries
13023 2002-04-10  Dan Espen  <dane@mk.telcordia.com>
13025         * AUTHORS: New author.
13027         * NEWS: Edge Command.
13029 2002-04-09  Uwe Pross  <uwe.pross@gmx.net>
13031         * fvwm/fvwm2.1:
13032         Added EdgeCommand paragraph.
13034         * fvwm/events.c (HandleEnterNotify):
13035         Added execution of Scr.PanFrame*.command if set
13037         * fvwm/fvwm.c (InitVariables):
13038         Added init strings for pan frame commands.
13040         * fvwm/virtual.c:
13041         * fvwm/virtual.h:
13042         (checkPanFrames):
13043         Avoid hiding of pan frames if pan frame command is set.
13044         (CMD_EdgeCommand):
13045         Implementation of the buildin command EdgeCommand. First
13046         implementation of this function.
13048         * fvwm/screen.h (struct):
13049         added char * command in structure Panframe to store the pan frame
13050         command.
13052         * fvwm/functions.c:
13053         added declaration of CMD_ENTRY("edgecommand")
13055         * fvwm/functions.h:
13056         added definition of Flag F_EDGE_COMMAND
13058         * fvwm/commands.h:
13059         added definition of CMD_EdgeCommand(F_CMD_ARGS)
13061 2002-04-10  Mikhael Goikhman  <migo@homemail.com>
13063         * fvwm/fvwm2.1:
13064         added "BI-DIRECTIONAL TEXTS" section
13066         * libs/System.c:
13067         added #include <sys/select.h> to fix endless loop on QNX
13069 2002-04-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13071         * fvwm/fvwm2.1:
13072         changed description of focus models
13074 2002-04-09  olicha  <olivier.chapuis@free.fr>
13076         * configure.in:
13077         Check for libpng libpng 1.0.4a or better
13079 2002-04-08  Mikhael Goikhman  <migo@homemail.com>
13081         * fvwm/add_window.c (setup_title_geometry):
13082         * fvwm/fvwm.h:
13083         * fvwm/fvwm2.1:
13084         * fvwm/geometry.c (get_title_font_size_and_offset):
13085         * fvwm/geometry.h:
13086         * fvwm/style.c (parse_and_set_window_style, check_window_style_change):
13087         * fvwm/style.h:
13088         * fvwm/window_flags.h:
13089         * libs/Fft.c (FftGetRotatedFont, FftGetFont, FftDrawString):
13090         * libs/Fft.h:
13091         * libs/Flocale.c (FlocaleRotateDrawString, FlocaleDrawString):
13092         * libs/Flocale.h:
13093         new Style options TopTitleRotated / TopTitleNotRotated,
13094         BottomTitleRotated / BottomTitleNotRotated
13096 2002-04-08  olicha  <olivier.chapuis@free.fr>
13098         * libs/Makefile.am:
13099         Fixed make dist again
13101 2002-04-07  Dan Espen  <dane@mk.telcordia.com>
13103         * fvwm/fvwm2.1 (ICONS AND IMAGES): Language fix, then rewrite.
13105 2002-04-07  Mikhael Goikhman  <migo@homemail.com>
13107         * INSTALL.fvwm:
13108         minor wording fixes
13110         * NEWS:
13111         mention a new FvwmIconMan syntax
13113         * sample.fvwmrc/new-features:
13114         * sample.fvwmrc/system.fvwm2rc:
13115         * sample.fvwmrc/system.fvwm2rc-sample-95:
13116         use a new module syntax
13118 2002-04-06  olicha  <olivier.chapuis@free.fr>
13120         * fvwm/fvwm2.1:
13121         * INSTALL.fvwm:
13122         Forget to save some file
13124         * libs/FImageLoader.c (c100_init_base_table):
13125         Allows init even if !XPM
13127         * libs/Makefile.am:
13128         Remove a F
13130         * configure.in:
13131         Fixed png detection
13133         * libs/FImageLoader.c (FImageCreatePixmapFromArgbData):
13134         Fixed a GC memory leaks.
13136         * fvwm/fvwm.c (setVersionInfo):
13137         * fvwm/fvwm2.1:
13138         Updated -version for png, bidi and xft
13140         * fvwm/fvwm2.1:
13141         Modified the ICONS section. Rename it ICONS AND IMAGES and
13142         document PNG file format. Replace "xpm or bitmap file" by
13143         "image file" in a few place.
13145         * INSTALL.fvwm:
13146         * NEWS:
13147         PNG news and documented libpng in the "Optional libraries used by FVWM"
13148         section
13150 2002-04-05  olicha  <olivier.chapuis@free.fr>
13152         * libs/FImageLoader.c (c100_init_base_table):
13153         (FImageReduceRGBColor):
13154         (FImageCreatePixmapFromArgbData):
13155         Speed up color limitation for png image and ewmh icons
13156         Respect color limit even with DirectColor and TrueColor
13158         * configure.in:
13159         * acconfig.h (HAVE_PNG):
13160         Added test for libpng. Enable FvwmBanner, FvwmScript and xpmroot
13161         even without XPM support
13163         * libs/Makefile.am
13164         * libs/InitPicture.c (new file):
13165         * libs/InitPicture.h (new file):
13166         * libs/Picture.c:
13167         * libs/Picture.h:
13168         * libs/FImageLoader.c (new file):
13169         * libs/FImageLoader.h (new file):
13170         * libs/Fxpm.h (new file):
13171         * libs/Fpng.h (new file):
13172         Images are loaded in FImageLoader. PNG image can be loaded, the loader
13173         come from Imlib2 and the argb loader from fvwm/ewmh_icons.c.
13174         ColorLimit stuff is applied to PNG image.
13175         Split Picture.c, Picture.h into InitPicture.c, InitPicture.h,
13176         Picture.c and Picture.h.
13177         InitPicture contains the Picture structure, initialize the visual,
13178         depth and color map and contains image path stuff as Picture contains
13179         Picture manipulations.
13181         * libs/ColorUtils.c:
13182         * libs/Picture.h:
13183         Moved the Picture color utils func to ColorUtils
13185         * fvwm/Makefile.am:
13186         links against libpng
13188         * fvwm/icons.c (GetIconPicture):
13189         (GetXPMFile):
13190         (GetBitmapFile):
13191         (GetIconFromFile):
13192         Replace GetXPMFile and GetBitmapFile by GetIconFromFile which use
13193         the libs image loader
13195         * fvwm/cursor.c (CMD_CursorStyle):
13196         Use FImageLoadCursorPixmapFromFile (no PNG support here)
13198         * fvwm/ewmh_icons.c (create_pixmap_from_ewmh_icon):
13199         (EWMH_SetIconFromWMIcon):
13200         Use the argb loader of the libs. ColorLimit are now applied to ewmh
13201         icons
13203         * fvwm/modconf.c:
13204         Send the ColorLimit to module in any case
13206         * libs/fvwmlib.h:
13207         * libs/Graphics.c:
13208         * libs/Flocale.c
13209         * libs/Fft.c:
13210         * libs/Colorset.c:
13211         * fvwm/add_window.c:
13212         * fvwm/builtins.c:
13213         * fvwm/fvwm.h:
13214         * fvwm/menus.c:
13215         * fvwm/menustyle.c:
13216         * fvwm/move_resize.c:
13217         include cleanup
13219 2002-04-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13221         * fvwm/events.c (test_map_request):
13222         (test_resizing_event):
13223         fixed endless loop in HandleConfigureRequest
13225 2002-03-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13227         * fvwm/add_window.c (setup_style_and_decor):
13228         fixed borderless transients
13230         * fvwm/events.c (test_resizing_event):
13231         (HandleConfigureRequest):
13232         * fvwm/frame.c (frame_create_move_resize_args):
13233         * fvwm/add_window.c (AddWindow):
13234         * fvwm/fvwm.h:
13235         * fvwm/window_flags.h:
13236         tried to improve ConfigureRequest handling
13238         * fvwm/events.c (HandlePropertyNotify):
13239         recalculate window size when the base_width or base_height hint
13240         changes; fixes some problems with xemacs
13242         * fvwm/virtual.c (map_window):
13243         redraw decorations
13245         * fvwm/borders.c (border_draw_decorations):
13246         don't redraw windows on a different desk
13247         keep track of Scr.Hilite
13249 2002-03-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13251         * fvwm/virtual.c (unmap_window):
13252         * fvwm/move_resize.c (resize_window):
13253         * fvwm/icons.c (Iconify):
13254         * fvwm/add_window.c (CaptureOneWindow):
13255         * fvwm/borders.c (border_undraw_decorations):
13256         mark window decorations as not drawn whenever the frame is unmapped
13258 2002-03-30  Dan Espen  <dane@mk.telcordia.com>
13260         * fvwm/fvwm2.1: Fixup IconBox geometry examples.
13262 2002-03-29  Mikhael Goikhman  <migo@homemail.com>
13264         * libs/FBidi.c:
13265         use safemalloc and alloca instead of malloc
13267 2002-03-29  olicha  <olivier.chapuis@free.fr>
13269         * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
13270         Set the X locale charset on system without XOpenOM
13272 2002-03-27  Mikhael Goikhman  <migo@homemail.com>
13274         * configure.in:
13275         fixed multibyte support reporting
13277 2002-03-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13279         * libs/fvwmlib.h:
13280         * fvwm/fvwm.h:
13281         * config.h.in:
13282         moved gcc extension __attribute__ handling to config.h
13284         * fvwm/fvwm.c (main):
13285         * fvwm/stack.c (add_window_to_stack_ring_after):
13286         * fvwm/icons.c (GetIconWindow):
13287         (GetIconBitmap):
13288         * fvwm/add_window.c:
13289         fixed core dumps and other bugs in debug messages
13291 2002-03-27  olicha  <olivier.chapuis@free.fr>
13293         * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
13294         (FlocaleCharsetSetFlocaleCharset):
13295         * acconfig.h:
13296         * configure.in (problem_multibyte):
13297         Fixed compilation for system without XOpenOM in Xlib.h
13299         * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
13300         * libs/Ficonv.c (FiconvInit):
13301         Be more safe
13303         * fvwm/fvwm.c:
13304         include only libs/Flocale.h
13306 2002-03-26  Mikhael Goikhman  <migo@homemail.com>
13308         * configure.in:
13309         fixed detection of fribidi-0.9.0, it is incompatible (not good for us)
13311         * libs/FBidi.c:
13312         * libs/FBidi.h:
13313         * libs/Flocale.c:
13314         * libs/FlocaleCharset.c:
13315         minor modifications, like removed #include;
13316         fixed core dump with bidi and utf-8
13318 2002-03-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13320         * fvwm/frame.c (frame_update_hidden_window_pos):
13321         fixed shade/maximize/unshade
13323         * fvwm/builtins.c (FreeDecorFace):
13324         fixed memory leak
13326         * fvwm/borders.c (get_common_decorations):
13327         (border_get_border_style):
13328         * fvwm/style.c (parse_and_set_window_style):
13329         * fvwm/style.h:
13330         * fvwm/window_flags.h:
13331         * fvwm/fvwm.h (struct):
13332         * fvwm/frame.c (frame_mrs_setup_draw_decorations):
13333         (frame_create_move_resize_args):
13334         (frame_move_resize_step):
13335         (frame_next_move_resize_args):
13336         new styles WindowShadeLazy [default], WindowShadeBusy and
13337         WindowShadeAlwaysLazy
13339         * fvwm/frame.c (frame_set_decor_gravities):
13340         fixed window bit gravities
13341         split into smaller functions
13342         (frame_move_resize_step):
13343         fixed a bug w/ the parent gravity
13344         (frame_hide_changing_window_parts):
13345         fixed flickering in one of the corners during shade animation
13346         (frame_mrs_hide_changing_parts):
13347         renamed function
13348         (frame_mrs_prepare_vars):
13349         (frame_mrs_hide_unhide_parent):
13350         (frame_mrs_setup_draw_decorations):
13351         (frame_mrs_resize_move_windows):
13352         new functions
13354 2002-03-25  olicha  <olivier.chapuis@free.fr>
13356         * libs/Fft.c (FftSetupEncoding):
13357         Fixed compilation
13359         * libs/Flocale.c (FlocaleDrawString):
13360         * libs/FBidi.c (FBidiConvert):
13361         * libs/FBidi.h:
13362         Pass the font to FBidiConvert
13364         * acconfig.h (HAVE_LIBCHARSET):
13365         * acinclude.m4 (CHECK_LIBCHARSET):
13366         * configure.in:
13367         If libiconv is used check for libcharset
13369         * libs/Makefile.am:
13370         * libs/FlocaleCharset.h:
13371         * libs/FlocaleCharset.c:
13372         * libs/Flocale.h:
13373         * libs/Flocale.c (*):
13374         * libs/Fft.c (FftSetupEncoding):
13375         * libs/Fft.h:
13376         New structure FlocaleCharset to handle font, iconv and fribidi charsets.
13377         FlocaleFont has such a member which is set when charset info are needed.
13378         FlocaleCharset.c contains a big table which associates to an X charset
13379         various possible locale charsets and the fribidi charset.
13380         If libiconv is used, libcharset is used to compute the locale charset.
13381         Various Flocale clean up.
13383         * fvwm/fvwm.c (main):
13384         Removed the call to FlocaleInitCharset, it is now done automatically
13385         when needed
13387         * libs/Makefile.am:
13388         * libs/Ficon.h:
13389         * libs/Ficonv.c:
13390         * fvwm/ewmh.c (ewmh_atom_property_notify[]):
13391         * fvwm/ewmh.h:
13392         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
13393         (EWMH_WMIconName):
13394         (EWMH_WMName):
13395         (EWMH_SetDesktopNames):
13396         Moved iconv conversions into the library. Try to found the good iconv
13397         charset with the help of the font and of the FlocaleCharset table.
13399 2002-03-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13401         * libs/Module.c (SendFvwmPipe):
13402         * libs/Graphics.c (do_relieve_rectangle):
13403         * fvwm/menustyle.c (menustyle_parse_old_style):
13404         * fvwm/add_window.c (setup_window_structure):
13405         memory management patches by Dave Trollope
13407         * fvwm/frame.c (frame_get_sidebar_geometry):
13408         hide the handles when using the NoHandles style
13410         * fvwm/borders.c (border_redraw_decorations):
13411         change in title rotation is applied immediately, don't use the value "2"
13412         to force redrawing
13414         * fvwm/style.c (parse_and_set_window_style):
13415         removed "TitleLeft" and "TitleRight" styles; only the "TitleAt..."
13416         styles can be used
13417         documented the new title directions
13418         (parse_and_set_window_style):
13419         removed the ...TitleRotated[Counter]ClockWise use ...CW and ...CCW
13420         instead
13421         documented these styles
13423         * fvwm/add_window.c (CaptureOneWindow):
13424         (CaptureAllWindows):
13425         (AddWindow):
13426         cleaned up
13428         * fvwm/icons.c (DeIconify):
13429         fiexd fucoused window not hilighting after deiconification
13431 2002-03-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13433         * fvwm/update.c (apply_window_updates):
13434         windows are not unshaded when the decoration layout changes
13436         * fvwm/frame.c (frame_create_move_resize_args):
13437         fixed excessive redrawing
13438         (frame_get_hidden_pos):
13439         fixed parent geometry when window is hidden
13441         * fvwm/add_window.c (setup_frame_stacking):
13442         fixed stacking of right buttons
13444         * fvwm/frame.c (frame_set_decor_gravities):
13445         fixed title and button bit gravities
13447         * fvwm/add_window.c (setup_frame_stacking):
13448         (change_auxiliary_windows):
13449         fixed "button" style
13451         * fvwm/geometry.c (get_title_button_geometry):
13452         * fvwm/menus.c (pop_menu_up):
13453         fixed menu placement relative to window titles
13455         * libs/Flocale.c (FlocaleDrawString):
13456         fixed compiler warning w/o fribidi
13458         * fvwm/virtual.c (MoveViewport):
13459         (MapDesk):
13460         (do_move_window_to_desk):
13461         * fvwm/update.c (apply_window_updates):
13462         * fvwm/icons.c (Iconify):
13463         (CMD_Iconify):
13464         * fvwm/module_interface.c (SETOLDFLAGS):
13465         * fvwm/ewmh_events.c (ewmh_WMStateHidden):
13466         * fvwm/style.c (parse_and_set_window_style):
13467         * fvwm/window_flags.h:
13468         * fvwm/session.c (MatchWinToSM):
13469         * fvwm/placement.c (PlaceWindow):
13470         * fvwm/add_window.c (CaptureAllWindows):
13471         (setup_window_placement):
13472         (CaptureOneWindow):
13473         (AddWindow):
13474         (destroy_window):
13475         * fvwm/menus.c (menu_tear_off):
13476         * fvwm/events.c (HandleMapRequestKeepRaised):
13477         (HandleMapNotify):
13478         * fvwm/fvwm.h:
13479         removed some of those pesky globals: PPosOverride, isIconicState and
13480         isIconifiedByParent; pass round a structure instead
13481         removed the do_start_iconic window flag
13482         removed do_delete_icon_moved flag
13484 2002-03-24  Mikhael Goikhman  <migo@homemail.com>
13486         * acconfig.h:
13487         * configure.in:
13488         renamed HAVE_FRIBIDI to HAVE_BIDI
13490         * libs/FBidi.c:
13491         * libs/FBidi.h:
13492         added more comments
13494         * fvwm/Makefile.am:
13495         * libs/Flocale.c:
13496         * libs/Makefile.am:
13497         added a dummy call to FBidi to test linking against bidi libs
13499 2002-03-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13501         * fvwm/windowshade.c (CMD_WindowShade):
13502         changed syntax of windowshade with direction
13503         (CMD_WindowShade):
13504         update button state after unshading
13506         * fvwm/add_window.c (AddWindow):
13507         fixed mini icon update
13509         * fvwm/events.c (HandleEnterNotify):
13510         fixed icon picture redrawing
13511         icon titles are no longer raised and expanded if the icon has only a
13512         title
13514         * fvwm/move_resize.c (resize_window):
13515         fixed core dump
13517         * libs/gravity.c (gravity_move_resize_parent_child):
13518         * fvwm/frame.c (frame_get_titlebar_dimensions):
13519         (frame_prepare_animation_shape):
13520         (frame_move_resize_step):
13521         (frame_get_titlebar_dimensions_only):
13522         (frame_get_hidden_pos):
13523         (frame_update_hidden_window_pos):
13524         (frame_free_move_resize_args):
13525         (frame_create_move_resize_args):
13526         fixed shading of shaped windows
13528         * fvwm/borders.c:
13529         clean up
13531         * fvwm/fvwm.c (main):
13532         * fvwm/misc.c (GrabEm):
13533         fixed a problem with the cursor shape during window shading
13535         * fvwm/update.c (apply_window_updates):
13536         fixed drawing of hilighted window after a decoration change
13538         * fvwm/update.c (apply_window_updates):
13539         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
13540         * fvwm/borders.c (RedrawDecorations):
13541         renamed RedrawDecorations()
13543         * fvwm/move_resize.c (move_window_doit):
13544         * libs/fvwmrect.c:
13545         * fvwm/misc.c (move_into_rectangle):
13546         (intersect_xrectangles):
13547         functions renamed and moved to fvwmrect.c
13549         * fvwm/borders.c (border_get_changed_border_parts):
13550         (frame_get_changed_border_parts):
13551         reduced border redrawing
13552         moved fucntion to borders.c
13554         * fvwm/events.c (HandleButtonPress):
13555         (DispatchEvent):
13556         suppress button events on frame windows
13558         * fvwm/frame.c (frame_setup_border):
13559         fixed a problem with the border setup
13561         * fvwm/borders.c (border_draw_decorations):
13562         * fvwm/events.c (HandleEnterNotify):
13563         fixed icon title drawing
13565         * fvwm/misc.c (GrabEm):
13566         fixed a pointer grab hang with xmag?
13568         * fvwm/move_resize.c (resize_window):
13569         use frame_move_resize function to improve performance
13571         * fvwm/add_window.c (AddWindow):
13572         fixed recaturing shaded windows
13574         * fvwm/borders.c:
13575         suppress unnecessary title redraws
13577         * fvwm/frame.c:
13578         window shading works again; there are still some problems with
13579         recapture, restart, border drawing and shaped windows
13581 2002-03-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13583         * fvwm/geometry.c (get_shaded_geometry_with_dir):
13584         new function
13586         * fvwm/frame.c (frame_get_title_bar_dimensions):
13587         fixed minor button layout bug
13588         (frame_update_hidden_window_pos):
13590         * fvwm/ewmh_names.c (EWMH_WMName):
13591         * fvwm/gnome.c (GNOME_HandlePropRequest):
13592         * fvwm/focus.c (DoSetFocus):
13593         * fvwm/stack.c (new_layer):
13594         * fvwm/icons.c (DeIconify):
13595         (Iconify):
13596         * fvwm/events.c (HandleFocusIn):
13597         (HandlePropertyNotify):
13598         (HandleExpose):
13599         (HandleMapNotify):
13600         (HandleButtonPress):
13601         (HandleLeaveNotify):
13602         * fvwm/builtins.c (CMD_ChangeDecor):
13603         (CMD_UpdateDecor):
13604         * fvwm/move_resize.c (resize_move_window):
13605         (resize_window):
13606         (resize_window):
13607         (maximize_fvwm_window):
13608         (handle_stick):
13609         * fvwm/borders.c (DrawDecorations):
13610         (RedrawDecorations):
13611         removed function DrawDecorations()
13612         (border_draw_decorations):
13613         renamed draw_decorations_with_geom() to border_draw_decorations()
13615         * fvwm/events.c (HandleExpose):
13616         fixed drawing icon titles
13618         * fvwm/add_window.c (adjust_fvwm_internal_windows):
13619         * fvwm/events.c (HandleFocusIn):
13620         (HandleFocusOut):
13621         * fvwm/screen.h (ScreenInfo):
13622         return the focus to the window that had the focus before an or window
13623         stole it and then died.
13625         * fvwm/menus.c (scanForColor):
13626         removed duplicate call of strlen
13627         use alloca instead of safemalloc
13629         * fvwm/menustyle.c (menustyle_parse_style):
13630         don't call memset right before memcpy
13632         * fvwm/module_interface.c (AddToMessageQueue):
13633         (DeleteMessageQueueBuff):
13634         removed one safemalloc and inline'd the function
13635         merged AddToMessageQueue into PositiveWrite
13637         * fvwm/borders.c (border_draw_decor_to_pixmap):
13638         fixed pixmap and mini icon buttons
13639         (border_fill_pixmap_background):
13640         fixed an X error
13641         (border_get_tb_parts_to_draw):
13642         buttons and title background using the border style is updated when the
13643         buttons moves
13645         * fvwm/events.c (WaitForButtonsUp):
13646         don't grab the whole server but merely the pointer to allow applications
13647         redrawing themselves
13649         * fvwm/borders.c:
13650         finished writing title drawing code
13652         * fvwm/move_resize.c (resize_window):
13653         (resize_move_window):
13654         (unmaximize_fvwm_window):
13655         removed now unnecessary calls to DrawDecorations()
13657         * fvwm/frame.c (frame_hide_changing_window_parts):
13658         fixed hiding bottom/right titles
13660         * fvwm/add_window.c (AddWindow):
13661         fixed recapturing shaded windows
13663         * fvwm/misc.c (GrabEm):
13664         fixed the cursor over the title window while resizing
13666 2002-03-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13668         * libs/Graphics.c (CreateTiledPixmap):
13669         improved efficience: let the X server tile a pixmap via the GC settings
13671         * fvwm/fvwm.c (CreateGCs):
13672         * fvwm/screen.h (ScreenInfo):
13673         added new global GC Scr.TileGC
13675         * fvwm/borders.c (border_fill_pixmap_background):
13676         * fvwm/ewmh_icons.c (create_pixmap_from_ewmh_icon):
13677         use already created gcs
13679         * fvwm/ewmh_icons.c (create_pixmap_from_ewmh_icon):
13680         * fvwm/menus.c (paint_menu_gradient_background):
13681         fixed using a randow members in gcs
13683 2002-03-22  Mikhael Goikhman  <migo@homemail.com>
13685         * configure.in:
13686         added compilation test for fribidi
13688 2002-03-22  Dan Espen  <dane@mk.telcordia.com>
13690         * NEWS: Document FvwmForm timeout.
13692 2002-03-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13694         * fvwm/session.c (MatchWinToSM):
13695         * fvwm/add_window.c (AddWindow):
13696         preserve user states over a restart
13698         * fvwm/add_window.c (setup_window_structure):
13699         preserve user states over a recapture
13701         * fvwm/functions.c (execute_function):
13702         "Silent" suppresses the "No such command ..." message
13704         * fvwm/frame.c (frame_move_resize):
13705         * fvwm/misc.c (GrabEm):
13706         fixed the cursor shape during resizing
13707         fixed button looks in small windows
13709 2002-03-22  Mikhael Goikhman  <migo@homemail.com>
13711         * libs/FBidi.c:
13712         * libs/FBidi.h:
13713         new files
13715 2002-03-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13717         * fvwm/fvwm.c (LoadDefaultLeftButton):
13718         (LoadDefaultRightButton):
13719         * fvwm/borders.c (border_draw_vector_to_pixmap):
13720         * fvwm/screen.h (DecorFace):
13721         * fvwm/builtins.c (ReadDecorFace):
13722         fixed transparent vector line support
13724         * libs/Graphics.c (CreateGradientPixmap):
13725         fixed potential core dump with illegal gradients
13727 2002-03-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13729         * fvwm/fvwm.h (FvwmWindow):
13730         removed button_background_pixmap member
13732         * fvwm/update.c (apply_window_updates):
13733         fixed changing the decoration size
13735         * fvwm/windowshade.c (CMD_WindowShade):
13736         * fvwm/frame.c (frame_setup_border):
13737         * fvwm/functions.c (execute_complex_function):
13738         removed debug code
13740         * fvwm/move_resize.c (resize_window):
13741         fixed aboting of a opaque resize w/ maximized windows
13742         (ParseOneResizeArgument):
13743         resize arguments don't take the border into account
13744         (GetResizeArguments):
13745         implemented new option "Frame" to the Resize and ResizeMove commands
13747 2002-03-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13749         * fvwm/fvwm2.1:
13750         * fvwm/builtins.c (ReadDecorFace):
13751         * fvwm/borders.c (DrawLinePattern):
13752         implemented transparent drawing color in vector buttons: C == 4
13754         * libs/defaults.h (MAX_TITLE_BUTTON_VECTOR_LINES):
13755         * fvwm/builtins.c (ReadDecorFace):
13756         increased allowed number of lines in a vector button to 10000 and moved
13757         the definition to defaults.h
13759         * fvwm/virtual.c (MoveViewport):
13760         don't send useless M_NEW_PAGE packets
13762         * fvwm/frame.c:
13763         * fvwm/borders.c:
13764         started work on new button/title drawing code
13766         * fvwm/events.c (HandleExpose):
13767         don't handle expose on the title bar
13769         * fvwm/borders.c:
13770         * fvwm/frame.c (frame_get_sidebar_geometry):
13771         * fvwm/fvwm.h (FvwmWindow):
13772         replaced border_state with decor_state
13774         * libs/defaults.h (NR_RIGHT_BUTTONS):
13775         added a comment
13777         * fvwm/events.h:
13778         * fvwm/events.c (HandleExpose):
13780         * fvwm/frame.c (frame_setup_border):
13781         hide sidebars if they are too small, i.e. 0 pixels
13783 2002-03-20  olicha  <olivier.chapuis@free.fr>
13785         * libs/Flocale.c (FlocaleFreeNameProperty):
13786         Fixed random core dump
13788 2002-03-19  olicha  <olivier.chapuis@free.fr>
13790         * fvwm/ConfigFvwmDefaults:
13791         RightTitleRotatedCW is a default
13793 2002-03-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13795         * fvwm/frame.c (frame_get_sidebar_geometry):
13796         window corners are always at least the border width thick
13798         * fvwm/geometry.c (update_absolute_geometry):
13799         fixed south/east shading
13801         * fvwm/frame.c (frame_move_resize_step):
13802         did the best I could to prevent rxvt from flashing in the background
13803         colour
13805         * fvwm/add_window.c (get_default_window_attributes):
13806         (get_default_window_attributes):
13807         (setup_resize_handle_windows):
13808         * fvwm/borders.c (border_get_border_gcs):
13809         applied -visual fix by Hippo
13811         * fvwm/cursor.c (CMD_CursorStyle):
13812         fixed endless loop
13814         * fvwm/frame.c (frame_get_title_bar_dimensions):
13815         fixed order of right buttons
13816         (frame_move_resize_step):
13817         reduced flashing when maximizing
13819         * fvwm/geometry.c (update_absolute_geometry):
13820         adapted for horizontal shading
13822 2002-03-19  Mikhael Goikhman  <migo@homemail.com>
13824         * fvwm/borders.c:
13825         * fvwm/builtins.c:
13826         * fvwm/fvwm.h:
13827         * fvwm/geometry.c:
13828         * libs/Fft.c:
13829         * libs/Flocale.c:
13830         * libs/Flocale.h:
13831         several renamings of text_direction to text_rotation
13833 2002-03-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13835         * fvwm/windowshade.c (CMD_WindowShade):
13836         * fvwm/frame.c (frame_create_move_resize_args):
13837         (frame_move_resize_step):
13838         hack to enable non-animated window shading for the time being
13840         * fvwm/style.c (parse_and_set_window_style):
13841         (parse_and_set_window_style):
13842         allow to abbreviate [Counter]ClockWise with [C]CW
13844         * fvwm/frame.c (frame_move_resize_step):
13845         fixed
13847         * fvwm/geometry.c (gravity_constrain_size):
13848         removed useless code
13850         * fvwm/update.c (apply_window_updates):
13851         * fvwm/add_window.c (AddWindow):
13852         * fvwm/move_resize.c (unmaximize_fvwm_window):
13853         (resize_window):
13854         do not write into frame_g. only frame.c should do this
13856         * libs/defaults.h (MIN_WINDOW_TITLEBUTTON_LENGTH):
13857         (MIN_WINDOW_TITLE_LENGTH):
13858         new default values
13859         * fvwm/frame.c (frame_setup_title_bar):
13860         (get_resize_decor_gravities_one_axis):
13861         (frame_setup_window_internal):
13862         (frame_move_resize_step):
13863         (frame_create_move_resize_args):
13864         rewrote frame_setup_title_bar function
13866         * fvwm/add_window.c (setup_frame_stacking):
13867         fixed title bar stacking order
13869         * fvwm/frame.c (frame_setup_title_bar):
13870         removed yesterday's 'fix'
13872         * fvwm/add_window.c (hide_screen):
13873         (setup_title_window):
13874         (setup_resize_handle_windows):
13875         (setup_button_windows):
13876         fixed visual and depth of decoration windows
13878 2002-03-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13880         * fvwm/frame.c (frame_setup_title_bar):
13881         fixed title layout bug
13883         * fvwm/move_resize.c (MaximizeHeight):
13884         fixed bug in "grow" option of the Maximize command
13886         * fvwm/geometry.h:
13887         fixed broken prototype for get_title_font_size_and_offset
13889         * fvwm/geometry.c (get_title_font_size_and_offset):
13890         simplified code a bit
13892 2002-03-18  olicha  <olivier.chapuis@free.fr>
13894         * fvwm/geometry.h:
13895         * fvwm/geometry.c (get_title_font_size_and_offset):
13896         * fvwm/add_window.c (setup_title_geometry):
13897         * fvwm/style.h:
13898         * fvwm/style.c (parse_and_set_window_style):
13899         (check_window_style_change):
13900         * fvwm/update.c (apply_window_updates):
13901         * fvwm/window_flags.h:
13902         * fvwm/fvwm.h:
13903         Reworte side title direction styles and use LeftTitleRotatedClockWise /
13904         LeftTitleRotatedCounterClockWise, RightTitleRotatedClockWise /
13905         RightTitleRotatedCounterClockWise
13907 2002-03-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13909         * acconfig.h:
13910         * vms/config.h (FMiniIconsSupported):
13911         removed last traces of MINI_ICONS ifdef
13913         * fvwm/windowlist.c (CMD_WindowList):
13914         * fvwm/update.c (apply_window_updates):
13915         * fvwm/style.h:
13916         * fvwm/style.c (merge_styles):
13917         (parse_and_set_window_style):
13918         (check_window_style_change):
13919         * fvwm/screen.h:
13920         * fvwm/module_interface.c (SendMiniIcon):
13921         (BroadcastMiniIcon):
13922         (CMD_Send_WindowList):
13923         * fvwm/fvwm.h (FvwmWindow):
13924         * fvwm/ewmh_icons.c (ewmh_WMIcon):
13925         (EWMH_DoUpdateWmIcon):
13926         (ewmh_SetWmIconFromPixmap):
13927         (EWMH_DeleteWmIcon):
13928         (EWMH_SetIconFromWMIcon):
13929         * fvwm/builtins.c (ReadDecorFace):
13930         * fvwm/borders.c (DrawButton):
13931         (CMD_BorderStyle):
13932         (CMD_BorderStyle):
13933         * fvwm/add_window.c (setup_window_structure):
13934         (setup_mini_icon):
13935         (destroy_mini_icon):
13936         (change_mini_icon):
13937         (AddWindow):
13938         * acconfig.h (FMiniIconsSupported):
13939         replaced all MINI_ICONS ifdefs with FMiniIconsSupported to enable
13940         compiler checks
13942         * fvwm/screen.h:
13943         removed an FANCY_TITLEBARS ifdef
13945         * fvwm/borders.c (border_draw_one_part):
13946         (border_draw_border_parts):
13947         (border_draw_all_parts):
13948         (draw_clipped_decorations_with_geom):
13949         performance enhancement
13951 2002-03-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13953         * fvwm/frame.c (frame_move_resize_step):
13954         force setting up the border when function is called with FRAME_MR_SETUP
13955         (frame_setup_window_internal):
13956         removed duplicate frame setup
13958         * fvwm/borders.c (border_get_parts_and_pos_to_draw):
13959         fixed logic bug
13960         (draw_clipped_decorations_with_geom):
13961         do not flush the X queue after drawing; let the caller do it
13963         * fvwm/frame.c (frame_get_sidebar_geometry):
13964         fixed layout of windows with a small height
13965         (frame_hide_changing_window_parts):
13966         fixed flickering
13968         * fvwm/borders.c:
13969         * fvwm/frame.c:
13970         made good progress with frame layout rewrite. I think it is already
13971         considerably faster.
13972         some general clean up
13974         * fvwm/add_window.c (setup_decor_window):
13975         function removed
13977         * fvwm/windowshade.c (CMD_WindowShade):
13978         * fvwm/stack.c (verify_stack_ring_consistency):
13979         (RaiseOrLowerWindow):
13980         * fvwm/move_resize.c (resize_move_window):
13981         (move_window_doit):
13982         (draw_move_resize_grid):
13983         * fvwm/icons.c (DrawIconWindow):
13984         * fvwm/icccm2.c (CloseICCCM2):
13985         (convertProperty):
13986         (HandleSelectionRequest):
13987         * fvwm/fvwm.c (main):
13988         (SaveDesktopState):
13989         * fvwm/focus.c (DoSetFocus):
13990         * fvwm/ewmh.c (EWMH_ManageKdeSysTray):
13991         * fvwm/events.c (HandlePropertyNotify):
13992         (HandleButtonPress):
13993         (HandleConfigureRequest):
13994         * fvwm/add_window.c (RestoreWithdrawnLocation):
13995         (Reborder):
13996         * fvwm/builtins.c (CMD_Delete):
13997         (CMD_Destroy):
13998         (CMD_Close):
13999         (CMD_FakeClick):
14000         * fvwm/menus.c (paint_menu):
14001         (DestroyMenu):
14002         * fvwm/misc.c (UngrabEm):
14003         (GrabEm):
14004         * fvwm/schedule.c (execute_obj_func):
14005         * fvwm/add_window.c (hide_screen):
14006         (destroy_window):
14007         use XFlush instead of XSync when the latter is not necessary
14009         * libs/fvwmrect.c (fvwmrect_rectangles_equal):
14010         new function
14012         * fvwm/add_window.c (adjust_fvwm_internal_windows):
14013         inform frame module if the window with the hide windows dies
14015         * fvwm/placement.c (PlaceWindow):
14016         (CMD_PlaceAgain):
14017         * fvwm/add_window.c (setup_window_attr):
14018         (setup_frame_attributes):
14019         (AddWindow):
14020         (RestoreWithdrawnLocation):
14021         (setup_window_placement):
14022         * fvwm/geometry.c (gravity_translate_to_northwest_geometry):
14023         (get_title_geometry):
14024         * fvwm/fvwm.c (InitVariables):
14025         * fvwm/frame.c (frame_setup_frame):
14026         * fvwm/colormaps.c (HandleColormapNotify):
14027         (InstallWindowColormaps):
14028         * fvwm/events.c (HandleConfigureRequest):
14029         (HandleUnmapNotify):
14030         * fvwm/fvwm.h (FvwmWindow):
14031         removed attr member of FvwmWindow and replaced by a structure defined
14032         ourselves that is much smaller
14034         * fvwm/add_window.c (hide_screen):
14035         don't use save_unders and backing_store for the window used in recapture
14037         * fvwm/frame.c (frame_init):
14038         * fvwm/fvwm.c (main):
14039         new function to initialise frame module
14041         * libs/fvwmrect.c (fvwmrect_subtract_rectangles):
14042         new function
14044 2002-03-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14046         * fvwm/frame.c:
14047         clean up
14049         * fvwm/borders.h (enum):
14050         * fvwm/borders.c (draw_clipped_decorations_with_geom):
14051         (border_get_parts_and_pos_to_draw):
14052         * fvwm/fvwm.h (struct):
14053         some clean up
14054         fixed calculations of which border parts to draw
14056         * fvwm/fvwm2.1:
14057         corrected some typos
14058         * fvwm/frame.c:
14059         * fvwm/borders.c:
14060         handle marks work again
14062 2002-03-16  Dan Espen  <dane@mk.telcordia.com>
14064         * AUTHORS: New author added.
14066 2002-03-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14068         * fvwm/frame.c:
14069         * fvwm/borders.c:
14070         * fvwm/add_window.c (setup_frame_stacking):
14071         * fvwm/cursor.c (CMD_CursorStyle):
14072         * fvwm/events.c (HandleExpose):
14073         (HandleMapNotify):
14074         (HandleEnterNotify):
14075         (HandleLeaveNotify):
14076         (GetContext):
14077         * fvwm/geometry.c (get_title_button_geometry):
14078         * fvwm/virtual.c (map_window):
14079         * fvwm/add_window.c (setup_parent_window):
14080         (setup_resize_handle_cursors):
14081         (setup_resize_handle_windows):
14082         (resize_resize_handle_windows):
14083         (change_resize_handle_windows):
14084         some progress with new frame layout
14086         * fvwm/add_window.c (setup_visible_name):
14087         fixed off-by-one bug in setup_visible_name
14088         maximum window number can be set in defaults.h
14090 2002-03-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14092         * fvwm/windowlist.h:
14093         * fvwm/virtual.h:
14094         * fvwm/update.h:
14095         * fvwm/style.h:
14096         * fvwm/read.h:
14097         * fvwm/placement.h:
14098         * fvwm/menus.h:
14099         * fvwm/move_resize.h:
14100         * fvwm/icons.h:
14101         * fvwm/geometry.h:
14102         * fvwm/frame.h:
14103         * fvwm/focus.h:
14104         * fvwm/events.h:
14105         * fvwm/borders.h:
14106         * fvwm/add_window.h:
14107         * fvwm/ewmh_names.c:
14108         * fvwm/ewmh_icons.c:
14109         * fvwm/ewmh_events.c:
14110         * fvwm/ewmh.c:
14111         * fvwm/frame.c:
14112         * fvwm/menucmd.c:
14113         * fvwm/schedule.c:
14114         * fvwm/geometry.c:
14115         * fvwm/gnome.c:
14116         * fvwm/windowlist.c:
14117         * fvwm/cursor.c:
14118         * fvwm/update.c:
14119         * fvwm/bindings.c:
14120         * fvwm/colormaps.c:
14121         * fvwm/decorations.c:
14122         * fvwm/conditional.c:
14123         * fvwm/misc.c:
14124         * fvwm/read.c:
14125         * fvwm/placement.c:
14126         * fvwm/fvwm.c:
14127         * fvwm/virtual.c:
14128         * fvwm/session.c:
14129         * fvwm/functions.c:
14130         * fvwm/stack.c:
14131         * fvwm/icons.c:
14132         * fvwm/module_interface.c:
14133         * fvwm/style.c:
14134         * fvwm/add_window.c:
14135         * fvwm/events.c:
14136         * fvwm/builtins.c:
14137         * fvwm/move_resize.c:
14138         * fvwm/borders.c:
14139         * fvwm/menus.c:
14140         * fvwm/fvwm.h (FvwmWindow):
14141         moved all windows into a separate sub structure and wrote access macros
14142         renamed FvwmWindow argument to builtin commands to "fw"
14143         renamed tmp_win to fw everywhere
14145         * fvwm/borders.c (RedrawBorder):
14146         * fvwm/decorations.c (SelectDecor):
14147         * fvwm/add_window.c (setup_style_and_decor):
14148         (setup_resize_handle_cursors):
14149         * fvwm/window_flags.h:
14150         * fvwm/fvwm.h (struct):
14151         added new member has_handles and new macro HAS_HANDLES
14153         * fvwm/decorations.c (SelectDecor):
14154         fixed the NoHandles style
14156         * fvwm/decorations.c (SelectDecor):
14157         * fvwm/style.c (check_window_style_change):
14158         (parse_and_set_window_style):
14159         * fvwm/style.h:
14160         * fvwm/fvwm.h (struct):
14161         renamed has_no_handles to has_no_border
14163 2002-03-15  olicha  <olivier.chapuis@free.fr>
14165         * libs/Flocale.h:
14166         * libs/Fft.c (is_utf8_encoding):
14167         Compilation fixes
14169         * libs/Flocale.h:
14170         s/COMPUND_TEXT/COMPOUND_TEXT
14172         * fvwm/fvwm2.1:
14173         Removed matrix xft specification doc as now it is use internally by
14174         fvwm
14176         * libs/Flocale.c (FlocaleRotateDrawString):
14177         (FlocaleUnloadFont):
14178         (FlocaleDrawString):
14179         (FlocaleTextWidth):
14180         * libs/Fft.h:
14181         * libs/Fft.c (FftGetRotatedFont):
14182         (FftGetFont):
14183         (FftDrawString):
14184         (FftTextWidth):
14185         * fvwm/borders.c (DrawMultiPixmapTitlebar):
14186         (RedrawTitle):
14187         * fvwm/geometry.c (get_title_font_size_and_offset):
14188         * fvwm/style.c (parse_and_set_window_style):
14189         (check_window_style_change):
14190         * fvwm/update.c (apply_window_updates):
14191         * fvwm/update.h:
14192         * fvwm/style.h:
14193         * fvwm/fvwm.h:
14194         * fvwm/window_flags.h:
14195         Implemented vertical text rendering, new style SideTitleTextDefault,
14196         SideTitleTextTopToBottom, SideTitleTextBottomToTop
14198 2002-03-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14200         * fvwm/fvwm.h:
14201         removed inclusion of fvwmdebug.h
14203         * libs/gravity.c (ParseDirectionArgument):
14204         fixed direction parsing
14206         * fvwm/menus.c (get_menu_options):
14207         fixed a compiler warning
14209 2002-03-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14211         * fvwm/bindings.c (ParseBinding):
14212         fixed compiler warning
14214         * fvwm/ewmh_events.c (EWMH_GetIconGeometry):
14215         * fvwm/ewmh.h:
14216         fixed compilation w/ --disable-ewmh
14218         * fvwm/windowlist.c (CMD_WindowList):
14219         fixed parsing of conditions versus position of window list broken with
14220         a recent "fix"
14222 2002-03-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14224         * libs/Fft.h:
14225         * libs/Fft.c (FftTextWidth):
14226         (is_utf8_encoding):
14227         (FftGetFontWidths):
14228         (FftDrawString):
14229         removed the HAVE_XFT_UTF8 ifdefs and fixed not setting FftUtf8Support
14230         if HAVE_XFT was not set.
14232         * fvwm/events.h (XEVMASK_DECORW):
14233         select EnterNotify and LeaveNotify on frame instead of decor_w
14235         * fvwm/add_window.c (setup_title_window):
14236         (setup_button_windows):
14237         (setup_resize_handle_windows):
14238         frame window is the new parent of the title, button and handle windows
14239         (setup_frame_stacking):
14240         new stacking order of decoration windows
14242         * fvwm/menuitem.c (menuitem_paint):
14243         * fvwm/events.c (HandleExpose):
14244         xft fixes
14246         * fvwm/move_resize.c (unmaximize_fvwm_window):
14247         don't force to redraw the frame
14249         * libs/gravity.c (gravity_get_offsets):
14250         (gravity_move):
14251         (gravity_resize):
14252         functions moved to gravity.c
14254 2002-03-10  olicha  <olivier.chapuis@free.fr>
14256         * acconfig.h (HAVE_XFT_UTF8):
14257         * configure.in:
14258         * libs/Fft.c (is_utf8_encoding):
14259         (FftGetFontWidths):
14260         (FftDrawString):
14261         (FftTextWidth):
14262         Detected if Xft can handle utf8 string
14264         * libs/Fft.h:
14265         * fvwm/menuitem.c (menuitem_paint):
14266         * fvwm/events.c (HandleExpose):
14267         Fixed Xft related compilation failure and warning
14269 2002-03-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14271         * fvwm/virtual.c:
14272         * fvwm/update.c:
14273         * fvwm/move_resize.c:
14274         * fvwm/icons.c:
14275         * fvwm/focus.c:
14276         * fvwm/events.c:
14277         * fvwm/builtins.c:
14278         * fvwm/add_window.c:
14279         * fvwm/frame.c (frame_setup_window):
14280         (frame_force_setup_window):
14281         (frame_setup_shape):
14282         SetupFrame renamed to frame_setup_window
14283         ForceSetupFrame renamed to frame_force_setup_window
14284         SetShape renamed to frame_setup_shape
14286         * fvwm/windowshade.c:
14287         moved most code to frame.c
14289         * fvwm/frame.c (SetShape):
14290         (SetupTitleBar):
14291         (set_decor_gravity):
14292         (ForceSetupFrame):
14293         (SetupFrame):
14294         functions moved to new file
14296         (SetupTitleBar):
14297         (frame_setup_title_bar):
14298         renamed function
14300         * libs/Parse.h:
14301         direction code moved to gravity.c and gravity.h
14303         * fvwm/windowshade.c (CMD_WindowShade):
14304         * fvwm/geometry.c (get_shaded_geometry):
14306         * libs/FScreen.c (FScreenInit):
14307         (FScreenUpdateEmulationMapState):
14308         changed Xinerame emulation layout
14310         * fvwm/fvwm2.1:
14311         Corrected the description of the XineramaPrimaryScreen command that was
14312         essentially lying.
14314 2002-03-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14316         * fvwm/menus.c (menu_tear_off):
14317         (unlink_item_from_menu):
14318         (menu_strip_tear_off_title):
14319         use the text from a title item as the tear off menu title if the menu
14320         begins with a title; skip separators and tear off bars at the front of
14321         the menu
14323         * **/*.[ch]:
14324         implemented titleatleft and titleatright styles; titles are not drawn
14325         vertically yet
14327         * fvwm/style.c (check_window_style_change):
14328         * fvwm/update.c (apply_window_updates):
14329         * fvwm/ewmh_names.c (EWMH_WMIconName):
14330         (EWMH_WMName):
14331         (charset_to_utf8):
14332         * fvwm/ewmh.c (ksmserver_workarround):
14333         * fvwm/update.c (apply_window_updates):
14334         * fvwm/conditional.c (MatchesConditionMask):
14335         * fvwm/fvwm.c (main):
14336         * fvwm/session.c (SaveWindowStates):
14337         (matchWin):
14338         (MatchWinToSM):
14339         * fvwm/functions.c (expand):
14340         * fvwm/stack.c (dump_stack_ring):
14341         (verify_stack_ring_consistency):
14342         * fvwm/module_interface.c (BroadcastWindowIconNames):
14343         (CMD_Send_WindowList):
14344         * fvwm/add_window.c (free_window_names):
14345         (free_window_names):
14346         * fvwm/events.c (HandlePropertyNotify):
14347         * fvwm/builtins.c (CMD_Wait):
14348         * fvwm/style.c (CMD_DestroyStyle):
14349         (lookup_style):
14350         Adapted to changes of Flocale.h
14352         * acconfig.h:
14353         removed COMPUND_TEXT ifdef
14355         * configure.in:
14356         mutibyte defaults to on
14358         * acconfig.h:
14359         * libs/Flocale.c:
14360         * libs/Flocale.h:
14361         * fvwm/fvwm.h (FvwmWindow):
14362         cleaned up Flocale stuff for better information hiding
14364         * libs/Flocale.c (get_FlocaleFontSet):
14365         (get_FlocaleFont):
14366         added a new font strucht member min_char_offset for vertical text
14368         * libs/Flocale.c (get_FlocaleFontSet):
14369         fixed a bug in descent calculation
14371         * fvwm/fvwm.h (FvwmWindow):
14372         removed title_g
14374         * fvwm/borders.c (RedrawButtons):
14375         (SetupTitleBar):
14376         (RedrawBorder):
14377         (SetupFrame):
14378         (RedrawTitle):
14379         (DrawMultiPixmapTitlebar):
14380         don't use title_g or boundary_width
14382         * libs/Flocale.c (FlocaleTextWidth):
14383         * libs/Flocale.c (FlocaleDrawString):
14384         added interface for vertical strings
14385         * libs/Flocale.h (FlocaleWinString):
14386         added flags structure w/ is_vertical_string flag
14388         * fvwm/borders.c (RedrawTitle):
14389         (DrawMultiPixmapTitlebar):
14390         * fvwm/screen.h (ScreenInfo):
14391         * fvwm/icons.c (DrawIconWindow):
14392         * fvwm/move_resize.c (DisplayPosition):
14393         (DisplaySize):
14394         * fvwm/screen.h (ScreenInfo):
14395         removed ScratchStr and TitleStr; *please* don't use global variables
14396         without need
14398         * fvwm/move_resize.c (ParseOneResizeArgument):
14399         (GetResizeArguments):
14400         (GetResizeMoveArguments):
14401         (resize_window):
14402         (resize_move_window):
14403         * fvwm/module_interface.c (CONFIGARGS):
14404         (OLDCONFIGARGS):
14405         (CONFIGARGSNEW):
14406         * fvwm/placement.c (PlaceWindow):
14407         * fvwm/add_window.c (setup_title_window):
14408         (setup_button_windows):
14409         (setup_parent_window):
14410         (resize_resize_handle_windows):
14411         (change_resize_handle_windows):
14412         (AddWindow):
14413         * fvwm/geometry.c (get_window_borders):
14414         (gravity_get_naked_geometry):
14415         (gravity_add_decoration):
14416         (constrain_size):
14417         don't use title_g.width and title_g.height anymore
14419         * libs/defaults.h (EXTRA_TITLE_FONT_WIDTH):
14420         new macro
14422         * fvwm/borders.c (SetupTitleBar):
14423         * fvwm/add_window.c (setup_title_window):
14424         don't use title_g.x and title_g.y anymore
14425         (setup_title_geometry):
14426         new function
14428         * fvwm/fvwm.h (FvwmWindow):
14429         replaced title_g by title_length and title_thickness
14430         renamed title_text_y to title_text_offset
14432         * fvwm/add_window.c (setup_style_and_decor):
14433         (setup_parent_window):
14434         * fvwm/decorations.c (SelectDecor):
14435         * fvwm/placement.c (PlaceWindow):
14436         * fvwm/windowlist.c (CMD_WindowList):
14437         * fvwm/events.c (SendConfigureNotify):
14438         (HandlePropertyNotify):
14439         (HandleMapNotify):
14440         * fvwm/move_resize.c (DisplaySize):
14441         (ParseOneResizeArgument):
14442         (GetResizeArguments):
14443         (GetResizeMoveArguments):
14444         (resize_window):
14445         (resize_move_window):
14446         * fvwm/geometry.c (gravity_get_naked_geometry):
14447         (gravity_add_decoration):
14448         (constrain_size):
14449         don't use boundary_width anymore
14451         * fvwm/borders.c (SetupTitleBar):
14452         made static
14454         * fvwm/fvwmdebug.c:
14455         removed outdated file that was never used
14457         * fvwm/move_resize.c (move_window_doit):
14458         fixed GNOME and EWMH hints when unsticking a window
14460         * fvwm/virtual.c (CMD_MoveToDesk):
14461         unstick windows when MoveToDesk is used
14463         * fvwm/builtins.c:
14464         * fvwm/windowshade.c (CMD_WindowShade):
14465         (CMD_WindowShadeAnimate):
14466         functions moved to windowshade.c
14468         * fvwm/window_flags.h:
14469         * fvwm/menus.c (pop_menu_up):
14470         * fvwm/builtins.c (CMD_WindowShade):
14471         * fvwm/move_resize.c (resize_window):
14472         * fvwm/icons.c (AutoPlaceIcon):
14473         * fvwm/borders.c (SetupFrame):
14474         don't use HAS_BOTTOM_TITLE any more
14475         (ButtonPosition):
14476         function removed
14478         * fvwm/geometry.c (get_title_font_width_and_offset):
14479         * fvwm/geometry.c (set_window_border_size):
14480         * fvwm/geometry.c (is_window_border_minimal):
14481         * fvwm/geometry.c (get_window_borders_no_title):
14482         * fvwm/geometry.c (get_shaded_client_window_pos):
14483         * fvwm/geometry.c (get_icon_corner):
14484         * fvwm/geometry.c (get_title_gravity):
14485         * fvwm/geometry.c (get_title_geometry):
14486         * fvwm/borders.c (get_button_number):
14487         new functions
14489         * fvwm/borders.c (SetupFrame):
14490         (SetShape):
14491         * fvwm/events.c (HandleShapeNotify):
14492         * fvwm/borders.c (SetupTitleBar):
14493         * fvwm/update.c (apply_window_updates):
14494         * fvwm/add_window.c (setup_window_font):
14495         removed title_top_height
14497         * libs/defaults.h (WINDOW_FREAKED_OUT_SIZE):
14498         renamed
14500         * fvwm/events.c (SendConfigureNotify):
14501         * fvwm/events.c (HandleConfigureRequest):
14502         preparations for W/E titles
14503         don't use title_top_height any more
14505         * fvwm/ewmh_events.c (ewmh_WMStateShaded):
14506         use title_dir flags
14508         * fvwm/geometry.c (get_window_borders):
14509         * fvwm/style.c (parse_and_set_window_style):
14510         (check_window_style_change):
14511         * fvwm/style.h (SCSET_TITLE_DIR):
14512         * fvwm/window_flags.h (GET_TITLE_DIR):
14513         * fvwm/fvwm.h (struct):
14514         replaced has_bottom_title flag with title_dir that can be DIR_N, DIR_S,
14515         DIR_W or DIR_E
14517         * libs/Parse.c (ParseDirectionArgument):
14518         * libs/Parse.h:
14519         use new type direction_type
14521 2002-03-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14523         * fvwm/ewmh.c (EWMH_SetFrameStrut):
14524         use function from geometry.c to get the border size
14526         * fvwm/geometry.c (get_shaded_geometry):
14527         added code for shading in all directions
14529 2002-03-07  Dan Espen  <dane@mk.telcordia.com>
14531         * fvwm/bindings.c (ParseBinding): Handle key_string lengths up to 30.
14533 2002-03-07  olicha  <olivier.chapuis@free.fr>
14535         * libs/Flocale.c (FInitLocale):
14536         * fvwm/fvwm.c (main):
14537         Set the locale using "" as locale argument
14539 2002-03-07  Mikhael Goikhman  <migo@homemail.com>
14541         * fvwm/fvwm2.1:
14542         fixed some typos and indentation of several new variable entries
14544 2002-03-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14546         * fvwm/functions.h (enum):
14547         * fvwm/functions.c (func_config):
14548         * fvwm/commands.h:
14549         * fvwm/conditional.c (CMD_ThisWindow):
14550         renamed command "This" to "ThisWindow"
14552         * fvwm/conditional.c (Circulate):
14553         "Current" no longer selects a random window when no window is focused
14555         * fvwm/icccm2.c (SetupICCCM2):
14556         removed debug fprintf
14558         * fvwm/functions.c (expand_extended_var):
14559         implemented new extended variables pointer.x, pointer.x, pointer.wx,
14560         pointer.wy, pointer.cx and pointer.cy.
14562         * libs/Parse.c (ParseDirectionArgument):
14563         allow N, S, W, E, NW, SW, SE, NE for direction arguments
14565         * fvwm/builtins.c (CMD_WindowShade):
14566         fixes for animated shading w/ titleatbottom+north and titleattop+south
14568 2002-03-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14570         * fvwm/move_resize.c (moveLoop):
14571         (resize_window):
14572         * fvwm/virtual.c (HandlePaging):
14573         moving/resizing windows opaque is much faster
14575 2002-03-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14577         * fvwm/add_window.c (resize_resize_handle_windows):
14578         (change_resize_handle_windows):
14579         (setup_window_font):
14580         fixed changing the handlewidth style
14582         * fvwm/update.c (apply_window_updates):
14583         * fvwm/geometry.c (update_absolute_geometry):
14584         * fvwm/builtins.c (CMD_WindowShade):
14585         * fvwm/ewmh_events.c (ewmh_WMStateShaded):
14586         * fvwm/conditional.c (CreateConditionMask):
14587         * fvwm/geometry.c (get_shaded_geometry):
14588         * fvwm/session.c (MatchWinToSM):
14589         * fvwm/add_window.c (setup_window_structure):
14590         (AddWindow):
14591         * fvwm/window_flags.h (SHADED_DIR):
14592         * fvwm/fvwm.h (struct):
14593         implemented new WindowShade options "North" and "South" to allow shading
14594         a window in either direction, regardless of if the title is at the top
14595         or bottom.
14597         * libs/Module.c (module_expand_action):
14598         new convenience function for modules
14600 2002-03-03  Dan Espen  <dane@mk.telcordia.com>
14602         * fvwm/fvwm2.1: Fixes to the font section.
14604 2002-03-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14606         * fvwm/conditional.c (CMD_WindowId):
14607         set the correct context window for unmanaged windows
14609         * fvwm/icons.c (DrawIconWindow):
14610         raise the icon title even if it's too small to be expanded
14612         * fvwm/conditional.c (CMD_Cond):
14613         Fixed it the right way this time
14614         (CMD_Any):
14615         same fix for the 'Any' command
14616         (circulate_cmd):
14617         (CMD_Prev):
14618         (CMD_Next):
14619         (CMD_None):
14620         (CMD_Any):
14621         (CMD_Current):
14622         unified circulating functions into a single one
14623         (CMD_Pick):
14624         Pick allows to pick functions that have CirculateSkip set
14625         fixed a memory leak
14626         (select_cmd):
14627         (CMD_This):
14628         (CMD_Pick):
14629         (CMD_PointerWindow):
14630         unified selecting functions into a single one
14631         (CMD_PointerKey):
14632         (CMD_All):
14633         Allow user to override the default CirculateHit of these functions
14635         * fvwm/conditional.c (CMD_Cond):
14636         Fixed a problem w/ the window selection
14638         * fvwm/menus.h:
14639         * fvwm/menus.c:
14640         * fvwm/menudim.h:
14641         * fvwm/menudim.c:
14642         * fvwm/menustyle.h:
14643         * fvwm/menustyle.c:
14644         * fvwm/menucmd.c:
14645         * fvwm/menuitem.c:
14646         * fvwm/menuitem.h:
14647         moved some of the menu code into separate files
14648         more work on tear off menus; windowlist can now be torn off without a
14649         memory leak
14651         * fvwm/template.c:
14652         * fvwm/template.h:
14653         added templates for new source files
14655         * libs/Picture.c (fvwmlib_clone_color):
14656         new function
14658         * fvwm/menus.c (make_menu):
14659         (update_menu):
14660         removed unused parameter from make_menu()
14662         * fvwm/fvwm2.1 (Example):
14663         corrected statement about CaptureHonorsStartsOnPage being the default
14665 2002-03-03  Mikhael Goikhman  <migo@homemail.com>
14667         * INSTALL.fvwm:
14668         * Makefile.am:
14669         * configure.in:
14670         added and documented --disable-bidi and --disable-perllib
14672 2002-03-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14674         * fvwm/geometry.c (get_window_borders):
14675         fixed calculation of $[cw.y] and $[cw.height]
14677         * fvwm/move_resize.c (resize_move_window):
14678         windows are mo longer hilighted after ResizeMove or ResizeMoveMaximize
14680 2002-03-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14682         * fvwm/move_resize.c (resize_move_window):
14684 2002-02-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14686         * configure.in:
14687         re-added --enable-xinerama-emulation option that was removed recently
14689 2002-02-28  Mikhael Goikhman  <migo@homemail.com>
14691         * INSTALL.fvwm:
14692         * NEWS:
14693         * fvwm/fvwm2.1:
14694         several corrections and rewording
14696 2002-02-28  olicha  <olivier.chapuis@free.fr>
14698         * fvwm/fvwm2.1:
14699         New section FONT NAMES AND FONT LOADING
14701         * INSTALL.fvwm:
14702         * NEWS:
14703         Document --enable-xft
14705         * libs/Fft.c (get_FlocaleXftFont):
14706         Used the xft font height in the place of ascent+descent
14708         * fvwm/icons.c (DrawIconWindow):
14709         Fixed the fg colors of the icon title
14711 2002-02-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14713         * fvwm/conditional.c (CMD_CondCase):
14714         fixed CondCase command
14715         (CMD_Cond):
14716         fixed numeric return codes
14718         * fvwm/add_window.c (CMD_Recapture):
14719         fixed focus loss w/ SloppyFocus and MouseFocus after RecaptureWindow
14721         * acinclude.m4 (smr_CHECK_LIB):
14722         disabled a destructing gnome_prefix logic again
14724         * fvwm/events.c (GetContext):
14725         * libs/Bindings.c (win_contexts):
14726         * libs/fvwmlib.h:
14727         new contexts for individual parts of the window border
14729 2002-02-26  Mikhael Goikhman  <migo@homemail.com>
14731         * acinclude.m4:
14732         disabled a destructing gnome_prefix logic
14734         * configure.in:
14735         replaced fribidi detection mechanism, now fribidi-config is used
14737 2002-02-26  olicha  <olivier.chapuis@free.fr>
14739         * acconfig.h (HAVE_XFT):
14740         * acinclude.m4:
14741         * configure.in:
14742         * libs/Fft.c (new file):
14743         * libs/Flocale.c (FlocaleLoadFont):
14744         (FlocaleUnloadFont):
14745         (FlocaleDrawString):
14746         (FlocaleTextWidth):
14747         (get_FlocaleFontSet):
14748         (get_FlocaleFont):
14749         (get_FlocaleFontOrFontSet):
14750         * libs/Flocale.h:
14751         * fvwm/Makefile.am:
14752         Added anti-alised font rendering using Xft. This is off by default.
14753         A font can now be given as a ";" separated list of either ","
14754         separated list of XFLD font name or Xft font name with "xft:" as
14755         prefix, e.g.:
14756           xft:Verdana:Regular:size=12:rgba=rgb;-adobe-*-medium-r-*--12-*,fixed
14757         See Flocale.h for details
14759         * fvwm/events.c (HandleExpose):
14760         * fvwm/menus.c (paint_item):
14761         Always clear the text area before drawing text with an Xft font
14763 2002-02-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14765         * acinclude.m4 (smr_CHECK_LIB):
14766         fixed a bug with variable expansion and autoconf cache values
14768 2002-02-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14770         * fvwm/menus.c (seek_submenu_instance):
14771         (FindPopup):
14772         * fvwm/fvwm.c (InitVariables):
14773         some general menu clean up
14775         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
14776         * fvwm/move_resize.h (resize_geometry_window):
14777         * fvwm/menus.c (animated_move_back):
14778         (pop_menu_up):
14779         (ParentalMenuRePaint):
14780         Removed the global variables for parental relativity.  Please *do not*
14781         use globals in menus.c or anywhere else.  I'm trying to remove most
14782         globals in the long run.
14784         * libs/Graphics.c (do_relieve_rectangle):
14785         removed debug code
14787         * fvwm/menus.c (MenuInteraction):
14788         fixed tearing off menus by selecting a tear off item with the keyboard
14790         * fvwm/menus.c (MenuInteraction):
14791         fixed menus not popping down sometimes
14793         * fvwm/functions.c (CMD_TearMenuOff):
14794         * fvwm/menus.c (AddToMenu):
14795         (MenuInteraction):
14796         (warp_pointer_to_item):
14797         (get_selectable_item_index):
14798         (get_selectable_item_from_index):
14799         (get_selectable_item_from_section):
14800         (menuShortcuts):
14801         (paint_item):
14802         (draw_tear_off_bar):
14803         * fvwm/menus.h (MI_IS_TEAR_OFF_BAR):
14804         New command "TearMenuOff" in menus.  In a normal item, this tears off
14805         the menu when selected.  If the item has no title, it is drawn as a
14806         dashed line too.  Pressing button 2 over a title tears out the menu too.
14807         some clean up
14809         * fvwm/menus.c (make_menu_window):
14810         fixed problem w/ mapping menus, performance enhancement
14812         * fvwm/builtins.c (CMD_Destroy):
14813         (CMD_Close):
14814         fixed core dump
14816         * fvwm/functions.c (execute_function):
14817         (expand_extended_var):
14818         (expand):
14819         new variable cond.rc that returns the last return code of a conditinal
14820         command
14822 2002-02-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14824         * fvwm/conditional.c (CMD_Cond):
14825         (CMD_CondCase):
14826         (CMD_Break):
14827         * fvwm/commands.h:
14828         * fvwm/functions.h:
14829         * fvwm/functions.c:
14830         new conditional commands Cond, CondCase and Break
14832         * fvwm/ewmh_events.c (ewmh_WMStateSticky):
14833         (ewmh_WMStateShaded):
14834         (ewmh_WMState):
14835         (ewmh_MoveResize):
14836         (ewmh_WMStateHidden):
14837         (ewmh_WMDesktop):
14838         (ewmh_CloseWindow):
14839         (ewmh_ActiveWindow):
14840         (ewmh_DesktopGeometry):
14841         * fvwm/gnome.c (GNOME_HandlePropRequest):
14842         * fvwm/windowlist.c (CMD_WindowList):
14843         * fvwm/update.c (apply_window_updates):
14844         * fvwm/conditional.c (CMD_Pick):
14845         (CMD_Prev):
14846         (CMD_Next):
14847         (CMD_None):
14848         (CMD_Any):
14849         (CMD_Current):
14850         (CMD_PointerWindow):
14851         (CMD_This):
14852         (CMD_All):
14853         (CMD_Direction):
14854         (CMD_WindowId):
14855         * fvwm/read.c (run_command_stream):
14856         * fvwm/fvwm.c (Done):
14857         (SetRCDefaults):
14858         (StartupStuff):
14859         (main):
14860         * fvwm/module_interface.c (ExecuteModuleCommand):
14861         * fvwm/move_resize.c (handle_stick):
14862         * fvwm/add_window.c (AddWindow):
14863         * fvwm/events.c (HandleKeyPress):
14864         (HandleButtonPress):
14865         (HandleClientMessage):
14866         (HandleButtonRelease):
14867         (HandlePropertyNotify):
14868         * fvwm/builtins.c (CMD_DestroyDecor):
14869         (AddToDecor):
14870         (CMD_StrokeFunc):
14871         * fvwm/functions.h (func_type):
14872         * fvwm/functions.c (old_execute_function):
14873         (execute_function):
14874         (execute_complex_function):
14876         * fvwm/fvwm.h (fvwm_cond_func_rc):
14877         inplemented return codes OK, NO_MATCH and ERROR for conditional commands
14879         * fvwm/ConfigFvwmDefaults:
14880         set some default styles for tear off menu windows
14882         * fvwm/menus.c (menuShortcuts):
14883         ignore actions that would normally close a menu if it's a tear off menu
14884         <Backspace> creates a tear off menu
14885         <Escape> closes a tear off menu
14887         * fvwm/builtins.c (CMD_Delete):
14888         (CMD_Destroy):
14889         (CMD_Close):
14890         * fvwm/menus.c (DestroyMenu):
14891         (make_menu_window):
14892         (MenuInteraction):
14893         * fvwm/menus.h (MenuRootDynamic):
14894         Each menu window is created with a unique display to prevent fvwm from
14895         being killed when a tear off menu is destroyed.  Of course this is
14896         inefficient, but still better than writing a menu module.
14898 2002-02-23  Mikhael Goikhman  <migo@homemail.com>
14900         * configure.in:
14901         autogenerate perllib/FVWM/Module/Makefile
14903 2002-02-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14905         * fvwm/move_resize.c (moveLoop):
14906         fixed a problem with keyboard movement vs. EdgeResistance
14908 2002-02-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14910         * fvwm/events.c:
14911         fixed problem with root bindings and xfishtank
14913         * fvwm/windowlist.c (CMD_WindowList):
14914         applied patch by to Darren Marshall to fix placement of window list on
14915         wrong xinerama screen
14917         * libs/Parse.c (GetSuffixedIntegerArguments):
14918         integer arguments that must not have a suffix but have one are ignored
14920         * fvwm/icons.c (DeIconify):
14921         (Iconify):
14922         applied patch by Markus Schwarzenberg to fix a rare problem with the
14923         is_map_pending flag, iconified icons and restart
14925 2002-02-22  Mikhael Goikhman  <migo@homemail.com>
14927         * fvwm/commands.h:
14928         * fvwm/conditional.c (CMD_This):
14929         * fvwm/functions.c:
14930         * fvwm/functions.h:
14931         * fvwm/fvwm2.1:
14932         * NEWS:
14933         added new conditional command This
14935 2002-02-21  Mikhael Goikhman  <migo@homemail.com>
14937         * acconfig.h:
14938         * configure.in:
14939         added fribidi library detection
14941 2002-02-12  olicha  <olivier.chapuis@free.fr>
14943         * libs/Flocale.h (FlocaleFont):
14944         * libs/Flocale.c (get_FlocaleFont):
14945         (get_FlocaleFontSet):
14946         Compute the ascent and descent of the FlocaleFont structure directly
14947         from the XFontSetExtents data in the case of a fontset
14948         Added max_char_width to the FlocaleFont structure
14950         * libs/Makefile.am (libfvwm_a_SOURCES):
14951         * libs/GetFont.c:
14952         Removed libs/GetFont.c
14954         * fvwm/menus.c (FreeMenuStyle):
14955         (UpdateMenuStyle):
14956         (NewMenuStyle):
14957         (CMD_CopyMenuStyle):
14958         * fvwm/menus.h (MenuLook):
14959         Fixed default font handling font by using a new MenuLook flags
14960         USING_DEFAULT_FONT
14962         * fvwm/menus.c (UpdateMenuStyle):
14963         Fixed default font update
14965         * fvwm/fvwm.c (SetRCDefaults):
14966         (InitVariables):
14967         Load the real default font FALLBACK_FONT or MB_FALLBACK_FONT at
14968         fvwm initialization
14970 2002-02-11  Mikhael Goikhman  <migo@homemail.com>
14972         * configure.in:
14973         added FvwmPerl/* file generation
14975 2002-02-11  olicha  <olivier.chapuis@free.fr>
14977         * INSTALL.fvwm:
14978         * NEWS:
14979         Multibyte news. Document --disable-compound-text and --disable-ewmh.
14981         * libs/Flocale.h:
14982         Added more documentation and change the MB_FALLBACK_FONT to
14983         "-*-fixed-medium-r-semicondensed-*-13-*,-*-fixed-medium-r-normal-*-14-*,
14984         -*-medium-r-normal-*-16-*" (with XFree) this should gives something
14985         more consistent with the none multibyte case.
14987 2002-02-10  olicha  <olivier.chapuis@free.fr>
14989         * fvwm/ewmh.c (EWMH_RestoreInitialStates):
14990         (EWMH_ExitStuff):
14991         * fvwm/events.c (HandleUnmapNotify):
14992         (HandleReparentNotify):
14993         * fvwm/ewmh_events.c (ewmh_WMStateShaded):
14994         (ewmh_WMStateSticky):
14995         (ewmh_WMStateHidden):
14996         Restore various ewmh initial states when a window is  unmapped or
14997         reparented
14999 2002-02-10  Mikhael Goikhman  <migo@homemail.com>
15001         * Makefile.am:
15002         * configure.in:
15003         added support for new perllib directory
15005 2002-02-09  olicha  <olivier.chapuis@free.fr>
15007         * libs/fvwmlib.h:
15008         * libs/Flocale.c:
15009         * libs/Flocale.h:
15010         * acconfig.h:
15011         * configure.in:
15012         Rename I18N_MB to MULTIBYTE
15013         Added --disable-compound-text (COMPOUND_TEXT), so this is on by default
15015         * libs/Flocale.c (*):
15016         * libs/Flocale.h:
15017         New Font and Text API. A cache is used for fonts information. Font
15018         loading is more powerfull as both font or fontset can be loaded.
15019         See Flocale.h for details, more comments will be added soon.
15020         Fortunately, it seems that there are no more memory problems with
15021         --enable-multibyte!
15022         If COMPOUND_TEXT, then non XA_STRING text properties are converted
15023         with XmbTextPropertyToTextList
15025         * fvwm/events.c (HandlePropertyNotify):
15026         * fvwm/misc.c (NewFontAndColor):
15027         * fvwm/icons.h:
15028         * fvwm/misc.h:
15029         * fvwm/menus.c (FreeMenuStyle):
15030         (NewMenuStyle):
15031         (CMD_CopyMenuStyle):
15032         (draw_underline):
15033         (calculate_item_sizes):
15034         (size_menu_horizontally):
15035         (paint_item):
15036         * fvwm/builtins.c (CMD_DefaultFont):
15037         (ApplyDefaultFontAndColors):
15038         * fvwm/add_window.c (destroy_icon_font):
15039         (setup_icon_font):
15040         (destroy_window_font):
15041         (setup_window_font):
15042         (free_window_names):
15043         (setup_window_name):
15044         (setup_icon):
15045         * fvwm/fvwm.h (FvwmWindow):
15046         * fvwm/move_resize.c (DisplayPosition):
15047         (resize_geometry_window):
15048         (DisplaySize):
15049         * fvwm/fvwm.c (InitVariables):
15050         * fvwm/icons.c (DrawIconWindow):
15051         (setup_icon_title_size):
15052         * fvwm/borders.c (RedrawTitle):
15053         (DrawMultiPixmapTitlebar):
15054         * fvwm/screen.h (ScreenInfo):
15055         Use the new Text and Font API
15057 2002-02-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15059         * fvwm/module_interface.c (PositiveWrite):
15060         fixed core dump when a module died in the select of PositiveWrite()
15062         * fvwm/module_interface.c (initModules):
15063         (ClosePipes):
15064         (do_execute_module):
15065         (KillModule):
15066         (KillModuleByName):
15067         (CMD_SendToModule):
15068         (PositiveWrite):
15069         * fvwm/modconf.c (ModuleConfig):
15070         removed WITHOUT_KILLMODULE_ALIAS_SUPPORT ifdef; always off now
15072         * fvwm/icons.c (GetXPMFile):
15073         suppress unnecessary error message for xmb icons
15075         * fvwm/misc.c (fvwm_msg):
15076         * fvwm/misc.h (enum):
15077         added new fvwm_msg type "OLD" for deprecated commands
15079 2002-02-07  Mikhael Goikhman  <migo@homemail.com>
15081         * configure.in:
15082         generate fvwmbug, not fvwmbug.sh; prepare LOCAL_BUGADDR for it
15084         * INSTALL.fvwm:
15085         New section "Bug Reports".
15087 2002-02-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15089         * fvwm/update.c (apply_window_updates):
15090         fixed propagation of window border and title colours to the modules
15092 2002-02-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15094         * fvwm/menus.c (do_menu):
15095         fixed leaving tear off menus when something is selected with the mouse
15097 2002-02-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15099         * fvwm/events.c (HandleEnterNotify):
15100         * fvwm/menus.c:
15101         more work on tear off menus
15103 2002-02-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15105         * fvwm/events.h (XEVMASK_TEAR_OFF_MENU):
15106         * fvwm/menus.c (menu_enter_tear_off_menu):
15107         (find_entry):
15108         (menuShortcuts):
15109         (MenuInteraction):
15110         (pop_menu_up):
15111         properly calculate pointer position in tear off menus
15112         (MenuInteraction):
15113         fixed active wait w/ poopup/popdown delays
15115         * fvwm/windowlist.c (CMD_WindowList):
15116         don't initialise some variables twice
15118 2002-01-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15120         * fvwm/add_window.c (CaptureOneWindow):
15121         properly recapture tear off menus
15123         (IS_MESSAGE_IN_MASK):
15124         (is_message_selected):
15125         (PositiveWrite):
15126         (PositiveWrite):
15127         * fvwm/schedule.c (deschedule):
15128         (squeue_execute):
15129         * fvwm/events.c (My_XNextEvent):
15130         * libs/queue.h:
15131         * fvwm/module_interface.c (ClosePipes):
15132         (CMD_ModuleSynchronous):
15133         (KillModule):
15134         performance enhancements; made macros out of simple functions
15136         * fvwm/builtins.c (CMD_WindowShade):
15137         don't redraw the decorations if window was not shaded or unshaded
15139         * fvwm/schedule.c (deschedule_obj_func):
15140         (execute_obj_func):
15141         fixed core dump when a scheduled command deschedules itself
15143 2002-01-31  olicha  <olivier.chapuis@free.fr>
15145         * NEWS:
15146         FvwmButtons news
15148 2002-01-31  Mikhael Goikhman  <migo@homemail.com>
15150         * NEWS:
15151         * fvwm/move.c (moveLoop):
15152         while moving if Mod1 (Alt/Meta) is pressed ignore snap attraction
15154         * fvwm/session.c (get_version_string):
15155         switch from static to date-based version string
15157         * configure.in:
15158         remove --enable-kanji compatibility option
15160         * fvwm/schedule.h:
15161         * libs/queue.h:
15162         fix warnings, gcc compains on having something after #endif
15164 2002-01-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15166         * fvwm/builtins.c (CMD_Delete):
15167         (CMD_Close):
15168         (CMD_Destroy):
15169         don't crash fvwm when trying to close a tear off menu
15171         * fvwm/decorations.c (is_function_allowed):
15172         * fvwm/menus.c (menu_expose):
15173         (do_menu):
15174         * fvwm/events.c (HandleReparentNotify):
15175         (HandleUnmapNotify):
15176         * fvwm/add_window.c (AddWindow):
15177         (AddWindow):
15178         * fvwm/fvwm.h (struct):
15179         * fvwm/add_window.c (CaptureAllWindows):
15180         (CaptureOneWindow):
15181         * fvwm/events.h (flush_property_notify):
15182         * fvwm/events.c (HandleMapRequestKeepRaised):
15183         started work on tear off menus
15185         * fvwm/fvwm.c (main):
15186         * fvwm/events.c (CMD_Sync):
15187         (CMD_Synchronize):
15188         * fvwm/commands.h (CMD_Synchronize):
15189         * fvwm/functions.h (enum):
15190         * fvwm/functions.c (func_config):
15191         new commands XSync and XSynchronize for debugging
15193         * fvwm/conditional.c (CreateConditionMask):
15194         (MatchesConditionMask):
15195         * fvwm/builtins.c (CMD_State):
15196         * fvwm/fvwm.h (struct):
15197         * fvwm/functions.h:
15198         * fvwm/commands.h:
15199         * fvwm/functions.c (func_config):
15200         new command "State"
15201         new condition "State"
15203         * libs/queue.c:
15204         fixed core dump
15206 2002-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15208         * fvwm/module_interface.c (AddToMessageQueue):
15209         (initModules):
15210         (DeleteMessageQueueBuff):
15211         (FlushMessageQueue):
15212         * fvwm/events.c (My_XNextEvent):
15213         * fvwm/module_interface.c (AddToCommandQueue):
15214         (ExecuteCommandQueue):
15215         use code from queue.c
15217         * fvwm/schedule.c:
15218         * fvwm/queue.c:
15219         * fvwm/queue.h:
15220         * fvwm/events.c (My_XNextEvent):
15221         "Schedule 0" commands are executed before event handling
15222         moved some of the chedule code into a new queue library
15224 2002-01-30  olicha  <olivier.chapuis@free.fr>
15226         * libs/Flocale.c (FInitLocale): Fixed a miss print in an error msg
15228 2002-01-30  olicha  <olivier.chapuis@free.fr>
15230         * libs/Flocale.c:
15231         * libs/Flocale.h:
15232         * libs/Makefile.am:
15233         * fvwm/fvwm.c (main):
15234         New libs files Flocale.c and Flocale.h with a function to set the
15235         locale as the Xlib prog man says to do it. Use it in fvwm.c. There is
15236         also a function to get the charset (from ewmh_name.c) and which
15237         setlocale if this has not been done with the above function. This
15238         function is also called at fvwm2 startup
15240         * fvwm/ewmh_names.c (charset_to_utf8):
15241         (utf8_to_charset):
15242         Use the Fcharset variable and remove get_charset
15244         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
15245         A minor fix
15247         * libs/GetFont.c (GetFontSetOrFixed):
15248         Free the missing charset list as suggested by Alexander Kotelnikov.
15249         Report problems with missing charset only 5 times. Remove the
15250         STRICTLY_FIXED code
15252 2002-01-30  Mikhael Goikhman  <migo@homemail.com>
15254         * configure.in:
15255         a patch to config.status to generate scripts executable, may be handy;
15256         added generation of utils/fvwm24_convert
15258 2002-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15260         * fvwm/schedule.c:
15261         * fvwm/functions.c (expand_extended_var):
15262         implemented $[schedule.last] and $[schedule.next] variables
15263         implemented new command "Deschedule"
15265         * fvwm/misc.c (get_server_time):
15266         fixed MouseFocus
15268 2002-01-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15270         * fvwm/misc.c (get_server_time):
15271         * fvwm/events.c (My_XNextEvent):
15272         * fvwm/icccm2.c (SetupICCCM2):
15273         * fvwm/functions.h:
15274         * fvwm/commands.h:
15275         * fvwm/functions.c (func_config):
15276         * fvwm/schedule.c:
15277         implemented new command "Schedule"
15279         * fvwm/builtins.c (CMD_Exec):
15280         applied job control patch by Alexander Kotelnikov using the portable
15281         version of setpgrp()
15283         * libs/setpgrp.c (fvwm_setpgrp):
15284         * libs/setpgrp.h (fvwm_setpgrp):
15285         * libs/Makefile.am:
15286         * configure.in:
15287         added checks for setpgrp and setpgid
15289 2002-01-29  olicha  <olivier.chapuis@free.fr>
15291         * acinclude.m4:
15292         Better test for iconv second argumeny
15294         * configure.in:
15295         Use gnu libiconv in priority against the system iconv
15297 2002-01-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15299         * fvwm/stack.c (RaiseOrLowerWindow):
15300         (restack_windows):
15301         (collect_transients_recursive):
15302         * fvwm/icons.c (get_visible_icon_window_count):
15303         fixed stack ring corruption with icons that have either no picture or
15304         no title
15306 2002-01-28  olicha  <olivier.chapuis@free.fr>
15308         * fvwm/ewmh_names.c (charset_to_utf8):
15309         (utf8_to_charset):
15310         (EWMH_SetVisibleName):
15311         (get_charset):
15312         Better message errors in get_charset, use UTF-8 in the place of UTF8,
15313         set the ewmh visible (icon) name only if the fvwm visible name is
15314         different from the ICCCM (icon) window name, limit the number of
15315         conversions error messages to 10
15317 2002-01-28  olicha  <olivier.chapuis@free.fr>
15319         * fvwm/functions.c (func_config):
15320         * fvwm/commands.h:
15321         * fvwm/builtins.c (CMD_PropertyChange):
15322         New undocumented command PropertyChange to send MX_PROPERTY_CHANGE
15323         messages
15325         * fvwm/module_interface.h:
15326         * fvwm/module_interface.c (BroadcastPropertyChange):
15327         * libs/Module.h (MX_PROPERTY_CHANGE):
15328         New module message MX_PROPERTY_CHANGE for all propose messages.
15330         * fvwm/events.c (HandlePropertyNotify):
15331         * libs/defaults.h:
15332         Send a MX_PROPERTY_CHANGE message with MX_PROPERTY_CHANGE_BACKGROUND
15333         as argument when fvwm2 detects that the root background change
15334         Removed the ROOT_BG_CHANGE_STRING stuff
15336 2002-01-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15338         * NEWS, configure.in:
15339         changed version to 2.5.1
15341         * fvwm/misc.c (get_pointer_fvwm_window):
15342         * fvwm/commands.h:
15343         * fvwm/functions.c (func_config):
15344         * fvwm/conditional.c (CreateConditionMask):
15345         (MatchesConditionMask):
15346         (CMD_PointerWindow):
15347         (CreateConditionMask):
15348         (CMD_Any):
15349         * fvwm/fvwm.h (WindowConditionMask):
15350         new conditions focused, !focused, haspointer, !haspointer
15351         new command PointerWindow that works like Current but on the window
15352         that currently contains the pointer
15353         new command Any which works like None but inverts the condition
15354         fixed parsing of conditions with more than one comma
15356         * fvwm/module_interface.h:
15357         * fvwm/module_interface.c (do_execute_module):
15358         (initModules):
15359         * libs/Module.h (MAX_XMSG_MASK):
15360         fixed default message mask for modules
15362         * fvwm/update.c (flush_window_updates):
15363         * fvwm/virtual.c (UnmapDesk):
15364         (MapDesk):
15365         (do_move_window_to_desk):
15366         * fvwm/icons.c (DeIconify):
15367         (DeIconify):
15368         * fvwm/events.c (HandlePropertyNotify):
15369         (HandleMapRequestKeepRaised):
15370         (HandleMapNotify):
15371         (HandleButtonPress):
15372         (HandleEnterNotify):
15373         (HandleLeaveNotify):
15374         * fvwm/focus.c (DoSetFocus):
15375         (MoveFocus):
15376         (SetFocusWindow):
15377         (ReturnFocusWindow):
15378         (DeleteFocus):
15379         (ForceDeleteFocus):
15380         (FocusOn):
15381         (restore_focus_after_unmap):
15382         Fixed a race condition with M_FOCUS_CHANGE events and window updates by
15383         suppressing the M_FOCUS_CHANGE message if the focus does not change in
15384         the flush_window_updates() function.
15386 2002-01-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15388         * fvwm/placement.c (PlaceWindow):
15389         minor performance enhancement
15391 2002-01-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15393         * libs/defaults.h:
15394         * fvwm/menus.c (MenuInteraction):
15395         (pointer_in_active_item_area):
15396         (pointer_in_passive_item_area):
15397         new menu style PopupActiveArea
15399 2002-01-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15401         * fvwm/move_resize.c (CMD_ResizeMaximize):
15402         (CMD_ResizeMoveMaximize):
15403         fixed ResizeMaximize and ResizeMoveMaximize on pages other than 0 0
15405 2002-01-21  olicha  <olivier.chapuis@free.fr>
15407         * fvwm/fvwm2.1:
15408         s/Penalities/Penalties/g
15410 2002-01-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15412         * fvwm/events.c (HandleLeaveNotify):
15413         (HandleEnterNotify):
15414         * fvwm/modconf.c (ModuleConfig):
15415         * fvwm/update.c (apply_window_updates):
15416         * fvwm/module_interface.c (BroadcastWindowIconNames):
15417         (CMD_Send_WindowList):
15418         (initModules):
15419         (do_execute_module):
15420         (PositiveWrite):
15421         (CMD_set_nograb_mask):
15422         (CMD_set_sync_mask):
15423         (CMD_set_mask):
15424         (set_mseggage_mask):
15425         (is_message_in_mask):
15426         (is_message_selected):
15427         * libs/Module.h:
15428         rewrote message interface to allow more than 32 messages with minimal
15429         changes in the existing interfaces.
15430         new module messages MX_ENTER_WINDOW and MX_LEAVE_WINDOW
15432         * fvwm/style.h:
15433         * fvwm/style.c (parse_and_set_window_style):
15434         * fvwm/fvwm.h (struct):
15435         * fvwm/events.c (HandleButtonPress):
15436         implemented new styles MouseFocusClickIgnoreMotion and
15437         MouseFocusClickIgnoreMotionOff
15439         * fvwm/focus.c (focus_grab_buttons):
15440         fixed button mask for > 5 buttons
15442 2002-01-19  olicha  <olivier.chapuis@free.fr>
15444         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
15445         Save and restore the icon_pixmap_w and add comments
15447 2002-01-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15449         * fvwm/events.c (HandleEnterNotify):
15450         fixed EnterNotify events for icons
15452 2002-01-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15454         * fvwm/*.c:
15455         * fvwm/stack.c (overlap_box):
15456         (overlap):
15457         * fvwm/icons.c (clear_icon):
15458         * fvwm/add_window.c (destroy_icon):
15459         * fvwm/fvwm.h (FvwmWindow):
15460         * fvwm/geometry.c (get_window_borders):
15461         (get_client_geometry):
15462         * libs/fvwmrect.h (struct):
15463         * fvwm/functions.c (expand_extended_var):
15464         implemented new extended variables cw.x, cw.y, cw.width, cw.height that
15465         return the geometry of the client window
15466         implemented new extended variables it.x, it.y, it.width, it.height that
15467         return the geometry of the icon title
15468         implemented new extended variables ip.x, ip.y, ip.width, ip.height that
15469         return the geometry of the icon picture
15470         implemented new extended variables i.x, i.y, i.width, i.height that
15471         return the geometry of the whole icon
15472         fixed $[w.height] when the window is shaded
15473         cleaned up icon geometry code
15475 2002-01-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15477         * fvwm/commands.h:
15478         * fvwm/functions.c:
15479         * fvwm/functions.h:
15480         * fvwm/move_resize.c (unmaximize_fvwm_window):
15481         (maximize_fvwm_window):
15482         (CMD_Maximize):
15483         (CMD_ResizeMaximize):
15484         (CMD_Resize):
15485         (resize_window):
15486         (CMD_ResizeMove):
15487         (resize_move_window):
15488         (CMD_ResizeMoveMaximize):
15489         New command ResizeMaximize.  Works like Resize, but modifies the
15490         maximized size of the window, not the normal size.
15491         New command ResizeMoveMaximize that works similarly.
15492         (resize_move_window):
15493         fixed ResizeMove command
15495         * fvwm/functions.c (expand):
15496         fixed core dump when using something like $[$v] in a command
15498 2002-01-17  olicha  <olivier.chapuis@free.fr>
15500         * libs/defaults.h (ROOT_BG_CHANGE_STRING):
15501         * fvwm/events.c (HandlePropertyNotify):
15502         * fvwm/fvwm.c (InternUsefulAtoms):
15503         * fvwm/extern.h:
15504         Send the ROOT_BG_CHANGE_STRING to modules when fvwm2 detects
15505         that the root background has changed. This uses the _XSETROOT_ID
15506         and XROOTPMAP_ID properties
15508         * fvwm/ewmh.c (atom_get):
15509         Be paranoid
15511 2002-01-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15513         * fvwm/update.c (flush_window_updates):
15514         fixed unnecessary window style updates
15516         * fvwm/style.c (parse_and_set_window_style):
15517         * fvwm/add_window.c (RestoreWithdrawnLocation):
15518         (AddWindow):
15519         (setup_frame_attributes):
15520         * fvwm/fvwm.h (FvwmWindow):
15521         Fvwm does no longer disable backing store on all of its windows. This
15522         cause too many problems with some applications, e.g. rdist.  Introduced
15523         the new style BackingStoreWindowDefault that tells fvwm not to modify
15524         the backing store attribute on the client window - which now is the
15525         default.
15527 2002-01-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15529         * fvwm/commands.h:
15530         * fvwm/functions.c (func_config):
15531         * libs/Module.c (SetMessageMask2):
15532         (SetNoGrabMask2):
15533         * libs/Module.h:
15535         * configure.in:
15536         fixed building with libstroke-0.5.1 on Solaris8
15538         * fvwm/stack.c (new_layer):
15539         * fvwm/borders.c (DrawButton):
15540         (RedrawButtons):
15541         (RedrawTitle):
15542         * fvwm/builtins.c (SetLayerButtonFlag):
15543         (do_button_style):
15544         * fvwm/screen.h (struct):
15545         Applied the layer button patch by Richard Curnow with a few
15546         modifications
15548         * fvwm/icons.c (GetIconBitmap):
15549         (GetIconWindow):
15550         Ignore client icons that have the wrong depth
15552         * fvwm/events.c (HandleEnterNotify):
15553         Tried to fix focusing problem w/ unclutter.
15555 2002-01-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15557         * fvwm/functions.c (CheckActionType):
15558         remove debug code
15560         * fvwm/menus.c (paint_item):
15561         * fvwm/misc.c (is_function_allowed):
15562         * fvwm/move_resize.c (is_move_allowed):
15563         (is_resize_allowed):
15564         (is_maximize_allowed):
15565         * fvwm/decorations.c (check_if_function_allowed):
15566         combined all these functions into a new one
15567         use this function everywhere
15568         use the Fixed... styles to decide if a menu item is greyed or not
15570 2002-01-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15572         * fvwm/events.c (HandleExpose):
15573         eat up expose events even if the server claims that the expose count is
15574         zero; fixes a problem with many redraws of windows that are uncovered
15575         by shading a window above them
15577 2002-01-10  olicha  <olivier.chapuis@free.fr>
15579         * fvwm/focus.c (DoSetFocus):
15580         * fvwm/move_resize.c (CMD_Maximize):
15581         (CMD_Maximize):
15582         (handle_stick):
15583         (CMD_ResizeMove):
15584         (CMD_Resize):
15585         * fvwm/icons.c (DeIconify):
15586         (DeIconify):
15587         (Iconify):
15588         * fvwm/gnome.c (GNOME_HandlePropRequest):
15589         * fvwm/ewmh_names.c (EWMH_WMName):
15590         * fvwm/events.c (HandleFocusIn):
15591         (HandlePropertyNotify):
15592         (HandleMapNotify):
15593         (HandleButtonPress):
15594         (HandleLeaveNotify):
15595         (HandleExpose):
15596         * fvwm/builtins.c (CMD_UpdateDecor):
15597         (CMD_WindowShade):
15598         * fvwm/borders.c (draw_clipped_decorations):
15599         (DrawDecorations):
15600         (RedrawDecorations):
15601         * fvwm/borders.h:
15602         Added a new argument to DrawDecoration similar to draw_window_parts,
15603         which indicate which part of the decor should be cleared. At present
15604         time only CLEAR_FRAME is taken in account and this is used in
15605         ShadeWindow to draw the decoration without flickering. This argument
15606         may be used in the future to reduce opaque resizing flickering
15608         * fvwm/builtins.c (CMD_WindowShade):
15609         Draw the decoration during unshading a window
15611         * fvwm/menus.c (ParentalMenuRePaint):
15612         Fixed transparent animated menu again
15614         * NEWS:
15615         Some update
15617 2002-01-09  olicha  <olivier.chapuis@free.fr>
15619         * fvwm/style.c (CMD_Style):
15620         free all the elements of the ptmpstyle before freeing it
15622         * fvwm/menus.c (ParentalMenuRePaint):
15623         Fixed transparent animated menu with HilightBackOff
15625 2002-01-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15627         * fvwm/style.c (merge_styles):
15628         fixed core dump w/ multiple use of the UseStyle style and HilightBack
15629         in the copied style
15631 2002-01-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15633         * fvwm/modconf.c (send_ignore_modifiers):
15634         (send_move_threshold):
15635         (send_click_time):
15636         (send_colorsets):
15637         (send_color_limit):
15638         (send_image_path):
15639         (send_desktop_geometry):
15640         (CMD_Send_ConfigInfo):
15641         moved code into new functions
15643         * libs/defaults.h (DEFAULT_MODS_UNUSED):
15644         moved to defaults.h
15646         * fvwm/bindings.c (CMD_IgnoreModifiers):
15647         * fvwm/module_interface.c (broadcast_xinerama_state):
15648         * fvwm/modconf.c (send_ignore_modifiers):
15649         broadcast IgnoreModifiers to modules
15651         * fvwm/bindings.c (CMD_IgnoreModifiers):
15652         fixed IgnoreModifiers command without arguments
15653         * fvwm/fvwm2.1:
15654         corrected documentation of IgnoreModifiers command
15656 2002-01-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15658         * fvwm/add_window.c:
15659         * fvwm/cursor.c:
15660         * fvwm/virtual.c:
15661         * fvwm/builtins.c:
15662         * fvwm/bindings.c:
15663         * fvwm/move_resize.c:
15664         * fvwm/events.c:
15665         * fvwm/stack.c:
15666         * fvwm/module_interface.c:
15667         * fvwm/focus.c:
15668         * fvwm/placement.c:
15669         * fvwm/menus.c:
15670         * fvwm/icons.c:
15671         * fvwm/fvwm.h (FvwmWindow):
15672         remnamed icon_w member to icon_title_w
15674 2002-01-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15676         * fvwm/icons.c (RedoIconName):
15677         fixed sizing of icon title for icons without a pixmap
15678         (RedoIconName):
15679         (CreateIconWindow):
15680         (Iconify):
15681         (CreateIconWindow):
15682         rewrote icon title layout and moved the constants to defaults.h
15684         * fvwm/menus.c (menuShortcuts):
15685         (handle_emacs_bindings):
15686         implemented emacs style bindings in menus [ctrl-a/b/e/f/g/left/right]
15688 2002-01-04  Dan Espen  <dane@mk.telcordia.com>
15690         * fvwm/fvwm2.1: Language checks done.
15691         .IR command not in column 1 fixed.
15693 2002-01-04  olicha  <olivier.chapuis@free.fr>
15695         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
15696         (AnimatedMoveOfWindow):
15697         (AnimatedMoveFvwmWindow):
15698         (move_window_doit):
15699         * fvwm/menus.c (ParentalMenuRePaint):
15700         (animated_move_back):
15701         (pop_menu_up):
15702         Fixed transparent animated menu
15704 2002-01-03  olicha  <olivier.chapuis@free.fr>
15706         * fvwm/move_resize.c (is_resize_allowed):
15707         (is_move_allowed):
15708         Do not check if moveing/resizeing is MWM allowed for a no user request
15709         This fix for example FvwmWinList with MwmFunctions & NoOverride
15711         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
15712         * fvwm/move_resize.c (is_move_allowed):
15713         Allowed moving if tmp_win is null and check if move is allowed and
15714         not resize in AnimatedMoveAnyWindow. This fix animated menu
15716         * fvwm/ewmh.c (ewmh_AllowsMaximize):
15717         (ewmh_AllowsMove):
15718         (ewmh_AllowsResize):
15719         Check as a user request
15721         * fvwm/fvwm2.1:
15722         * fvwm/move_resize.c (CMD_Maximize):
15723         (MaximizeWidth):
15724         (MaximizeHeight):
15725         New global flags "layer" and "ewmiwa". layer causes the grow* methods
15726         to ignore the windows with a layer less or equal to the layer of
15727         the maximized window. ewmhiwa causes to ignore the ewmh working area.
15728         Reorder a bit the Maximize documentation
15730         * fvwm/fvwm2.1:
15731         * fvwm/functions.c (expand_extended_var):
15732         New variables $[desk.name<n>] to get the desktop names
15734 2002-01-01  Dan Espen  <dane@mk.telcordia.com>
15736         * fvwm/read.c (CMD_Read): Correct message on missing file when using
15737         Read with full path.
15739 2002-01-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15741         * libs/defaults.h:
15742         * fvwm/misc.c (GrabEm):
15743         reduced number of grab attempts from 500 to 50 @ 10 ms = 0.5 seconds */
15745         * fvwm/events.c (HandleUnmapNotify):
15746         (HandleMapRequestKeepRaised):
15747         (check_map_request):
15748         fixed unmanaged window when window was mapped/unmapped/mapped too fast
15750         * fvwm/add_window.c (FetchWmProtocols):
15751         (setup_wm_hints):
15752         * fvwm/fvwm.h (FvwmWindow):
15753         * fvwm/events.c (HandleEnterNotify):
15754         (HandlePropertyNotify):
15755         * fvwm/focus.c (refresh_focus):
15756         (set_focus_model):
15757         fixed focus problems with netscape and ddd
15759 2001-12-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15761         * libs/Target.c (fvwmlib_keyboard_shortcuts):
15762         * libs/Pointer.c (GetLocationFromEventOrQuery):
15763         * fvwm/virtual.c (HandlePaging):
15764         * fvwm/move_resize.c (GetOnePositionArgument):
15765         (InteractiveMove):
15766         (AnimatedMoveAnyWindow):
15767         (moveLoop):
15768         (CMD_Resize):
15769         * fvwm/module_interface.c (ExecuteModuleCommand):
15770         * fvwm/menus.c (do_menu):
15771         (menuShortcuts):
15772         (MenuInteraction):
15773         (get_menu_options):
15774         * fvwm/functions.c (execute_complex_function):
15775         * fvwm/events.c (HandleClientMessage):
15776         (WaitForButtonsUp):
15777         * fvwm/conditional.c (CMD_Direction):
15778         * fvwm/builtins.c (CMD_CursorMove):
15779         (CMD_FakeClick):
15780         (CMD_StrokeFunc):
15781         handle return code of XQueryPointer everywhere; necessary for dual head
15783         * fvwm/misc.c (GrabEm):
15784         Pointer was warped to other screen with a dual head setup
15786 2001-12-31  olicha  <olivier.chapuis@free.fr>
15788         * fvwm/ewmh_events.c (ewmh_WMStateModal):
15789         Removed some code which try to raise ewmh modal window over
15790         its transientfor window; this seems not possible without a new style
15791         or a bad hack in stack.c
15793 2001-12-30  Dan Espen  <dane@mk.telcordia.com>
15795         * libs/GetFont.c (GetFontSetOrFixed): Cleanup the message about the
15796         fallback to fixed font so it shows the right font for I18N.
15798 2001-12-30  olicha  <olivier.chapuis@free.fr>
15800         * fvwm/window_flags.h:
15801         * fvwm/session.c (MatchWinToSM):
15802         (LoadWindowStates):
15803         (SaveWindowStates):
15804         (get_version_string):
15805         * fvwm/move_resize.c (CMD_Maximize):
15806         (handle_stick):
15807         * fvwm/icons.c (CMD_Iconify):
15808         * fvwm/ewmh.c (EWMH_SetWMState):
15809         (EWMH_WindowInit):
15810         (EWMH_ExitStuff):
15811         (EWMH_SetAllowedActions):
15812         (EWMH_WindowInit):
15813         * fvwm/ewmh.h:
15814         * fvwm/ewmh_intern.h:
15815         * fvwm/ewmh_events.c (ewmh_WMState*):
15816         * fvwm/builtins.c (CMD_WindowShade):
15817         * fvwm/stack.c (new_layer):
15818         * fvwm/update.c (apply_window_updates):
15819         * fvwm/update.h (struct):
15820         * fvwm/add_window.c (setup_window_structure):
15821         (setup_window_name):
15822         (setup_icon):
15823         * fvwm/style.c (check_window_style_change):
15824         The skip list and modal ewmh window states are now updated after
15825         an use/ignore ewmh state style changes. The other ewmh states are
15826         starting state only. All the initial ewmh states are keep in memory
15827         for FvwmIdent.
15829         * fvwm/ewmh.c (EWMH_Handle*):
15830         * fvwm/fvwm.h:
15831         Set the ewmh_window_type to an int (and not the corresponding atom)
15832         accordingly to the window type
15834         * fvwm/ewmh_events.c (ewmh_WMStateModal):
15835         ewmh modal transient windows have RaiseTransient and GrabFocusTransient
15836         style
15838         * fvwm/ewmh.c (EWMH_GetStyle):
15839         * fvwm/ewmh_events.c (ewmh_WMDesktop):
15840         Respect the _NET_WM_DESKTOP hints at window mapping as a StartsOnDesk
15841         hints
15843         * libs/vpacket.h (ConfigWinPacket):
15844         * fvwm/module_interface.c (CONFIGARGSNEW):
15845         (OLDCONFIGARGS):
15846         (CONFIGARGS):
15847         Added ewmh_hint_layer, ewmh_hint_desktop and ewmh_window_type to the
15848         cfgpacket for FvwmIdent
15850 2001-12-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15852         * fvwm/move_resize.c (resize_geometry_window):
15853         fixed wrong size calculation of geometry window
15855 2001-12-19  olicha  <olivier.chapuis@free.fr>
15857         * fvwm/ewmh_names.c (convert_charsets):
15858         More precise error messages
15860         * fvwm/fvwm2.1:
15861         A few formatting fixes
15863 2001-12-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15865         * fvwm/gnome.c (GNOME_SetHints):
15866         fixed window getting frozen into position upon a recapture or restart
15868 2001-12-17  Dan Espen  <dane@mk.telcordia.com>
15870         * fvwm/fvwm2.1: Fixup wording in EWMHIconicStateWorkaround.
15872 2001-12-17  olicha  <olivier.chapuis@free.fr>
15874         * fvwm/fvwm2.1:
15875         Tried to clarify the EWMHIconicStateWorkaround BugOpts
15877         * fvwm/ewmh.c (delete_kst_item):
15878         (set_kde_sys_tray):
15879         (EWMH_IsKdeSysTrayWindow):
15880         (EWMH_ManageKdeSysTray):
15881         * fvwm/events.c (HandleReparentNotify):
15882         Fixed reparenting management of kde system tray windows and
15883         added some off debugging code
15885         * fvwm/virtual.c (CMD_DesktopName):
15886         Removed some debugging code
15888 2001-12-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15890         * fvwm/fvwm.h (struct):
15891         * fvwm/window_flags.h (IS_FIXED_PPOS):
15892         * fvwm/style.h (SCSET_IS_FIXED_PPOS):
15893         * fvwm/style.c (parse_and_set_window_style):
15894         (check_window_style_change):
15895         implemented new styles FixedPPosition, FixedUSPosition, FixedSize,
15896         FixedUSSize, FixedPSize and Variable PPosition, ...
15898         * fvwm/events.c (HandleConfigureRequest):
15899         * fvwm/ewmh.c (ewmh_AllowsResize):
15900         (is_resize_allowed):
15901         (ewmh_AllowsMove):
15902         (ewmh_AllowsMove):
15903         * fvwm/gnome.c (GNOME_SetHints):
15904         (AnimatedMoveAnyWindow):
15905         (CMD_ResizeMove):
15906         use new functions
15907         * fvwm/move_resize.c (is_move_allowed):
15908         (is_resize_allowed):
15909         (is_maximize_allowed):
15910         new functions to clean up some code
15912 2001-12-15  Dan Espen  <dane@mk.telcordia.com>
15914         * fvwm/fvwm2.1: Doc fixups.
15916 2001-12-15  olicha  <olivier.chapuis@free.fr>
15918         * fvwm/builtins (CMD_BugOpts):
15919         * fvwm/ewmh.c:
15920         * fvwm/ewmh_conf.c (EWMH_BugOpts):
15921         * fvwm/ewmh_events.c (ewmh_StateHidden):
15922         * fvwm/fvwm.c (InitVariables):
15923         * fvwm/fvwm2.1:
15924         * fvwm/icons.c (CMD_Iconify):
15925         * fvwm/screen.h:
15926         * fvwm/virtual.c (unmap_window):
15927         (map_window):
15928         Implemented the new _NET_WM_STATE_HIDDEN ewmh state that allows
15929         to fix the IconicState problems in vitrual.c. New BugOpts
15930         EWMHIconicStateWorkaround for supporting current KDE versions
15932         * fvwm/events.c (HandlePropertyNotify):
15933         * fvwm/ewmh.c (ewmh_AllowsYes):
15934         * fvwm/ewmh.h:
15935         (ewmh_AllowsClose):
15936         (ewmh_AllowsMaximize):
15937         (ewmh_AllowsMove):
15938         (ewmh_AllowsResize):
15939         (EWMH_SetAllowedActions):
15940         (EWMH_WindowInit):
15941         * fvwm/style.c (check_window_style_change):
15942         * fvwm/update.c (apply_window_updates):
15943         * fvwm/update.h:
15944         Implemented _NET_WM_ALLOWED_ACTIONS from version 1.2 of the wm-spec
15946 2001-12-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15948         * fvwm/borders.c (RedrawTitle):
15949         * libs/defaults.h (WINDOW_TITLE_OFFSET):
15950         fixed 'stick' lines with long titles
15952 2001-12-11  olicha  <olivier.chapuis@free.fr>
15954         * NEWS:
15955         * fvwm/commands.h:
15956         * fvwm/ewmh.c (ewmh_SetWorkArea):
15957         * fvwm/ewmh.h:
15958         (ewmh_ComputeAndSetWorkArea):
15959         (ewmh_HandleDynamicWorkArea):
15960         (EWMH_GetWorkAreaIntersection):
15961         (EWMH_GetStrutIntersection):
15962         (get_intersection):
15963         * fvwm/ewmh_name.c (EWMH_SetDeskNames):
15964         * fvwm/function.c:
15965         * fvwm/function.h:
15966         * fvwm/fvwm.c (InitVariables):
15967         * fvwm/fvwm2.1:
15968         * fvwm/modconf.c (send_desktop_names):
15969         (CMD_Send_ConfigInfo):
15970         * fvwm/placement.c (get_next_x):
15971         (get_next_y):
15972         * fvwm/screen.h:
15973         * fvwm/virtual.c (CMD_DesktopName):
15974         * fvwm/virtual.h:
15975         (GetDesktopName):
15976         New command "DesktopName desk name" to define desktops names for
15977         the FvwmPager, the WindowList and ewmh compliant pagers.
15978         Desktops information (desk, desk name, working areas) is stored in a
15979         new list sub structure of Scr, DesktopsInfo. The head of the list
15980         contains generic information for desks that are not in the list.
15982         * fvwm/windowlist.c (get_desk_title):
15983         (CMD_WindowList):
15984         * fvwm/fvwm2.1:
15985         * NEWS:
15986         New window list options NoDeskNum, NoCurrentDeskTitle,
15987         TitleForAllDesks, NoNumInDeskTitle. Document these options and also
15988         the NoGeometry and NoGeometryInfo options.
15990         * fvwm/ewmh.c:
15991         * fvwm/ewmh_names.c:
15992         * fvwm/ewmh_icons.c:
15993         Added some static declarations
15995         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
15996         It seems that UTF8 names should not be terminated by a 0
15998         * fvwm/ewmh.c (EWMH_SetClientListStacking):
15999         Set the stacking list in the good orders
16001 2001-12-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16003         * vms/config.h:
16004         * fvwm/functions.c:
16005         * fvwm/commands.h:
16006         * fvwm/builtins.c:
16007         * fvwm/borders.c:
16008         removed all MULTISTYLE ifdefs
16010         * fvwm/borders.c (RedrawTitle):
16011         fixed title drawing into relief
16013 2001-12-08  olicha  <olivier.chapuis@free.fr>
16015         * fvwm/style.c:
16016         * fvwm/style.h:
16017         * fvwm/fvwm.h:
16018         * fvwm/update.c:
16019         * fvwm/update.h:
16020         * fvwm/window_flags.h:
16021         * fvwm/fvwm2.1:
16022         s/extended_window_name/indexed_window_name/i
16023         s/extended_icon_name/indexed_icon_name/i
16024         s/do_update_window_name/do_update_visible_window_name/
16025         s/do_update_icon_name/do_update_visible_icon_name/
16027         * fvwm/style.c (CMD_Style):
16028         * fvwm/style.h:
16029         (parse_and_set_window_style):
16030         Split CMD_Style into CMD_Style and parse_and_set_window_style
16032 2001-12-06  olicha  <olivier.chapuis@free.fr>
16034         * fvwm/add_window.c (setup_window_name_count):
16035         (setup_icon_name_count):
16036         Better determination of the window and icon names index
16038         * fvwm/add_window.c (AddWindow):
16039         (setup_icon):
16040         * fvwm/events.c (HandlePropertyNotify):
16041         * fvwm/ewmh_names.c (EWMH_WMName):
16042         (EWMH_WMIconName):
16043         * fvwm/module_interface.c (BroadcastWindowIconNames):
16044         * fvwm/module_interface.h:
16045         (CMD_Send_WindowList):
16046         (CMD_set_mask):
16047         (CMD_set_sync_mask):
16048         (CMD_set_nograb_mask):
16049         * fvwm/update.c (apply_window_updates):
16050         * libs/Module.h:
16051         New module messages type M_VISIBLE_NAME and M_VISIBLE_ICON_NAME
16052         which are send to modules with BroadcastWindowIconNames.
16053         The set mask cmds use unsigned long mask and not int mask!
16055 2001-12-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16057         * fvwm/ewmh.h:
16058         * fvwm/ewmh.c:
16059         EWMH without iconv compile fix by Hippo
16061 2001-12-05  olicha  <olivier.chapuis@free.fr>
16063         * fvwm/add_window.c:
16064         * fvwm/ewmh.c (*):
16065         * fvwm/ewmh.h:
16066         * fvwm/ewmh_conf.c (EWMH_CMD_Styles):
16067         * fvwm/ewmh_events.c:
16068         * fvwm/fvwm.h:
16069         * fvwm/fvwm2.1:
16070         * fvwm/move_resize.c (CMD_Maximize):
16071         * fvwm/placement.c (test_fit):
16072         (PlaceWindow):
16073         * fvwm/session.c (SaveWindowStates):
16074         * fvwm/style.c (merge_styles):
16075         * fvwm/style.h:
16076         (check_window_style_change):
16077         * fvwm/update.c (apply_window_updates):
16078         * fvwm/update.h:
16079         * fvwm/window_flags.h:
16080         New ewmh styles:
16081         EWMHMaximizeIgnoreWorkingArea / EWMHMaximizeUseWorkingArea /
16082         EWMHMaximizeUseDynamicWorkingArea,
16083         EWMHPlacementIgnoreWorkingArea / EWMHPlacementUseWorkingArea
16084         EWMHPlacementUseDynamicWorkingArea,
16085         EWMHUseStackingOrderHints / EWMHIgnoreStackingOrderHints,
16086         EWMHIgnoreStateHints / EWMHUseStateHints,
16087         EWMHIgnoreStrutHints / EWMHUseStrutHints
16089         * fvwm/ConfigFvwmDefaults:
16090         Use EWMHPlacementUseDynamicWorkingArea,
16091         EWMHMaximizeUseDynamicWorkingArea as default placement styles
16093         * NEWS:
16094         * fvwm/add_window.c (setup_placement_penalty):
16095         * fvwm/add_window.h:
16096         (setup_placement_penalty):
16097         (AddWindow):
16098         * fvwm/fvwm.h:
16099         * fvwm/placement.c (get_next_x):
16100         * fvwm/placement.h:
16101         (get_next_y):
16102         (test_fit):
16103         * fvwm/style.c (CMD_Style):
16104         * fvwm/style.h:
16105         (check_window_style_change):
16106         * fvwm/update.c (apply_window_updates):
16107         * fvwm/update.h:
16108         * fvwm/window_flags.h:
16109         * libs/default.h:
16110         New styles PlacementOverlapPenalties and
16111         PlacementOverlapPercentPenalties
16113         * NEWS:
16114         * fvwm/add_window.c (setup_window_name_count):
16115         * fvwm/add_window.h:
16116         (setup_icon_name_count):
16117         (setup_visible_name):
16118         (setup_window_name):
16119         (free_window_names):
16120         (setup_icon):
16121         * fvwm/borders.c (DrawMultiPixmapTitlebar):
16122         (RedrawTitle):
16123         * fvwm/events.c (HandlePropertyNotify):
16124         * fvwm/ewmh_names.c (EWMH_*):
16125         * fvwm/fvwm.h:
16126         * fvwm/icons.c (CreateIconWindow):
16127         (DrawIconWindow):
16128         (RedoIconName):
16129         (AutoPlaceIcon):
16130         (Iconify):
16131         * fvwm/session.c (MatchWinToSM):
16132         * fvwm/style.c (CMD_Style):
16133         * fvwm/style.h:
16134         (check_window_style_change):
16135         * fvwm/update.c (apply_window_updates):
16136         * fvwm/update.h:
16137         * fvwm/window_flags.h:
16138         New styles ExtendedWindowName / SimpleWindowName and
16139         ExtendedIconName / SimpleIconName. TODO: the modules implementation
16141         * fvwm/builtins.c (ReadMultiPixmapDecor):
16142         A -Wall fix
16144         * configure.in:
16145         Fixed gcc test
16147         * session.c (get_version_string):
16148         now is 2.5-3
16150         * fvwm/stack.c (new_layer):
16151         (CMD_Layer):
16152         Fixed ewmh wm state
16154         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
16155         Fixed creation of the ewmh icon in the case of the window is iconified
16157 2001-11-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16159         * fvwm/placement.c (PlaceWindow):
16160         fixed manual placement on Xinerama screens other than the one with the
16161         top left corner of the total screen
16163 2001-11-27  olicha  <olivier.chapuis@free.fr>
16165         * configure.in:
16166         * acinclude.m4:
16167         * acconfig.h:
16168         * fvwm/ewmh_name.c
16169         Check for the second argument of iconv
16171         * configure.in:
16172         Added -Wall to CFLAGS if cc is gcc
16174 2001-11-26  Mikhael Goikhman  <migo@homemail.com>
16176         * configure.in:
16177         * acconfig.h:
16178         s/extanded/extended/
16180 2001-11-26  olicha  <olivier.chapuis@free.fr>
16182         * fvwm/Makefile.am:
16183         Fixed (?) iconv_LIBS
16185 2001-11-26  olicha  <olivier.chapuis@free.fr>
16187         * fvwm/functions.c (expand):
16188         Fixed n, c, r expansion
16190 2001-11-25  Dan Espen  <dane@mk.telcordia.com>
16192         * fvwm/fvwm2.1: Clean up ewmh stuff.
16194 2001-11-24  olicha  <olivier.chapuis@free.fr>
16196         * fvwm/ewmh_internal.h:
16197         * fvwM/ewmh.c:
16198         Removed a non standard macro
16200 2001-11-24  olicha  <olivier.chapuis@free.fr>
16202         * fvwm/fvwm2.1:
16203         Documented the previous ewmh style in a new Style subsection
16205         * fvwm/functions.c (expand):
16206         Clean up, removed 5 tmp_win and IS_EWMH_DESKTOP
16208 2001-11-24  olicha  <olivier.chapuis@free.fr>
16210         * fvwm/add_window (setup_icon):
16211         (setup_window_structure):
16212         * fvwm/events.c (HandlePropertyNotify):
16213         * fvwm/ewmh.h:
16214         * fvwm/ewmh_conf.c (EWMH_CMD_Style):
16215         * fvwm/ewmh_icons.c (ewmh_WMIcon):
16216         (EWMH_DoUpdateWmIcon):
16217         (ewmh_SetWmIconFromPixmap):
16218         (EWMH_DeleteWmIcon):
16219         (EWMH_SetIconFromWMIcon):
16220         * fvwm/ewmh_intern.h:
16221         * fvwm/fvwm.h:
16222         * fvwm/icons.c (GetIcon):
16223         * fvwm/session.c (get_version_string):
16224         * fvwm/style.c (CMD_Style):
16225         * fvwm/style.h:
16226         (check_window_style_change)
16227         * fvwm/update.c (apply_window_updates):
16228         * fvwm/update.h:
16229         * fvwm/window_flags.h:
16230         New style EWMHMiniIconOverride / EWMHNoMiniIconOverride,
16231         EWMHDonateMiniIcon / EWMHDontDonateMiniIcon,
16232         EWMHDonateIcon / EWMHDontDonateIcon,
16233         Some ewmh icon code simplification.
16234         Ewmh icons priority: just after icon window.
16236         * fvwm/ewmh.c (EWMH_ExitStuff):
16237         * fvwm/ewmh.h:
16238         * fvwm/session.c (SaveWindowStates):
16239         (LoadWindowStates):
16240         (MatchWinToSM):
16241         * fvwm/fvwm.c (Done):
16242         Delete the ewmh icons we set ourself. Some ewmh session states do not
16243         need to be saved/restored anymore
16245 2001-11-23  olicha  <olivier.chapuis@free.fr>
16247         * fvwm/ewmh_names.c (convert_charsets):
16248         Fixed infinite loop
16250 2001-11-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16252         * fvwm/ewmh_names.c (convert_charsets):
16253         -Wall fix: 2nd parameter of iconv is char **, not const char ** as the
16254         man page states on Linux
16255         replaced goto with a loop
16257 2001-11-22  olicha  <olivier.chapuis@free.fr>
16259         * fvwm/ewmh_icons.c (EWMH_SetWmIconFromPixmap):
16260         a -Wall fix
16262         * fvwm/ewmh_events.c:
16263         Fixed some styles update
16265         * fvwm/ewmh_conf.c:
16266         * fvwm/function.c (func_config):
16267         * fvwm/function.h:
16268         * fvwm/ewmh.c:
16269         * fvwm/ewmh.h:
16270         * fvwm/ewmh_events.c:
16271         * fvwm/ewmh_intern.h:
16272         * fvwm/Makefile.am:
16273         * fvwm/fvwm2.1:
16274         New file for ewmh styles and commands. New commands EWMHBaseStrut and
16275         EWMHNumberOfDesktops. More documentation in ewmh man page section.
16277         * fvwm/add_window.c:
16278         * fvwm/bindings.c:
16279         * fvwm/events.c:
16280         * fvwm/functions.c:
16281         * fvwm/ewmh.c (EWMH_Init):
16282         * fvwm/fvwm.h:
16283         * fvwm/fvwm.c (InitVariables):
16284         * fvwm/placement.c
16285         * fvwm/sceen.h:
16286         * fvwm/session.c:
16287         * fvwm/styles.c:
16288         * fvwm/update.c:
16289         * fvwm/update.h:
16290         * fvwm/window_flags.c:
16291         * libs/Bindings.c:
16292         * libs/Picture.c:
16293         * libs/Picture.h:
16294         * libs/fvwmlib.h:
16295         * configure.in:
16296         * acconfig.h:
16297         Remove all the HAVE_EWMH ifdef but the two in virtual.c (which
16298         are maybe problematic) and those in the ewmh* files to allow
16299         to disbale the ewmh code: with --disable-ewmh all the ewmh code
16300         should be dummy. --enable-ewmh is now the default.
16302 2001-11-20  olicha  <olivier.chapuis@free.fr>
16304         * fvwm/icons.c (GetIcon):
16305         * fvwm/add_window.c (setup_icon):
16306         Fixed icons order choice and other minor bugs
16308         * fvwm/ewmh_icons.c (EWMH_SetWmIconFromPixmap):
16309         Fixed a core dump if there is no MiniIcon
16311 2001-11-18  olicha  <olivier.chapuis@free.fr>
16313         * fvwm/ewmh.c (add_kst_item):
16314         * fvwm/ewmh.h:
16315         (ewmh_AddToKdeSysTray):
16316         (EWMH_IsKdeSysTrayWindow):
16317         (EWMH_ManageKdeSysTray):
16318         (EWMH_WindowInit):
16319         fvwm/ewmh_intern.h:
16320         * fvwm/events.c (HandleDestroyNotify):
16321         (HandleMapRequest):
16322         (HandleUnmapNotify):
16323         Fixed the KDE system tray implementation
16325 2001-11-16  olicha  <olivier.chapuis@free.fr>
16327         * fvwm/ewmh.h:
16328         * fvwm/ewmh.c:
16329         fixed EWMH_WindowDestroyed and EWMH_DestroyWindow macros
16331 2001-11-15  olicha  <olivier.chapuis@free.fr>
16333         * fvwm/ewmh.c (EWMH_DestroyWindow):
16334         * fvwm/ewmh.h:
16335         (EWMH_WindowDestroyed):
16336         * fvwm/events.c (HandleReparentNotify):
16337         (HandleDestroyNotify):
16338         (HandleUnmapNotify):
16339         * fvwm/add_window.c (destroy_window):
16340         Fixed the ewmh windows lists
16342 2001-11-15  olicha  <olivier.chapuis@free.fr>
16344         * fvwm/Makefile.am:
16345         * fvwm/ewmh.c:
16346         * fvwm/ewmh.h:
16347         * fvwm/ewmh_intern.h:
16348         * fvwm/ewmh_events.c:
16349         * fvwm/ewmh_icons.c:
16350         * fvwm/ewmh_names.c:
16351         * fvwm/fvwm2.1:
16352         * NEWS:
16353         New files to achieve the extended WM hints support, off by
16354         default. This code is ifdefed a la gnome.c.
16355         This is work in progess (need to do so that every things are
16356         configurable).
16358         * configure.in:
16359         * acconfig.h (HAVE_EWMH, HAVE_ICONV, USE_LIBICONV, HAVE_CODSET):
16360         New configure option --enable-ewmh. Added tests for iconv and
16361         nl_langinfo for UTF8 conversions.
16363         * fvwm/add_window.c (AddWindow):
16364         (CaptureOneWindow):
16365         (destroy_window):
16366         (setup_window_name):
16367         (setup_icon):
16368         EWMH_SetWMState, EWMH_SetWMDesktop, EWMH_SetFrameStrut,
16369         EWMH_WindowDestroyed, EWMH_WMName, EWMH_SetVisibleName,
16370         SET_HAS_EWMH_ICON, EWMH_WMIconName
16372         * fvwm/add_window.c (setup_window_structure):
16373         * fvwm/fvwm.h (FvwmWindow):
16374         (window_flags):
16375         * fvwm/window_flags.h:
16376         * fvwm/session.c (get_version_string):
16377         (SaveWindowStates):
16378         (LoadWindowStates):
16379         Added some entries in FvwmWindow and some flags (more will be
16380         added). Some of these states need to be saved at restart and
16381         at recapture. This code is ifdefed, may be it should not: I was
16382         forced to ifdef the version string in get_version_string.
16384         * libs/Bindings.c (win_contexts):
16385         * libs/fvwmlib.h:
16386         * fvwm/events.c (GetContext):
16387         * fvwm/bindings.c (ParseBinding):
16388         (activate_binding):
16389         * fvwm/functions.c (expand_extended_var):
16390         (expand):
16391         (execute_function):
16392         (DeferExecution):
16393         * fvwm/screen.h (Scr):
16394         new context C_EWMH_DESKTOP named "D" for an ewmh desktop
16395         (kdesktop or Nautilus desktop). This context is something between
16396         C_ROOT and C_WINDOW. Added Scr.EwmhDesktop.
16398         * fvwm/bindings.c (activate_binding):
16399         Fixed immediate application of mouse/stroke bindings
16401         * fvwm/borders.h
16402         * fvwm/borders.c (RedrawDecorations):
16403         * fvwm/update.c (apply_window_updates):
16404         New function  RedrawDecorations taken from apply_window_updates
16405         and called in ewmh_icons.c and update.c
16407         * fvwm/bultins.c (CMD_WindowShade):
16408         EWMH_SetWMState
16410         * fvwm/events.c (HandleFocusIn):
16411         (HandlePropertyNotify):
16412         (HandleClientMessage):
16413         (HandleMapRequestKeepRaised):
16414         (HandleUnmapNotify):
16415         EWMH_SetActiveWindow. Test for utf8 window and icon name, set the ewmh
16416         icon state. EWMH_ProcessPropertyNotify, EWMH_ProcessClientMessage,
16417         EWMH_SetClientList
16419         * fvwm/icons.c (GetIcon):
16420         * fvwm/icons.h:
16421         (CreateIconWindow):
16422         (ChangeIconPixmap):
16423         * fvwm/events.c (HandlePropertyNotify):
16424         New function GetIcon taken from CreateIconWindow which choose
16425         the icon, there is a new case for EWMH icons. New function
16426         ChangeIconPixmap taken from events.c.
16427         The two new functions are called from ewmh_icon.c (and icons.c).
16429         * fvwm/move_resize.c (handle_stick):
16430         (CMD_Maximize):
16431         (handle_stick):
16432         EWMH_SetWMState, EWMH_GetWorkAreaIntersection, EWMH_SetWMDesktop
16434         * libs/Picture.h:
16435         * libs/Picture.c (LoadPictureFromPixmap):
16436         (CachePictureFromPixmap):
16437         New functions for loading a picture from a pixmap. Nothing is cached
16438         but this simplify the MiniIcon code.
16440         * fvwm/placement.c (PlaceWindow):
16441         EWMH_GetWorkAreaIntersection
16443         * fvwm/screen.h (Scr):
16444         Added the working area, the dynamic working area and the ewmh
16445         Desktop window.
16447         * fvwm/stack.c (restack_windows):
16448         (CMD_Layer):
16449         EWMH_SetClientListStacking, EWMH_SetWMState
16451         * fvwm/style.c (check_window_style_change):
16452         * fvwm/update.c (apply_window_updates):
16453         * fvwm/update.h:
16454         Added do_update_list_skip to the update_win flags for EWMH_SetWMState.
16455         This code is ifdefed.
16457         * fvwm/style.c (lookup_style):
16458         EWMH_GetStyle
16460         * fvwm/virctual.c (goto_desk):
16461         (CMD_GotoDeskAndPage):
16462         (do_move_window_to_desk):
16463         EWMH_SetCurrentDesk, EWMH_SetWMDesktop
16465 2001-11-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16467         * fvwm/update.c (apply_window_updates):
16468         * fvwm/gnome.c (GNOME_GetStyle):
16469         * fvwm/style.c (lookup_style):
16470         (check_window_style_change):
16471         * fvwm/add_window.c (setup_style_and_decor):
16472         fixed GnomeIgnoreHints style for some of the gnome hints
16474         * fvwm/fvwm.c (StartupStuff):
16475         Tried to fix font size problem
16477         * fvwm/placement.c (PlaceWindow):
16478         suppress an X error
16480         * fvwm/move_resize.c (moveLoop):
16481         * libs/Target.c (fvwmlib_keyboard_shortcuts):
16482         * fvwm/misc.c (Keyboard_shortcuts):
16483         modified keyboard shortcut functions so that it is possible to move
16484         windows with the keyboard even if the border is hit.  does not work
16485         very nicely with paging
16487         * libs/Target.c (fvwmlib_keyboard_shortcuts):
16488         performance enhancement
16490         * fvwm/events.c (HandleButtonPress):
16491         fixed (?) some problem with passing the raise click in ctf to the app
16493         * fvwm/add_window.c (Reborder):
16494         * fvwm/virtual.c (MoveViewport):
16495         (MapDesk):
16496         (UnmapDesk):
16497         * fvwm/session.c (SaveWindowStates):
16498         * fvwm/fvwmdebug.c (DB_WI_WINDOWS):
16499         don't access stack_next and stack_prev directly but use the access
16500         functions from stack.h
16502         * fvwm/stack.c (remove_window_from_stack_ring):
16503         (add_window_to_stack_ring_after):
16504         safety patch
16506         * fvwm/add_window.c (adjust_fvwm_internal_windows):
16507         (destroy_window):
16508         when a window becomes scheduled for destruction, remove all traces of it
16509         from the fvwm internal variable so its not accessed accidentally when
16510         its fields are no longer valid
16512 2001-11-05  Mikhael Goikhman  <migo@homemail.com>
16514         * fvwm/borders.c:
16515         fixed compilation of I18N_MB
16517 2001-10-30  Mikhael Goikhman  <migo@homemail.com>
16519         * AUTHORS:
16520         * NEWS:
16521         * acconfig.h:
16522         * configure.in:
16523         * fvwm/borders.c:
16524         * fvwm/builtins.c:
16525         * fvwm/fvwm2.1:
16526         * fvwm/screen.h:
16527         exclude the TitleStyle MultiPixmap feature (only) before forking
16528         ...
16529         and restore it after that
16531         * NEWS:
16532         * configure.in:
16533         change version string to 2.5.0
16535         * NEWS:
16536         added a missing entry for the stable release 2.4.0 (03-Jul-2001);
16537         added a link to the stable version 2.4.4 (not released yet)
16539 2001-10-30  Mikhael Goikhman  <migo@homemail.com>
16541         * NEWS:
16542         * configure.in:
16543         change version string to 2.4.4 before forking
16545         * make_fvwmdist.sh:
16546         strip end of line from date (adjust for a new length)
16548 2001-10-29  olicha  <olivier.chapuis@free.fr>
16550         * fvwm/screen.h (DecorFaceStyle):
16551         Fixed the "lenght" of face_type if FANCY_TITLEBARS is defined,
16552         so that Solid colors work again
16554 2001-10-28  olicha  <olivier.chapuis@free.fr>
16556         * fvwm/module_interface.c (skipModuleAliasToken):
16557         Allows '/' as alias character
16559         * NEWS
16560         Script news
16562 2001-10-27  Mikhael Goikhman  <migo@homemail.com>
16564         * configure.in:
16565         * acconfig.h:
16566         * NEWS:
16567         added --disable-multipixmap-titles for the Suzanne's patch,
16568         the default is enable
16570         * fvwm/fvwm2.1:
16571         some formatting fixes in TitleStyle entry
16573 2001-10-27  Suzanne Britton  <tril@igs.net>
16575         * config.h.in: Added FANCY_TITLEBARS option, off by default
16577         * fvwm/fvwm2.1:
16578         Added info on TitleStyle MultiPixmap
16580         * fvwm/screen.h:
16581         [All changes #ifdeffed FANCY_TITLEBARS]
16582         Added TITLE_PADDING define for fancy titlebar rendering
16583         Added tb_pixmap_enum
16584         Added MultiPixmap to DecorFaceType enum
16585         Added Picture **multi_pixmaps and short multi_stretch_flags
16586         to DecorFace structure
16588         * fvwm/borders.c:
16589         [All changes #ifdeffed FANCY_TITLEBARS except the fix to RedrawButtons]
16590         (DrawButton): Handle UseTitleStyle where TitleStyle is MultiPixmap
16591         (RenderIntoWindow): [new]
16592         (DrawMultiPixmapTitlebar): [new]
16593         (RedrawButtons): Pass the left1right0 parameter properly to DrawButton,
16594         instead of always sending 1
16595         (RedrawTitle):
16596         Call DrawFancyTitlebar for MultiPixmap style
16597         Skip DrawString calls for MultiPixmap style (title is drawn inside
16598         DrawMultiPixmapTitlebar)
16600         * fvwm/builtins.c:
16601         [All changes #ifdeffed FANCY_TITLEBARS]
16602         (FreeDecorFace): Free up multi_pixmaps array for a MultiPixmap decor
16603         (ReadDecorFace): Call ReadMultiPixmapDecor for a MultiPixmap TitleStyle
16604         (ReadMultiPixmapDecor): [new]
16606 2001-10-26  Dan Espen  <dane@mk.telcordia.com>
16608         * NEWS: FvwmForm: Customize pointers, support ISO_Tab key,
16609         buttons can activate on press or release, special pointer during grab,
16610         arrow key command recall.
16612 2001-10-24  Mikhael Goikhman  <migo@homemail.com>
16614         * fvwm/bindings.c (ParseBinding):
16615         * fvwm/bindings.h:
16616         * fvwm/fvwm2.1:
16617         binding commands now do not print error messages with Silent
16619         * fvwm/ConfigFvwmDefaults:
16620         * NEWS:
16621         don't use ReverseOrder in the default Alt-Tab like it was in 2.4.0;
16622         use Silent before Key Help
16624         * fvwm/add_window.c:
16625         changed the broken size hints message to notify the owner
16627         * docs/fvwm.lsm.in:
16628         small changes
16630 2001-10-19  olicha  <olivier.chapuis@free.fr>
16632         * NEWS:
16633         Some FvwmScript news
16635 2001-10-16  olicha  <olivier.chapuis@free.fr>
16637         * NEWS:
16638         Some FvwmScript news
16640 2001-10-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16642         * fvwm/bindings.c (activate_binding):
16643         * libs/Bindings.c (GrabWindowKeyOrButton):
16644         activate mouse/stroke bindings immediately
16646         * fvwm/events.c (HandleButtonPress):
16647         it is possible to bind actions to the 'ClickToFocus' click
16649 2001-10-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16651         * fvwm/virtual.c (HandlePaging):
16652         allow paging during move/resize when pressing keys
16654         * libs/XResource.c (MergeCmdLineResources):
16655         possible core dump fix
16657         * fvwm/add_window.c (setup_window_placement):
16658         fixed core dump
16660         * libs/Bindings.c (AddBinding):
16661         another attempt at cleaning up bindings with "Shift"
16663 2001-10-13  olicha  <olivier.chapuis@free.fr>
16665         * NEWS
16666         FvwmScript news
16668 2001-10-10  Mikhael Goikhman  <migo@homemail.com>
16670         * move_resize.c:
16671         * fvwm/fvwm2.1:
16672         OpaqueMoveSize now accepts "unlimited" or negative argument.
16674 2001-10-09  Mikhael Goikhman  <migo@homemail.com>
16676         * fvwm/fvwm2.1:
16677         added missing "!"
16679 2001-10-08  Dan Espen  <dane@mk.telcordia.com>
16681         * libs/Makefile.am (libfvwm_a_SOURCES): Add new file.
16683         * libs/fvwmlib.h:
16684         * libs/Cursor.c: Create new libs function fvwmCursorNameToIndex.
16686         * fvwm/cursor.c: Extract cursor validation routine to become a libs
16687         routine.
16689 2001-10-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16691         * NEWS, configure.in:
16692         changed version to 2.5.0
16694 2001-10-08  olicha  <olivier.chapuis@free.fr>
16696         * fvwm/borders.c (RedrawTitle):
16697         Fixed drawing of leftJustified stippled title and suppress warnings
16698         in RelieveRectangle w/ RightJustified stippled title
16700 2001-10-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16702         * fvwm/virtual.c (CMD_XineramaSlsSize):
16703         fixed ABR
16705 2001-10-03  olicha  <olivier.chapuis@free.fr>
16707         * fvwm/style.c (CMD_Style):
16708         * fvwm/fvwm2.1
16709         Added the possibility to add an Xinerama screen to the 4 numerics
16710         Iconbox format
16712 2001-10-03  olicha  <olivier.chapuis@free.fr>
16714         * fvwm/icons.c (AutoPlaceIcon):
16715         Fixed a core dump with @c and fixed icon placement if the icon should
16716         not be on the current page
16718 2001-10-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16720         * fvwm/icons.c (AutoPlaceIcon):
16721         * libs/FScreen.c (FScreenParseScreenBit):
16722         added 'w' screen specifier for icon boxes
16724         * fvwm/icons.c (AutoPlaceIcon):
16725         fixed placement of icons in icon boxes on different screen
16727         * fvwm/menus.c (get_menu_options):
16728         reduced code duplication
16730 2001-10-02  olicha  <olivier.chapuis@free.fr>
16732         * fvwm/menus.c (get_menu_options):
16733         fixed Xinerama placement of menu with empty but not null position hints
16735 2001-10-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16737         * fvwm/borders.c (RedrawTitle):
16738         * libs/defaults.h (WINDOW_TITLE_STICKY_GAP):
16739         suppress a warning in RelieveRectangle w/ small sticky windows
16741 2001-09-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16743         * fvwm/menus.c (get_menu_options):
16744         A 'rectangle' context rectangle for menus honours the '@screen' bit
16746         * fvwm/move_resize.c (DisplayPosition):
16747         coordinates of a window are show in relation to the screen, not the page
16749         * libs/FScreen.c (FScreenTranslateCoordinates):
16750         * fvwm/placement.c (PlaceWindow):
16751         * fvwm/add_window.c (setup_window_placement):
16752         Applied patches by Sidik Isani that adds the "fvwmscreen" X resource;
16753         rewrote the library functionality to better match the rest of the
16754         interface
16756         * fvwm/builtins.c (DestroyFvwmDecor):
16757         removed useless code
16759         * fvwm/icons.c (DrawIconWindow):
16760         fixed race condition w/ expanding/collapsing icon titles
16762         * fvwm/windowlist.c (CMD_WindowList):
16763         fixed Xinerama placement of window list when called without options
16765 2001-09-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16767         * libs/FScreen.c (FScreenSLSOnOff):
16768         fixed core dump when calling XineramaSls before XineramaSlsSize
16770         * configure.in:
16771         changed to 2.4.3
16773         * libs/FShape.h (FHaveShapeExtension):
16774         set macro to 1 when compiling w/ shape extension
16776 2001-09-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16778         * libs/Bindings.c (AddBinding):
16779         * fvwm/bindings.c (ParseBinding):
16780         print a warning if a key with the given name does not exist
16781         if there is an upper and a lower case version of the same key name,
16782         always bind to the lower case version; this is problematic if the upper
16783         case version is tied to a key without a modifier and the lower case
16784         version is tied to the same key, but with a modifier (or both are tied
16785         to different keys). I hope this good enough.
16787         * libs/Bindings.c (FreeBindingList):
16788         (MatchBindingExactly):
16789         (CollectBindingList):
16790         fixed some problems overriding keys
16791         reduced duplication of logic
16793 2001-09-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16795         * NEWS, configure.in:
16796         changed version to 2.5.0
16798 2001-09-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16800         * configure.in:
16801         changed version to 2.4.2
16803 2001-09-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16805         * libs/Colorset.c:
16806         (SetWindowBackground):
16807         (SetRectangleBackground):
16808         * fvwm/builtins.c (CMD_WindowShade):
16809         * fvwm/add_window.c:
16810         (setup_style_and_decor):
16811         * fvwm/icons.c:
16812         (CreateIconWindow):
16813         (GetXPMFile):
16814         (GetIconWindow):
16815         (GetIconBitmap):
16816         * fvwm/events.c:
16817         (HandleConfigureRequest):
16818         (HandleShapeNotify):
16819         (InitEventHandlerJumpTable):
16820         * fvwm/borders.c (struct):
16821         (SetupFrame):
16822         (SetShape):
16823         * fvwm/decorations.c (SelectDecor):
16824         * fvwm/fvwm.c:
16825         (main):
16826         (setVersionInfo):
16827         * fvwm/externs.h:
16828         * fvwm/fvwm.h (FvwmWindow):
16829         * libs/FShape.h:
16830         * libs/FShape.c:
16831         moved shape support to library; its no longer necessary to
16832         '#ifdef SHAPE' any code
16834         * fvwm/borders.c (RedrawButtons):
16835         (RedrawTitle):
16836         fixed top border hilight drawing of title buttons
16838         * libs/Graphics.c (do_relieve_rectangle):
16839         (RelieveRectangle):
16840         (RelieveRectangle2):
16841         allow alternate shading for title buttons
16843 2001-09-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16845         **/*.1:
16846         Applied man page patch by Dmitry Yu. Bolkhovityanov:
16847         Add a formal description of how fvwm maintains module's configs
16848         Change manpages of individual modules to refer to fvwm2(1) for
16849         details about specifying configuration
16851         * fvwm/add_window.c (setup_window_placement):
16852         desk and page can now really be given as X resources a la
16853           xterm.desk: 1
16855         * libs/XResource.c (GetResourceString):
16856         resource -> lower case, class -> upper case
16857         changed signature
16859         * configure.in:
16860         changed version to 2.5.0
16862         * Makefile.am (distcheck2):
16863         build distcheck before dist2; save a few seconds if the build fails
16865         * libs/alloca.c:
16866         * libs/ClientMsg.c:
16867         * libs/envvar.c:
16868         * libs/Event.c:
16869         * libs/fvwmrect.c:
16870         * libs/gethostname.c:
16871         * libs/Grab.c:
16872         * libs/Pointer.c:
16873         * libs/safemalloc.c:
16874         * libs/strcasecmp.c:
16875         * libs/strdup.c:
16876         * libs/strerror.c:
16877         * libs/strncasecmp.c:
16878         * libs/usleep.c:
16879         * libs/wild.c:
16880         * libs/WinMagic.c:
16881         * libs/XError.c:
16882         * libs/Graphics.c:
16883         include config.h
16885         * configure.in:
16886         changed version to 2.4.1 again
16888 2001-09-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16890         * libs/Bindings.c (FvwmStringToKeysym):
16891         try both cases of the first letter of a key name
16893         * fvwm/ConfigFvwmDefaults:
16894         * fvwm/windowlist.c (winCompareReverse):
16895         (CMD_WindowList):
16896         new WindowList option ReverseOrder; use the new option in the default
16897         Alt-Tab binding. This makes it possible to hit Alt-Tab repeatedly to
16898         cycle through the whole window list. The old behaviour only toggled
16899         between two windows. Also, a simple Alt-Tab can be used to switch to
16900         the next window instead of Alt-Tab-Tab.
16902         * libs/FScreen.c (FScreenInit):
16903         fixed a Xinerama crash
16905         * configure.in:
16906         print a verbose error message and exit if X11 headers and libraries
16907         are not found
16909 2001-09-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16911         * fvwm/fvwm.c (main):
16912         * libs/FShape.c:
16913         * libs/FShape.h:
16914         new library for X shape encapsulation
16916         * fvwm/builtins.c (CMD_WindowShade):
16917         * fvwm/borders.c (SetupFrame):
16918         fixed shading of windows without title and border
16919         fixed shading of shaped windows; fixes bug #732
16921         * fvwm/builtins.c (CMD_SetEnv):
16922         calling SetEnv without a value is the same as UnsetEnv
16924 2001-09-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16926         * fvwm/events.c (HandleReparentNotify):
16927         fixed vanishing windows in rapid map/unmap cycles; bug #770
16929         * fvwm/add_window.c (hide_screen):
16930         fixed possible BadWindow error
16932 2001-09-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16934         * fvwm/virtual.c (MoveViewport):
16935         (goto_desk):
16936         (CMD_GotoDeskAndPage):
16937         (CMD_GotoPage):
16938         GotoDeskAndPage records its own history of last visited desk/page
16940         * libs/FScreen.c (FScreenInit):
16941         fixed a memory allocation bug pointed out by Giuseppe Della Ricca
16943 2001-09-05  olicha  <olivier.chapuis@free.fr>
16945         * fvwm/session.c (MatchWinToSM):
16946         * fvwm/add_window.c (setup_window_structure):
16947         * fvwm/move_resize.c (moveLoop):
16948         Fixed PlacedByButton3 condition
16950 2001-09-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16952         * libs/FScreen.c:
16953         * fvwm/functions.c (func_config):
16954         * fvwm/module_interface.c (broadcast_xinerama_state):
16955         * fvwm/virtual.c (CMD_Xinerama):
16956         (CMD_XineramaPrimaryScreen):
16957         (CMD_XineramaSls):
16958         (CMD_XineramaSlsSize):
16959         added sls support
16960         split Xinerama command into Xinerama, XineramaPrimaryScreen,
16961         XineramaSls and XineramaSlsSize
16962         restructured parts of the FScreen code
16964         * fvwm/functions.c (func_config):
16965         new commands XineramaPrimaryScreen, XineramaSls and XineramaSlsSize
16967         * libs/Graphics.c (RelieveRectangle):
16968         allow calling the function with w == 0 or h == 0 without a message
16970         * fvwm/window_flags.h (SET_STYLE_DELETED):
16971         * fvwm/style.c (CMD_DestroyStyle):
16972         (check_window_style_change):
16973         * fvwm/fvwm.h (window_style):
16974         update windows when a style is deleted
16976         * configure.in:
16977         fixed xpm detection problem caused by wrong library order
16979 2001-09-05  olicha  <olivier.chapuis@free.fr>
16981         * NEWS: PlacedByFvwm
16983 2001-09-04  Dan Espen  <dane@mk.telcordia.com>
16985         * fvwm/fvwm2.1 (PlacedByFvwm): Grammar.
16987 2001-09-04  olicha  <olivier.chapuis@free.fr>
16989         * fvwm/fvwm.h:
16990         * fvwm/windows_flags.h:
16991         * fvwm/placement.c (PlaceWindow):
16992         * fvwm/add_window.c (setup_window_structure):
16993         * fvwm/conditional.c (CreateConditionMask):
16994         * fvwm/session.c (get_version_string):
16995         (MatchWinToSM):
16996         * fvwm/fvwm2.1:
16997         Added a new windows_flags is_placed_by_fvwm and a new condition
16998         PlacedByFvwm
17000 2001-09-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17002         * fvwm/focus.c (focus_grab_buttons):
17003         (MoveFocus):
17004         disabled xt/double click patch for now
17006 2001-09-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17008         * libs/Graphics.c (RelieveRectangle):
17009         print a warning if one of the dimensions is <= 0
17011         * fvwm/placement.c (PlaceWindow):
17012         take care of windows that have both, PPosition and USPosition set
17013         take care of transient windows that have neither PPosition nor
17014         USPosition set
17016 2001-09-01  olicha  <olivier.chapuis@free.fr>
17018         * libs/FScreen.c (FScreenInit):
17019         Fixed the position of the xinerama emulation delimiters
17021 2001-08-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17023         * fvwm/fvwm2.1:
17024         Xinerama introduction
17026         * fvwm/icons.c (AutoPlaceIcon):
17027         try to place icons of screen with the window center, and if that fails
17028         on any screen
17030         * libs/FScreen.c (FScreenGetScrRect):
17031         performance improvement for non-xinerama systems
17033         * fvwm/update.c (apply_window_updates):
17034         (flush_window_updates):
17035         update icon boxes and icon position when xinerama layout changes
17037         * fvwm/icons.c (AutoPlaceIcon):
17038         limit placement of icons using no icon box to screen boundaries
17039         adapt icon boxes to xinerama layout whenever used
17041         * fvwm/placement.c (PlaceWindow):
17042         * fvwm/style.c (CMD_Style):
17043         (check_window_style_change):
17044         * fvwm/style.h (SUSE_NO_USPOSITION):
17045         (SUSE_NO_TRANSIENT_PPOSITION):
17046         (SUSE_NO_TRANSIENT_USPOSITION):
17047         * fvwm/fvwm.h (struct):
17048         implemented new styles NoUSPosition/UseUSPosition,
17049         NoTransientPPosition/UseTransientPPosition,
17050         NoTransientUSPosition/UseTransientUSPosition.
17051         These work exactly like NoPPosition/UsePPosition.
17052         Transient windows ignore the window position if neither the PPosition
17053         nor the USPosition hint is set.
17055 2001-08-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17057         * fvwm/focus.c (restore_focus_after_unmap):
17058         fixed a bug transfering the focus when a window was iconified
17060 2001-08-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17062         * fvwm/conditional.c (MatchesConditionMask):
17063         * fvwm/move_resize.c (position_geometry_window):
17064         * fvwm/placement.c (PlaceWindow):
17065         * fvwm/menus.c (pop_menu_up):
17066         * fvwm/move_resize.c (move_window_doit):
17067         * fvwm/icons.c (do_all_iconboxes):
17068         * fvwm/placement.c (PlaceWindow):
17069         * fvwm/menus.c (update_menu):
17070         adapted to new FScreen... signatures
17072         * libs/FScreen.c (FScreenClipToScreen):
17073         (FScreenGetScrCenterCenter):
17074         (FScreenCenterCurrent):
17075         (FScreenCenterPrimary):
17076         (FScreenGetCurrent00):
17077         (FScreenGetGlobalScrRect):
17078         (FScreenGetPrimaryScrRect):
17079         (FScreenGetScrRect):
17080         (FScreenIsRectangleOnScreen):
17081         unified all the FSCreen... functions using a common signature, removed
17082         most old functions
17084         * fvwm/style.c (CMD_Style):
17085         init icon box screen
17087         * fvwm/move_resize.c (move_window_doit):
17088         (CMD_Maximize):
17089         * libs/Makefile.am:
17090         * libs/XineramaSupport.c:
17091         * libs/XineramaSupport.h:
17092         * libs/FScreen.c:
17093         exported and renamed screen defines
17095         * libs/FScreen.h:
17096         renamed files
17098         * fvwm/virtual.c:
17099         * fvwm/style.c:
17100         * fvwm/placement.c:
17101         * fvwm/move_resize.c:
17102         * fvwm/module_interface.c:
17103         * fvwm/modconf.c:
17104         * fvwm/menus.c:
17105         * fvwm/icons.c:
17106         * fvwm/fvwm.c:
17107         * fvwm/conditional.c:
17108         * libs/XineramaSupport.c:
17109         renamed all XineramaSupport...() functions to FScreen...()
17111         * fvwm/style.c (CMD_Style):
17112         -Wall fix
17114 2001-08-25  Dan Espen  <dane@mk.telcordia.com>
17116         * fvwm/style.c (CMD_Style):
17117         * fvwm/fvwm.h (icon_boxes_struct): Add screen to iconbox struct when
17118         using geometry spec.
17120 2001-08-25  Mikhael Goikhman  <migo@homemail.com>
17122         * libs/Strings.c:
17123         * libs/Strings.h:
17124         new function QuoteString() to add and escape single quotes to strings
17126         * fvwm/menus.c (MenuInteraction):
17127         quote both missing function name and menu name for
17128         MissingSubmenuFunction
17130         * fvwm/functions.c (expand):
17131         use QuoteString()
17133 2001-08-25  Dan Espen  <dane@mk.telcordia.com>
17135         * fvwm/style.c (CMD_Style): Fix up iconboxes using negative geom specs.
17137 2001-08-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17139         * fvwm/cursor.c (CMD_CursorStyle):
17140         * fvwm/icons.c (GetXPMFile):
17141         * libs/Colorset.c (SetWindowBackground):
17142         -Wall fixes
17144         * libs/Bindings.c (AddBinding):
17145         tired to help with problem binding keys that have a keycode with no
17146         modifiers and another keycode with some modifiers pressed, e.g.
17147         kc 95 = F11, kc 67 = F1, kc 67 + shift = F11, which caused pressing
17148         F1 generating the actioon bound to F11 sometimes
17150         * fvwm/focus.c (focus_grab_buttons):
17151         -Wall fix
17153 2001-08-23  Dan Espen  <dane@mk.telcordia.com>
17155         * libs/Bindings.c (MatchBinding): Unify XDisplayKeycodes avoidance.
17157 2001-08-20  Bob Woodside  <proteus@pcnet.com>
17159         * fvwm/focus.c (MoveFocus, focus_grab_buttons): Fixed passive button
17160         grab synchronization so apps using XtTranslations to catch double-
17161         clicks don't get confused by extraneous Leave/EnterNotify events.
17162         This fixes the "xfm/moxfm don't see double-clicks" problem.
17164 2001-08-20  Dan Espen  <dane@mk.telcordia.com>
17166         * fvwm/icons.c (AutoPlaceIcon): Fix bug.
17168 2001-08-19  Dan Espen  <dane@mk.telcordia.com>
17170         * fvwm/icons.c (AutoPlaceIcon): Apply screen dimensions as icon is
17171         placed.
17173         * fvwm/style.c (CMD_Style): Don't apply screen dimensions to iconbox
17174         until later when the window is actually placed.
17176         * fvwm/fvwm.h (icon_boxes_struct):  Save  sign  for later  screen
17177         position calculation.
17179 2001-08-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17181         * fvwm/update.c (flush_window_updates):
17182         * fvwm/screen.h (ScreenInfo):
17183         * fvwm/virtual.c (CMD_Xinerama):
17185         * fvwm/move_resize.c (CMD_Maximize):
17186         * fvwm/placement.c (PlaceWindow):
17187         * libs/XineramaSupport.c (XineramaSupportGetNumberedScrRect):
17188         renamed function
17190         * fvwm/fvwm2.1:
17191         describe new maximize options
17193         * fvwm/move_resize.c (MaximizeWidth):
17194         (MaximizeHeight):
17195         (CMD_Maximize):
17196         applied Dmitry's Xinerama patch for Maximize command
17197         replaced "global" and "absolute" with "screen" which is more flexible
17199 2001-08-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17201         * libs/Parse.c (SkipQuote):
17202         fixed a bug in handling of caller specified quote pairs
17204         * fvwm/move_resize.c (CMD_Maximize):
17205         keep window on correct page when viewport does not start on a page
17206         boundary
17208         * libs/XError.c (error_name):
17209         (request_name):
17210         fixed core dump in error handling
17212 2001-08-15  Mikhael Goikhman  <migo@homemail.com>
17214         * configure.in:
17215         * acinclude.m4:
17216         * INSTALL:
17217         * INSTALL.fvwm:
17218         renamed --disable-gnome to --disable-gnome-hints;
17219         documented configure options --with-gnome*;
17220         small improvements in documentation;
17221         use underscore in version instead of dash that causes rpm problems
17223 2001-08-14  Mikhael Goikhman  <migo@homemail.com>
17225         * libs/Makefile.am:
17226         added fvwmrect.h to dist
17228 2001-08-14  Dan Espen  <dane@mk.telcordia.com>
17230         * libs/XineramaSupport.c: Disable debug printing.
17232 2001-08-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17234         * libs/defaults.h (DEFAULT_MENU_STYLE):
17235         reset colour sets in default menu style too
17237 2001-08-13  Mikhael Goikhman  <migo@homemail.com>
17239         * builtins.c:
17240         * events.c:
17241         completed the libstroke-0.5 compatibility fix
17243 2001-08-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17245         * fvwm/move_resize.c (draw_move_resize_grid):
17246         fixed drawing of resize grid when invoked from button or key press
17248         * fvwm/placement.c (PlaceWindow):
17249         rewrote a condition to improve readability
17250         fixed StartsOn... w/ SkipMapping
17252 2001-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17254         * fvwm/session.c (MatchWinToSM):
17255         (LoadWindowStates):
17256         (SaveWindowStates):
17257         * fvwm/move_resize.c (CMD_Resize):
17258         * fvwm/events.c (HandlePropertyNotify):
17259         (HandleConfigureRequest):
17260         * fvwm/move_resize.c (CMD_ResizeMove):
17261         (CMD_Maximize):
17262         (CMD_Resize):
17263         * fvwm/update.c (apply_window_updates):
17264         * fvwm/add_window.c (AddWindow):
17265         * fvwm/geometry.c (constrain_size):
17266         (gravity_constrain_size):
17267         the Resize command honors the window gravity
17268         changing the size increment of maximized windows no longer shrinks the
17269         window
17271         * fvwm/icons.c:
17272         keep expanded icon titles on screen
17274 2001-08-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17276         * fvwm/icons.c (do_all_iconboxes):
17277         default icon box fills the primary screen
17279         * libs/XineramaSupport.c (XineramaSupportParseScreenBit):
17280         fixed default_screen argument
17282         * fvwm/style.c (merge_styles):
17283         * fvwm/fvwm.h (window_style):
17284         * fvwm/style.h (SSET_START_SCREEN):
17285         * fvwm/add_window.c (setup_window_placement):
17286         * fvwm/placement.c (PlaceWindow):
17287         (CMD_PlaceAgain):
17288         implemented StartsOnScreen style
17290         * fvwm/placement.c (PlaceWindow):
17291         (test_fit):
17292         (get_next_x):
17293         (get_next_y):
17294         (CleverPlacement):
17295         (SmartPlacement):
17296         Place new windows on xinerama screens
17298         * libs/XineramaSupport.c (XineramaSupportParseGeometryWithScreen):
17299         fixed core dump in debug output
17301 2001-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17303         * fvwm/placement.c:
17304         removed unused variable
17306 2001-08-07  olicha  <olivier.chapuis@free.fr>
17308         * NEWS:
17309         FvwmIconBox, FvwmTaskBar and FvwmWinList support aliases
17311 2001-08-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17313         * fvwm/virtual.c (CMD_Xinerama):
17314         replaced XineramaEnable and ...Disable with XineramaCommand
17316         * libs/XineramaSupport.c (XineramaSupportParseScreenBit):
17317         (XineramaSupportGetScreenArgument):
17318         new functions
17320         * fvwm/functions.c (func_config):
17321         * fvwm/move_resize.c (move_window_doit):
17322         (CMD_Move):
17323         (CMD_AnimatedMove):
17324         (CMD_MoveToPage):
17325         (CMD_MoveToScreen):
17326         (handle_stick):
17327         added new command MoveToScreen
17329 2001-08-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17331         * libs/fvwmrect.c:
17332         * libs/fvwmrect.h:
17333         new library files
17335         * libs/XineramaSupport.c (XineramaSupportParseGeometry):
17336         fixed parsing of negative geometries
17337         (XineramaSupportParseGeometryWithScreen):
17338         made global
17339         (XineramaSupportGetNumberedScreenRect):
17340         new function
17342         * sample.fvwmrc/system.fvwm2rc:
17343         * sample.fvwmrc/new-features:
17344         * sample.fvwmrc/system.fvwm2rc-sample-95:
17345         * sample.fvwmrc/system.fvwm2rc-sample-2:
17346         * sample.fvwmrc/system.fvwm2rc-sample-1:
17347         * fvwm/fvwm2.1:
17348         updated for new condition
17350         * fvwm/conditional.c (CreateConditionMask):
17351         (MatchesConditionMask):
17352         * fvwm/fvwm.h (WindowConditionMask):
17353         implemented new condition AcceptsFocus to cope with applications like
17354         xclock that have circulatehit but don't take focus
17356 2001-08-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17358         * libs/XineramaSupport.c (XineramaSupportParseGeometry):
17359         handle Xinerama screens
17361         * fvwm/style.c (CMD_Style):
17362         * fvwm/menus.c (get_menu_options):
17363         cope with Xinerama like geometries with screen info
17365         * fvwm/virtual.c (CMD_XineramaEnable):
17366         XineramaEnable optionally takes the number of the primary screen as its
17367         argument
17369         * fvwm/events.c (GetContext):
17370         reindented code
17372         * fvwm/virtual.c (HandlePaging):
17373         * fvwm/events.c (HandleButtonPress):
17374         * fvwm/events.h (XEVMASK_PANFW):
17375         fixed button and key event handling over pan frames; fixes bug #752
17377         * fvwm/menus.c (get_menu_options):
17378         fixed Xinerama placement of menus without options
17380 2001-08-01  Mikhael Goikhman  <migo@homemail.com>
17382         * NEWS:
17383         * fvwm/borders.c:
17384         * fvwm/builtins.c:
17385         * fvwm/fvwm.c:
17386         * fvwm/screen.h:
17387         Color enhancements in button vectors: @2 is bg color, @3 is fg color.
17388         In addition to the existing: @0 is shadow color, @1 is hilight color.
17390         * fvwm/fvwm2.1:
17391         Added the formal description of Vector that was absent.
17393 2001-08-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17395         * fvwm/fvwm2.1:
17396         some man page corrections
17398 2001-07-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17400         * fvwm/move_resize.c (handle_stick):
17401         also redraw buttons when a window becomes sticky/slippery to make sure
17402         that MWMDecorStick buttons are updated too; fixes bug #749
17404 2001-07-30  Mikhael Goikhman  <migo@homemail.com>
17406         * NEWS:
17407         documented previous changes
17409         * configure.in:
17410         improved output spacing
17412         * fvwm/fvwm2.1:
17413         minor typo
17415 2001-07-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17417         * libs/XineramaSupport.c (XineramaSupportConfigureModule):
17418         * fvwm/modconf.c (send_xinerama_state):
17419         * fvwm/module_interface.c (broadcast_xinerama_state):
17420         * libs/defaults.h:
17421         revised module support for Xinerama
17423         * libs/XineramaSupport.c (XineramaSupportParseGeometryWithScreen):
17424         (XineramaSupportParseGeometry):
17425         (XineramaSupportGetGeometry):
17426         make interface compatible with XineramaSupportParseGeometry().
17427         (XineramaSupportGetPrimaryScreen):
17428         new function
17430         * fvwm/stack.c (raise_over_unmanaged):
17431         fixed restacking of windows with RaiseOverUnmanaged - windows were
17432         raised in reverse order so that the top window became the bottom
17433         window of the ones that were raised
17434         also, ignore Scr.NoFocusWin and all InputOnly windows for raising since
17435         these are invisible
17437 2001-07-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17439         * sample.fvwmrc/system.fvwm2rc-sample-95:
17440         fixed syntax of BugOpts command
17442         * fvwm/ConfigFvwmDefaults:
17443         resize window when clicking on the sides of the window by default
17444         instead of moving it
17446         * fvwm/events.c (HandleEnterNotify):
17447         do not delete MouseFocus when pointer moves from one particular sub
17448         window of a frame to another one.  Helps with xv/xmms vs unclutter
17449         interaction and also with MouseFocus vs. Open Look applications
17451         * fvwm/move_resize.c (DoSnapAttract):
17452         * libs/XineramaSupport.c (XineramaSupportGetResistanceRect):
17453         fixed snapping to Xinerama screen edges
17454         (XineramaSupportIsEnabled):
17455         return False is the X server provides only a single screen
17457         * fvwm/fvwm2.1:
17458         Added descriptions of conditions CurrentDesk, CurrentPage,
17459         CurrentScreen, CurrentGlobalPage, CurrentPageAnyDesk and
17460         CurrentGlobalPageAnyDesk
17462         * fvwm/fvwm.h (rectangle):
17463         (position):
17464         typedefs moved to libs/fvwmlib.h
17466         * fvwm/conditional.c (MatchesConditionMask):
17467         * fvwm/fvwm.h (WindowConditionMask):
17468         * fvwm/conditional.c:
17469         introduced new conditions CurrentGlobalPage and CurrentGlobalPageAnyDesk
17470         for Xinerama support
17472         * fvwm/modconf.c (CMD_Send_ConfigInfo):
17473         (send_xinerama_state):
17474         * fvwm/module_interface.c (broadcast_xinerama_state):
17475         * libs/XineramaSupport.c (XineramaSUpportIsEnabled):
17476         * libs/defaults.h (DEFAULT_XINERAMA_DISABLED):
17477         communicate xinerama state at module startup
17479 2001-07-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17481         * libs/XineramaSupport.c:
17482         next Xinerama patch
17484 2001-07-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17486         * fvwm/move_resize.c (moveLoop):
17487         windows were lost off screen w/ non opaque interactive move when motion
17488         was aborted with Escape on a different page that it was started
17490         * fvwm/move_resize.c (position_geometry_window):
17491         (DisplayPosition):
17492         (DisplaySize):
17493         (InteractiveMove):
17494         (CMD_Resize):
17495         (moveLoop):
17496         (CMD_Resize):
17497         (DoResize):
17498         * libs/XineramaSupport.c (GetMouseXY):
17499         (XineramaSupportCenterCurrent):
17500         (XineramaSupportGetCurrent00):
17501         (XineramaSupportGetCurrentScrRect):
17502         allow to pass in an event with the pointer position
17503         minimize number of XQueryPointer calls in interactive move/resize
17505         * libs/defaults.h:
17506         * fvwm/move_resize.c (resize_geometry_window):
17507         (DisplayPosition):
17508         (DisplaySize):
17509         border width of geometry window moved to defaults.h
17510         moved strings for size window formatting to defaults.h
17511         reworked calculations of geometry window dimensions
17513         * fvwm/move_resize.c (resize_geometry_window):
17514         (position_geometry_window):
17515         (DisplaySize):
17516         (InteractiveMove):
17517         (CMD_Resize):
17518         * fvwm/builtins.c (ApplyDefaultFontAndColors):
17519         * fvwm/fvwm.c (main):
17520         funtions ResizeSizeWindow and PositionSizeWindow renamed to
17521         resize_geometry_window and position_geometry_window
17523         * fvwm/fvwm.c (main):
17524         fixed resizing geometry window before creating it
17526         * fvwm/move_resize.c (switch_move_resize_grid):
17527         (MoveOutline):
17528         * fvwm/virtual.c (HandlePaging):
17529         renamed MoveOutline to draw_move_resize_grid and made static
17530         new function switch_move_resize_grid for external calls
17531         delete grid before moving the geometry window to get rid of arifacts of
17532         the grid
17534 2001-07-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17536         * libs/XineramaSupport.c (XineramaSupportInit):
17537         make the blank area in Xinerama emulation usable again
17539 2001-07-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17541         * fvwm/menus.c (update_menu):
17542         (pop_menu_up):
17543         (make_menu):
17544         (calculate_item_sizes):
17545         (size_menu_horizontally):
17546         (size_menu_vertically):
17547         menus are resized to fit their Xinerama screen every time they are
17548         popped up and the screen size has changed
17550 2001-07-23  olicha  <olivier.chapuis@free.fr>
17552         * libs/XineramaSupport.c (XineramaSupportInit):
17553         Draw the xinerama simulation screens with orr windows
17555 2001-07-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17557         * fvwm/windowlist.c (CMD_WindowList):
17558         fixed windowlist placement w/ Xinerama
17560 2001-07-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17562         * fvwm/menus.c (pop_menu_up):
17563         fixed calculations that force a menu on screen w/ Xinerama
17565         * fvwm/move_resize.c (DoSnapAttract):
17566         removed some code that slipped in with xinerama patch and broke
17567         vertical SnapAttraction
17569         * fvwm/virtual.c (CMD_EdgeResistance):
17570         removed debug code
17572         * libs/XineramaSupport.c (XineramaSupportClipToScreen):
17573         take reference position src_x/src_y to determine screen
17575         * fvwm/windowlist.c (CMD_WindowList):
17576         * fvwm/menus.c (get_menu_options):
17577         (get_popup_options):
17578         (MenuInteraction):
17579         (pop_menu_up):
17580         handle Xinerama screens for positioning menus w/ posthints
17582         * fvwm/menus.c (get_menu_options):
17583         renamed function
17584         fix for icon/window context rectangle when window is in wrong state
17586 2001-07-22  Mikhael Goikhman  <migo@homemail.com>
17588         * configure.in:
17589         s/XINERAMA/HAVE_XINERAMA/, now #ifdef'd xinerama code is finally ever
17590         compiled in; fixed linking by adding -lXinerama; small corrections
17592 2001-07-22  Dan Espen  <dane@mk.telcordia.com>
17594         * fvwm/fvwm2.1: Remove some test code, fix remaining .IP commands.
17596 2001-07-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17598         * libs/XineramaSupport.c (XineramaSupportInit):
17599         added xinerama emulation for developers
17601         * fvwm/virtual.c (CMD_XineramaEnable):
17602         (CMD_XineramaDisable):
17603         * fvwm/module_interface.c (BroadcastConfigInfoString):
17604         added function to communicate Xinerama on/off to modules
17606         * fvwm/module_interface.c:
17607         include time.h to fix warning
17608         * libs/XineramaSupport.c:
17609         * fvwm/fvwm.c (setVersionInfo):
17610         * fvwm/Makefile.am:
17611         * configure.in:
17612         * acconfig.h:
17613         cleanded up xinerama detection
17614         added shape detection
17616 2001-07-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17618         * fvwm/fvwm2.1:
17619         Added Xinerama introduction
17621         * fvwm/fvwm.c (setVersionInfo):
17622         print xinerama support
17624         * fvwm/conditional.c (CreateConditionMask):
17625         added CirculateHitShaded option for conditional commands that was
17626         described in the man page but not implemented
17628         * fvwm/fvwm.h (WindowConditionMask):
17629         removed unused flags
17631         * fvwm/conditional.c (MatchesConditionMask):
17632         fixed CirculateHitIcon option in conditional commands
17634         * fvwm/fvwm2.1:
17635         reformatted man page source to improve readability
17636         fixed some source formatting bugs
17638         * libs/XineramaSupport.c (GetMouseXY):
17639         don't poll the pointer if there is only one screen or if xinerama is
17640         turned off
17642         * fvwm/fvwm2.1:
17643         * fvwm/fvwm.c (main):
17644         removed -noxinerama option
17646         * fvwm/fvwm.c (main):
17647         size window is positioned and sized in move_resize.c
17649         * libs/XineramaSupport.c:
17650         reindented file
17652         * configure.in:
17653         print Xinerama support in configure summary
17655         * **/*:
17656         applied Xinerama patch by Dmitry Yu. Bolkhovityanov
17658 2001-07-17  Mikhael Goikhman  <migo@homemail.com>
17660         * acconfig.h:
17661         * acinclude.m4:
17662         * configure.in:
17663         implemented a new convenient autoconf macro mg_DEFINE_IF_NOT;
17664         define missing macros needed for old AIX keysymdef and old stroke.h
17666         * fvwm/bindings.c:
17667         * fvwm/menus.c:
17668         remove the previous compilation fixes, now handled by configure
17670 2001-07-15  Dan Espen  <dane@mk.telcordia.com>
17672         * fvwm/fvwm2.1: Remove .BI with more than 6 args.
17674 2001-07-15  Mikhael Goikhman  <migo@homemail.com>
17676         * bindings.c:
17677         use libstroke-0.5 constant names while still supporting 0.3/0.4
17679         * menus.c:
17680         compiling fix for old AIX, which does not define XK_Page_Up/Down
17682         * module_interface.c:
17683         minor compiling fix for some proprietary preprocessors
17685 2001-07-10  Mikhael Goikhman  <migo@homemail.com>
17687         * fvwm/fvwm2.1:
17688         use more compatible and structured syntax in SYNOPSIS
17690 2001-07-06  Mikhael Goikhman  <migo@homemail.com>
17692         * acinclude.m4:
17693         Replaced forgotten instances of IMLIB_CFLAGS and IMLIB_LIBS to
17694         GDK_IMLIB_*.  This fixes "make FvwmGtk" on systems with bogus
17695         imlib-config.
17697 2001-07-05  Mikhael Goikhman  <migo@homemail.com>
17699         * configure.in:
17700         changed version to 2.4.1
17702         * acinclude.m4:
17703         small fix that should solve the problem with running autoconf
17704         (autoreconf is ok) from autoconf-2.50;
17705         applied a patch that adds gtk include dirs to gnome include dirs
17707 2001-07-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17709         * NEWS, configure.in:
17710         changed version to 2.4.0.1
17712         * *: fvwm 2.4 has been released :-))