Document that Alt during Move will disable SnapAttraction
[fvwm.git] / ChangeLog
blobe921f61b6af51fe56142395c8586710f69b15188
1 2010-08-31  Gerard Vermeulen <gav451@gmail.org>
2         * fvwm/move_resize.c (GetOnePositionArgument):
3         Parse commands like 'Move w+-5p w+-2p'.
5 2010-08-09  Thomas Adam <thomas@xteddy.org>
6         * NEWS:
7         * configure.ac:
8         Updated for the FVWM 2.5.31 release.
10 2010-08-09  Thomas Adam <thomas@xteddy.org>
11         * NEWS:
12         * configure.ac:
13         Updated for the FVWM 2.5.31 release.
15 2010-08-07  Thomas Adam <thomas@xteddy.org>
16         * fvwm/builtins.c (CMD_Exec):
17         Remove extraneous whitespace.
19 2010-07-28  Thomas Adam <thomas@xteddy.org>
20         * fvwm/builtins.c (CMD_Exec):
21         Close fd if it's not opened successfully.
23 2010-07-28  Thomas Adam <thomas@xteddy.org>
24         * fvwm/update.c (apply_window_updates):
25         * NEWS:
26         Copy over State settings on WindowStyle command.
28         When merging/updating style hints for recaptured windows, ensure we
29         preserve any State hints set on the window.
31 2010-05-22  Thomas Adam <thomas@xteddy.org>
32         * fvwm/windowlist.c (CMD_WindowList):
33         * NEWS:
34         When reporting on a window's width and height ensure we use the
35         orig_hints XSizeHints struct for calculating resize increment
36         geometries.
38 2010-05-09  Thomas Adam <thomas@xteddy.org>
39         * NEWS:
40         * configure.ac:
41         Update CVS to use 2.5.31
43 2010-05-09  Thomas Adam <thomas@xteddy.org>
44         * NEWS:
45         * configure.ac:
46         * docs/ANNOUNCE:
47         Updated for the FVWM 2.5.30 release.
49 2010-05-09  Thomas Adam <thomas@xteddy.org>
50         * NEWS:
51         Cosmetic clean up for NEWS.
53 2010-04-28  Dan Espen  <dane@mk.telcordia.com>
54         * fvwm/colorset.c (parse_colorset): Remove bogus error message.
56 2010-04-24  Thomas Adam <thomas@xteddy.org>
57         * libs/Fpng.h:
58         Define version checks for conditional macros.
60         libpng 1.4.0 has different macros for previous version of the same
61         macros in libong 1.2.0, so check for them here.
63 2010-04-18  Thomas Adam <thomas@xteddy.org>
64         * libs/charmap.c (charmap_table_to_string):
65         Don't allow incremental matching of C_ALL for contexts.
67         When printing out bindings, ensure we allow "A" for any/all
68         contexts/modifiers to be matched exactly, so that the context column for
69         bindings matches with what the user put in their config file.
71 2010-04-03  Thomas Adam <thomas@xteddy.org>
72         * NEWS:
73         * configure.ac:
74         Updated for the FVWM 2.5.29 release.
76 2010-04-03  Thomas Adam <thomas@xteddy.org>
77         * libs/Fplay.h:
78         Cull unused functions when compiling against librplay.
80         When compiling with -Werror, ensure we're not trying to use unneeded
81         librplay static functions we ourselves declare.
83 2010-04-03  Thomas Adam <thomas@xteddy.org>
84         * fvwm/placement.c (__pl_minoverlap_get_pos_penalty):
85         Tweak placement calculation for over-zealous windows.
87         Don't adjust a window's position unless it's actually greater than the
88         screen's dimension (i.e., potentially placed off screen.)
90         2010-03-30  Christoph Fritz <chf.fritz@googlemail.com>
91         * fvwm/windowlist.c (CMD_WindowList):
92         Free allocated memory.
94 2010-02-28  Thomas Adam <thomas@xteddy.org>
95         * fvwm/move_resize.c (__resize_step):
96         Don't explicitly send MotionNotify event during Resize (GeometryWindow)
98         When calling DisplaySize() from a resize event performed on a window,
99         ensure we use the window's last event (which will be MotionNotify
100         anyway) otherwise this completely confuses the GeometryWindow as it has
101         to then update itself each time.
103         When using Xinerama/TwinView, the effect is that the GeometryWindow
104         flickers and/or displays itself on the opposite screen to where the
105         pointer is, because the x/y positions don't take into account the
106         location of the pointer from the original hand-crafted event, but are
107         correct from the execute context the window being resized is called in.
109 2010-02-06  Thomas Adam <thomas.adam22@gmail.com>
110         * fvwm/style.c (check_window_style_change):
111         * fvwm/update.c (apply_window_updates):
112         * fvwm/update.h:
113         Propagate Layer changes via Style command on-the-fly.
115         Until there's a distinction between initially-mapped styles and runtime
116         commands, and that currently, Style commands take effect immediately,
117         ensure that for any Layer requests received via Style commands, these
118         too are applied immediately.
120         The previous assumption was that this was only applicable when mapping a
121         new window, but goes against expectations from the user.
123 2010-01-07  Thomas Adam <thomas.adam22@gmail.com>
124         * fvwm/read.c (run_command_file):
125         Restructure how we look for Read files slightly.
127         When searching for files with the Read command, check to see if the file
128         first of all has an absolute path and if so open it.  If it's relative
129         then search for it in either FVWM_USERDIR or FVWM_DATADIR as before.  If
130         the file still can't be found, try and open it outright.  This will
131         allow therefore:
133         ../../some_file
135         as a valid filename -- of course this really only makes sense when
136         invoking fvwm with "-f" on the command-line, as relative paths to config
137         files in this way should be built up using "$."
139 2010-01-05  Thomas Adam <thomas.adam22@gmail.com>
140         * fvwm/menustyle.c (menustyle_copy_face):
141         Fix segfault setting MenuFace pixmap style for menus.
143         As with the tearoff bug from 2010-01-03, ensure we don't try and free a
144         non-existent pixmap from an invalid pointer.
146 2010-01-05  Thomas Adam <thomas.adam22@gmail.com>
147         * fvwm/read.c (run_command_file):
148         Fix opening of files to Read/PipeRead to accept absolute paths.
150         Don't just assume "/" is a valid identifier for opening files.  "./" is
151         just as likely.  Fixes use-case of:
153         fvwm -f ./some_fvwm2rc
155 2010-01-04  Thomas Adam <thomas.adam22@gmail.com>
156         * fvwm/events.c (flush_property_notify):
157         Add atom to struct so it is checked for by test_typed_window_event().
159 2010-01-04  David Fries <David@Fries.net>
160         * fvwm/events.c (test_typed_window_event):
161         * fvwm/events.c (flush_property_notify):
162         Efficiently handle flushing property events of the same type.
164         * fvwm/events.h (test_typed_window_event_args):
165         Add XAtom type to struct.
167 2010-01-04  David Fries <David@Fries.net>
168         * fvwm/virtual.c (HandlePaging):
169         Move no page detect check, it wasn't being hit.
170         * fvwm/move_resize.c (__move_loop):
171         Transform window position to pointer position and back when calling
172         HandlePaging.
174 2010-01-03  Thomas Adam <thomas.adam22@gmail.com>
175         * fvwm/menustyle.c (menustyle_copy_face):
176         Fix segfault when creating a tearoff menu using a Pixmap background.
178         When we copy the original menustyle to the new torn-off menu which
179         contains a background image, don't then update the menu's pixel
180         background color, as this is already free()d for us by an earlier copy
181         call.
183 2009-12-31  Thomas Adam <thomas.adam22@gmail.com>
184         * fvwm/builtins.c (CMD_BugOpts):
185         Remove debug line.
187 2009-12-31  Thomas Adam <thomas.adam22@gmail.com>
188         * fvwm/builtins.c (CMD_BugOpts):
189         * fvwm/fvwm.c (InitVariables):
190         * fvwm/events.c (HandleClientMessage):
191         * fvwm/screen.h:
192         Add new BugOpts QtDragnDropWorkaround option to handle an oddity in how
193         Qt windows handle having ClientMessage events sent to them.
195 2009-12-30  Thomas Adam <thomas.adam22@gmail.com>
196         * fvwm/placement.c (__pl_minoverlap_get_pos_penalty):
197         Fix y-axis offset calculations when using MinOverlapPlacement, by
198         forcing the window on-screen when over-zealous penality calculations
199         don't take into account the size of the window borders.
201 2009-12-26  Thomas Adam <thomas.adam22@gmail.com>
202         * bin/fvwm-convert-2.6.1.in:
203         Add in BUGS section a note that converting over FvwmTheme lines is
204         likely buggy.
206 2009-12-26  Thomas Adam <thomas.adam22@gmail.com>
207         * NEWS:
208         * AUTHORS:
209         * bin/fvwm-convert-2.6.in:
210         * bin/fvwm-convert-2.6.1.in:
211         First pass at a fvwm-convert-2.6 script to convert fvwm-2.4 syntax
212         files.
214 2009-12-19  Thomas Adam <thomas.adam22@gmail.com>
215         * libs/Flocale.c (FlocaleEncodeString):
216         Pre-initialise "len2" to zero, to avoid GCC warning during compilation.
218 2009-12-12  Thomas Adam <thomas.adam22@gmail.com>
219         * fvwm/fvwm.c (StartupStuff):
220         Reset the state of the "Restarting" flag to False when restarting FVWM.
222         * fvwm/events.c (HandleMapRequestKeepRaised):
223         Only run InitialMapCommand when FVWM isn't restarting and all windows
224         have been recaptured.  The window is already mapped by the time FVWM is
225         restarting, and running the InitialMapCommand again only serves to
226         "toggle" the window state (c.f. InitialMapCommand Iconic, etc.)
228 2009-09-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
230         * NEWS:
231         * configure.ac:
232         increased version number to 2.5.29
234         * NEWS:
235         updated for 2.5.28 release
237 2009-08-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
239         * NEWS:
240         * fvwm/ewmh.c (ewmh_ChangeProperty):
241         only convert _NET_WM_ICON hint to long before storing
243 2009-08-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
245         * fvwm/builtins.c (CMD_BugOpts):
246         remove unused variables
248         * NEWS:
249         * fvwm/ewmh.c (ewmh_ChangeProperty):
250         fix storing of CARD32 arrays on 64 bit machines
252         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
253         prevent segmentation fault when reading a bad _NET_WM_ICON hint
255 2009-08-22      Thomas Adam <thomas.adam22@gmail.com>
256         * fvwm/geometry.c (__cs_handle_aspect_ratio):
257         Workaround gcc -O3, by declaring local vars as volatile.  This fixes an
258         otherwise continual loop when resizing windows when keeping aspect
259         ratio (c.f. mplayer.)
261 2009-08-20  Christoph Fritz <chris_honschu(at)gmx.de>
262         * configure.ac:
263         Fix typo in AS_HELP_STRING referring to enable-htmldoc
265 2009-08-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
267         * NEWS:
268         * fvwm/builtins.c (CMD_BugOpts):
269         Fix parsing of BugOpts options lists separated by ',', and
270         restoring to default value when the boolean option is omitted if
271         not inside a list.
273         * NEWS:
274         Change QT to Qt.
276         * NEWS:
277         * libs/Flocale.h:
278         * libs/Ficonv.h (FiconvSetTransliterateUtf8):
279         * libs/Ficonv.c (FiconvSetTransliterateUtf8, translit_csname)
280         (is_translit_supported, set_default_iconv_charsets)
281         (set_iconv_charset_index, FiconvUtf8ToCharset):
282         * fvwm/builtins.c (CMD_BugOpts):
283         Add TransliterateUtf8 bug opt for working around clients
284         which don't care about the WM_NAME value.
286 2009-08-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
288         * NEWS:
289         * fvwm/stack.c (BroadcastRestack):
290         Fix splitting or M_RESTACK packages causing weird window stacking
291         in modules when more than 83 windows are broadcast.
293 2009-08-04  Thomas Adam <thomas.adam22@gmail.com>
294         * configure.ac:
295         Remove dnl comments from configure.ac regarding malloc.h -- it's
296         self-explanatory anyway.
298 2009-08-03  Thomas Adam <thomas.adam22@gmail.com>
299         * configure.ac:
300         Most *BSD platforms are deprecating malloc.h in favout of stdlib.h
301         -- this never used to produce compiler warnings, but things are
302         starting to become more vocal, so don't use this in our
303         ./configure script if we're compiling FVWM on a *BSD system.
305 2009-07-31  Christoph Fritz <chris_honschu(at)gmx.de>
307         * fvwm/style.h:
308         * fvwm/fvwm.h:
309         * fvwm/add_window.c (setup_numeric_vals):
310         add "typedef struct snap_attraction_t"
311         * fvwm/style.c (style_parse_one_style_option):
312         add new SnapAttraction options "None", "ScreenWindows",
313         "ScreenIcons" and "ScreenAll"
314         * fvwm/move_resize.c (DoSnapAttract):
315         Bugfix, option SameType/Icons/Windows did falsely not affect
316         conditions of option "Screen" and option "SameType" snapped
317         falsely icons and windows together. Implement options
318         None/ScreenWindows/ScreenIcons/ScreenAll for differentiated
319         screen edge snapping.
321 2009-07-10  Thomas Adam  <thomas.adam22@gmail.com>
322         * fvwm/add_window.c (setup_window_name_count):
323         * fvwm/add_window.c (setup_icon_name_count):
324         Deprecate these in favour of setup_name_count()
326         * fvwm/add_window.c (setup_name_count):
327         Amalgamate setup_window_name_count and setup_icon_name_count to just
328         one function (very similar code between them.)  Used with
329         IndexedWindowName and IndexedIconName.
331 2009-07-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
333         * NEWS:
334         Fix the options RPlayVolume and RPlayPriority in FvwmEvent.
336         * libs/Fplay.h (Fplay_set, Fplay_get, Frptp_putline)
337         (Frptp_async_putline):
338         Fix ANSI C compatibility.
340         * NEWS:
341         * fvwm/ewmh_names.c (EWMH_WMName):
342         set the HAS_EWMH_WM_NAME flag even if the window name on display
343         isn't changing.
344         (EWMH_WMIconName):
345         same for HAS_EWMH_WM_ICON_NAME
347 2009-07-08  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
349         * NEWS:
350         fix for segfault with RPlatHost directive in FvwmEvent
351         * libs/Makefile.am (libfvwm_a_SOURCES):
352         * libs/Fplay.h:
353         add Fplay.h wrapper header for rplay.h
355         * NEWS:
356         fix debian bug #438132
358 2009-07-06  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
360         * NEWS:
361         * fvwm/style.c (fw_match_style_id):
362         Fix fvwmstyle resource
364 2009-07-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
366         * NEWS:
367         * fvwm/events.c (HandleMapRequestKeepRaised):
368         Make sure that a PropertyNotify on the WM_STATE property is always
369         sent out when a window is requested to be moved to the withdrawn
370         state. (Needed by QT)
372 2009-07-01  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
374         * sample.fvwmrc/DecorMwm:
375         * sample.fvwmrc/DecorWin95:
376         * sample.fvwmrc/new-features:
377         * sample.fvwmrc/system.fvwm2rc:
378         * sample.fvwmrc/system.fvwm2rc-sample-1:
379         * sample.fvwmrc/system.fvwm2rc-sample-2:
380         * sample.fvwmrc/system.fvwm2rc-sample-95:
381         Use !-negation for styles instead of No...
383         * NEWS:
384         fix a typo
386         * sample.fvwmrc/system.fvwm2rc-sample-95:
387         sed -i '/^#*\(+\|AddToMenu\) "[^%"]*%[^%"]*"/s/%\([^"]*\)/%\1%/'
388         sed -i 's/StayOnTop/StaysOnTop/'
389         According to patches by Manoj Srivastava
391 2009-03-17  Mikhael Goikhman  <migo@homemail.com>
393         * fvwm/externs.h:
394         * fvwm/fvwm.c:
395         * fvwm/session.c:
396         convert my old code to use var_name and function_name coding style
398 2009-02-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
400         * NEWS:
401         * configure.ac:
402         increased version to 2.5.28
404         * ANNOUNCE:
405         * NEWS:
406         * configure.ac:
407         updated for 2.5.27 release
409 2009-02-23  Thomas Adam <thomas.adam22@gmail.com>
410         * fvwm/bindings.c (print_bindings):
411         Fixed compilation of not having libstroke installed by using ifdefs
412         around stroke code.
414 2009-02-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
416         * fvwm/bindings.c (print_bindings):
417         slight cleanup
419         * libs/charmap.c (charmap_table_to_string):
420         several memory menagement fixes.
422 2009-02-22  Thomas Adam <thomas.adam22@gmail.com>
424         * libs/charmap.c (charmap_table_to_string):
425         Reduce memory management on the stack, by making only those variables
426         to be accessed outside of the function charmap_table_to_string()
427         allocated on the heap instead.
429         * fvwm/bindings.c (print_bindings):
430         b->Action was previously checked whether it was NULL or not before
431         printing its value to STDERR -- however, this caused a segfault when
432         trying to perform strlen() operations internally -- hence don't bother
433         checking if it's NULL.  This avoids segfaulting.
435 2009-02-05  Thomas Adam <thomas.adam22@gmail.com>
437         * libs/charmap.c (charmap_table_to_string):
438         * libs/charmap.h:
439         Introduce charmap_to_string function which is used to build up a
440         binding string, for use with PrintInfo.
442         * fvwm/bindings.c (print_bindings):
443         Introduce print_bindings to print all bindings known to fvwm.
445         * fvwm/builtins.c (CMD_PrintInfo):
446         * fvwm/builtins.h:
447         Add support for "binding" as an option to PrintInfo.
449 2009-02-19  Thomas Adam  <thomas.adam22@gmail.com>
451         * fvwm/placement.c (__pl_position_get_pos_simple):
452         Force the window on-screen if using PositionPlacement UnderMouse.
454 2009-02-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
456         * fvwm/events.c (HandleMapRequestKeepRaised):
457         * fvwm/add_window.c (AddWindow):
458         * fvwm/style.h:
459         * fvwm/style.c (style_parse_one_style_option):
460         add new style InitialMapCommand
462 2008-02-08  Thomas Adam <thomas.adam22@gmail.com>
464         * bin/fvwm-menu-desktop.in:
465         Fix the location prefix for GNOME application files.
467 2008-12-29  Alexandre Julliard  <julliard@winehq.org>
469         * fvwm/ewmh_events.c (ewmh_WMStateMaxHoriz):
470         Having either _NET_WM_STATE_MAXIMIZED_HORIZ or
471         _NET_WM_STATE_MAXIMIZED_HORZ should be enough to make the window
472         horizontally maximized.
474 2008-11-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
476         * fvwm/fvwm.h:
477         * fvwm/module_list.c (do_execute_module):
478         * fvwm/fvwm.c (fvmm_deinstall_signals):
479         restore default signal handlers before execl()/execvp()
481 2008-10-05  Thomas Adam <thomas.adam22@gmail.com>
483         * fvwm/style.c (fw_match_style_id):
484         Allow for the window's visible name to be considered when matching a
485         style line.  It is possible to use $[w.visiblename] as the style name.
486         Whilst the normal name and the visible name are usually the same, in
487         the case of having IndxedWindowName, if a style line matches this as a
488         visible name, apply it first of all.
490 2008-10-03  Thomas Adam  <thomas.adam22@gmail.com>
491         * AUTHORS:
492         * fvwm/expand.c:
493         Add $[w.visiblename] as an expansion parameter.
495 2008-08-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
497         * fvwm/placement.c (__pl_position_get_pos_simple):
498         position placement honours StartsOnPage
500 2008-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
502         * fvwm/session.c (MatchWinToSM):
503         fixed keeping fullscreen state of windows over a restart; the old code
504         tried to do this through session management and effectively overwrote
505         the responsible ewmh hint; eventually, fvwm thought that the window
506         was fullscreen without actually making it fullscreen
508 2008-08-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
510         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
511         fixed compiler warning caused by a logic error in previous patch
513         * configure.ac:
514         applied png detection fix by Yuri Bushmelev for cross compiliation
516         * fvwm/events.c (__handle_cr_on_client):
517         fixed event merging with auto motion detection
519 2008-08-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
521         * NEWS:
522         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
523         * fvwm/events.h (events_handle_configure_request):
524         * fvwm/events.c (events_handle_configure_request):
525         (__handle_cr_on_client):
526         (__handle_configure_request):
527         fix handling of _NET_MOVERESIZE_WINDOW
528         (__cr_detect_icccm_move):
529         remove douplicate code
531 2008-08-06  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
533         * NEWS:
534         * fvwm/add_window.c (setup_frame_window):
535         fix compilation without XRender
537 2008-05-22  Adam Goode  <adam(at)spicenitz(dot)org>
539         * AUTHORS:
540         * ChangeLog-pre-2.4:
541         * rpm/fvwm.spec.in:
542         * vms/fvwmrc.dat:
543         Convert Latin-1 encodings to UTF-8
545 2008-05-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
547         * NEWS:
548         * configure.ac:
549         increased version to 2.5.27
551         * ANNOUNCE:
552         * NEWS:
553         * configure.ac:
554         updated for 2.5.26 release
556 2008-04-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
558         * fvwm/ewmh_events.c (ewmh_WMDesktop):
559         (ewmh_WMState):
560         * fvwm/ewmh.c (ewmh_AddToKdeSysTray):
561         (ewmh_HandleWindowType):
562         (ewmh_AddToKdeSysTray):
563         (ewmh_HandleWindowType):
564         (ewmh_check_wm_pid):
565         64-bit fix by Alexandre Julliard
567 2008-03-30  Mikhael Goikhman  <migo@homemail.com>
569         * configure.ac:
570         fix fribidi detection when it uses pkg-config and not fribidi-config
572         * libs/FBidi.c:
573         fix compilation with newer fribidi-0.19.1 (or also called fribidi2),
574         it now uses fribidi-types.h and not fribidi_types.h
576 2008-03-21  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
578         * fvwm/events.c (dispatch_event):
579         Fix handling of Shape events.
581 2008-03-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
583         * fvwm/menus.c (calc_normal_item_height):
584         (calc_more_item_height):
585         (size_menu_vertically):
586         fix calculations so the menu fit on the screen height
588 2008-03-12  Jes~s Guerrero  <i92guboj(at)terra(dot)es>
590         * fvwm/menus.c (size_menu_vertically):
591         added paddings at the top and bottom of the menus
593         * fvwm/menustyle.c (parse_vertical_margins_line):
594         new function to parse the VerticalMargins new MenuStyle
595         command
597         * fvwm/menustyle.c (menustyle_get_styleopt_index):
598         added the VerticalMargins option to the list
600         * fvwm/menustyle.c (menustyle_parse_style):
601         added default values for the padding, and a case clause
602         for the specific case when you invoke the VerticalMargins
603         MenuStyle
605         * fvwm/menustyle.c (menustyle_copy):
606         added two lines to copy the menu styles from origin to destiny
608         * fvwm/menustyle.h:
609         added macros for the vertical padding stuff
611         * fvwm/menustyle.h (struct MenuLook):
612         added sub-structure to hold the VerticalMargins
614         * fvwm/libs/defaults.h:
615         added one define for MAX_MENU_MARGIN
617 2008-03-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
619         * fvwm/menuitem.c (draw_highlight_background):
620         fixed drawing of background pictures in menu items
622 2008-02-29  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
624         * fvwm/add_window.c (setup_frame_window):
625         fix core dump with ARGB detection code
626         fix compilation without XRender
628 2008-02-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
630         * NEWS:
631         * configure.ac:
632         increased version to 2.5.26
634         * ANNOUNCE:
635         * NEWS:
636         * configure.ac:
637         updated for 2.5.25 release
639 2008-02-12  Renato Caldas  <seventhguardian@gmail.com>
641         * fvwm/fvwm.c (main):
642         further condense the X visual selection code
644 2008-02-10  Renato Caldas  <seventhguardian@gmail.com>
646         * fvwm/fvwm.c (main):
647         condense the X visual selection code
649 2008-02-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
651         * fvwm/events.c (register_event_group)
652         (InitEventHandlerJumpTable, dispatch_event):
653         use separate jump tables for events defined by X-extensions
654         to eliminate the need to ovverride the LASTEvent value.
656         * fvwm/module_list.c (module_list_remove):
657         include the case where the module is first in the list in
658         the loop, fixing a segmentaion fault when the list was empty.
660 2008-02-07  Renato Caldas  <seventhguardian@gmail.com>
662         * fvwm/add_window.c (setup_frame_window):
663         add CWCursor to window's valuemask (from Marc Lehmann's argb patch)
664         add preliminary support for ARGB windows in fvwm (based on
665         Marc Lehman's argb patch)
667 2008-02-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
669         * libs/PictureUtils.c (XPM_COLOR_CLOSENESS):
670         fixed compile error
672 2008-02-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
674         * libs/Colorset.c (CreateOffsetBackgroundPixmap):
675         catch BadGC when updating root transparent window background
677         * libs/XError.c (do_coredump):
678         (ferror_set_temp_error_handler):
679         (ferror_reset_error_handler)
680         (ferror_call_next_error_handler):
682         new helper functions
683         * libs/XError.c (PrintXErrorAndCoredump):
684         try to dump core the hard way
686 2008-02-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
688         * fvwm/colorset.c (parse_colorset):
689         check for image != None before calling XDestroyImage
691         * fvwm/ewmh_events.c (ewmh_WMStateMaxVert):
692         (ewmh_WMStateMaxHoriz):
693         (ewmh_WMStateModal):
694         (ewmh_WMStateShaded):
695         (ewmh_WMStateStaysOnTop):
696         (ewmh_WMStateStaysOnBottom):
697         handle the STATE_ADD command of the EWMH _NET_WM_STATE message from
698         version 1.3
699         also ignore the EWMH staysontop and staysonbottom hints if the
700         EWMHIgnoreStackingOrderHints style is used
702         * fvwm/colorset.c (parse_colorset):
703         Fixed a sporadic crash when the root background set by gnome,
704         fvwm-root, esetroot etc. changes and a root transparent colour set
705         is used.
707         * fvwm/colorset.c (parse_colorset):
708         * libs/PictureUtils.c (alloc_color_dynamic_no_limit):
709         * libs/Colorset.c (CreateOffsetBackgroundPixmap):
710         * libs/PictureGraphics.c (PGrabXImage)
711         (PGraphicsCreateTranslucent):
712         use MyXGrabserver and MyXUngrabServer instead of doing the X calls
713         directly!
715 2008-01-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
717         * libs/PictureGraphics.c (PGrabXImage):
718         fixed XImage memory leak
719         (PCreateRenderPixmap):
720         (PCreateDitherPixmap):
721         Properly handle return code of FgetFImage()
723 2008-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
725         * fvwm/events.c (HandleConfigureRequest):
726         (events_handle_configure_request):
727         cleanup
729         * fvwm/ewmh_events.c (ewmh_RestackWindow):
730         (ewmh_MoveResizeWindow):
731         fixed crash when moving/resizing/restacking unmanaged windows through
732         an ewmh message
734 2008-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
736         * fvwm/events.c (HandleMapRequestKeepRaised):
737         fixed compiler warning
739 2008-01-26  Olivier  <chapuis(at)lri(dot)fr>
741         * libs/FlocaleCharset.c: (FlocaleInit_X_Charset),
742         (FlocaleCharsetInit), (FlocaleCharsetGetDefaultCharset):
743         * NEWS:
744         Fixed the determination of the X charset on UTF-8 system
746 2008-01-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
748         * fvwm/placement.c (__pl_minoverlap_get_next_x):
749         do not add screen offset to window position
751         * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
752         fixed a memory leak
754 2008-01-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
756         * NEWS:
757         Some html documentation files were not installed.
759 2008-01-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
761         * fvwm/style.c (style_parse_one_style_option):
762         fixed parsing of screen argument of the SnapAttraction Style
764 2007-12-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
766         * fvwm/move_resize.c (DoSnapAttract):
767         Use edge move resistance, and not delay for top edge when moving
768         windows.
770 2007-12-03  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
772         * NEWS:
773         * fvwm/events.c (HandleMapRequestKeepRaised)
774         (test_withdraw_request):
775         Don't map windows that request to be moved back to WithdrawnState
776         by the ICCCM2 method before they have been mapped. (Fixes bug with
777         disappearing windows.)
779 2007-11-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
781         * NEWS:
782         * configure.ac:
783         increased version to 2.5.25
785         * NEWS:
786         * configure.ac:
787         updated for 2.5.24 release
789 2007-11-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
791         * fvwm/menus.c (__mloop_exit):
792         * fvwm/menubindings.c (parse_menu_action):
793         * fvwm/bindings.c:
794         reindented and cleaned up some code
796 2007-11-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
798         * fvwm/update.c (apply_window_updates):
799         * fvwm/add_window.c (setup_style_and_decor):
800         (setup_numeric_vals):
801         * fvwm/add_window.h:
802         * fvwm/style.h:
803         * libs/defaults.h:
804         * fvwm/events.c (HandleEnterNotify):
805         * fvwm/fvwm.c (InitVariables):
806         * fvwm/screen.h:
807         * fvwm/session.c (SaveGlobalState):
808         (LoadGlobalState):
809         * fvwm/move_resize.c (DoSnapAttract):
810         (CMD_SnapGrid)
811         (DoSnapAttract):
812         The commands EdgeResistance, SnapGrid and SnapAttraction are obsolete
813         They have been replaced by the styles EdgeMoveResistance,
814         EdgeMoveDelay, EdgeResizeDelay, SnapGrid and SnapAttraction
816 2007-10-21  Renato Caldas  <seventhguardian@gmail.com>
818         * acinclude.m4:
819         * configure.ac:
820         use AS_HELP_STRING to format the configure options help strings
822 2007-10-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
824         * fvwm/conditional.c:
825         some reformatting
827 2007-10-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
829         * fvwm/ConfigFvwmDefaults:
830         restore default action of closing menus for menu titles
832 2007-10-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
834         * libs/FScreen.c (FindScreenOfXY):
835         * fvwm/move_resize.c (GetMoveArguments):
836         fixed the "screen w" argument of the Move and other commands
838 2007-09-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
840         * fvwm/virtual.c (HandlePaging):
841         don't modify *xl and *yt unless we we really page
843 2007-09-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
845         * fvwm/module_list.h:
846         * fvwm/module_list.c:
847         a little cleanup
849 2007-09-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
851         * NEWS:
852         * configure.ac:
853         increased version to 2.5.24
855         * NEWS:
856         * configure.ac:
857         updated for 2.5.23 release
859         * libs/Flocale.c (FlocaleEncodeString):
860         removed previous warning fix
862 2007-08-30 Thomas Adam <thomas@edulinux.homeunix.org>
864         * fvwm/style.c:
865         * fvwm/add_window.c:
866         Added new style option:  StartShaded.
868 2007-08-30  Renato Caldas  <seventhguardian@gmail.com>
870         * libs/Flocale.c (FlocaleEncodeString):
871         fix compile warning
873 2007-08-30  Viktor Griph  <griph(at)student(dot)chalmers(dot)se>
875         * configure.ac:
876         * fvwm/fvwm.1.in
877         * fvwm/Makefile.am:
878         removed old fvwm manpage
880 2007-08-29  Renato Caldas  <seventhguardian@gmail.com>
882         * NEWS:
883         * configure.ac:
884         increased version to 2.5.23
886         * NEWS:
887         * configure.ac:
888         fix the date for 2.5.22 release
890 2007-08-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
892         * fvwm/windowlist.c (CMD_WindowList):
893         fixed crash when using CurrentAtEnd and IconifiedAtEnd with only
894         iconified windows.
896 2007-08-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
898         * configure.ac:
899         fixed perl check
900         use "test ! ... = ..." instead of "test ... != ..."
902         * fvwm/builtins.c (CMD_PropertyChange):
903         fixed completely broken parsing of PropertyChange arguments
905 2007-08-28  Renato Caldas  <seventhguardian@gmail.com>
907         * NEWS:
908         * configure.ac:
909         updated for 2.5.22 release
911         * fvwm/builtins.c (CMD_PropertyChange):
912         * libs/Flocale.c (FlocaleGetFftFont):
913         (FlocaleGetFontSet):
914         (FlocaleGetFont):
915         (FlocaleGetFontOrFontSet):
916         (FlocaleLoadFont):
917         (FlocaleUnloadFont):
918         fix compiler warnings
920 2007-08-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
922         * fvwm/functable.c:
923         fixed command table parsing
925 2007-08-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
927         * fvwm/module_list.c (module_kill):
928         (executeModuleDesperate):
929         (module_list_itr_init):
930         re-indented
932         * fvwm/events.c (My_XNextEvent):
933         * fvwm/module_list.c (module_alloc):
934         (do_execute_module):
935         * fvwm/module_list.h (fmodule):
936         (MOD_IS_CMDLINE):
937         (MOD_SET_CMDLINE):
938         restored *not* useless is_cmdline_module stuff
940         * fvwm/functions.h:
941         add constants for command group tagging
943 2007-08-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
945         * configure.ac:
946         don't check for tbl
948 2007-08-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
950         * configure.ac:
951         check for sed, perl and tbl, needed to build documentation
953 2007-08-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
955         * libs/System.c (fvwm_mkstemp):
956         use constants from libs/fvwm_sys_stat.h
958 2007-08-15  Renato Caldas  <seventhguardian@gmail.com>
960         * fvwm/module_list.c (do_execute_module):
961         fixed possible crash when fork fails
963         * fvwm/module_list.c (module_list_remove):
964         now returns the removed fmodule*, or NULL if unsuccessful
965         removed error message when removing a not listed module (it's normal)
967         * fvwm/module_list.c (module_kill):
968         module is inserted in death_row only if it is successfuly removed from
969         module_list (fixes crash when module is killed more than once)
971 2007-08-08  Renato Caldas  <seventhguardian@gmail.com>
973         * fvwm/events.c (My_XNextEvent):
974         fixed hang with startup modules
976 2007-08-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
978         * fvwm/conditional.c (FreeConditionMask):
979         fixed crash with inverted name condition
981         * NEWS:
982         fixed typo
984 2007-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
986         * configure.ac:
987         * README:
988         * NEWS:
989         * INSTALL.fvwm:
990         * sample.fvwmrc/system.fvwm2rc-sample-95:
991         * sample.fvwmrc/system.fvwm2rc:
992         * sample.fvwmrc/system.fvwm2rc-sample-2:
993         * libs/Picture.c (PicturePrintImageCache):
994         * libs/Module.c:
995         * libs/FGettext.c (FGettextPrintLocalePath):
996         * libs/fvwmsignal.c:
997         * libs/Module.h:
998         * libs/PictureUtils.c (PictureAllocColorTable)
999         (PicturePrintColorInfo):
1000         * libs/FScreen.h:
1001         * libs/fvwmsignal.h:
1002         * libs/Bindings.c:
1003         * libs/FScreen.c:
1004         * libs/Ficonv.c (convert_charsets):
1005         (FiconvSetupConversion):
1006         * fvwm/decorations.c:
1007         * fvwm/gnome.h:
1008         * fvwm/events.c:
1009         * fvwm/add_window.c (setup_window_font):
1010         (setup_icon_font):
1011         * fvwm/fvwm.1.in:
1012         * fvwm/session.h:
1013         * fvwm/conditional.c:
1014         * fvwm/fvwm.c (SetRCDefaults):
1015         (main):
1016         * fvwm/ewmh_events.c:
1017         * fvwm/stack.c:
1018         * fvwm/gnome.c:
1019         * fvwm/menustyle.c (menustyle_parse_style):
1020         (menustyle_copy):
1021         * fvwm/ewmh.c (EWMH_Init):
1022         * libs/Flocale.c (FlocaleParseShadow):
1023         (FlocaleGetFontSet):
1024         (FlocaleLoadFont):
1025         (FlocalePrintLocaleInfo):
1026         * fvwm/misc.c (fvwm_msg):
1027         * vms/README:
1028         * vms/vms.c:
1029         write fvwm in lower case
1031         * configure.ac:
1032         fixed build without GNU make
1034 2007-08-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1036         * libs/Flocale.c (FlocaleChar2bOneCharToUtf8):
1037         fixed buffer overflow
1039 2007-08-06  Renato Caldas  <seventhguardian@gmail.com>
1041         * fvwm/module_list.h (fmodule_list_itr):
1042         * fvwm/module_list.c (module_list_itr_init, module_list_itr_next):
1043         replace iterator struct by typedef
1045         * fvwm/module_list.c (module_list_destroy):
1046         (module_kill_all):
1047         (module_cleanup):
1048         new function to remove dup code
1050         * fvwm/module_list.c (module_kill):
1051         changed to move the module to the deathrow list
1053         * fvwm/module_list.h (fmodule):
1054         * fvwm/module_list.c (module_alloc):
1055         (module_list_remove):
1056         (FlushMessageQueue):
1057         removed is_removed logic
1059         * fvwm/module_list.c (module_safefree):
1060         removed function
1062         * fvwm/events.c (My_XNextEvent):
1063         remove old "#if 0" code
1065         * fvwm/module_list.c (module_kill):
1066         removed debug code
1068 2007-08-06  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1070         * fvwm/module_list.h (fmodule_list_itr):
1071         * fvwm/module_list.c (module_list_itr_init, module_list_itr_next):
1072         don't store current pointer in module list iterators.
1073         fix C89-compilance
1075 2007-08-06  Renato Caldas  <seventhguardian@gmail.com>
1077         * fvwm/events.c (My_XNextEvent):
1078         * fvwm/module_list.c (KillModuleByName):
1079         (FlushAllMessageQueues):
1080         * fvwm/module_interface.c (BroadcastPacket):
1081         (BroadcastNewPacket):
1082         (BroadcastName):
1083         (BroadcastFvwmPicture):
1084         (BroadcastColorset):
1085         (BroadcastProperyChange):
1086         (BroadcastConfigInfoString):
1087         (CMD_SendToModule):
1088         * fvwm/modconf.c (ModuleConfig):
1089         * fvwm/stack.c (BroadcastRestack):
1090         replaced module_get_next by module list iterator mechanism
1092         * fvwm/module_list.h:
1093         * fvwm/module_list.c (module_get_next):
1094         removed function
1096 2007-08-05  Renato Caldas  <seventhguardian@gmail.com>
1098         * fvwm/module_list.h:
1099         * fvwm/module_list.c (fmodule):
1100         (fmodule_store):
1101         (module_insert):
1102         (module_remove):
1103         (module_count):
1104         (module_get_next):
1105         (FlushAllMessageQueues):
1106         (KillModuleByName):
1107         * fvwm/module_interface.c (BroadcastPacket):
1108         (BroadcastNewPacket):
1109         (BroadcastName):
1110         (BroadcastFvwmPicture):
1111         (BroadcastColorset):
1112         (BroadcastProperyChange):
1113         (BroadcastConfigInfoString):
1114         (CMD_SendToModule):
1115         * fvwm/event.c (My_XNextEvent):
1116         * fvwm/stack.c (BroadcastRestack):
1117         * fvwm/modconf.c (ModuleConfig):
1118         changed to work with generic list container
1120         * fvwm/module_list.c (module_insert):
1121         (module_list_insert):
1122         (module_remove):
1123         (module_list_remove):
1124         (module_count):
1125         (module_list_len):
1126         renamed as list handling functions
1128         * fvwm/events.c (My_XNextEvent):
1129         * fvwm/module_list.h:
1130         * fvwm/module_list.c (module_alloc):
1131         (do_execute_module):
1132         removed useless is_cmdline_module stuff
1134         * fvwm/module_list.h:
1135         * fvwm/module_list.c (module_list_insert):
1136         (module_list_remove):
1137         (module_list_len):
1138         new fmodule_list object representing a module list.
1139         changed the module lists to the new object.
1140         changed list functions to use the list object instead of the
1141         fmodule_store pointer.
1143         * fvwm/events.c (My_XNextEvent):
1144         moved module_cleanup to after ExecuteCommandQueue to avoid segfaults
1146         * fvwm/module_list.h (fmodule_list_itr):
1147         * fvwm/module_list.c (fmodule_list_itr_init):
1148         (fmodule_list_itr_next):
1149         created a smart (safe) iterator mechanism to replace the
1150         module_get_next function
1152 2007-08-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1154         * fvwm/functions.c:
1155         * fvwm/functable.c:
1156         added empty functions to replace CMD_Dummy
1158         * configure.ac:
1159         use subordinate Makefile.ams instead of iuncluding files from other
1160         dirs
1162         * configure.ac:
1163         removed FVWMNAMEUCASE
1165         * configure.ac:
1166         make distcheck fix
1168         * Makefile.am (DISTCHECK_CONFIGURE_FLAGS):
1169         force --enable-htmldoc on "make distcheck"
1171         * fvwm/events.c (HandleEnterNotify):
1172         (HandleLeaveNotify):
1173         properly generate enter_window and leave_window events for FvwmEvent
1175 2007-08-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1177         * fvwm/move_resize.c (GetOnePositionArgument):
1178         (__get_shift)
1179         (ParsePositionArgumentSuffix):
1180         code cleanup
1182 2007-07-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1184         * fvwm/move_resize.c (GetOnePositionArgument):
1185         fixed position calculation with the "w" prefix (move w-1 w-1).
1186         (GetOnePositionArgument):
1187         code cleanup
1189 2007-07-26  Viktor Griph  <griph@dd.chalmers.se>
1191         * fvwm/menus.c (__copy_down, __check_for_delimiter)
1192         (scanForStrings):
1193         reduce indentation level
1194         add comment to explain why suppressing the warning is right
1196 2007-07-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1198         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
1199         fixed using uninitialized variable
1201         * fvwm/menus.c (scanForStrings):
1202         suppress compiler warning for now
1204         * fvwm/move_resize.c (resize_move_window):
1205         (AnimatedMoveAnyWindow):
1206         (__move_window):
1207         (__resize_window):
1208         (CMD_Maximize):
1209         * fvwm/module_interface.c (__get_allowed_actions):
1210         * fvwm/menuitem.c (menuitem_paint):
1211         * fvwm/icons.c (CMD_Iconify):
1212         * fvwm/gnome.c (GNOME_SetHints):
1213         * fvwm/ewmh.c (ewmh_AllowsClose):
1214         (ewmh_AllowsClose)
1215         (ewmh_AllowsFullScreen):
1216         (ewmh_AllowsMinimize)
1217         (ewmh_AllowsMaximize):
1218         (ewmh_AllowsMove):
1219         (ewmh_AllowsResize)
1220         (EWMH_fullscreen):
1221         * fvwm/ewmh_events.c (ewmh_CloseWindow):
1222         (ewmh_MoveResizeWindow):
1223         (ewmh_MoveResize):
1224         (ewmh_WMState):
1225         (ewmh_WMStateHidden):
1226         * fvwm/events.c (__handle_cr_on_client):
1227         * fvwm/decorations.c (__is_resize_allowed):
1228         (is_function_allowed):
1229         * fvwm/conditional.c (MatchesConditionMask):
1230         * fvwm/builtins.c (CMD_Delete):
1231         * fvwm/add_window.c (AddWindow):
1232         is_function allowed now differentiates between US program actions and
1233         actions initiated by interaction between fvwm and the user
1235 2007-07-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1237         * fvwm/menus.c (__scan_for_pixmap):
1238         fixed compiler warning
1240         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
1241         (ewmh_RestackWindow):
1242         honor FixedSize/FixedPosition styles in EWMH messages too
1244 2007-07-24  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1246         * fvwm/fvwm.c (setVersionInfo):
1247         add XCursor support to version output
1249         * fvwm/menus.c (SCTX_SET_MI, SCTX_GET_MI, SCTX_SET_MR)
1250         (SCTX_GET_MR, string_context_type_t, string_context_t)
1251         (string_def_t, scanForColor, scanForPixmap, scanForStrings)
1252         (__scan_for_color, __scan_for_pixmap, AddToMenu, NewMenuRoot):
1253         reimplement pixmap and color scanning for menus to better handle
1254         escaped delimiters.
1256 2007-07-22  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1258         * fvwm/Makefile.am:
1259         don't install fvwm.1
1261         * fvwm/events.c (My_XNextEvent):
1262         remove unused varaible
1264         * fvwm/events.c (My_XNextEvent):
1265         * fvwm/module_list.h:
1266         * fvwm/module_list.c (module_store, module_alloc)
1267         (module_kill_all, module_safefree, module_remove)
1268         (do_execute_module, module_kill, module_cleanup, module_get_next)
1269         (FlushMessageQueue):
1270         Don't free module stuctures during module I/O. (Fixes segfault.)
1272 2007-07-20  Simon Griph  <simon(at)griph(dot)se>
1274         Committed by Scott.
1276         * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1277         Someone missed to add extra conditions when changing from
1278         unsigned to signed.
1280 2007-07-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1282         * configure.ac:
1283         fixed liXcursor detection
1285 2007-07-16  Simon Griph  <simon(at)griph(dot)se>
1287         Committed by Scott.
1289         * fvwm/menus.c (scanForPixmap):
1290         made it possible to escape '*' '%' '@' in filenames
1292         * libs/PictureImageLoader.c (PImageLoadSvg):
1293         added transposing and none uniform scaling to svg options
1295 2007-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1297         * libs/PictureImageLoader.c:
1298         cleanup
1299         (PImageLoadCursorFromFile):
1300         fixed compilation without xpm library
1301         (PImageLoadPng):
1302         fixed compiler warning without png library
1304 2007-07-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1306         * libs/Fxpm.h:
1307         * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1308         fix compilation without xpm library
1310 2007-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1312         * libs/Fxpm.h:
1313         fixed compile error
1315         * libs/PictureImageLoader.c:
1316         cleanup
1317         (PImageLoadCursorFromFile):
1318         fixed compilation without xpm library
1319         (PImageLoadPng):
1320         fixed compiler warning without png library
1322 2007-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1324         * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1325         * fvwm/cursor.c (CMD_CursorStyle):
1326         fixed compiler warning
1328 2007-07-15  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1330         * fvwm/cursor.c (CMD_CursorStyle):
1331         fix CursorStyle command parsing
1333 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1335         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1336         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1337         * libs/PictureImageLoader.c (PImageLoadSvg):
1338         (PImageLoadPng):
1339         (PImageCreatePixmapFromArgbData):
1340         moved XCreatePixmap() calls into PImageCreatePixmapFromArgbData()
1341         (PImageCreatePixmapFromFImage):
1342         new local function
1344 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1346         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1347         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1348         * libs/PictureImageLoader.c (PImageLoadSvg):
1349         (PImageLoadPng):
1350         (PImageCreatePixmapFromArgbData):
1351         moved XCreatePixmap() calls into PImageCreatePixmapFromArgbData()
1352         (PImageCreatePixmapFromFImage):
1353         new local function
1355 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1357         * AUTHORS:
1358         * NEWS:
1359         updated
1361         * configure.ac:
1362         added libXcursor detection
1364         * fvwm/Makefile.am (LDADD):
1365         added Xcursor_LIBS
1367         * INSTALL.fvwm:
1369         * libs/Fcursor.h:
1370         new file
1372         * libs/Makefile.am (libfvwm_a_SOURCES):
1373         added Fcursor.h
1375         * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1376         added Xcursor support
1378 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1380         * NEWS:
1381         updated
1383         * libs/Fxpm.h:
1384         added defs for FxpmInfo and FxpmFreeXpmInfo
1386         * libs/PictureBase.h (FvwmPictureAttributes):
1387         * libs/PictureImageLoader.c
1388         (PImageCreatePixmapFromArgbData):
1389         (PImageLoadPixmapFromFile):
1390         added FPAM_MONOCHROME option to FvwmPictureAttributes bitmask
1391         (PImageLoadCursorPixmapFromFile):
1392         (PImageLoadCursorFromFile):
1393         * libs/PictureImageLoader.h:
1394         removed the xpm-specific PImageLoadCursorPixmapFromFile(),
1395         replaced by the new general PImageLoadCursorFromFile()
1397         * fvwm/cursor.c (CMD_CursorStyle):
1398         handle new hot-spot arguments, use PImageLoadCursorFromFile()
1399         instead of PImageLoadCursorPixmapFromFile(), less code duplication
1401 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1403         * libs/PictureImageLoader.c
1404         (PImageLoadSvg):
1405         (PImageLoadPng):
1406         (PImageLoadXpm):
1407         now returns argb data instead of pixmaps
1408         (PImageLoadPixmapFromFile):
1409         (PImageLoadArgbDataFromFile):
1410         moved first half of PImageLoadPixmapFromFile() into
1411         the new local function PImageLoadArgbDataFromFile()
1412         (PImageLoadBitmap):
1413         removed function, code moved into PImageLoadPixmapFromFile()
1415 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1417         * libs/PictureImageLoader.c (PImageLoadXpm):
1418         revised to make use of PImageCreatePixmapFromArgbData()
1420 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1422         * fvwm/colorset.c (parse_shape):
1423         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1424         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1425         * libs/PictureImageLoader.c
1426         (PImageLoadSvg):
1427         (PImageLoadPng):
1428         (PImageCreatePixmapFromArgbData):
1429         don't create a mask pixmap for fully opaque (all alpha == 0xff)
1430         or translucent (0 < any alpha < 0xff) images.
1432 2007-06-22  Simon Griph  <simon(at)griph(dot)se>
1434         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1435         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1436         * libs/PictureImageLoader.c (PImageLoadSvg):
1437         (PImageLoadPng):
1438         (PImageCreatePixmapFromArgbData):
1439         moved XCreatePixmap() calls into PImageCreatePixmapFromArgbData()
1440         (PImageCreatePixmapFromFImage):
1441         new local function
1443 2007-07-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1445         * fvwm/functions.c (CMD_EchoFuncDefinition):
1446         * fvwm/functable.c (func_table):
1447         * fvwm/commands.h:
1448         new command EchoFuncDefinition
1450 2007-07-07  Simon Griph  <simon(at)griph(dot)se>
1452         * NEWS:
1453         * fvwm/conditional.c (CreateConditionMask):
1454         bugfix: Condition separation previously failed when a
1455         single comma (no whitespace padding) was used directly
1456         after a multi-worded condition.
1458 2007-06-21  Renato Caldas  <seventhguardian@gmail.com>
1460         * fvwm/module_list.c (module_kill):
1461         fix possible core dump when using startup modules
1463 2007-06-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1465         * NEWS:
1466         * fvwm/builtins.c (CMD_PrintInfo):
1467         * libs/Picture.h (PicturePrintImageCache):
1468         * libs/Picture.c (PicturePrintImageCache):
1469         add ImageCache subject to PrintInfo command
1471 2007-06-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1473         * NEWS:
1474         * fvwm/events.c (My_XNextEvent):
1475         fix crash when a module closes down during input/output.
1477 2007-06-03  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1479         * fvwm/icons.c (ChangeIconPixmap):
1480         (DeIconify):
1481         (Iconify):
1482         * fvwm/focus.c (warp_to_fvwm_window):
1483         * fvwm/events.c (__handle_cr_restack):
1484         (__handle_bpress_on_managed):
1485         (HandlePropertyNotify):
1486         * fvwm/stack.h:
1487         * fvwm/stack.c (__restack_window):
1488         (__raise_lower_recursion):
1489         (__raise_or_lower_window):
1490         (raise_or_lower_window):
1491         (position_new_window_in_stack_ring):
1492         (RaiseWindow):
1493         (LowerWindow):
1494         (RestackWindow):
1495         (HandleUnusualStackmodes):
1496         (CMD_Raise):
1497         (CMD_Lower):
1498         (CMD_RestackTransients):
1499         (CMD_RaiseLower):
1500         do raise hacks even when the internal stack is intact, unless on a
1501         client request
1503 2007-06-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1505         * fvwm/style.c (check_window_style_change)
1506         (style_parse_one_style_option):
1507         * fvwm/style.h:
1508         * fvwm/fvwm.h (window_style):
1509         * fvwm/add_window.c (setup_frame_size_limits):
1510         * fvwm/geometry.c (constrain_size):
1511         new style MinWindowSize
1513 2007-05-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1515         * libs/System.h:
1516         added missing prototypes
1518         * libs/safemalloc.c:
1519         * libs/fio.c:
1520         * libs/envvar.c:
1521         * libs/XResource.c:
1522         * libs/XError.c:
1523         * libs/WinMagic.c:
1524         * libs/Target.c:
1525         * libs/Event.c (GetSubwindowFromEvent):
1526         * libs/Cursor.c:
1527         * libs/ColorUtils.c:
1528         include corresponding header files
1530         * libs/PictureBase.c:
1531         * libs/FlocaleCharset.c:
1532         * fvwm/ewmh.c:
1533         cleanup prototypes
1535 2007-05-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1537         * configure.ac (HAVE_GNU_READLINE):
1538         detect full GNU readline API (vs BSD libedit readline compatibility
1539         layer)
1541 2007-04-27  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1543         * fvwm/windowlist.c (CMD_WindowList):
1544         * NEWS:
1546         Deprecated "UseListSkip" & "OnlyListSkip" - replaced with
1547         "UseSkipList" & "OnlySkipList".
1549 2007-04-29  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1551         * NEWS:
1552         * fvwm/add_window.c (validate_transientfor):
1553         detect and disallow circular transient-for hints
1555 2007-04-27  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1557         * fvwm/fvwm.1.in:
1558         s/UseListSkip/UseSkipList/g etc.
1560 2007-04-17  Jesus Guerrero  <6thpink(at)terra(dot)es>
1562         * fvwm/menus.c (size_menu_vertically):
1563         added localization of the "More&..." string
1565 2007-03-17  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1567         * libs/PictureBase.c (PictureFindImageFile):
1568         fix for segfault with svg-support enabled
1570         * INSTALL.fvwm (http):
1571         * configure.ac (png_CFLAGS):
1572         raise librsvg dependeny due to bug with 2.13.91
1574         * fvwm/cursor.c (CMD_CursorStyle):
1575         remove unused static variable nocursor
1577 2007-03-14  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1579         * AUTHORS:
1580         typo.
1582 2007-03-11  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1584         * configure.ac:
1585         bugfix: 'make dist' failed cos I moved 'scott.notes' to util/ subdir.
1586         bugfix: out-of-tree builds failed due to broken dependency.
1587         Make man page have same header as old one.
1588         Fix man page indentation.
1589         Make text of top-level man page sections all uppercase.
1590         Added --disable-mandoc option.
1591         HTML doc generation is off by default: use --enable-htmldoc.
1592         Added more info in doc/README about XML commands to use.
1594 2007-03-10  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
1596         * NEWS:
1597         * Everything in the 'doc' subdirectory.
1599         XML source to generate man page & HTML documentation.
1601 2007-02-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1603         * NEWS:
1604         * fvwm/colorset.c (parse_colorset):
1605         don't recompute sh, hi and fgsh if they were supplied in a previous
1606         colorset line. Fixes bug #3359.
1608 2007-02-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1610         * fvwm/move_resize.c (DoSnapAttract):
1611         handle SnapGrid before SnapAttraction so that non-overlapping windows
1612         do not snap edge to edge:
1613                                     +---+
1614                                     |   |
1615                                     +---+---+
1616                                         |   |
1617                                         +---+
1619 2007-02-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1621         * fvwm/style.c (parse_and_set_window_style)
1622         (style_parse_one_style_option):
1623         don't warn about PositionPlacement arguments
1625 2007-02-04  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1627         * AUTHORS:
1628         * NEWS:
1629         enties for ChangeWindowTitle patch by Julio Teca.
1631 2007-02-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1633         * fvwm/fvwm.c (main):
1634         fixed ROOT CursorStyle context
1636         * fvwm/placement.c (__pl_manual_get_pos_simple):
1637         * fvwm/move_resize.h:
1638         * fvwm/move_resize.c (__move_loop):
1639         (InteractiveMove):
1640         fixed long broken POSITION CursorStyle context
1642 2007-02-04  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1644         * fvwm/bindings.c (ParseBinding):
1645         fix buffer overrun with >78 character window names.
1647         * fvwm/fvwm.1.in (PositionPlacement):
1648         fix typos
1650         * fvwm/fvwm.1.in (BorderWidth, HandleWidth):
1651         * fvwm/style.c (style_parse_one_style_option):
1652         change BorderWidth and HandleWidth style  to revert to default if no
1653         arguments are given
1655 2007-02-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1657         * fvwm/fvwm.h (style_flags):
1658         * fvwm/placement.c (__pl_under_mouse_get_pos_simple):
1659         (__place_get_wm_pos):
1660         (__place_window, __explain_placement):
1661         * fvwm/style.c (style_parse_one_style_option):
1663         * libs/defaults.h (DEFAULT_PLACEMENT_POS_CENTER_STRING)
1664         (DEFAULT_PLACEMENT_POS_MOUSE_STRING)
1665         (DEFAULT_PLACEMENT_POSITION_STRING):
1666         new default strings
1668         * fvwm/move_resize.c (GetOnePositionArgument):
1669         added 'w' suffix to Move arguments
1670         allow multiple shifts from original position
1672         * fvwm/style.c (style_parse_one_style_option):
1673         (merge_styles)
1674         (free_style):
1675         * fvwm/placement.c (setup_window_placement)
1676         (__place_get_placement_flags):
1677         (__place_get_wm_pos):
1678         (__place_get_nowm_pos):
1679         (__place_window):
1680         (__place_handle_x_resources):
1681         (setup_window_placement):
1682         * fvwm/fvwm.h (PLACE_CENTER):
1683         (PLACE_POSITION):
1684         replaced CenterPlacement with more flexibe PositionPlacement
1686         * fvwm/move_resize.c (GetMoveArguments):
1687         (GetResizeArguments):
1688         (GetResizeMoveArguments):
1689         (__move_window):
1690         * fvwm/move_resize.h:
1691         exported and enhanced function GetMoveArguments for use by placement
1692         algorithm
1694 2007-02-01  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1696         * fvwm/ConfigFvwmDefaults:
1697         reenable MenuScroll on titles
1699         * fvwm/menubindings.c (menu_shortcuts):
1700         don't scroll menus if scrolling would be in the wrong direction
1702 2007-02-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1704         * fvwm/move_resize.c (__resize_window):
1705         some resizing/gravity fixes
1706         properly handle maximized + shaded state when resizing
1707         non-interactively
1709 2007-01-31  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1711         * fvwm/move_resize.c (__resize_window):
1712         resizing of shaded windows work better.
1714 2007-01-30  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1716         * fvwm/fvwm.1.in (COMMAND EXPANSION):
1717         clarified previous patch
1719         * fvwm/fvwm.1.in (COMMAND EXPANSION):
1720         documented '-' command prefix
1722         * fvwm/expand.c (__eae_parse_range):
1723         fix $[n-] and $[*] after unsigned int havoc
1725 2007-01-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1727         * fvwm/Makefile.am:
1728         * fvwm/ConfigFvwmMenuDefaults:
1729         removed file
1730         * fvwm/ConfigFvwmDefaults:
1731         * fvwm/ConfigFvwmMenuDefaults:
1732         moved all settings from ConfigFvwmMenuDefaults to ConfigFvwmDefaults
1734 2007-01-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1736         * fvwm/ConfigFvwmMenuDefaults:
1737         * fvwm/fvwm.c (SetRCDefaults):
1738         make default menu mouse bindings for MenuSelectItem and MenuScroll only
1739         apply to menu item context.
1741 2007-01-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1743         * fvwm/placement.c (placement_loop):
1744         (__pl_minoverlap_get_avoidance_penalty):
1745         (__pl_smart_get_first_pos):
1746         (__pl_smart_get_next_pos):
1747         (__pl_smart_test_window):
1748         (__pl_smart_get_pos_penalty):
1749         rewrote SmartPlacement as a sub-mode of MinOverlapPlacement, i.e. it's
1750         now less than ten lines of code.
1752         * fvwm/add_window.c (setup_placement_penalty):
1753         * fvwm/style.c (style_parse_one_style_option):
1754         allow to reset the placement penalties with !
1756         * fvwm/placement.h:
1757         * fvwm/add_window.c (setup_placement_penalty):
1758         * fvwm/style.h:
1759         * fvwm/fvwm.h:
1760         * fvwm/style.c (style_parse_one_style_option):
1761         put placement penalty array in a struct
1763         * fvwm/placement.c (__place_get_wm_pos):
1764         (__pl_clever_get_next_x):
1765         (__pl_clever_get_next_y):
1766         (__pl_clever_get_first_pos):
1767         (__pl_clever_get_next_pos):
1768         (__pl_clever_get_avoidance_penalty):
1769         (__pl_clever_get_pos_penalty):
1770         (__pl_minoverlap_get_next_x):
1771         (__pl_minoverlap_get_next_y):
1772         (__pl_minoverlap_get_first_pos):
1773         (__pl_minoverlap_get_next_pos):
1774         (__pl_minoverlap_get_avoidance_penalty):
1775         (__pl_minoverlap_get_pos_penalty):
1776         renamed ...clever... functions to ...minoverlap...
1778         * fvwm/bindings.c:
1779         * fvwm/decorations.c:
1780         * fvwm/menubindings.c:
1781         * fvwm/module_interface.c:
1782         * fvwm/module_list.c:
1783         * fvwm/fvwm.c:
1784         * fvwm/module_list.h:
1785         * fvwm/events.c:
1786         * fvwm/module_interface.h:
1787         * fvwm/Makefile.am:
1788         dont include "libs" in include path
1790         * libs/vpacket.h:
1791         #includes from fvwm path with "..." not <...>
1793         * fvwm/stack.c:
1794         #includes from library path with "..." not <...>
1796 2007-01-28  Simon Griph  <simon(at)griph(dot)se>
1798         * NEWS:
1799         * AUTHORS:
1800         * INSTALL.fvwm:
1801         documented new svg support
1803         * configure.ac:
1804         added librsvg detection
1806         * fvwm/Makefile.am (LDADD, INCLUDES):
1807         added rsvg_LIBS, rsvg_CFLAGS
1809         * fvwm/expand.c (expand_vars_extended):
1810         new extended variables
1811         $[w.iconfile.svgopts] and $[w.miniiconfile.svgopts]
1813         * fvwm/fvwm.1.in (OPTIONS):
1814         (ICONS AND IMAGES):
1815         documented new svg support
1816         (COMMAND EXPANSION):
1817         documented new extended variables
1819         * fvwm/fvwm.c (setVersionInfo):
1820         (main):
1821         added Frsvg_init() call
1823         * libs/Fsvg.h:
1824         new file
1826         * libs/Makefile.am (libfvwm_a_SOURCES):
1827         added Fsvg.h
1828         (INCLUDES):
1829         added rsvg_CFLAGS
1831         * libs/Picture.c (PCacheFvwmPicture):
1832         hid svgopts from isFileStampChanged()
1834         * libs/PictureBase.c (PictureFindImageFile):
1835         hid svgopts from searchPath()
1837         * libs/PictureBase.h:
1839         * libs/PictureImageLoader.c (PImageLoadFvwmPictureFromFile):
1840         hid svgopts from setFileStamp()
1841         (PImageLoadSvg):
1842         new svg image loader
1844         * libs/fvwmlib.c (flib_init_graphics):
1845         added Frsvg_init() call
1847 2007-01-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1849         * NEWS:
1850         * fvwm/stack.c (__is_restack_needed)
1851         (is_transient_subtree_straight):
1852         (__restack_window):
1853         fix crash when trying to restack destroyed window
1855 2007-01-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1857         * libs/Makefile.am (libfvwm_a_SOURCES):
1858         add fvwmlib.c
1860         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
1861         * fvwm/menus.c (move_any_menu)
1862         set menu backgrounds before moving. Makes transparent menus move
1863         more seamless.
1865         * fvwm/menus.c (update_transparent_menu_bg, repaint_transparent_menu):
1866         * fvwm/menus.c (update_transparent_menu_bg, repaint_transparent_menu):
1867         add update_transparent_menu_bg to allow set of transparent menu
1868         background before a move, and change repaint_transparent_menu to
1869         allow for not setting the menu background.
1871         * libs/Colorset.c (SetWindowBackgroundWithOffset):
1872         create offset backgrounds with CreateOffsetBackgroundPixmap (works with
1873         transparent colorsets)
1874         (CreateOffsetBackgroundPixmap):
1875         use offset also for non transparent backgrounds.
1877         * fvwm/menubindings.c (menu_shortcuts):
1878         don't move menus on scroll if they don't move
1880 2007-01-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1882         * libs/fvwmlib.h:
1883         * fvwm/bindings.c:
1884         * fvwm/cursor.c:
1885         * fvwm/decorations.c:
1886         * fvwm/ewmh_conf.c:
1887         * fvwm/ewmh_events.c:
1888         * fvwm/ewmh_icons.c:
1889         * fvwm/expand.c:
1890         * fvwm/focus.c:
1891         * fvwm/functions.c:
1892         * fvwm/gnome.c:
1893         * fvwm/menubindings.c:
1894         * fvwm/menucmd.c:
1895         * fvwm/menuitem.c:
1896         * fvwm/misc.c:
1897         * fvwm/modconf.c:
1898         * fvwm/module_interface.c:
1899         * fvwm/module_list.c:
1900         * fvwm/read.c:
1901         * fvwm/update.c:
1902         * fvwm/windowlist.c:
1903         * fvwm/windowshade.c:
1904         * fvwm/colorset.c:
1905         * fvwm/session.c:
1906         * fvwm/stack.c:
1907         * fvwm/ewmh.c:
1908         * fvwm/conditional.c:
1909         * fvwm/menustyle.c:
1910         * fvwm/virtual.c:
1911         * fvwm/placement.c:
1912         * fvwm/frame.c:
1913         * fvwm/fvwm.c:
1914         * fvwm/icons.c:
1915         * fvwm/add_window.c:
1916         * fvwm/builtins.c:
1917         * fvwm/move_resize.c:
1918         * fvwm/borders.c:
1919         * fvwm/style.c:
1920         * fvwm/events.c:
1921         * fvwm/menus.c:
1922         * libs/FTips.c:
1923         * libs/Picture.c:
1924         * libs/Target.c:
1925         * libs/gravity.c:
1926         * fvwm/execcontext.c:
1927         * libs/BidiJoin.c:
1928         * libs/CombineChars.c:
1929         * libs/FBidi.c:
1930         * libs/FEvent.c:
1931         * libs/Fft.c:
1932         * libs/FGettext.c:
1933         * libs/Ficonv.c:
1934         * libs/FImage.c:
1935         * libs/flist.c:
1936         * libs/FlocaleCharset.c:
1937         * libs/fsm.c:
1938         * libs/Parse.c:
1939         * libs/queue.c:
1940         * libs/safemalloc.c:
1941         * libs/strdup.c:
1942         * libs/timeout.c:
1943         * libs/Strings.c:
1944         * libs/FRender.c:
1945         * libs/Module.c:
1946         * libs/ColorUtils.c:
1947         * libs/Colorset.c:
1948         * libs/PictureImageLoader.c:
1949         * libs/PictureGraphics.c:
1950         * libs/Graphics.c:
1951         * libs/FScreen.c:
1952         * libs/PictureUtils.c:
1953         * libs/Flocale.c:
1954         * libs/PictureBase.c:
1955         use new header files
1957         * libs/Graphics.h:
1958         * libs/XResource.h:
1959         * libs/Event.h:
1960         * libs/XError.h:
1961         * libs/ColorUtils.h:
1962         * libs/PictureBase.h:
1963         * libs/System.h:
1964         * libs/defaults.h:
1965         * libs/Cursor.h:
1966         * libs/Target.h:
1967         * libs/WinMagic.h:
1968         * libs/fvwmlib.h:
1969         * libs/Makefile.am (libfvwm_a_SOURCES):
1970         moved declarations from fvwmlib.h to new/appropriate header files
1972         * libs/XError.c:
1973         reformatted
1975         * fvwm/menus.c (paint_side_pic):
1976         fixed previous patch
1977         reindented function
1979 2007-01-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1981         * fvwm/menus.c (paint_side_pic):
1982         fix a core dump
1984         * fvwm/menus.c (paint_side_pic):
1985         use simple expose information to redraw sidepics less.
1987 2007-01-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
1989         * fvwm/geometry.c (constrain_size):
1990         silence gcc 4.1.1 warning.
1992         * libs/System.c (searchPath):
1993         search in pwd if no path is given.
1994         return NULL if a file dosn't exist regardless if it's absolute path
1996 2007-01-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
1998         * fvwm/placement.c (__place_window)
1999         (__pl_under_mouse_get_pos_simple):
2000         * fvwm/style.h (SUNDERMOUSE_PLACEMENT_HONORS_STARTS_ON_PAGE):
2001         * fvwm/fvwm.1.in:
2002         new style option UnderMousePlacementHonorsStartsOnPage
2004         * fvwm/update.c (init_style):
2005         don't forget stickyness when a window goes fullscreen (or when some
2006         other style is changed)
2008 2007-01-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2010         * fvwm/placement.c (__pl_cascade_get_pos_simple):
2011         properly handle title direction with cascade placement
2013         * libs/defaults.h (PLACEMENT_FALLBACK_CASCADE_STEP):
2014         new default value
2016         * fvwm/placement.c (__pl_center_get_pos_simple):
2017         CenterPlacement properly handles Xinerama screens
2019 2007-01-25  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2021         * configure.ac:
2022         always substiture datarootdir
2024 2007-01-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2026         * fvwm/add_window.c (GetWindowSizeHints):
2027         * fvwm/geometry.c (constrain_size):
2028         undefine macros after use
2029         (constrain_size):
2030         reindented and cleaned up
2031         do not grow a window because of aspect ratio if this is not explicitly
2032         allowed by the CS_ROUND_UP flag
2033         (constrain_size):
2034         (__cs_handle_aspect_ratio):
2035         broken into separate functions and cleaned up
2037 2007-01-20  Renato Caldas  <seventhguardian@gmail.com>
2039         * fvwm/module_list.c (module_receive):
2040         (module_input_discard):
2041         allocate input data in just one call - better perfomance
2043 2007-01-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2045         * fvwm/placement.c (__place_get_wm_pos):
2046         simplified to a simple loop
2047         (__explain_placement):
2048         added explanation of new placement styles
2050         * fvwm/placement.c (__place_get_wm_pos):
2051         cleanup
2052         (__pl_center_get_pos_simple):
2053         (__pl_under_mouse_get_pos_simple):
2054         (__pl_cascade_get_pos_simple):
2055         (__pl_manual_get_pos_simple):
2056         (__place_get_wm_pos):
2057         use new placement interface for CenterPlacement, UnderMousePlacement,
2058         ManualPlacement, CascadePlacement
2060         * fvwm/placement.c (__sp_get_first_pos):
2061         (__sp_get_next_pos):
2062         (__sp_get_pos_penalty):
2063         (__place_get_wm_pos):
2064         use new placement interface for SmartPlacement
2065         (SmartPlacement):
2066         removed function
2068         * fvwm/placement.c:
2069         don't use inline functions
2070         (CleverPlacement):
2071         (placement_loop):
2072         renamed function and generalized the placement interface to deal with
2073         any algorithm in the same way
2074         (__place_get_wm_pos):
2075         use new placement interface
2077         * NEWS:
2078         * configure.ac:
2079         increased version to 2.5.22
2081         * NEWS:
2082         * configure.ac:
2083         updated for 2.5.21 release
2085 2007-01-19  Dan Espen  <dane@mk.telcordia.com>
2087         * fvwm/read.h: Compile syntax error fix.
2089 2007-01-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2091         * fvwm/placement.c (SmartPlacement):
2092         fixed broken SmartPlacement
2094 2007-01-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2096         * fvwm/expand.c (expand_vars_extended):
2097         free allocated icon path
2099 2007-01-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2101         * fvwm/fvwm.1.in:
2102         some cleanup
2104         * fvwm/virtual.c:
2105         fix compile error
2107 2007-01-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2109         * NEWS:
2110         * fvwm/fvwm.1.in (Scroll):
2111         * fvwm/virtual.c (__drag_viewport, CMD_Scroll):
2112         add interactive scrolling.
2114         * fvwm/stack.c (is_transient_subtree_straight):
2115         check first above the tree root, then beneth it.
2117 2007-01-17  Renato Caldas  <seventhguardian@gmail.com>
2119         * fvwm/module_interface.h
2120         * fvwm/module_interface.c (module_input_enqueue):
2121         (module_input_execute):
2122         new functions based on AddToCommandQueue and ExecuteModuleCommand
2124         * fvwm/module_list.c (CMD_ModuleSynchronous):
2125         (PositiveWrite):
2126         * fvwm/events.c (My_XNextEvent):
2127         * fvwm/module_interface.c (ExecuteCommandQueue):
2128         using the above two new functions instead of AddToCommandQueue and
2129         ExecuteModuleCommand
2131         * fvwm/module_interface.c (cqueue_object_type):
2132         removed typedef
2134         * fvwm/module_interface.h
2135         * fvwm/module_interface.c (AddToCommandQueue):
2136         (ExecuteModuleCommand):
2137         removed functions
2139 2007-01-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2141         * fvwm/fvwm.h (window_style):
2142         * fvwm/style.c (style_parse_one_style_option):
2143         icon background relief and icon title relief changed to sigend char;
2144         should fix problem with ppc and negative values for these.
2146 2007-01-16  Renato Caldas  <seventhguardian@gmail.com>
2148         * fvwm/module_list.h:
2149         * fvwm/module_list.c (module_receive):
2150         (module_input_discard):
2151         (module_input_expect):
2152         new functions to deal with module input
2154         * fvwm/module_list.h:
2155         * fvwm/module_list.c (HandleModuleInput):
2156         replaced by the above three functions
2158         * fvwm/events.c (My_XNextEvent):
2159         * fvwm/module_list.c (CMD_ModuleSynchronous):
2160         (PositiveWrite):
2161         adapted to use the above three functions instead of HandleModuleInput
2163 2007-01-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2165         * configure.ac (HAVE_PNG):
2166         don't mangle png_LIBS, use --with-png-library
2168 2007-01-15  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2170         * NEWS:
2171         removed news about previous change after move of version-2_5_20 tag
2172         on ChangeLog and fvwm/stack.c to the last revision and rebuilt tar
2173         balls.
2175         * fvwm/stack.c (__restack_window):
2176         fix so new transient windows with StackTransientParent on top layer
2177         don't make all windows raise above the pan frames.
2179         * NEWS:
2180         * configure.ac:
2181         increased version to 2.5.21
2183         * NEWS:
2184         * configure.ac:
2185         updated for 2.5.20 release
2187 2007-01-15  Renato Caldas  <seventhguardian@gmail.com>
2189         * fvwm/fvwm.c (main):
2190         remove the call to module_init_list, the list head is instead set
2191         to NULL upon declaration
2193         * fvwm/module_list.h:
2194         * fvwm/module_list.c (module_init_list):
2195         removed function
2197 2007-01-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2199         * fvwm/stack.c (is_transient_subtree_straight)
2200         (is_transient_subtree_stack_straight):
2201         use <= 32 character function name
2202         (mark_transient_subtree, is_transient_subtree_straight)
2203         (__mark_transient_subtree_test):
2204         move common tests to function to avoid code duplication
2206         * fvwm/fvwm.1.in (IconifyWindowGroups):
2207         Correctly document that windows are iconified together if the are in
2208         the same window group, not if the group leader is iconified.
2210 2007-01-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2212         * fvwm/add_window.c (GetWindowSizeHints):
2213         * libs/vpacket.h (ConfigWinPacket):
2214         * fvwm/module_interface.c (CONFIGARGS):
2215         * fvwm/fvwm.h (FvwmWindow):
2216         add orig_hints_width_inc and orig_hints_height_inc values to store the
2217         original resize inc  for use in FvwmIdent
2219         * fvwm/fvwm.1.in:
2220         * fvwm/style.c (style_parse_one_style_option):
2221         deprecated some "No..." styles
2222         (style_parse_one_style_option):
2223         add a NoResizeHintOverride style
2225         * fvwm/add_window.c (GetWindowSizeHints):
2226         only ignore the min_width/min_height/max_width/max_height with the
2227         ResizeHintOverride style
2229         * fvwm/icons.c (DeIconify):
2230         corrected previous fix
2232         * fvwm/placement.c (CleverPlacement):
2233         (SmartPlacement):
2234         (__place_get_wm_pos):
2235         (__place_get_nowm_pos):
2236         (__place_window):
2237         fixed smart placement
2238         unified placement func interface
2240 2007-01-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2242         * NEWS:
2243         * fvwm/icons.c (DeIconify):
2244         don't loop forever.
2246         * fvwm/stack.c (is_transient_subtree_stacked_straight):
2247         fix detection of non needed lower operations
2248         (__restack_window):
2249         BroadcastRestack to modules even if non is done. (To cancel effect of
2250         already sent M_RAISE/M_LOWER)
2251         don't do raise hacks if no restack was done.
2253         * fvwm/fvwm.h (FvwmWindow):
2254         icon_nalloc_pixels is int instead of unsined int
2256         * libs/PictureUtils.h (PictureCloseImageColorAllocator):
2257         * libs/PictureUtils.c (PictureCloseImageColorAllocator):
2258         use int instead of unsigned int.
2260         * fvwm/menugeometry.c (menu_get_geometry)
2261         (menu_get_outer_geometry):
2262         * fvwm/focus.c (CMD_WarpToWindow):
2263         * fvwm/geometry.c (get_title_button_geometry):
2264         * fvwm/session.c (SaveWindowStates):
2265         * fvwm/conditional.c (CMD_WindowId):
2266         * fvwm/placement.c (__place_get_wm_pos):
2267         * fvwm/frame.c (frame_create_move_resize_args):
2268         * fvwm/icons.c (GetIconBitmap, GetIconWindow):
2269         * fvwm/add_window.c (CaptureOneWindow, AddWindow):
2270         * fvwm/builtins.c (CMD_Destroy, CMD_Close):
2271         * fvwm/style.c (style_parse_icon_box_style):
2272         * fvwm/move_resize.c (resize_move_window, InteractiveMove)
2273         (AnimatedMoveAnyWindow, __move_window, __move_loop)
2274         (__resize_window):
2275         * fvwm/events.c (HandlePropertyNotify)
2276         (__is_bpress_window_handled):
2277         * fvwm/menus.c (paint_menu_gradient_background, pop_menu_up)
2278         (get_menu_options):
2279         fix geometry signed pointer warnings
2281         * libs/Graphics.c (CalculateGradientDimensions):
2282         cast pointer to unsigned int*
2284         * libs/FScreen.h (FScreenGetScrRect, FScreenGetResistanceRect):
2285         * libs/FScreen.c (FScreenGetScrRect, FScreenClipToScreen)
2286         (FScreenCenterOnScreen, FScreenGetResistanceRect, FScreenGetGeometry):
2287         change unsigned int* parameter to int*. It get's info stored in an
2288         unsigned short, so it should be OK.
2290         * fvwm/externs.h:
2291         * fvwm/fvwm.c:
2292         JunkMask is unsigned
2294         * fvwm/stack.c (__mark_group_member)
2295         (is_transient_subtree_stacked_straight, __is_restack_needed)
2296         (__restack_window, mark_transient_subtree):
2297         don't raise or lower windows if they are already at the right place.
2299 2007-01-13  Renato Caldas  <seventhguardian@gmail.com>
2301         * fvwm/module_interface.c (struct cqueue_object_type):
2302         * fvwm/module_list.h (struct fmodule_input):
2303         reused cqueue_object_type as a struct to store module input data
2304         renamed it to fmodule_input and moved it to module_list.h
2305         typedef'ed it to cqueue_object_type in module_interface.c
2307 2007-01-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2309         * fvwm/placement.c (__cp_get_next_x):
2310         (__cp_get_next_y):
2311         (__cp_get_first_pos):
2312         (__cp_get_next_pos):
2313         (__cp_get_avoidance_penalty):
2314         (__cp_test_fit):
2315         (CleverPlacement):
2316         restructured and cleaned up CleverPlacement code
2318         * fvwm/style.c (style_parse_icon_box_style):
2319         * fvwm/virtual.c (HandlePaging):
2320         * fvwm/stack.c (verify_stack_ring_consistency):
2321         (ResyncFvwmStackRing):
2322         * fvwm/repeat.c:
2323         * fvwm/read.c (cursor_control):
2324         * fvwm/placement.c (__place_get_wm_pos):
2325         * fvwm/move_resize.c (GetMoveArguments):
2326         (ParseOneResizeArgument):
2327         (GetResizeArguments):
2328         (GetResizeMoveArguments):
2329         (resize_move_window):
2330         (resize_move_window):
2331         (InteractiveMove):
2332         (__move_window):
2333         (DoSnapAttract):
2334         (DoSnapAttract):
2335         (__resize_step):
2336         (__resize_window):
2337         (__resize_window):
2338         (__resize_window):
2339         (MaximizeHeight):
2340         (MaximizeWidth):
2341         (maximize_fvwm_window):
2342         (CMD_Maximize):
2343         (CMD_Maximize):
2344         * fvwm/misc.c:
2345         * fvwm/menustyle.h (MenuStyle):
2346         * fvwm/menus.c (MenuSizingParameters):
2347         (make_menu_window):
2348         (paint_menu_gradient_background):
2349         (paint_menu_gradient_background):
2350         (select_menu_item):
2351         (do_menus_overlap):
2352         (pop_menu_up):
2353         (pop_menu_down_and_repaint_parent):
2354         (__mloop_handle_action_without_mi):
2355         (do_menu):
2356         (get_menu_options):
2357         (get_menu_options):
2358         * fvwm/menuroot.h (MenuRootStatic):
2359         (MenuRootDynamic):
2360         * fvwm/menuitem.h (MenuPaintItemParameters):
2361         * fvwm/menugeometry.h:
2362         * fvwm/menubindings.c (menu_shortcuts):
2363         * fvwm/icons.c (SetIconPixmapSize):
2364         (GetIconPicture):
2365         (DrawIconTitleWindow):
2366         (AutoPlaceIcon):
2367         (do_all_iconboxes):
2368         (GetIconWindow):
2369         (GetIconBitmap):
2370         * fvwm/gnome.c (GNOME_GetHintIcons):
2371         * fvwm/functions.c (FvwmFunction):
2372         (__execute_function):
2373         (__cf_cleanup):
2374         (execute_complex_function):
2375         * fvwm/fvwm.c (JunkWidth):
2376         (JunkHeight):
2377         (JunkBW):
2378         (JunkDepth):
2379         (JunkMask):
2380         (main):
2381         * fvwm/externs.h (JunkWidth):
2382         (JunkHeight):
2383         (JunkBW):
2384         (JunkDepth):
2385         (JunkMask):
2386         * fvwm/focus.c (CMD_WarpToWindow):
2387         * fvwm/expand.c (__eae_parse_range):
2388         (expand_args_extended):
2389         (expand_vars_extended):
2390         (expand_vars_extended):
2391         * fvwm/ewmh_names.c (EWMH_WMIconName):
2392         (EWMH_WMName):
2393         * fvwm/ewmh_intern.h:
2394         * fvwm/ewmh_icons.c (ewmh_WMIcon):
2395         (EWMH_DoUpdateWmIcon):
2396         (ewmh_SetWmIconFromPixmap):
2397         (ewmh_SetWmIconFromPixmap):
2398         (EWMH_DeleteWmIcon):
2399         (extract_wm_icon):
2400         (extract_wm_icon):
2401         (EWMH_SetIconFromWMIcon):
2402         * fvwm/ewmh_events.c (ewmh_WMDesktop):
2403         (ewmh_WMState):
2404         (ewmh_WMIconGeometry):
2405         (ewmh_WMStrut):
2406         * fvwm/ewmh.h:
2407         * fvwm/ewmh.c (ewmh_ChangeProperty):
2408         (ewmh_ChangeProperty):
2409         (atom_get):
2410         (ewmh_AtomGetByName):
2411         (ewmh_AddToKdeSysTray):
2412         (EWMH_GetWorkAreaIntersection):
2413         (ewmh_HandleWindowType):
2414         (ewmh_check_wm_pid):
2415         * fvwm/geometry.c (constrain_size):
2416         * fvwm/geometry.h:
2417         * fvwm/events.c (__handle_cr_on_client):
2418         (WaitForButtonsUp):
2419         * fvwm/events.h:
2420         * libs/PictureImageLoader.c:
2421         * libs/PictureImageLoader.h:
2422         * libs/WinMagic.c:
2423         * libs/fvwmlib.h:
2424         * libs/Graphics.c (ParseGradient):
2425         (CalculateGradientDimensions):
2426         (CreateGradientPixmap):
2427         (CreateGradientPixmapFromString):
2428         * fvwm/colorset.c (update_root_pixmap):
2429         * fvwm/builtins.c (CMD_Echo):
2430         (CMD_State):
2431         * fvwm/add_window.c (AddWindow):
2432         * fvwm/screen.h (DecorFace):
2433         use int instead of unsigned int
2435         * libs/Flocale.c (FlocaleChar2bOneCharToUtf8):
2436         * fvwm/colormaps.c (EnterSubWindowColormap):
2437         (LeaveSubWindowColormap):
2438         (FetchWmColormapWindows):
2439         * libs/vpacket.h:
2440         * libs/CombineChars.c (char_combclass):
2441         use short instead of short int
2442         use long instead of long int
2444         * libs/PictureBase.h (FvwmPictureAttributes):
2445         (FvwmRenderAttributes):
2446         * libs/Flocale.h (FlocaleFont):
2447         * fvwm/style.c (style_parse_icon_grid_style):
2448         * fvwm/menus.c (size_menu_horizontally):
2449         (size_menu_vertically):
2450         (paint_menu):
2451         (AddToMenu):
2452         * fvwm/menuitem.c (menuitem_paint):
2453         (menuitem_free):
2454         * fvwm/menuitem.h (MenuItem):
2455         * fvwm/geometry.c (set_window_border_size):
2456         * fvwm/decorations.c (SelectDecor):
2457         use int instead of short
2459         * fvwm/screen.h (FvwmAcs):
2460         (DecorFace):
2461         * fvwm/menus.c (MenuSizingParameters):
2462         (size_menu_horizontally):
2463         (update_menu):
2464         (paint_menu_gradient_background):
2465         * fvwm/menuroot.h (MenuRootStatic):
2466         * fvwm/menuitem.h (MenuItem):
2467         (MenuItemPartSizesT):
2468         * fvwm/menuitem.c (menuitem_get_size):
2469         * fvwm/menudim.h (MenuDimensions):
2470         use int instead of unsigned short
2472 2007-01-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2474         * libs/gravity.h:
2475         * libs/gravity.c (gravity_move_resize_parent_child):
2476         * fvwm/frame.h:
2477         * fvwm/frame.c (mr_args_internal):
2478         (frame_setup_border):
2479         (frame_setup_titlebar):
2480         (frame_get_resize_decor_gravities):
2481         (frame_get_titlebar_dimensions):
2482         use rectangle instead of signed_rectangle
2484         * libs/fvwmrect.c (fvwmrect_subtract_rectangles):
2485         * libs/fvwmrect.h (signed_rectangle):
2486         removed type
2487         (rectangle):
2488         (size_rect):
2489         widht and height are now signed values
2491         * fvwm/placement.c (get_next_x):
2492         (__cp_get_next_x):
2493         (get_next_x):
2494         (__cp_get_next_y):
2495         (__test_fit):
2496         (__cp_test_fit):
2497         renamed functions
2499         * fvwm/placement.c (get_next_x):
2500         (get_next_y):
2501         (test_fit):
2502         (CleverPlacement):
2503         cleanup
2505 2007-01-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2507         * NEWS:
2508         NEWS entry for StickyIcon, StickyAcrossPagesIcon and
2509         StickyAcrossDesksIcon.
2511 2007-01-13  Serge Koksharov  <gentoosiast dog yandex dot ru>
2513         * fvwm/conditional.c (CreateConditionMask):
2514         added conditions StickyIcon, StickyAcrossPagesIcon and
2515         StickyAcrossDesksIcon.
2517         * fvwm/fvwm.1.in:
2518         documented new conditional tests.
2519         removed descriptions of styles StickyIconPage & StickyIconDesk which
2520         actually don't exists in fvwm.
2521         moved StickyIcon/SlipperyIcon descriptions immediately after
2522         Sticky/Slippery description.
2524 2007-01-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2526         * fvwm/placement.c (SmartPlacemen):
2527         (__sp_test_window):
2528         cleaned up SmartPlacement code
2530 2007-01-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2532         * fvwm/ConfigFvwmMenuDefaults:
2533         Mouse 0 MS A MenuLeaveSubmenu instead.
2535         * fvwm/ConfigFvwmMenuDefaults:
2536         Mouse 0 MS A MenuClose to make sidepic and border behave as
2537         before menu bindings.
2539         * fvwm/fvwm.1.in:
2540         * libs/wcontext.h (enum):
2541         * fvwm/menubindings.c (menu_binding):
2542         (menu_shortcuts):
2543         Add menu contexts 'I' (for items) 'S' '[', ']', '_', '-'.
2545         * fvwm/menustyle.c (menustyle_parse_old_style):
2546         add a message of deprecation.
2548 2007-01-10  Renato Caldas  <seventhguardian@gmail.com>
2550         * fvwm/module_list.h:
2551         * fvwm/module_list.c:
2552         new files for module handling code.
2554         * fvwm/module_list.h:
2555         * fvwm/module_interface.h:
2556         * fvwm/module_list.c:
2557         * fvwm/module_interface.c:
2558         (struct mqueue_object_type):
2559         (msg_mask_set):
2560         (module_alloc):
2561         (module_insert):
2562         (module_remove):
2563         (module_free):
2564         (module_get_next):
2565         (set_message_mask):
2566         (get_pipe_name):
2567         (initModules):
2568         (ClosePipes):
2569         (do_execute_module):
2570         (executeModuleDesperate):
2571         (CMD_Module):
2572         (CMD_ModuleListenOnly):
2573         (CMD_ModuleSynchronous):
2574         (HandleModuleInput):
2575         (DeadPipe):
2576         (KillModule):
2577         (KillModuleByName):
2578         (CMD_KillModule):
2579         (PositiveWrite):
2580         (DeleteMessageQueueBuff):
2581         (FlushMessageQueue):
2582         (FlushAllMessageQueues):
2583         (CMD_set_mask):
2584         (CMD_set_sync_mask):
2585         (CMD_set_nograb_mask):
2586         (skipModuleAliasToken):
2587         (countModules):
2588         (struct msg_masks_t):
2589         (struct fmodule):
2590         moved from module_interface.c/h to module_list.c/h
2592         * fvwm/module_list.h (do_execute_module):
2593         * fvwm/module_interface.h (AddToCommandQueue):
2594         (ExecuteModuleCommand):
2595         initialy static functions are exposed for now. Should be fixed soon.
2597         * fvwm/Makefile.am:
2598         added module_list.h and module_list.c
2599         reorganized the c files by size
2601         * fvwm/module_list.h:
2602         * fvwm/module_list.c:
2603         * fvwm/events.c:
2604         * fvwm/fvwm.c:
2605         * fvwm/session.c:
2606         * fvwm/stack.c:
2607         (initModules):
2608         (module_init_list):
2609         (ClosePipes):
2610         (module_kill_all):
2611         (KillModule):
2612         (module_kill):
2613         (countModules):
2614         (module_count):
2615         renamed functions to a unified style
2617         * fvwm/module_interface.h:
2618         * fvwm/module_interface.c:
2619         * fvwm/fvwm.c:
2620         * fvwm/events.c:
2621         * fvwm/modconf.c
2622         * fvwm/session.c:
2623         * fvwm/stack.c:
2624         * fvwm/windowshade.c:
2625         * fvwm/functions.c:
2626         * fvwm/move_resize.c:
2627         include file cleanup
2629         * fvwm/module_list.c (do_execute_module):
2630         made absolutely sure the module's read fd is >=0 before inserting
2631         the module on the list
2633         * fvwm/events.c (My_XNextEvent):
2634         * fvwm/module_list.c (PositiveWrite):
2635         (CMD_ModuleSynchronous):
2636         assume module read fd is allways >=0 (remove the tests)
2638         * fvwm/module_list.c (module_free):
2639         no need to test if fd >=0 when closing the pipes.
2641 2007-01-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2643         * fvwm/menuitem.c (draw_higlight_background):
2644         fix x-origin of HGradients
2646 2007-01-10  Renato Caldas  <seventhguardian@gmail.com>
2648         * fvwm/module_interface.c (FlushMessageQueues):
2649         fixed not flushing the first module on the list
2651 2007-01-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2653         * libs/Flocale.c (FlocaleGetFftFont):
2654         add sanity check for NULL fontname.
2656         * NEWS:
2657         * fvwm/fvwm.1.in:
2658         * fvwm/menuitem.c (menuitem_paint):
2659         (draw_hilight_background):
2660         make all kinds of pixmaps work with hilight background
2662         * libs/Colorset.h (CreateOffsetBackgroundPixmap):
2663         * libs/Colorset.c (CreateOffsetBackgroundPixmap)
2664         (CreateBackgroundPixmap):
2665         added CreateOffsetBackgroundPixmap with the ability to create
2666         transparent images at an offset relative to the window.
2668 2007-01-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2670         * fvwm/menus.c (__mloop_exit):
2671         (struct):
2672         (__mloop_get_event)
2673         (__mloop_handle_event):
2674         don't warp to parent item when entering other item with mouse.
2676         * NEWS:
2677         * fvwm/fvwm.1.in:
2678         * fvwm/menustyle.c (menustyle_update):
2679         make use of colorset TiledPixmap option with HiglightBack
2680         and HiglightTitleBack menu styles.
2682 2007-01-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2684         * libs/FScreen.c:
2685         reformatted
2687 2007-01-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2689         * libs/FScreen.c (FScreenParseGeometry):
2690         don't look up screen info if screen is undefined
2692 2007-01-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2694         * ONEWS:
2695         * NEWS:
2696         moved the NEWS of 2.2.x and 2.3.x to ONEWS
2698         * libs/fio.c (fvwm_send):
2699         compile fixes
2701         * libs/defaults.h (FVWMCONSOLE_CONNECTION_TO_SECS):
2702         added macro
2704         * libs/fio.c:
2705         * libs/fio.h:
2706         new utility files to wrap writing/reading standard lib functions that
2707         might be interrupted
2709 2007-01-05  Serge Koksharov  <gentoosiast dog yandex dot ru>
2711         * fvwm/ewmh_intern.h:
2712         compilation fix with EWMH_DEBUG enabled: include <sys/times.h>
2713         instead of <time.h>.
2715         * fvwm/windowlist.h:
2716         removed unneeded file.
2718         * fvwm/Makefile.am:
2719         removed windowlist.h from build list.
2721         * libs/PictureUtils.c:
2722         include "ftime.h" instead of <time.h>.
2723         fvwmlib.h header name should be in double quotes not in angle
2724         brackets.
2726         * libs/System.c:
2727         include "ftime.h" instead of <sys/time.h>.
2729 2007-01-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2731         * ChangeLog:
2732         make my email less spider-friendly
2734         * fvwm/bindings.c (binding_cmd):
2735         (ParseBinding):
2736         fix core
2738 2007-01-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2740         * fvwm/screen.h (ScreenInfo):
2741         made MyDisplayWidth and MyDisplayHeight signed integer values to avoid
2742         casting signed values in calculations to be cast to unsigned
2744         * fvwm/focus.c (__activate_window_by_command):
2745         don't warp the viewport if the center of the window is already in view
2746         fixed a bug in window positioning
2748 2007-01-03  Serge Koksharov  <gentoosiast dog yandex dot ru>
2750         * NEWS:
2751         FvwmIconBox IconColorset's bg wasn't updated immediately.
2753 2007-01-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2755         * fvwm/fvwm.c (main):
2756         close all open fds upon startup
2757         reopen stdin, stdout and stderr if necessary
2758         (reopen_fd):
2759         new function
2761         * fvwm/module_interface.c (do_execute_module):
2762         simplified error handling
2763         check maximum fd when creating modules
2765         * fvwm/events.c (My_XNextEvent):
2766         * fvwm/fvwm.c (main):
2767         replaced fd_width with fvwmlib_max_fd
2769         * libs/fvwmlib.h:
2770         * libs/System.c (fvwmlib_init_max_fd):
2771         added function and fvwmlib_max_fd
2773         * fvwm/events.c (My_XNextEvent):
2774         * fvwm/module_interface.c (CMD_ModuleSynchronous):
2775         switch back to using FD_SET
2777         * fvwm/events.c (My_XNextEvent:
2778         * fvwm/module_interface.h:
2779         * fvwm/module_interface.c:
2780         hide module structure members with access macros and use them
2781         everywhere
2783 2007-01-02  Renato Caldas  <seventhguardian@gmail.com>
2785         * fvwm/module_interface.c (module_add_to_fdsets):
2786         * fvwm/module_interface.h:
2787         created new function that also checks for too many open fds
2789         * fvwm/module_interface.c (CMD_ModuleSynchronous):
2790         * fvwm/events.c (My_XNextEvent):
2791         now using module_add_to_fdset to add pipes to the fdsets
2793 2007-01-01  Renato Caldas  <seventhguardian@gmail.com>
2795         * libs/defaults.h (MAX_NUM_MODULES):
2796         * fvwm/module_interface.c (module_alloc):
2797         (do_execute_module):
2798         removed check for MAX_NUM_MODULES - not needed, done by the O.S.
2800         * fvwm/module_interface.c (do_execute_module):
2801         moved the allocation call to the end of the sanity checks and pipe
2802         creation - better for performance
2804 2007-01-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2806         END MODULE STRUCT PATCHES
2808         * fvwm/module_interface.c (do_execute_module):
2809         fixed another memory leak
2811 2007-01-01  Renato Caldas  <seventhguardian@gmail.com>
2813         * fvwm/module_interface.h:
2814         * fvwm/module_interface.c:
2815         * fvwm/modconf.c:
2816         renamed struct module member "pipeName" and "pipeAlias" to "name"
2817         and "alias"
2819         * fvwm/module_interface.c (do_execute_module):
2820         fixed possible memory leak
2822 2007-01-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2824         * fvwm/events.c (My_XNextEvent):
2825         * fvwm/module_interface.c (module_alloc):
2826         (do_execute_module):
2827         (KillModule):
2828         * fvwm/module_interface.h (fmodule):
2829         replaced int with a flag struct
2831         * fvwm/module_interface.h:
2832         * fvwm/events.c (My_XNextEvent):
2833         * fvwm/module_interface.c (module_alloc):
2834         (module_free):
2835         (module_insert):
2836         (ClosePipes):
2837         add new modules at front of list again
2838         removed global variable init_fdset; use a flag in the module struct
2839         instead
2840         removed the now obsolete module slot count
2842 2007-01-01  Renato Caldas  <seventhguardian@gmail.com>
2844         * fvwm/module_interface.c (module_remove):
2845         (KillModule):
2846         moved module remotion code to module_remove()
2848 2007-01-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2850         * fvwm/events.c (My_XNextEvent):
2851         fixed startup commands
2853         * fvwm/module_interface.c (module_insert):
2854         (module_free):
2855         (KillModule):
2856         (ClosePipes):
2857         append modules at end of list
2859         * fvwm/events.c (My_XNextEvent):
2860         fixed core
2862         * fvwm/module_interface.c (ExecuteModuleCommand):
2863         (PositiveWrite):
2864         (KillModuleByName):
2865         (BroadcastPacket):
2866         (BroadcastNewPacket):
2867         (BroadcastName):
2868         (BroadcastFvwmPicture):
2869         (BroadcastColorset):
2870         (BroadcastPropertyChange):
2871         (BroadcastConfigInfoString):
2872         (CMD_SendToModule):
2873         (FlushAllMessageQueues):
2874         (countModules):
2875         (CMD_set_mask):
2876         (CMD_set_sync_mask):
2877         (CMD_set_nograb_mask):
2878         cleanup
2879         (skipModuleAliasToken):
2880         use MAX_MODULE_ALIAS_LEN
2882         * fvwm/module_interface.c (KillModule):
2883         (do_execute_module):
2884         (module_alloc):
2885         added a "slot" member to the module struct to fix the init_fdset hack
2886         for now
2888         * libs/defaults.h (MAX_NUM_MODULES):
2889         (MAX_MODULE_ALIAS_LEN):
2890         new config values
2892         * fvwm/module_interface.c (do_execute_module):
2893         rewrote module struct initialization
2894         (HandleModuleInput):
2895         use %p to print module address, don't cast it to int
2897         * fvwm/module_interface.c (ClosePipes):
2898         (KillModule):
2899         use module_free
2900         (msg_mask_set):
2901         (module_insert):
2902         (module_alloc):
2903         new functions()
2905         * fvwm/module_interface.c (FreeModule):
2906         (module_free):
2907         renamed function
2909         * fvwm/module_interface.c (KillModule):
2910         (FreeModule):
2911         * fvwm/events.c (My_XNextEvent):
2912         * fvwm/execcontext.h:
2913         * fvwm/modconf.c (CMD_Send_ConfigInfo):
2914         (ModuleConfig):
2915         * fvwm/stack.c (BroadcastRestack):
2916         cleanup
2918         * fvwm/module_interface.c (module_get_next):
2919         * fvwm/module_interface.h:
2920         new function
2922 2007-01-01  Renato Caldas  <seventhguardian@gmail.com>
2924         * fvwm/modconf.c (ModuleConfig):
2925         (SendConfigToModule):
2926         (send_xinerama_state):
2927         (send_desktop_names):
2928         (send_desktop_geometry):
2929         (send_image_path):
2930         (send_color_limit):
2931         (send_colorsets):
2932         (send_click_time):
2933         (send_move_threshold):
2934         (send_ignore_modifiers):
2935         (CMD_Send_ConfigInfo):
2936         * fvwm/functions.c (__execute_function):
2937         * fvwm/events.c (My_XNextEvent):
2938         * fvwm/module_interface.h (msg_masks_t):
2939         (fmodule):
2940         * fvwm/execcontext.c (__exc_change_context):
2941         (exc_create_null_context):
2942         * fvwm/execcontext.h:
2943         Initial module struct patches
2945         BEGIN MODULE STRUCT PATCHES
2947 2006-12-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2949         * fvwm/events.c (HandleFocusOut):
2950         (__refocus_stolen_focus_win):
2951         (HandleEnterNotify):
2952         less disruptive way of restoring focus to the window it was stolen from
2954 2006-12-31  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2956         * fvwm/events.c (HandleEnterNotify):
2957         restore focus to windows that had it stolen by
2958         unmanaged windows on enter of any unmanaged windows.
2960 2006-12-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2962         * fvwm/menubindings.c:
2963         don't include menus.h
2965         * fvwm/ConfigFvwmMenuDefaults:
2966         all bindings are silent
2968 2006-12-30  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
2970         * fvwm/ConfigFvwmMenuDefaults:
2971         make all numpad keys silent -- not all keyboads have a numpad
2972         add KP_Separator for MenuClose
2974 2006-12-30  Serge Koksharov  <gentoosiast dog yandex dot ru>
2976         * fvwm/fvwm.1.in:
2977         documented missing menu bindings.
2979         * fvwm/ConfigFvwmMenuDefaults:
2980         fixed wrong menu bindings.
2982 2006-12-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
2984         * fvwm/menubindings.c:
2985         * fvwm/menubindings.h:
2986         * fvwm/menucmd.c:
2987         * fvwm/menudim.c:
2988         * fvwm/menudim.h:
2989         * fvwm/menugeometry.c:
2990         * fvwm/menugeometry.h:
2991         * fvwm/menuitem.c:
2992         * fvwm/menuitem.h:
2993         * fvwm/menuroot.h:
2994         * fvwm/menus.c:
2995         * fvwm/menus.h:
2996         * fvwm/move_resize.c:
2997         * fvwm/move_resize.h:
2998         * fvwm/windowlist.c:
2999         simplified including header files
3001         * fvwm/menus.c (__mloop_handle_event):
3002         * fvwm/menuparameters.h:
3003         * fvwm/menubindings.c (menu_shortcuts):
3004         do not call find_entry directly but return MENU_NEWITEM_FIND instead
3006         * fvwm/menus.c (__mloop_handle_event):
3007         * fvwm/menuparameters.h:
3008         * fvwm/menubindings.c (menu_shortcuts):
3009         do not call move_any_menu directly but return MENU_NEWITEM_MOVEMENU
3010         instead
3012         * fvwm/menus.h (MenuParameters):
3013         (MenuOptions):
3014         (MenuPosHints):
3015         (MenuRC):
3016         (MenuReturn):
3017         (MenuRepaintTransparentParameters):
3018         * fvwm/menuparameters.h (MenuParameters):
3019         (MenuOptions):
3020         (MenuPosHints):
3021         (MenuRC):
3022         (MenuReturn):
3023         (MenuRepaintTransparentParameters):
3024         moved to menuparameters.h
3026         * fvwm/menus.h (MenuRoot):
3027         (MenuRootDynamic):
3028         (MenuRootStatic):
3029         * fvwm/menutypes.h (MenuRoot):
3030         (MenuRootDynamic):
3031         (MenuRootStatic):
3032         moved to menuroot.h
3034         * fvwm/menus.c (menu_get_geometry):
3035         (menu_get_outer_geometry):
3036         * fvwm/menugeometry.c (menu_get_geometry):
3037         (menu_get_outer_geometry):
3038         moved to menugeometry.c
3040         * fvwm/menuparameters.h:
3041         * fvwm/menutypes.h:
3042         * fvwm/menugeometry.c:
3043         * fvwm/menugeometry.h:
3044         * fvwm/Makefile.am:
3045         new files
3047         * fvwm/menubindings.h (enum):
3048         * fvwm/menus.c (enum):
3049         moved enum menu_shortcut_action to menubindings.h
3050         (get_selectable_item_index):
3051         (get_selectable_item_from_index):
3052         (get_selectable_item_from_section):
3053         (get_selectable_item_count):
3054         (parse_menu_action):
3055         moved to menubindings.c
3057         * fvwm/menus.c (enum):
3058         (parse_menu_action):
3059         (menuShortcuts):
3060         renamed enum shortcut_action to menu_shortcut_action
3062         * fvwm/fvwm.c (SetRCDefaults):
3063         read default config file after all other defaults
3065 2006-12-29  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3067         * fvwm/ConfigFvwmMenuDefaults:
3068         * fvwm/fvwm.c (SetRCDefaults):
3069         make the hard coded menu bindings load before ConfigFvwmDefaults
3070         move Mouse 0 ... to ConfigFvwmMenuDefaults
3072 2006-12-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3074         * fvwm/ConfigFvwmMenuDefaults:
3075         * fvwm/fvwm.c (SetRCDefaults):
3076         added hard coded default menu bindings
3078 2006-12-29  Serge Koksharov  <gentoosiast dog yandex dot ru>
3080         * fvwm/fvwm.1.in:
3081         documentation fixes.
3083 2006-12-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3085         * fvwm/bindings.c:
3086         * fvwm/menubindings.h:
3087         * fvwm/menubindings.c:
3088         * fvwm/menus.h:
3089         * fvwm/menus.c:
3090         * fvwm/Makefile.am:
3091         moved new menu binding code to menubindings.c, menubindings.h
3092         split binding into a regular list and a fallback list that can not be
3093         modified
3095         * libs/fvwmrect.c (fvwmrect_move_into_rectangle):
3096         fixed calculation of new geometry if x or y is negative
3098         * fvwm/geometry.c (maximize_adjust_offset):
3099         fixed calculations of normal geometry when maximized
3101 2006-12-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3103         * NEWS:
3104         * fvwm/ConfigFvwmMenuDefaults:
3105         * fvwm/fvwm.c (SetRCDefaults):
3106         * fvwm/menus.c (parse_menu_action):
3107         * fvwm/fvwm.1.in:
3108         rename menu action to menu bindings and make menu binding commands
3109         more verbose.  Move "Mouse 0 M A MenuSelectItem" to SetRCDefaults to
3110         ensure basic function with ConfigFvwmMenuDefaults missing.
3112 2006-12-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3114         * fvwm/menus.c (menuShortcuts):
3115         fixed compiler warning.
3117 2006-12-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3119         * fvwm/fvwm.1.in:
3120         corrected mis-spelling
3122         * AUTHORS:
3123         * NEWS:
3124         * fvwm/fvwm.1.in:
3125         * fvwm/menus.h:
3126         * fvwm/menus.c (handle_emacs_bindings):
3127         (parse_menu_action)
3128         (menuShortcuts):
3129         (__mloop_handle_event):
3130         (menu_binding):
3131         * fvwm/bindings.c (ParseBinding):
3132         * fvwm/Makefile.am (config_DATA):
3133         * fvwm/ConfigFvwmDefaults:
3134         * fvwm/ConfigFvwmMenuDefaults:
3135         fully configurable mouse any key bindings for menu navigation.
3137 2006-12-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3139         * fvwm/virtual.c (HandlePaging):
3140         removed bogus comment
3142         * fvwm/move_resize.c (__move_loop):
3143         cleanup
3144         (__resize_window):
3145         allow paging during resize with "EdgeScroll 0 0" as documented in the
3146         man page
3147         fixed disappearing windows with "maximize; resize - abort; unmaximize"
3149         * fvwm/fvwm.h (FvwmWindow):
3150         * fvwm/add_window.c (AddWindow):
3151         * fvwm/add_window.c (setup_frame_window):
3152         * fvwm/add_window.c (setup_parent_window)
3153         * fvwm/borders.c (border_draw_decorations):
3154         * fvwm/borders.c (border_draw_one_border_part):
3155         * fvwm/borders.c (border_get_parts_and_pos_to_draw)
3156         * fvwm/borders.c (border_get_titlebar_descr)
3157         * fvwm/builtins.c (__remove_window_decors):
3158         * fvwm/conditional.c (MatchesConditionMask):
3159         * fvwm/events.c (HandleMapNotify):
3160         * fvwm/events.c (HandleMapRequestKeepRaised)
3161         * fvwm/events.c (HandlePropertyNotify):
3162         * fvwm/events.c (HandleShapeNotify):
3163         * fvwm/events.c (__cr_detect_icccm_move)
3164         * fvwm/events.c (__cr_get_grav_position):
3165         * fvwm/events.c (__cr_get_static_position)
3166         * fvwm/events.c (__handle_configure_request)
3167         * fvwm/events.c (__handle_cr_on_client):
3168         * fvwm/ewmh.c (EWMH_fullscreen):
3169         * fvwm/focus.c (__activate_window_by_command):
3170         * fvwm/focus.c (__set_focus_to_fwin):
3171         * fvwm/focus.c (warp_to_fvwm_window):
3172         * fvwm/frame.c (__frame_setup_window):
3173         * fvwm/frame.c (frame_create_move_resize_args)
3174         * fvwm/frame.c (frame_free_move_resize_args):
3175         * fvwm/frame.c (frame_move_resize_step)
3176         * fvwm/frame.c (frame_reshape_border):
3177         * fvwm/geometry.c (constrain_size):
3178         * fvwm/geometry.c (get_icon_corner)
3179         * fvwm/geometry.c (get_page_offset):
3180         * fvwm/geometry.c (get_page_offset_check_visible):
3181         * fvwm/geometry.c (get_shaded_client_window_pos):
3182         * fvwm/geometry.c (get_title_button_geometry):
3183         * fvwm/geometry.c (get_title_geometry)
3184         * fvwm/geometry.c (get_unshaded_geometry):
3185         * fvwm/geometry.c (get_visible_window_or_icon_geometry)
3186         * fvwm/geometry.c (gravity_constrain_size):
3187         * fvwm/geometry.c (maximize_adjust_offset):
3188         * fvwm/geometry.c (update_absolute_geometry):
3189         * fvwm/geometry.c (update_relative_geometry)
3190         * fvwm/gnome.c (GNOME_SetWinArea):
3191         * fvwm/icons.c (AutoPlaceIcon):
3192         * fvwm/icons.c (DeIconify):
3193         * fvwm/icons.c (Iconify):
3194         * fvwm/module_interface.c (CONFIGARGS):
3195         * fvwm/move_resize.c (AnimatedMoveAnyWindow)
3196         * fvwm/move_resize.c (CMD_Maximize):
3197         * fvwm/move_resize.c (CMD_ResizeMaximize):
3198         * fvwm/move_resize.c (CMD_ResizeMoveMaximize):
3199         * fvwm/move_resize.c (__move_loop):
3200         * fvwm/move_resize.c (__move_window):
3201         * fvwm/move_resize.c (__resize_window):
3202         * fvwm/move_resize.c (maximize_fvwm_window):
3203         * fvwm/move_resize.c (resize_move_window):
3204         * fvwm/move_resize.c (stick_across_pages):
3205         * fvwm/move_resize.c (unmaximize_fvwm_window):
3206         * fvwm/placement.c (__explain_placement):
3207         * fvwm/placement.c (__place_get_wm_pos):
3208         * fvwm/placement.c (get_next_x):
3209         * fvwm/placement.c (get_next_y):
3210         * fvwm/placement.c (test_fit)
3211         * fvwm/session.c (MatchWinToSM):
3212         * fvwm/session.c (SaveWindowStates):
3213         * fvwm/update.c (apply_window_updates):
3214         * fvwm/virtual.c (MoveViewport):
3215         * fvwm/windowlist.c (CMD_WindowList):
3216         * fvwm/windowshade.c (CMD_WindowShade):
3217         put some of the window geometry members into a separate struct window_g
3218         with members frame, normal, max, max_defect, max_offset
3220 2006-12-21  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3222         * NEWS:
3223         * AUTHORS:
3224         * fvwm/window_flags.h:
3225         * fvwm/style.h:
3226         * fvwm/style.c (style_parse_one_style_option):
3227         * fvwm/icons.c (DrawIconTitleWindow):
3228         * fvwm/fvwm.h (common_flags_t):
3229         * fvwm/fvwm.1.in (Style):
3230         * fvwm/borders.c:
3231         (border_draw_title_stick_lines):
3232         Applied Stippled patch by Thomas Adam with some fixes.
3234 2006-12-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3236         * NEWS:
3237         FvwmWinList button/list syncronization fixed (bug #1393)
3239 2006-12-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3241         * NEWS:
3242         * configure.ac:
3243         updated for 2.5.20.
3245         * NEWS:
3246         * configure.ac:
3247         updated for 2.5.19 release
3249         * NEWS:
3250         updated after 2.4.20 release
3252         * NEWS:
3253         * fvwm/focus.c (focus_get_fpol_context_flag):
3254         * fvwm/events.c (__check_click_to_focus_or_raise)
3255         (__handle_click_to_focus):
3256         Treat EWMH desktop as client window under click to focus. (#1492)
3258 2006-12-08  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3260         * libs/Module.h (MX_REPLY):
3261         (MAX_EXTENDED_MESSAGES):
3262         (MAX_XMSG_MASK):
3263         * fvwm/module_interface.c (CMD_Send_Reply):
3264         * fvwm/functable.c (func_table):
3265         * fvwm/commands.h:
3266         Added Send_Reply module only command.
3268 2006-11-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3270         * libs/PictureUtils.c (init_static_colors_table):
3271         fix fvwm for < 8 bit depth, bug #1677
3273 2006-11-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3275         * fvwm/misc.c (IsRectangleOnThisPage):
3276         new fix for signedness problems.
3278 2006-10-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3280         * fvwm/misc.c (IsRectangleOnThisPage):
3281         fix signedness problem with test introduced by gcc4 fix below.
3283 2006-09-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3285         * libs/fvwmrect.h (fvwmrect_subtract_rectangles):
3286         (size_rect):
3287         (rectangle)
3288         (signed_rectangle):
3289         * libs/fvwmrect.c (fvwmrect_subtract_rectangles):
3290         * libs/gravity.h (gravity_move_resize_parent_child):
3291         * libs/gravity.c (gravity_move_resize_parent_child):
3292         * fvwm/frame.h (frame_get_titlebar_dimensions)
3293         * fvwm/frame.c (frame_get_titlebar_dimensions_only)
3294         (frame_get_resize_decor_gravities):
3295         (mr_args_internal):
3296         (frame_setup_border):
3297         (frame_setup_titlebar)
3298         (frame_get_resize_decor_gravities):
3299         (frame_get_titlebar_dimensions):
3300         split rectangle into a signed size and an unsigned size type.
3302         * fvwm/screen.h (ScreenInfo):
3303         * libs/FScreen.h (FScreenGetScrRect):
3304         (FScreenGetResistanceRect):
3305         * libs/FScreen.c (XineramaScreenInfo):
3306         (FScreenGetGeometry)
3307         (FScreenGetScrRect):
3308         (FScreenClipToScreen):
3309         (FScreenCenterOnScreen)
3310         (FScreenGetResistanceRect):
3311         (FScreenIsRectangleOnScreen):
3312         * fvwm/fvwm.h (FvwmWindow):
3313         * fvwm/screen.h (DecorFace):
3314         * libs/fvwmlib.h (CreateGradientPixmap):
3315         * libs/Graphics.c (CreateGradientPixmap):
3316         * libs/PictureUtils.h (PictureCloseImageColorAllocator):
3317         * libs/PictureUtils.c (PictureCloseImageColorAllocator):
3318         * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData)
3319         (PImageLoadPixmapFromFile):
3320         (PImageLoadPixmapFromXpmData):
3321         * libs/PictureImageLoader.c (FIMAGE_CMD_ARGS)
3322         (PImageCreatePixmapFromArgbData):
3323         (PImageLoadPixmapFromFile)
3324         (PImageLoadFvwmPictureFromFile):
3325         (PImageLoadPixmapFromXpmData):
3326         * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
3327         * fvwm/ewmh_icons.c (EWMH_DeleteWmIcon):
3328         (EWMH_SetIconFromWMIcon):
3329         * fvwm/ewmh.h (EWMH_GetWorkAreaIntersection):
3330         * fvwm/ewmh.c (EWMH_GetWorkAreaIntersection):
3331         * fvwm/colorset.c (parse_colorset):
3332         * fvwm/icons.c (DrawIconTitleWindow):
3333         (AutoPlaceIcon)
3334         (do_all_iconboxes):
3335         * fvwm/menus.h (MenuRootDynamic):
3336         * fvwm/menus.c (update_menu):
3337         (pop_menu_up):
3338         (do_menu)
3339         (get_menu_options):
3340         * fvwm/move_resize.c (GetMoveArguments):
3341         (ParseOneResizeArgument)
3342         (GetResizeArguments):
3343         (GetResizeMoveArguments):
3344         (DoSnapAttract)
3345         (__move_loop):
3346         (CMD_Maximize):
3347         change dimensions and allocation counts to unsigned types.
3349         * libs/Flocale.h (FlocaleStringNumberOfBytes)
3350         (FlocaleStringByteToCharOffset):
3351         (FlocaleStringCharToByteOffset)
3352         (FlocaleStringCharLength)
3353         * libs/Flocale.c (FlocaleStringNumberOfBytes)
3354         (FlocaleStringByteToCharOffset):
3355         (FlocaleStringCharToByteOffset)
3356         (FlocaleStringCharLength):
3357         (FlocaleUtf8ToUnicodeStr2b)
3358         (FlocaleStringToString2b):
3359         (FlocaleEncodeString):
3360         * libs/Ficonv.c (convert_charsets):
3361         change most string types to char* from unsigned char* to match
3362         with system headers without casts.
3364         * libs/Flocale.c (FlocaleLoadFont):
3365         init shadow_dir to make gcc 4 happy.
3367         * libs/Colorset.h (CSETS_IS_TRANSPARENT_PR_TINT)
3368         (CSETS_IS_TRANSPARENT_ROOT_TRAN):
3369         (CSETS_IS_TRANSPARENT_ROOT_PURE)
3370         (CSETS_IS_TRANSPARENT_PR_PURE):
3371         (CSETS_IS_TRANSPARENT_ROOT)
3372         (CSETS_IS_TRANSPARENT):
3373         compare pointer with NULL, not >= 0.
3375         * libs/FTips.h (ftips_position_t):
3376         * fvwm/expand.c (partial_extended_vars):
3377         * fvwm/placement.c (preason_screen_t):
3378         remove comma last in enums.
3380         * fvwm/style.c (style_parse_focus_policy_style):
3381         change 0xffffffff to ~0 to silience truncation warning.
3383         * fvwm/session.h (mwtsm_state_args):
3384         make flags unsigned.
3386         * fvwm/schedule.c (sq_object_type):
3387         change // to /* ... */
3389         * libs/Fft.c (FftGetFontWidths):
3390         (FftTextWidth):
3391         * libs/FScreen.c (FScreenConfigureSLSScreens):
3392         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
3393         (EWMH_SetDesktopNames):
3394         * fvwm/fvwm.c (LoadDefaultLeftButton):
3395         (LoadDefaultRightButton):
3396         * fvwm/builtins.c (ReadDecorFace):
3397         (CMD_State):
3398         silence signedness warnings by casts.
3400         * fvwm/borders.c (ROTATE_RECTANGLE):
3401         make sure tr is initialized.
3403         * fvwm/add_window.c (FetchWmProtocols):
3404         use unsigned type for l_protocols.
3406 2006-09-17  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3408         * fvwm/events.c (HandleFocusIn):
3409         (HandleFocusOut):
3410         * fvwm/focus.c (__set_focus_to_fwin):
3411         fix focus decoration when unmanaged are focused, unless
3412         FlickeringQtDialogsWorkaround is on. Closes bug #758.
3414 2006-09-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3416         * fvwm/geometry.c (constrain_size):
3417         repeat aspect-resizing in a loop to get a stable result that does not
3418         change the next time the frame is set up
3420 2006-09-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3422         * NEWS:
3423         * configure.ac:
3424         increased version to 2.5.19
3425         released 2.5.18
3427         * NEWS:
3428         * configure.ac:
3429         updated for 2.5.18 release
3431 2006-09-04  Renato Caldas  <seventhguardian@gmail.com>
3433         * acinclude.m4:
3434         removed the unused test for imlib
3435         removed the Imlib.h header from gdk_imlib test programs
3437 2006-08-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3439         * fvwm/ewmh.c (atom_get):
3440         fix offset and length args for XGetWindowProperty() (to support 64bit
3441         architectures)
3443 2006-08-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3445         * fvwm/events.c (HandleUnmapNotify):
3446         immediately handle MapRequests after unmapping a window while we still
3447         have the context fvwm window; this is necessary to allow the client to
3448         re-map a window before fvwm can reparent it to the root window
3449         (HandleMapRequestKeepRaised):
3450         cleaned up
3452 2006-08-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3454         * fvwm/ewmh.c (ewmh_HandleDesktop):
3455         fixed handling of ClickToFocusPassesClick with the EWMH desktop
3456         window
3458 2006-08-29  Harald Dunkel  <harald.dunkel@t-online.de>
3460         * fvwm/icccm2.c:
3461         * fvwm/gnome.c:
3462         * fvwm/decorations.c:
3463         fix offset and length args for XGetWindowProperty() (to support 64bit
3464         architectures)
3466 2006-08-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3468         * NEWS:
3469         * fvwm/expand.c (expand_vars_extended):
3470         correctly expand break.
3471         * fvwm/conditional.c (__rc_matches_rcstring_consume):
3472         fix matching break.
3474 2006-08-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3476         * fvwm/decorations.h (is_function_allowed):
3477         * fvwm/decorations.c (__is_resize_allowed):
3478         (is_function_allowed):
3479         work on 'const FvwmWindow *'
3481         * fvwm/fvwm.h (action_flags):
3482         * fvwm/style.c (check_window_style_change):
3483         * fvwm/module_interface.c (__get_allowed_actions)
3484         (CONFIGARGS):
3485         * libs/vpacket.h (ConfigWinPacket):
3486         expose fvwm allowed actions to modules
3488 2006-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3490         * fvwm/move_resize.c (__move_icon):
3491         *do* map icon windows for pictured icons on move, but only if they end
3492         up on the current desk
3494 2006-08-09  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3496         * fvwm/move_resize.c (__move_icon):
3497         don't map icon windows for pictured icons on move
3499 2006-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3501         * fvwm/style.c (remove_all_of_style_from_list):
3502         (__simplify_style_list):
3503         (blockor):
3504         (blockand):
3505         (blockunmask)
3506         (blockissubset):
3507         (style_ids_are_equal):
3508         (style_id_equals_id)
3509         (styles_have_same_id):
3510         (fw_match_style_id)
3511         (one_fw_can_match_both_ids):
3512         (check_window_style_change):
3513         use int/0/1 instead of Bool/False/True
3515         * fvwm/move_resize.c (stick_across_pages):
3516         use False instead of FALSE
3518         * fvwm/style.c (fw_match_style_id):
3519         * fvwm/read.c (run_command_file):
3520         (push_read_file):
3521         * fvwm/add_window.c (MappedNotOverride):
3522         * libs/wild.c (matchWildcards):
3523         use 0 and 1 instead of FALSE and TRUE
3525         * fvwm/fvwm.h:
3526         removed TRUE and FALSE
3528 2006-08-07  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3530         * NEWS:
3531         FvwmPager !IconTitle style bugfix.
3533 2006-07-31  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
3535         * fvwm/fvwm.1.in:
3536         Updated description of Wait command in man page.
3538 2006-07-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3540         * libs/Flocale.c (FlocaleFontStructDrawString)
3541         (FlocaleRotateDrawString):
3542         (FlocaleDrawString):
3543         fixed drawing of forecolor/hilightfore
3545         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
3546         always unmaximize and resize window when leaving fullscreen state,
3547         not just if it did not start as fullscreen
3549 2006-07-17  Renato Caldas  <seventhguardian@gmail.com>
3551         * fvwm/fvwm.1.in (MenuStyle):
3552         added a reference to the prefered ! style negation flag,
3553         and listed the other deprecated negative forms in one place.
3554         (ActiveForeOff):
3555         (AnimationOff):
3556         (AutomaticHotkeysOff):
3557         (HilightBackOff):
3558         (TitleWarpOff):
3559         changed to the ! negation form and listed as deprecated.
3560         (ActiveBack):
3561         removed relics from the man page
3563 2006-07-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3565         * NEWS:
3566         * configure.ac:
3567         increased version to 2.5.18
3568         released 2.5.17
3570         * NEWS:
3571         * configure.ac:
3572         updated for 2.5.17 release
3574 2006-07-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3576         * fvwm/move_resize.c (__move_window):
3577         allow moving a window without an icon while it's iconified based on the
3578         frame geometry
3580 2006-07-17  Serge Koksharov  <gentoosiast dog yandex dot ru>
3582         * fvwm/menustyle.c (menustyle_copy):
3583         Now 'TitleColorset' also copied by 'CopyMenuStyle' command.
3585 2006-07-17  Renato Caldas  <seventhguardian@gmail.com>
3587         * fvwm/fvwm.1.in:
3588         NoTitle, StippledTitleOff, NoHandles, NoButton, NoIconTitle styles
3589         changed the manpage to reflect the prefered style negation method,
3590         that is, using the !* negation sign.
3592 2006-07-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3594         * fvwm/fvwm.1.in (COMMAND EXPANSION):
3595         removed documentation of filters.
3597         * NEWS:
3598         * fvwm/expand.c (check_first_filter):
3599         (apply_filters)
3600         (expand_args_extended):
3601         (expand_vars_extended):
3602         (expand_vars):
3603         removed variable filter implementation and backslash-escaping.
3605 2006-07-15  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3607         * NEWS:
3608         News blurb for variable filters and backslash-escaping.
3609         * fvwm/fvwm.1.in:
3610         documentation of variable filters.
3612 2006-07-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3614         * fvwm/expand.c (chec):
3615         (first_filter):
3616         (apply_filters)
3617         (expand_args_extended):
3618         (expand_vars_extended):
3619         (expand_vars):
3620         implemented variable filters.
3622         * fvwm/expand.c (expand_vars):
3623         made backslash work as escape character within extended variables.
3625         * libs/Strings.h (QuoteEscapeString):
3626         (QuoteEscapeStringLength):
3627         * libs/Strings.c (QuoteEscapeString):
3628         (QuoteEscapeStringLength):
3629         new functions: QuoteEscapeString and QuoteEscapeStringLength for
3630         generic quoting.
3632         * fvwm/expand.c (expand_args_extended):
3633         make upper limit inclusive.
3635         * fvwm/functions.c (__execute_function):
3636         Changed PeekToken to GetNextToken before expand_vars call.
3638         * fvwm/fvwm.1.in:
3639         updated documentation regarding quoting in expand_args_extended
3641 2006-07-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3643         * fvwm/expand.c (__eae_parse_range):
3644         reject everything that does not begin with a digit
3646         * libs/Parse.c (SkipNTokens):
3647         stop skipping tokens at the end of input
3649         * fvwm/expand.c (__eae_parse_range):
3650         bugfixes
3651         (expand_vars):
3652         reformatted
3653         (__eae_parse_range):
3654         fixed parsing of $[n-]
3656 2006-07-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3658         * fvwm/expand.c (expand_args_extended):
3659         fixed core dump
3660         added range check for positional parameters
3661         (expand_args_extended):
3662         (__eae_parse_range):
3663         cleaned up and simplified parsing code
3664         properly unquote arguments when expanding
3665         removed the patch below
3667 2006-07-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3669         * fvwm/expand.c (expand_args_extended):
3670         removed range check for positional parameters
3671         make single arguments not use the 'upper' variable
3672         changed back to PeekToken for single arguemnts.
3673         improved some comments.
3675 2006-07-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3677         * fvwm/expand.c (expand_args_extended):
3678         Fix segfault when called with a tokenless string for single arguments.
3680 2006-07-12  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
3681         * docs/FAQ:
3682         Usage of FvwmAuto module in FAQ 7.17 was incorrect.
3683         Reported by Serge Koksharov.
3685 2006-07-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3687         * fvwm/placement.c (__explain_placement):
3688         print initial size of window too
3690         * libs/Makefile.am (libfvwm_a_SOURCES):
3691         * libs/fvwm_sys_stat.h:
3692         added compat file
3694         * configure.ac:
3695         added O_NOFOLLOW replacement and always include fcntl.h
3697 2006-07-12  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
3698         * libs/Parse.c:
3699         Added DV's mailing-list comments about how PeekToken & GetNextToken
3700         work as comments to the source code. (slightly modified)
3702 2006-07-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3704         * fvwm/schedule.c (CMD_Schedule):
3705         Fixed parsing of "Periodic" option.
3707 2006-07-11  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3709         * NEWS:
3710         Fix for tempfile vulnerabilities in FvwmCommand.
3711         * configure.ac:
3712         Added check for lstat.
3714 2006-07-12  Scott Smedley  <ss(at)aao(dot)gov(dot)au>
3715         * fvwm/schedule.c:
3716         * NEWS:
3717         * AUTHORS:
3718         * fvwm/fvwm.1.in:
3719         Added "Periodic" option to Schedule command.
3721 2006-07-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3723         * fvwm/module_interface.c (KillModule):
3724         (ClosePipes):
3725         fixed KillModule
3728 2006-07-09  Renato Caldas  <seventhguardian@gmail.com>
3730         * fvwm/fvwm.c (main):
3731         changed the -blackout warning to say it will be removed in 3.0
3733         * fvwm/fvwm.1.in (-blackout):
3734         updated the manual regarding the future remotion of -blackout
3736 2006-07-08  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3738         * NEWS:
3739         * configure.ac:
3740         added $EXEEXT to FvwmGtk in order to compile on Cygwin (bug #3772).
3742 2006-07-08  Renato Caldas  <seventhguardian@gmail.com>
3744         *libs/alloca.c (DEBUG_I00FUNC)
3745         removed old debug code
3747 2006-07-07  Renato Caldas  <seventhguardian@gmail.com>
3749         * libs/debug.c:
3750         removed the old unused file
3752         * libs/Makefile.am (libfvwm_a_SOURCES):
3753         removed the reference to debug.c
3755         * libs/fvwmlib.h:
3756         removed the code related to libs/debug.c
3758         * fvwm/module_interface.c (make_named_packet)
3759         removed the #if 0'ed debug code related to debug.c
3761         fvwm/focus.h (DEBUG_FOCUS)
3762         removed the #ifdef'ed to 0 debug code related to debug.c
3765 2006-07-06  Renato Caldas  <seventhguardian@gmail.com>
3767         * libs/PictureUtils.c (PICTURE_DEBUG_COLORS_ALLOC_FAILURE):
3768         removed useles definition.
3770         * modules/FvwmPager/FvwmPager.c (main):
3771         (ParseOptions):
3772         removed most of the debug code.
3773         changed termination debug to use 'isTerminated' instead of
3774         'debug_term_signal'.
3775         changed termination debug to compile on FVWM_DEBUG_MSGS instead
3776         of DEBUG.
3778         * libs/fvwmsignal.h (FVWM_DEBUG_MSGS):
3779         * libs/fvwmsignal.c (FVWM_DEBUG_MSGS):
3780         (fvwmSetTerminate):
3781         removed unused debug_term_signal.
3783 2006-07-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3785         * NEWS:
3786         Work around for Cygwin not requiering '_GNU_SOURCE' to use
3787         stdio's getline; news entry.
3789 2006-06-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3791         * fvwm/commands.h:
3792         * fvwm/module_interface.c (CMD_ModuleListenOnly):
3793         (do_execute_module):
3794         (PositiveWrite):
3795         (ClosePipes):
3796         (KillModule):
3797         * fvwm/commands.h (enum):
3798         * fvwm/functable.c (func_table):
3799         new command ModuleListenOnly
3801 2006-06-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3803         * fvwm/move_resize.c (__move_loop):
3804         make sure a window is snapped in __move_loop when a button is released
3805         if it was snapped before
3807 2006-06-04  Mikhael Goikhman  <migo@homemail.com>
3809         * fvwm/expand.c (expand_vars_extended):
3810         convert function to have a single return point; this is good to
3811         implement doc/todo-vars filters in the future;
3812         fix $[w.name], $[w.iconname], $[w.class] and $[w.resource]
3813         to behave like deprecated $n, $c and $r, i.e. quote them
3815 2006-06-03  Mikhael Goikhman  <migo@homemail.com>
3817         * fvwm/expand.c:
3818         multiple minor tweaks: remove trailing spaces and other
3819         re-spacing and re-indenting, remove old "#if 0" code
3821 2006-06-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3823         * fvwm/move_resize.c (ParseOneResizeArgument):
3824         rewrote parsing of resize arguments
3825         new prefix 'w' for resizing
3827 2006-05-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3829         * fvwm/conditional.c (MatchesConditionMask):
3830         fixed handling of some conditions (iconifiable, fixed, ...)
3832 2005-01-28  Scott Smedley  <scottie7@tpg.com.au>
3834         * fvwm/fvwm.1.in:
3835         s/reverted/negated/
3837         * fvwm/conditional.c:
3838         Output an error message if an unrecognised conditional is used
3839         with the Test or TestRc commands.
3841 2006-05-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3843         * fvwm/frame.c (frame_mrs_hide_changing_parts):
3844         do not map hide windows if their width or height is zero
3846 2006-05-09  Serge Koksharov  <gentoosiast dog yandex dot ru>
3848         * fvwm/ewmh_events.c:
3849         * fvwm/fvwm.1.in:
3850         * fvwm/gnome.c:
3851         * libs/FlocaleCharset.c:
3852         corrected typos
3854         * libs/Flocale.c:
3855         corrected typos in warning messages
3857         * libs/Colorset.c:
3858         * libs/PictureGraphics.c:
3859         * libs/PictureGraphics.h:
3860         renamed function PGraphicsCreateTransprency to
3861         PGraphicsCreateTransparency
3863 2006-04-17  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3865         * fvwm/fvwm.1.in (COMMAND EXPANSION):
3866         * fvwm/expand.c (expand_args_extended):
3867         fixed $[n] to work exactly as $n, i.e. dequote the expansion.
3869 2006-04-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3871         * NEWS:
3872         * fvwm/fvwm.1.in (COMMAND EXPANSION):
3873         * fvwm/expand.c (expand_args_extended):
3874         (expand_vars):
3875         added support for $[n], $[n-m], $[n-] and $[*] variable expansion.
3877         * fvwm/conditional.c (CMD_All):
3878         * fvwm/fvwm.1.in (All):
3879         changed Reverse and UseStack options to have free order.
3881         * NEWS:
3882         * fvwm/fvwm.1.in (WindowShade):
3883         * fvwm/windowshade.c (CMD_WindowShade):
3884         * fvwm/add_window.c (setup_window_structure):
3885         added last direction to WindowShade command.
3887 2006-04-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3889         * fvwm/fvwm.1.in (All):
3890         corrected typo
3892 2006-04-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3894         * NEWS:
3895         * fvwm/fvwm.1.in (All):
3896         * fvwm/conditional.c (CMD_All):
3897         added reverse option to All command to do the action in opposite order
3898         added UseStack option to All command to use the stack ring instead of
3899         the window ring.
3901 2006-04-07  Serge Koksharov  <gentoosiast dog yandex dot ru>
3903         * bin/fvwm-bug.in:
3904         changed fallback editor from `emacs' to `vi' because it much
3905         more widespread on non-Linux systems
3906         fixed errors (because of incorrect syntax fallback entries were
3907         not used)
3908         now script honors `TMPDIR' env. variable and if it's not set it
3909         fallback to `/tmp' directory when creating temporary file
3911 2006-04-06  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3913         * fvwm/fvwm.1.in:
3914         changed description of the fvwmstyle resource usage
3915         to state that it's used in addition to the other
3916         matches
3917         * fvwm/style.c (fw_match_style_id):
3918         fixed a typo in style_name matching
3920 2006-04-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3922         * fvwm/style.c (fw_match_style_id):
3923         reformatted code and fixed a warning
3925 2006-04-04  Serge Koksharov  <gentoosiast dog yandex dot ru>
3927         * ChangeLog:
3928         * bin/ChangeLog:
3929         * libs/Fft.c (FftGetFont):
3930         * libs/System.c:
3931         corrected typos
3933         * libs/System.c (fvwm_mkstemp):
3934         because of typo in the 'ifdef' pragma underlying OS's 'mkstemp'
3935         function was never used, even if it was considered secure by configure
3936         script.
3938 2006-04-05  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
3940         * AUTHORS:
3941         added some more suff to the list of what I've done.
3942         * NEWS:
3943         * fvwm/fvwm.1.in:
3944         * fvwm/add_window.c (__add_window_handle_x_resources)
3945         (destroy_window):
3946         (AddWindow):
3947         * fvwm/fvwm.h (FvwmWindow):
3948         added fvwmstyle resource to override style name
3950 2006-03-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
3952         * fvwm/menus.c (pop_menu_up):
3953         as documented, do not warp to title for root menus with TitleWarp
3955 2006-03-21  Serge Koksharov  <gentoosiast dog yandex dot ru>
3957         * fvwm/fvwm.1.in:
3958         Removed duplicated 'NoIcon' style option description in the end
3959         of the `The Style command...' section.
3960         Removed `Recapture True' option setting in example of BusyCursor
3961         description, because `Recapture' isn't valid option of `BusyCursor'
3962         command anymore.
3963         Updated ewmh specification URL (the old was 404)
3964         Added URL to ICCCM 2.0 manual
3966         * modules/FvwmAnimate/FvwmAnimate.c:
3967         corrected delay for Zoom3D animation effect
3969         * modules/FvwmConsole/FvwmConsoleC.pl.1.in:
3970         * modules/FvwmConsole/FvwmConsole.1.in:
3971         replaced all `Cntl' modificator key mentions with `Ctrl' to be
3972         consistent with rest of the documentation and because it's more
3973         conventional abbreviation.
3975         * modules/FvwmTaskBar/FvwmTaskBar.1.in:
3976         slightly clarified the `StartName' option description
3977         added the undocumented `MailDir' option description. Somebody
3978         violated section `K' of the convention list.
3980         * fvwm/fvwm.1.in:
3981         * fvwm/ConfigFvwmSetup:
3982         * modules/FvwmForm/FvwmForm.1.in:
3983         * modules/FvwmForm/FvwmForm-Rlogin:
3984         * sample.fvwmrc/system.fvwm2rc:
3985         * sample.fvwmrc/system.fvwm2rc-sample-1:
3986         replaced all mentions of `rsh' with `ssh'. rsh is obsolete and
3987         inherently insecure. We shouldn't teach our users bad things,
3988         should we?
3990         * AUTHORS:
3991         * Changelog:
3992         * INSTALL.fvwm:
3993         * NEWS:
3994         * bin/fvwm-config.1.in:
3995         * bin/fvwm-menu-headlines.1:
3996         * bin/fvwm-menu-headlines.in:
3997         * bin/fvwm-perllib.in:
3998         * bin/fvwm-root.1.in:
3999         * docs/CONVENTIONS:
4000         * docs/FAQ:
4001         * fvwm/fvwm.1.in:
4002         * fvwm/fvwm.h:
4003         * fvwm/virtual.c:
4004         * libs/PictureGraphics.c:
4005         * libs/Picture.h:
4006         * modules/FvwmBacker/FvwmBacker.1.in:
4007         * modules/FvwmDebug/FvwmGtkDebug.in:
4008         * modules/FvwmDebug/FvwmGtkDebug.1:
4009         * modules/FvwmEvent/FvwmEvent.1.in:
4010         * modules/FvwmForm/FvwmForm.1.in:
4011         * modules/FvwmIconMan/xmanager.c:
4012         * modules/FvwmIdent/FvwmIdent.c:
4013         * modules/FvwmIdent/FvwmIdent.1.in:
4014         * modules/FvwmPerl/FvwmPerl.in:
4015         * modules/FvwmPerl/FvwmPerl.1:
4016         * modules/FvwmScript/FvwmScript.1.in:
4017         * modules/FvwmScript/Widgets/Menu.c:
4018         * modules/FvwmTabs/ConfigFvwmTabs:
4019         * modules/FvwmTabs/FvwmTabs-DefaultSetup:
4020         * modules/FvwmTaskBar/FvwmTaskBar.1.in:
4021         * modules/FvwmTheme/FvwmTheme.1.in:
4022         * perllib/FVWM/Module/Tk.pm:
4023         * perllib/FVWM/Tracker.pm:
4024         * perllib/FVWM/Module.pm.in:
4025         corrected typos
4027 2006-03-21  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4029         * fvwm/style.c (style_parse_focus_policy_style):
4030         fix ISO C90 compability with unconsumed styleoption warnings
4032 2006-03-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4034         * fvwm/events.c (HandlePropertyNotify):
4035         fix for bug 1557/3950 (possible free of Untilted constant or
4036         already used name (if app reset the name already given to them))
4038 2006-03-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4040         * fvwm/focus.c (__activate_window_by_command)
4041         (warp_to_fvwm_window):
4042         (CMD_WarpToWindow):
4043         * fvwm/builtins.c (CMD_CursorMove):
4044         set last pointer event position after warping the pointer
4046         * libs/FEvent.h:
4047         * libs/FEvent.c (FWarpPointerUpdateEvpos):
4048         new function
4050 2006-03-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4052         * acinclude.m4 (AM_PATH_GTK):
4053         (AM_PATH_IMLIB):
4054         (AM_PATH_GDK_IMLIB):
4055         (AM_CHECK_FT2):
4056         (AM_CHECK_XFT):
4057         (AM_CHECK_FC):
4058         fixed to cope with 4 digit version numbers
4060 2006-02-15  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4062         * NEWS:
4063         * fvwm/style.c (parse_and_set_window_style)
4064         (style_parse_one_style_option):
4065         (style_parse_icon_fill_style)
4066         (style_parse_icon_grid_style):
4067         (style_parse_icon_box_style)
4068         (style_parse_icon_size_style):
4069         (style_parse_focus_policy_style)
4070         (style_parse_button_style):
4071         warn if parts of style options are not consumed
4073 2006-02-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4075         * fvwm/menuitem.c (menuitem_paint):
4076         use the MenuColorset in all cases if TitleColorset is not given
4078 2006-02-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4080         * fvwm/style.c (style_parse_one_style_option):
4081         * fvwm/placement.c (__place_get_wm_pos):
4082         (__explain_placement):
4083         new placement style UnderMousePlacement
4085 2006-02-11  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4087         * NEWS:
4088         * fvwm/fvwm.1.in (EdgeScroll):
4089         * fvwm/virtual.c (CMD_EdgeScroll):
4090         fixed EdgeScroll dividing pixel sizes by 1000 if > 1000 (bug 3162)
4091         added wrap/wrapx/wrapy option to EdgeScroll
4093 2006-02-10  Mikhael Goikhman  <migo@homemail.com>
4095         * fvwm/fvwm.1.in:
4096         spell check the whole file (dozens of typos)
4098 2006-02-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4100         * fvwm/module_interface.c (do_execute_module):
4101         removed accidentally committed FVWM_MODULE_ALIAS patch
4103 2006-02-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4105         * fvwm/module_interface.c (do_execute_module):
4106         unset envvars FVWM_VISUALID and FVWM_COLORMAP if they are not needed
4108         * fvwm/menus.c (size_menu_horizontally):
4109         fix for drawing menus with sidepic on the right
4111         * libs/Flocale.c (FlocaleFontStructDrawString):
4112         (FlocaleDrawString):
4113         set the foreground colour before drawing a string
4115         * fvwm/menustyle.h:
4116         * fvwm/menustyle.c (menustyle_get_styleopt_index):
4117         (menustyle_free):
4118         (menustyle_update):
4119         (menustyle_parse_style):
4120         (menustyle_copy):
4121         * fvwm/menus.c (calculate_item_sizes):
4122         (size_menu_vertically):
4123         (UpdateMenuColorset):
4124         * fvwm/menuitem.c (menuitem_paint):
4125         Applied patch by David Maciver
4126         new menu styles TitleColorset, HilightTitleBack and TitleFont
4128 2006-02-09  Renato Caldas  <seventhguardian@gmail.com>
4130         * libs/Module.h:
4131         * libs/Module.c (ParseModuleArgs):
4132         added variable "namelen" to ModuleArgs struct
4134 2006-02-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4136         * libs/Module.h:
4137         removed duplicate declaration
4139 2006-01-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4141         * fvwm/fvwm.c (main):
4142         replaced previous patch with a better one
4144         * fvwm/virtual.c (unmap_window):
4145         * fvwm/menus.c (do_menu):
4146         * fvwm/events.c (fake_map_unmap_notify):
4147         (HandleMapNotify):
4148         * fvwm/add_window.c (MappedNotOverride):
4149         Added XFlush after XSelectInput
4151 2006-01-28  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4153         * NEWS:
4154         * fvwm/fvwm.c (main):
4155         fix for fvwm not detecting non ICCCM2 wm (bug #3151)
4157 2006-01-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4159         * NEWS:
4160         * configure.ac:
4161         increased version to 2.5.17
4162         released 2.5.16
4164         * NEWS:
4165         * configure.ac:
4166         updated for 2.5.16 release
4168         * acinclude.m4 (CHECK_LIBCHARSET):
4169         removed debug code
4171 2006-01-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4173         * fvwm/functions.c (execute_complex_function):
4174         print a message to the console instead of ringing the bell when a
4175         grab fails
4177 2006-01-14  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4179         * NEWS:
4180         fixed typo (NEWS still said 2.5.15)
4182 2006-01-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4184         * NEWS:
4185         * configure.ac:
4186         increased version to 2.5.16
4187         released 2.5.15
4189         * NEWS:
4190         * configure.ac:
4191         updated for 2.5.15 release
4193 2006-01-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4195         * fvwm/move_resize.c (GetOnePositionArgument):
4196         (GetMoveArguments):
4197         new option "screen" to Move type commands
4199 2006-01-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4201         * acinclude.m4 (smr_SWITCH):
4202         updated
4204 2006-01-08  Mikhael Goikhman  <migo@homemail.com>
4206         * Makefile.am
4207         restore requirement of automake-1.4; 1.8 is too new even for my system
4209 2006-01-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4211         * configure.in:
4212         * configure.ac:
4213         renamed configure.in to configure.ac
4215         * acinclude.m4:
4216         some updates for new autoconf/automake versions
4218         * configure.in:
4219         * acconfig.h:
4220         removed acconfig.h
4222         * configure.in:
4223         require autoconf-2.53 or later
4225         * Makefile.am (AUTOMAKE_OPTIONS):
4226         require automake-1.8 or later
4228         * configure.in:
4229         check for X library path before X library checks
4230         removed obsolete C++ compiler check
4231         removed duplicate type size checks
4232         replaced M4 comment ("dnl") with shell comment ("#") in many places
4234         * acinclude.m4:
4235         fixed aclocal warnings
4237 2006-01-01  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4239         * fvwm/style.c (style_parse_button_style):
4240         corrected typo in error message, and made errorous buttons not apply
4241         (style_parse_one_style_option):
4242         changed NoButton to use style_parse_button_style
4244 2005-12-23  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4246         * libs/Fft.h:
4247         new fix for incompatible pointer type warning with gcc 3.4.
4249 2005-12-21  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4251         * NEWS:
4252         * AUTHORS:
4253         * fvwm/menuitem.c:
4254         * fvwm/menustyle.h:
4255         * fvwm/fvwm.1.in:
4256         commited patch by Malcolm Still adding TrianglesUseFore MenuStyle
4257         option.
4259 2005-12-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4261         * fvwm/fvwm.1.in:
4262         corrected typos
4264 2005-11-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4266         * fvwm/frame.c (frame_free_move_resize_args):
4267         fixed drawing of transparent decorations or when using lazy shading
4268         during resize
4270 2005-11-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4272         * configure.in:
4273         * libs/fvwmsignal.c:
4274         * libs/Graphics.c:
4275         c89 fixes
4277         * fvwm/ewmh_names.c:
4278         * libs/CombineChars.c:
4279         * libs/FGettext.c:
4280         * libs/FScreen.c:
4281         * libs/FTips.c:
4282         * libs/Flocale.c:
4283         * libs/Parse.c:
4284         * libs/PictureUtils.c:
4285         * libs/System.c:
4286         * libs/XError.c:
4287         * libs/alloca.c:
4288         * libs/envvar.c:
4289         * libs/safemalloc.c:
4290         * libs/strdup.c:
4291         * libs/usleep.c:
4292         do not #include stdlib.h (comes from config.h)
4294         * libs/Flocale.c:
4295         do not #include string.h (comes from config.h)
4297         * acconfig.h:
4298         fixed detection of string.h/strings.h
4300 2005-11-26  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4302         * libs/Fft.c (FftGetFont):
4303         fixed compiler warning with gcc 3.4.4
4305 2005-11-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4307         * fvwm/menuitem.c (menuitem_paint):
4308         properly undraw unselected item area
4310 2005-11-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4312         * fvwm/menuitem.c (menuitem_paint):
4313         * fvwm/menus.c (get_menu_paint_item_parameters)
4314         (get_menu_paint_item_parameters):
4315         (make_menu):
4316         fixed text offset of menu items with icons but with an item format that
4317         disables icons
4318         (size_menu_horizontally):
4319         allow sidepic to be placed in the middle of menu items; this is better
4320         than ignoring the item format completely but does not draw the items
4321         properly either
4323         * fvwm/menus.c (__mloop_handle_event):
4324         (menu_expose):
4325         fixed delayed menu drawing issue
4326         (select_menu_item):
4327         do not draw the selected menu item before the menu is drawn for the
4328         first time
4329         (repaint_transparent_menu):
4330         (select_menu_item):
4331         (paint_menu):
4332         don't call get_menu_paint_item_parameters when the result is not used
4333         (get_menu_paint_item_parameters):
4335 2005-11-10  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4337         * fvwm/ewmh.h (EWMH_CMD_Style):
4338         * fvwm/ewmh_conf.c (EWMH_CMD_Style):
4339         * fvwm/style.c (style_parse_one_style_option):
4340         Added support for inverting boolean EWMH styles with !.
4342         * NEWS:
4343         * fvwm/fvwm.h
4344         * fvwm/style.h:
4345         * fvwm/window_flags.h:
4346         * fvwm/ewmh_conf.c (EWMH_CMD_Style):
4347         * fvwm/ewmh.c (ewmh_HandleWindowType):
4348         * fvwm/fvwm.1.in:
4349         Added style EWMHIgnoreWindowType to make fvwm ignore window types.
4351 2005-10-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4353         * fvwm/icons.c (GetIconWindow):
4354         * fvwm/fvwm.h (FvwmWindow):
4355         * fvwm/events.c (__handle_cr_on_icon):
4356         properly handle icon border width; fixes an xterm active icon loop
4358 2005-10-27  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4360         * fvwm/borders.c (border_draw_one_border_part):
4361         fix for the TiledPixmap borderstyle fix not to affect RootTransparent
4362         borders.
4364 2005-10-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4366         * fvwm/menustyle.c (menustyle_copy_face):
4367         (menustyle_copy):
4368         (menustyle_free_face):
4369         (menustyle_free):
4370         (menustyle_parse_style):
4371         use new functions and fix a bug
4373         * fvwm/Makefile.am:
4374         * fvwm/colors.c:
4375         * fvwm/colors.h:
4376         removed empty files colors.c and colors.h
4378         * fvwm/colors.c (CopyColor):
4379         (FreeColors):
4380         moved to libs/ColorUtils.c and renamed to fvwmlib_free_colors and
4381         fvwmlib_copy_color
4383         * fvwm/frame.c (frame_reshape_border):
4384         removed unused code
4386 2005-10-23  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4388         * fvwm/menustyle.c (menustyle_copy_face):
4389         separated from menustyle_copy; color copies are reallocated.
4390         (menustyle_free):
4391         all colors freed
4392         (menustyle_copy):
4393         color copies are reallocated.
4395         * fvwm/colors.c (CopyColor):
4396         * fvwm/colors.h (CopyColor):
4397         added CopyColor
4399 2005-10-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4401         * fvwm/move_resize.c (__resize_window):
4402         fix for not being able to finish resize with mouse when resizing on
4403         click with modifiers active. (intruduced with 'removed duplicate
4404         pointer query' at sep 29)
4406         * NEWS:
4407         * fvwm/fvwm.1.in:
4408         * fvwm/menustyle.c (menustyle_parse_style):
4409         made style pairs negatable with '!' prefix
4410         ActiveForeOff and HilightBackOff frees colors used.
4412         * fvwm/menustyle.c (menustyle_copy):
4413         fix for freeing color from sorce instead of destination.
4415 2005-10-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4417         * fvwm/functions.c (__execute_function):
4418         fixed an error in yesterdays patch to complex fuctions. the commands
4419         pressed window were not retored correctly after running move functions
4420         without it, and functions would be run twice.
4422 2005-10-18  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4424         * fvwm/fvwm.1.in:
4425         added NoLayer to list of allowed options for WindowList command
4426         fixed grammar of test-conditions list. formatting fixes for
4427         MoveToPage command. Added CirculateSkipIcon / CirculateHitIcon to
4428         style option list.
4430         * NEWS:
4431         * fvwm/functions.c (__execute_function)
4432         (__run_complex_function_items):
4433         (execute_complex_function):
4434         fix for moving/resizing reference window usage with complex functions.
4436 2005-10-16  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4438         * fvwm/move_resize.c (__move_loop):
4439         reimplemented a fix for the place with keyboard setting a button as
4440         used for place bug; this time without breaking escape key.
4442 2005-10-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4444         * fvwm/move_resize.c (__move_loop):
4445         removed the previous patch as it breaks aborting window motion with the
4446         escape key.
4448 2005-10-03  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4450         * fvwm/move_resize.c (__move_loop):
4451         fixed bug where finishing movment with keyboard would set a random
4452         button as used for placement.
4454 2005-09-30  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4456         * NEWS
4457         * fvwm/frame.c (frame_setup_border):
4458         reverted change for move of window parts (reset of PressedW).
4460 2005-09-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4462         * fvwm/frame.c (frame_setup_border):
4463         fixed a Warning
4465 2005-09-29  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4467         * NEWS:
4468         * fvwm/move_resize.c (__resize_window):
4469         removed duplicate pointer query for enter/leave notify events.
4470         resizing of shaded windows in the shaded direction no longer
4471         results in bogus ref points.
4473         * fvwm/frame.c (frame_setup_border):
4474         reset PressedW if the part has moved. This prevents strange
4475         ref points in resize if called from some complex functions.
4477         * fvwm/frame.c (frame_create_move_resize_args):
4478         shaded windows use get_client_geometry for client geometry.
4480 2005-09-25  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4482         * NEWS:
4483         * AUTHORS:
4484         * fvwm/fvwm.h (window_flags):
4485         (WindowConditionMask):
4486         (FvwmWindow):
4487         * fvwm/window_flags.h (IS_PLACED_BY_WB3):
4488         (SET_PLACED_WB3)
4489         (SETM_PLACED_WB3):
4490         * fvwm/session.c (_match):
4491         (SaveWindowStates):
4492         (LoadWindowStates):
4493         * fvwm/conditional.c (MatchesConditionMask):
4494         (CreateConditionMask):
4495         * fvwm/add_window.c (setup_window_structure):
4496         * fvwm/move_resize.h (placement_binding):
4497         * fvwm/move_resize.c (__move_loop):
4498         (placement_binding):
4499         * fvwm/bindings.c (ParseBinding):
4500         * libs/wcontext.c (win_contexts):
4501         * libs/wcontext.h (enum):
4502         * fvwm/fvwm.1.in:
4503         Added placement context for simple mouse bindings to allow
4504         specification of buttons to finish/cancel movment. Buttons >3
4505         may now be used to place windows.
4506         Replaced window flag placed_wb3 with placed_by_button
4507         FvwmWindow member. Added window condition PlacedByButton.
4509 2005-09-22  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4511         * NEWS:
4512         * AUTHORS:
4513         * fvwm/menustyle.h (enum):
4514         (MenuFeel):
4515         (ST_DO_SCROLL):
4516         (MST_DO_SCROLL)
4517         (ST_SCROLL_OFF_PAGE):
4518         (MST_SCROLL_OFF_PAGE):
4519         * fvwm/menustyle.c (menustyle_copy):
4520         (menustyle_get_styleopt_index):
4521         (menustyle_parse_style):
4522         (CMD_MenuStyle):
4523         * fvwm/menus.c (menuShortcuts):
4524         (enum):
4525         (__mloop_handle_event):
4526         (menu_get_outer_geometry):
4527         (move_any_menu):
4528         * fvwm/fvwm.1.in:
4529         added MouseWheel and ScrollOffPage menu styles
4531 2005-09-20  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4533         * NEWS:
4534         * fvwm/menus.c (append_item_to_menu):
4535         fixed bug #1121: Use of pointer without checking for NULL
4537 2005-09-19  Mikhael Goikhman  <migo@homemail.com>
4539         * NEWS:
4540         * fvwm/expand.c (expand_vars):
4541         warn on usage of obsolete one-letter variables
4543 2005-09-19  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4545         * NEWS:
4546         * AUTHORS:
4547         * fvwm/expand.c (expand_vars_extended):
4548         (expand_vars):
4549         allow nesting of variables
4551 2005-09-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4553         * fvwm/ewmh.c (EWMH_SetWMDesktop):
4554         * fvwm/ewmh_events.c (ewmh_WMDesktop):
4555         (ewmh_WMDesktop):
4556         64-bit fixes
4558 2005-09-03  Mikhael Goikhman  <migo@homemail.com>
4560         * fvwm/borders.c (border_draw_one_border_part)
4561         (border_draw_all_border_parts):
4562         fix the previous patch to work with title-less windows too
4564 2005-08-30  Mikhael Goikhman  <migo@homemail.com>
4566         * fvwm/borders.c (border_draw_one_border_part)
4567         (border_draw_all_border_parts):
4568         improve offsets when drawing borders for "BorderStyle TiledPixmap"
4569         windows to make the borders look homogeneous (based on the patch of
4570         Evgeny Stambulchik)
4572 2005-08-26  Mikhael Goikhman  <migo@homemail.com>
4574         * NEWS:
4575         * acconfig.h:
4576         * configure.in:
4577         * libs/FBidi.c:
4578         support new spelling FRIBIDI_CHAR_SET_NOT_FOUND introduced in
4579         fribidi-0.10.5; autodetect old spelling FRIBIDI_CHARSET_NOT_FOUND
4581 2005-08-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4583         * NEWS:
4584         * configure.in:
4585         increased version to 2.5.15
4586         released 2.5.14
4588         * NEWS:
4589         * configure.in:
4590         updated for 2.5.14 release
4592         * fvwm/ewmh_events.c (ewmh_WMStateShaded)
4593         (ewmh_WMStateSkipTaskBar):
4594         (ewmh_WMStateSkipPager):
4595         (ewmh_WMStateModal):
4596         fixed several ewmh-hints
4598 2005-08-24  Mikhael Goikhman  <migo@homemail.com>
4600         * fvwm/fvwm.1.in:
4601         fix TestRc example error, s/Any/All/
4603 2005-08-17  Jonathan Kotta  <jpkotta@gmail.com>
4605         * NEWS:
4606         * AUTHORS:
4607         * fvwm/fvwm.1.in:
4608         * fvwm/conditions.c (MatchesConditionMask):
4609         (CreateConditionMask):
4610         added FixedPosition condition
4612 2005-08-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4614         * fvwm/virtual.c (HandlePaging):
4615         use FQueryPointer every time to track the pointer position; this fixes
4616         fvwm hanging in HandlePaging for the given delay once the pointer
4617         touches the pan frames
4619 2005-08-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4621         * fvwm/session.c (SaveWindowStates):
4622         (LoadWindowStates):
4623         (MatchWinToSM):
4624         save and restore the default layer during a restart
4626 2005-08-13  Mikhael Goikhman  <migo@homemail.com>
4628         * fvwm/conditional.c (CMD_Test):
4629         * fvwm/fvwm.1.in:
4630         rename previously added Test conditions to EnvIsSet and EnvMatch,
4631         tweak the logic when the variable is set, but empty
4633 2005-08-13  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
4635         * fvwm/conditional.c (CMD_Test):
4636         * fvwm/fvwm.1.in:
4637         added test conditions EdgeHasPointer and EdgeIsActive
4639 2005-08-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4641         * fvwm/virtual.c (raisePanFrames):
4642         prevent cycling of pan frame window stacking order
4644 2005-08-12  Mikhael Goikhman  <migo@homemail.com>
4646         * fvwm/conditional.c (CMD_Test):
4647         * fvwm/fvwm.1.in:
4648         add Test conditions IsEnvSet and MatchEnv
4650 2005-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4652         * fvwm/menus.c (pop_menu_up):
4653         * fvwm/menustyle.c (menustyle_copy):
4654         two fixes by Viktor Griph
4656         * fvwm/events.c (HandleEvents):
4657         simplify the style list if there is nothing else to do
4659         * fvwm/style.c (__simplify_style_list):
4660         (styles_have_same_id):
4661         (style_id_equals_id):
4662         (style_ids_are_equals):
4663         (__style_command):
4664         (remove_all_of_style_from_list):
4665         (one_fw_can_match_both_ids):
4666         pass pointers instead of the whole style structure
4667         (__simplify_style_list):
4668         fixed memory leak and tweaked the code
4670         * libs/Strings.c (CatString3):
4671         fixed a buffer overflow
4673 2005-08-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4675         * configure.in:
4676         detect if Window, Pixel or void * are bigger than long and refuse to
4677         compile
4679         * libs/vpacket.h (ConfigWinPacket):
4680         * fvwm/windowshade.c (CMD_WindowShade):
4681         * fvwm/virtual.c (MoveViewport):
4682         (goto_desk):
4683         (CMD_DesktopSize):
4684         (CMD_GotoDeskAndPage):
4685         * fvwm/update.c (apply_window_updates):
4686         * fvwm/stack.c (BroadcastRestack):
4687         (RaiseWindow):
4688         (LowerWindow):
4689         * fvwm/icons.c (DeIconify):
4690         (Iconify):
4691         * fvwm/geometry.c (broadcast_icon_geometry):
4692         * fvwm/events.c (HandleEnterNotify):
4693         (HandleFocusIn):
4694         (HandleLeaveNotify):
4695         (HandleMapNotify):
4696         (HandleMapRequestKeepRaised):
4697         * fvwm/add_window.c (destroy_window):
4698         * fvwm/module_interface.c (SendFvwmPicture)
4699         (BroadcastFvwmPicture):
4700         (CMD_Send_WindowList):
4701         * fvwm/modconf.c (CMD_Send_ConfigInfo):
4702         * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4703         64-bit fixes
4705         * fvwm/virtual.c (GetDeskNumber):
4706         fixed bug #1396: applied patch by srivasta@debian.org to fix wrapping
4707         around the given desk range with a relative desk
4709         * fvwm/focus.c (focus_grab_buttons_on_layer):
4710         fixed a hang
4712         * fvwm/gnome.c:
4713         * fvwm/stack.c:
4714         * fvwm/ewmh.c:
4715         reindented some code and renamed some variables
4717 2005-08-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4719         * fvwm/events.c (__check_click_to_focus_or_raise):
4720         small cleanup patch
4722 2005-08-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4724         * FvwmIconMan/xmanager.c (set_win_iconified):
4725         fixed select/focus button state lost when deiconifying a window
4727 2005-07-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4729         * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4730         fixed bogus warning
4732         * libs/Colorset.c (get_aspect_dimensions):
4733         fixed aspectpixmap size calculations
4735 2005-07-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4737         * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4738         fixed a core dump
4740         * fvwm/ewmh_events.c (ewmh_WMDesktop):
4741         (ewmh_CurrentDesktop):
4742         (ewmh_DesktopGeometry):
4743         (ewmh_NumberOfDesktops):
4744         (ewmh_WMDesktop):
4745         (ewmh_WMIconGeometry):
4746         * fvwm/gnome.c (GNOME_ProcessClientMessage):
4747         print error messages for broken gnome client messages
4749         * fvwm/ewmh_events.c (ewmh_DesktopGeometry):
4750         removed duplicate call of execute_function_override_window
4752         * fvwm/stack.c (new_layer):
4753         fixed a hang if a window sets an layer < 0 via gnome hints
4755         * fvwm/add_window.c (GetWindowSizeHints):
4756         * fvwm/misc.c (fvwm_msg_report_app):
4757         (fvwm_msg_report_app_and_workers):
4758         new utility functions
4760 2005-07-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4762         * fvwm/stack.c (dump_stack_ring):
4763         (verify_stack_ring_consistency):
4764         * fvwm/module_interface.c (HandleModuleInput):
4765         * fvwm/events.c (__cr_detect_icccm_move):
4766         * fvwm/style.c (print_styles):
4767         64-bit fixes
4769 2005-07-19  Mikhael Goikhman  <migo@homemail.com>
4771         * libs/FlocaleCharset.c:
4772         support euc-jp encodings (Yasuhiro Nakazaki)
4774 2005-07-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4776         * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4777         * fvwm/ewmh_names.c (EWMH_WMName):
4778         (EWMH_WMIconName):
4779         * fvwm/ewmh.c (EWMH_SetCurrentDesktop):
4780         (EWMH_SetNumberOfDesktops):
4781         (EWMH_SetDesktopViewPort):
4782         (EWMH_SetDesktopGeometry):
4783         (EWMH_SetWMDesktop):
4784         (ewmh_SetWorkArea):
4785         (EWMH_SetFrameStrut):
4786         (EWMH_Init):
4787         * fvwm/gnome.c (AtomGet):
4788         (atom_size):
4789         (GNOME_GetHintIcons):
4790         (GNOME_GetHintLayer):
4791         (GNOME_GetHintState):
4792         (GNOME_GetExpandedSize):
4793         (GNOME_SetAreaCount):
4794         (GNOME_SetCurrentArea):
4795         (GNOME_SetDeskCount):
4796         (GNOME_SetCurrentDesk):
4797         (GNOME_SetCurrentDesk):
4798         (GNOME_SetWinArea):
4799         (GNOME_Init):
4800         (CMD_GnomeShowDesks):
4801         (GNOME_SetHints):
4802         (GNOME_SetDesk):
4803         (GNOME_SetLayer):
4804         * libs/fsm.c (GetClientID):
4805         (set_session_manager):
4806         * fvwm/session.c (GetClientID):
4807         * fvwm/fvwm.h (FvwmWindow):
4808         * fvwm/colorset.c (get_root_pixmap):
4809         * fvwm/add_window.c (FetchWmProtocols):
4810         * libs/FTips.c (__initialize_window):
4811         * fvwm/icccm2.c (convertProperty)
4812         (icccm2_handle_selection_request)
4813         * fvwm/fvwm.c (SetMWM_INFO):
4814         64-bit fixes
4816 2005-07-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4818         * fvwm/move_resize.c (GetOnePositionArgument):
4819         don't use the unportable fuction rintf()
4821 2005-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4823         * NEWS:
4824         * configure.in:
4825         increased version to 2.5.14
4826         released 2.5.13
4828         * ANNOUNCE:
4829         * NEWS:
4830         * configure.in:
4831         updated for 2.5.13 release
4833 2005-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4835         * libs/Graphics.c (do_relieve_rectangle_with_rotation):
4836         fixed drawing of relief with very small rectangles, i.e. when
4837         line_width * 2 > height or width
4839 2005-07-04  Dan Espen  <dane@mk.telcordia.com>
4841         * NEWS: fvwm-menu-desktop changes.
4843 2005-07-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4845         * fvwm/placement.c (get_next_x):
4846         fixed collision detection of windows on pages other than the current
4847         one during placement
4849 2005-06-17  Olivier Chapuis  <olivier.chapuis@free.fr>
4851         * fvwm/move_resize.c (__resize_window):
4852         Fixed interactive resize (reduction) via the bottom border
4854         * libs/Fpng.h:
4855         Typo
4857 2005-06-02  Dan Espen  <dane@mk.telcordia.com>
4859         * NEWS:
4860         * fvwm/fvwm.1.in:
4861         Spelling fix contition -> condition
4863 2005-04-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4865         * fvwm/style.c (style_ids_are_equals):
4866         (style_id_equals_id):
4867         (styles_have_same_id):
4868         (fw_match_style_id):
4869         (one_fw_can_match_both_ids):
4870         (cleanup_style_defaults):
4871         * libs/fsm.c (fprintfhex):
4872         (CloseDownClient):
4873         * libs/FGettext.c (fgettext_free_fgpath_list):
4874         * libs/Parse.c (_get_suffixed_integer_arguments):
4875         * libs/Graphics.c (AllocNonlinearGradient):
4876         * libs/PictureUtils.c (build_mapping_table):
4877         (finish_ct_init):
4878         made static
4880         * libs/setpgrp.c:
4881         * libs/Event.c:
4882         * libs/FRenderInit.c:
4883         include own header file
4885         * libs/System.c (getFileStamp):
4886         * libs/Fft.c (FftPDumyFunc):
4887         * libs/FScreen.c (FScreenSetDefaultModuleScreen):
4888         exported
4890 2005-03-01  Dan Espen  <dane@mk.telcordia.com>
4892         * fvwm/fvwm.1.in (Example): Piperead in dynamic menu example,
4893         not exec.
4895 2005-02-25  Dan Espen  <dane@mk.telcordia.com>
4897         * fvwm/fvwm.1.in (Focus): Typos in focus section.
4899 2005-02-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4901         * fvwm/conditional.c (Circulate):
4902         added tests for fw == Scr.FvwmRoot again to fix a crash
4904 2005-02-05  Dan Espen  <dane@mk.telcordia.com>
4906         * AUTHORS: New author, FvwmScript patch.
4908 2005-01-28  Scott Smedley  <scottie7@tpg.com.au>
4910         * fvwm/fvwm.1.in: elaborate on how window-specific bindings work.
4911         * AUTHORS: s/Hover/Active/
4913 2005-01-19  Dan Espen  <dane@mk.telcordia.com>
4915         * fvwm/bindings.c (ParseBinding): Patch from Frank Gruellich,
4916         avoid dump with empty key/mouse binding command.
4917         * fvwm/conditional.c (direction_cmd): Safety check after PeekToken
4918         Checked all other uses of PeekToken in fvwm dir.
4920 2005-01-08  Olivier Chapuis  <olivier.chapuis@free.fr>
4922         * fvwm/session.c (matchWin):
4923         (SaveWindowStates):
4924         On restarts compare window ids only. Base our matching decision on
4925         window role only if we have a client id.
4927         * fvwm/move_resize.c (GetOnePositionArgument):
4928         Fixed a one pixel bug in the Move and AnimatedMove commands by rounding
4929         float values to nearest int
4931 2005-01-06  Olivier Chapuis  <olivier.chapuis@free.fr>
4933         * AUTHORS:
4934         * fvwm/move_resize.c (CMD_Maximize):
4935         Applied Arnaud Vrac patch which fixes maximize by growing vs
4936         EWMH working area
4938 2004-12-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4940         * fvwm/builtins.c (do_button_style):
4941         ButtonStyle Reset takes effect immediately
4943 2004-12-08  Dan Espen  <dane@mk.telcordia.com>
4945         * fvwm/fvwm.1.in: lang check.
4947 2004-12-06  Olivier Chapuis  <olivier.chapuis@free.fr>
4949         * fvwm/fvwm.1.in:
4950         Really commit EWMHUseStackingOrderHints documentation update
4952 2004-12-02  Olivier Chapuis  <olivier.chapuis@free.fr>
4954         * fvwm/fvwm.1.in:
4955         Fixed bug #1480 by updating EWMHUseStackingOrderHints documentation
4957         * NEWS:
4958         FvwmIconMan new options
4960         * libs/FTips.c (new file):
4961         * libs/FTips.h (new file):
4962         * libs/defaults.h:
4963         * libs/Makefile.am:
4964         Added a set of functions for implementing tool tips
4966 2004-11-30  Dan Espen  <dane@mk.telcordia.com>
4968         * fvwm/fvwm.1.in: Fix keysym description add XKeysymDB.
4970 2004-11-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4972         * fvwm/menus.c (__mloop_get_event):
4973         * fvwm/functions.c (execute_complex_function):
4974         * fvwm/add_window.c (AddWindow):
4975         * fvwm/module_interface.c (ExecuteModuleCommand):
4976         * fvwm/move_resize.c (__move_loop):
4977         (__resize_window):
4978         properly set the "state" member of faked motion and key events;
4979         fixes broken "nosnap" feature
4981 2004-10-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4983         * fvwm/bindings.c (ParseBinding):
4984         reformatted
4985         * libs/Bindings.c (bindingAppliesToWindow):
4986         (__compare_binding):
4987         * fvwm/module_interface.c (CMD_ModuleSynchronous):
4988         * fvwm/builtins.c (CMD_Wait):
4989         (CMD_StrokeFunc):
4990         * fvwm/events.c (__handle_bpress_on_root):
4991         (HandleButtonRelease):
4992         fixed crash in window specific binding code
4993         fixed handling of root window in window specific binding code
4994         renamed some functions
4996 2004-10-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
4998         * fvwm/focus.c (__update_windowlist):
4999         replaced while loop by for loop
5001         * fvwm/style.c (style_destroy_style):
5002         * fvwm/conditional.c (Circulate):
5003         removed useless check whether fw == &Scr.FvwmRoot
5005         * fvwm/icons.c (DeIconify):
5006         defused possible endless loop when a window iconified by the
5007         transientfor window loses the "transient" relationship
5009 2004-10-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5011         * fvwm/move_resize.c (__move_loop):
5012         (__resize_window):
5013         fixed overwriting the initial button_mask during move/resize
5015         * fvwm/menus.c (__mloop_handle_action_with_mi):
5016         do not "post" a submenu menu item it the submenu does not exist
5018 2004-10-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5020         * fvwm/events.c (__handle_bpress_on_managed):
5021         do not draw the decorations pressed in if executing a function is
5022         forbidden
5024         * libs/Parse.c (CopyToken):
5025         fixed parsing of delimiters
5027 2004-10-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5029         * fvwm/virtual.c (GetDeskNumber):
5030         fixed MoveToDesk without argument
5032 2004-10-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5034         * fvwm/fvwm.1.in:
5035         re-formatted and some spelling corrections
5037         * fvwm/colorset.c (CMD_CleanupColorsets):
5038         (CMD_Colorset):
5039         * fvwm/builtins.c (CMD_Colorset):
5040         (CMD_CleanupColorsets):
5041         moved functions to colorset.c
5043 2004-10-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5045         * libs/Parse.c (CopyToken):
5046         skip any whitespace before a delimiter; this allows to have spaces
5047         before the commas in an option list
5049 2004-10-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5051         * fvwm/frame.c (frame_reshape_border):
5052         re-shaping shaded windows no longer unshades them
5053         re-shaping unshaded windows on pages other than 0 0 no longer moves
5054         them out of the current page
5056 2004-10-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5058         * fvwm/events.c (__cr_detect_icccm_move):
5059         * fvwm/screen.h (ScreenInfo):
5060         * fvwm/builtins.c (CMD_BugOpts):
5061         new BugOpts option DebugCRMotionMethod for ConfigureRequest debugging
5063         * fvwm/move_resize.c (__move_loop):
5064         (__resize_window):
5065         query the pointer position in the move loop when an
5066         EnterNotify/LeaveNotify event arrives; same change in resize loop.
5068         * NEWS:
5069         * configure.in:
5070         increased version to 2.5.13
5071         released 2.5.12
5073         * ANNOUNCE:
5074         * NEWS:
5075         * configure.in:
5076         updated for 2.5.12 release
5078         * fvwm/frame.c (frame_create_move_resize_args):
5079         fixed xemacs growing or shrinking when title height changed; this was
5080         caused by calculating the old client window geometry using the new
5081         title dimensions; query the window size instead
5083 2004-10-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5085         * fvwm/events.c (test_map_request):
5086         (test_button_event):
5087         (test_typed_window_event):
5088         (test_resizing_event):
5089         (__predicate_button_click):
5090         (__merge_cr_moveresize):
5091         (HandleUnmapNotify):
5092         (flush_property_notify):
5093         (is_resizing_event_pending):
5094         (__test_for_motion):
5095         use type XPointer for last argument of predicate procedures for
5096         XCheckPeekIfEvent and XCheckIfEvent, not char *
5097         (HandleUnmapNotify):
5098         fixed core dump
5100 2004-10-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5102         * fvwm/window_flags.h:
5103         removed useless and broken SETM_ macros
5105         * fvwm/update.c (init_style):
5106         fixed resetting user states
5108 2004-10-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5110         * libs/envvar.c (add_to_envlist):
5111         fixed crash
5113 2004-09-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5115         * fvwm/builtins.c (CMD_UnsetEnv):
5116         use flib_unsetenv
5118         * libs/envvar.c (flib_unsetenv):
5119         (add_to_envlist):
5120         new functions
5121         (flib_putenv):
5122         split in ftwo functions
5124         * configure.in:
5125         check for unsetenv function
5127         * fvwm/builtins.c (CMD_SetEnv):
5128         assume an empty value if no value is given
5130 2004-09-30  Rafal Bisingier <ravbc@man.poznan.pl>
5132         * fvwm/commands.h:
5133         * fvwm/events.c:
5134         * fvwm/functable.c:
5135         * fvwm/fvwm.1.in:
5136         * fvwm/fvwm.c:
5137         * fvwm/screen.h:
5138         * fvwm/virtual.c:
5139         * perllib/FVWM/Commands.pm:
5140         new command EdgeLeaveCommand
5142 2004-09-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5144         * NEWS:
5145         updated for 2.4.19
5147         * NEWS:
5148         * configure.in:
5149         increased version to 2.5.12
5150         released 2.5.11
5152         * NEWS:
5153         * configure.in:
5154         updated for 2.5.11 release
5156 2004-09-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5158         * fvwm/geometry.c (get_page_offset):
5159         (get_page_offset_rectangle):
5160         (get_absolute_geometry):
5161         new functions
5163         * fvwm/virtual.c (CMD_GotoPage):
5164         * fvwm/move_resize.c (__move_window):
5165         * fvwm/virtual.c (CMD_GotoPage):
5166         (get_page_arguments):
5167         new options wrapx, wrapy, nodesklimitx, nodesklimity to MoveToPage
5168         command
5170 2004-09-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5172         * libs/Flocale.c (FlocaleGetNameProperty):
5173         fixed freeing uninitialized pointer
5175 2004-09-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5177         * fvwm/conditional.c (select_cmd):
5178         (direction_cmd):
5179         (CMD_NoWindow):
5180         (CMD_All):
5181         fixed conditional return code in Pick, PointerWindow, ThisWindow, All,
5182         WindowId and Direction commands; fixes break from these commands
5184         * fvwm/geometry.c (get_shaded_geometry):
5185         shading geometry fix for windows without decoration
5187         * libs/FScreen.c (XineramaQueryExtension):
5188         fixed xinerama crash
5190 2004-09-04  Scott Smedley  <scottie7@tpg.com.au>
5192         * configure.in:
5193         Parse man pages with config.status so man pages have correct date.
5194         Man pages also specify FVWM version that they relate to.
5196         * bin/fvwm-bug.1:
5197         * bin/fvwm-config.1:
5198         * bin/fvwm-convert-2.2.1:
5199         * bin/fvwm-convert-2.4.1:
5200         * bin/fvwm-convert-2.6.1:
5201         * bin/fvwm-menu-desktop.1:
5202         * bin/fvwm-root.1:
5203         * modules/FvwmAnimate/FvwmAnimate.1:
5204         * modules/FvwmAuto/FvwmAuto.1:
5205         * modules/FvwmBacker/FvwmBacker.1:
5206         * modules/FvwmBanner/FvwmBanner.1:
5207         * modules/FvwmButtons/FvwmButtons.1:
5208         * modules/FvwmCommand/FvwmCommand.1:
5209         * modules/FvwmConsole/FvwmConsole.1:
5210         * modules/FvwmConsole/FvwmConsoleC.pl.1:
5211         * modules/FvwmCpp/FvwmCpp.1:
5212         * modules/FvwmDragWell/FvwmDragWell.1:
5213         * modules/FvwmEvent/FvwmEvent.1:
5214         * modules/FvwmForm/FvwmForm.1:
5215         * modules/FvwmGtk/FvwmGtk.1:
5216         * modules/FvwmIconBox/FvwmIconBox.1:
5217         * modules/FvwmIconMan/FvwmIconMan.1:
5218         * modules/FvwmIdent/FvwmIdent.1:
5219         * modules/FvwmM4/FvwmM4.1:
5220         * modules/FvwmPager/FvwmPager.1:
5221         * modules/FvwmProxy/FvwmProxy.1:
5222         * modules/FvwmRearrange/FvwmRearrange.1:
5223         * modules/FvwmSave/FvwmSave.1:
5224         * modules/FvwmSaveDesk/FvwmSaveDesk.1:
5225         * modules/FvwmScript/FvwmScript.1:
5226         * modules/FvwmScroll/FvwmScroll.1:
5227         * modules/FvwmTaskBar/FvwmTaskBar.1:
5228         * modules/FvwmTheme/FvwmTheme.1:
5229         * modules/FvwmWharf/FvwmWharf.1:
5230         * modules/FvwmWinList/FvwmWinList.1:
5231         These man pages were renamed to have a .in suffix.
5232         ie. bin/fvwm-bug.1 renamed to bin/fvwm-bug.1.in
5234 2004-09-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5236         * fvwm/placement.c (__place_window):
5237         fixed starting desk output with bugopts explainwindowplacement
5239 2004-09-03  Olivier Chapuis  <olivier.chapuis@free.fr>
5241         * fvwm/eventhandler.h:
5242         * fvwm/events.c (InitEventHandlerJumpTable):
5243         (__handle_key):
5244         (HandleKeyPress):
5245         (HandleKeyRelease):
5246         Fixed window specific bindings "patch" by sending key release event
5247         when needed
5249 2004-09-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5251         * libs/defaults.h:
5252         * fvwm/screen.h:
5253         * fvwm/move_resize.c:
5254         * fvwm/fvwm.c:
5255         * fvwm/fvwm.h:
5256         * fvwm/frame.h:
5257         * fvwm/decorations.c:
5258         * fvwm/frame.c:
5259         * fvwm/builtins.c:
5260         * fvwm/borders.c:
5261         * fvwm/add_window.c:
5262         * fvwm/bindings.c:
5263         * fvwm/style.c:
5264         renamed NUMBER_OF_BUTTONS to NUMBER_OF_TITLE_BUTTONS to avoid confusing
5265         it with NUMBER_OF_MOUSE_BUTTONS
5267         * fvwm/style.c (style_parse_focus_policy_style):
5268         * fvwm/focus_policy.h:
5269         * libs/Bindings.c (GrabWindowButton):
5270         * fvwm/bindings.c (bind_get_bound_button_contexts):
5271         (ParseBinding):
5272         * fvwm/events.c (WaitForButtonsUp):
5273         * fvwm/style.c (style_parse_focus_policy_style):
5274         * fvwm/builtins.c (__fake_event):
5275         fixed use of NUMBER_OF_MOUSE_BUTTONS vs.
5276         NUMBER_OF_EXTENDED_MOUSE_BUTTONS
5278 2004-08-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5280         * configure.in:
5281         put -Wall -Wno-implicit-int before user specified flags
5283         * libs/FScreen.c:
5284         Applied below patch again.  It didn't make it to CVS (?)
5286 2004-08-26  Dan Espen  <dane@mk.telcordia.com>
5288         * libs/FScreen.c: Fixed case error.  Patch from Chris Ross.
5290 2004-08-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5292         * libs/FScreen.c:
5293         cleaned up ifdef hell
5295         * configure.in:
5296         fixed solaris xinerama test
5298 2004-08-25  Dan Espen  <dane@mk.telcordia.com>
5300         * configure.in:
5301         * acconfig.h:
5302         * libs/FScreen.c (solaris_XineramaQueryScreens):
5303         Solaris Xinerama support.
5304         * AUTHORS:
5305         Update.
5306         Patch by Chris Ross.
5308 2004-08-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5310         * fvwm/events.c (__handle_cr_on_client):
5311         don't reevaluate window geometry when a ConfigureRequest has no size or
5312         position set
5314 2004-08-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5316         * fvwm/menus.c (get_menu_options):
5317         (do_menu):
5318         new menu option TearOffImmediately
5320 2004-08-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5322         * fvwm/placement.c (__place_get_wm_pos):
5323         cascade placemnt fix by Paul Vojta
5325 2004-08-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5327         * fvwm/geometry.c (constrain_size):
5328         Don't touch the aspect ratio if modifying the width/height does not
5329         improve the situation
5331         * fvwm/frame.c (frame_free_move_resize_args):
5332         (__frame_setup_window):
5333         (frame_update_hidden_window_pos):
5334         (frame_mrs_resize_move_windows):
5335         (frame_create_move_resize_args):
5336         * fvwm/move_resize.c (__resize_window):
5337         some event handling fixes
5339         * fvwm/geometry.c (constrain_size):
5340         look up the latest size hints if necessary
5342 2004-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5344         * fvwm/geometry.c (constrain_size):
5345         * fvwm/ewmh.c (EWMH_fullscreen):
5346         * fvwm/window_flags.h (DO_DISABLE_CONSTRAIN_SIZE_FULLSCREEN):
5347         (SET_DISABLE_CONSTRAIN_SIZE_FULLSCREEN):
5348         (SETM_DISABLE_CONSTRAIN_SIZE_FULLSCREEN):
5349         * fvwm/fvwm.h (window_flags_t):
5350         allow windows to override their size hints when going fullscreen:
5351         minimum and maximum size, size inc, aspect ratio, etc.
5353 2004-08-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5355         * fvwm/decorations.c (struct):
5356         MWM hints on 64 bit machines fix
5358 2004-07-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5360         * fvwm/fvwm.1.in (Note):
5361         * fvwm/read.c (CMD_Read):
5362         (CMD_PipeRead):
5363         the Read and PipeRead commands have a return code
5365         * fvwm/read.c (run_command_stream):
5366         (CMD_Read):
5367         (CMD_PipeRead):
5368         removed debug code
5370 2004-07-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5372         * fvwm/move_resize.c (GetResizeArguments):
5373         (GetMoveArguments):
5374         fixed parsing of the frame option to the resize command and the pointer
5375         option to the move command
5377         * fvwm/conditional.c (CMD_None):
5378         Fixed CMD_None return code
5380 2004-07-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5382         * fvwm/stack.c (is_above_unmanaged):
5383         windows on other Desks are always considered on top
5385         * fvwm/conditional.c (CreateConditionMask):
5386         (MatchesConditionMask):
5387         * fvwm/fvwm.h (WindowConditionMask):
5388         new condition Overlapped
5390         * config.h:
5391         inproved strings.h / sring.h iclusion logic
5393         * libs/PictureUtils.c (finish_ct_init):
5394         (PictureInitColors):
5395         use flib_putenv instead of putenv
5397 2004-07-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5399         * fvwm/screen.h:
5400         * libs/gravity.h (enum):
5401         * libs/wcontext.h (enum):
5402         -pedantic fixes
5404         * fvwm/fvwm.c (StartupStuff):
5405         do not ungrab the pointer while the startup functions execute
5406         (Done):
5407         ungrab the pointer only after executing the RestartFunction or
5408         ExitFunciton.  Otherwise these functions may not be executed if some
5409         other application grabs the pointer.
5411         * fvwm/fvwm.h:
5412         * fvwm/conditional.c (CreateConditionMask):
5413         renamed CurrentGlobbalPageAnyDesk to CurrentGlobalPageAnyDesk
5414         new condition AnyScreen
5416         * libs/Bindings.c:
5417         * fvwm/builtins.c (__fake_event):
5418         * fvwm/bindings.c (ParseBinding):
5419         removed C++ comments
5421 2004-07-15  Scott Smedley  <scottie7@tpg.com.au>
5423         * NEWS:
5424         New options for FvwmButtons module.
5426 2004-07-12  Mikhael Goikhman  <migo@homemail.com>
5428         * fvwm/fvwm.1.in:
5429         use commas between conditions
5431 2004-07-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5433         * fvwm/builtins.c (CMD_Wait):
5434         ignore MapNotify reported to any window except the root window
5436         * fvwm/module_interface.c (CONFIGARGS):
5437         correct number of CONFIGARGS arguments
5439         * libs/vpacket.h (ConfigWinPacket):
5440         frame_x and frame_y are signed
5442 2004-07-11  Scott Smedley  <scottie7@tpg.com.au>
5444         * fvwm/conditional.c:
5445         * fvwm/fvwm.h:
5446         * fvwm/fvwm.1.in:
5447         * AUTHORS:
5448         Committed patch by Norman Yarvin (with a few minor mods) to extend
5449         conditionals to handle multiple window names.
5451 2004-07-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5453         * fvwm/module_interface.c (CONFIGARGS):
5454         * libs/vpacket.h (ConfigWinPacket):
5455         put window_flags at end of structure
5457 2004-07-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5459         * fvwm/module_interface.c (CONFIGARGS):
5460         (OLDCONFIGARGS):
5461         (SETOLDFLAGS):
5462         (SendConfig):
5463         (BroadcastConfig):
5464         removed old module interface
5465         (CONFIGARGS):
5467         * libs/vpacket.h (ConfigWinPacket):
5468         64 bit fix
5470 2004-07-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5472         * fvwm/execcontext.c (__exc_change_context):
5473         fixed handling of etrigger event, fixing a problem with PropertyNotify
5474         events during resizing and possibly other problems too
5476         * fvwm/add_window.c (RestoreWithdrawnLocation):
5477         fixed travelling windows if application changed gravity hint before
5478         recapture
5480         * fvwm/frame.c (combine_decor_gravities):
5481         (combine_gravities):
5482         renamed
5483         (frame_restore_client_gravities):
5484         fixed window gravity after resize
5486         * libs/FEvent.c (FPeekEvent):
5487         (FPeekIfEvent):
5488         (FCheckPeekIfEvent):
5489         fixed some event handling bugs
5491         * fvwm/conditional.c (CMD_Test):
5492         (match_version):
5493         corrected use of Bool types
5494         (match_version):
5495         simplified, fixed compilation
5496         (ver):
5497         use int as return type
5499         * libs/Ficonv.c (convert_charsets):
5500         reindented
5502         * libs/Ficonv.c (convert_charsets):
5503         * acinclude.m4 (ICONV_SECOND_ARG):
5504         rewrote iconf configure test to save an ifdef
5506 2004-07-07  Scott Smedley  <scottie7@tpg.com.au>
5508         * fvwm/fvwm.1.in:
5509         * libs/Bindings.h:
5510         * libs/Bindings.c:
5511         * fvwm/bindings.c:
5512         Allow user to specify window-specific bindings that should NOT be
5513         intercepted by FVWM. This is accomplished with an '--' binding action.
5515 2004-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5517         * fvwm/move_resize.c (__resize_window):
5518         Fixed event handling
5520         * fvwm/virtual.c (HandlePaging):
5521         removed check for leave events on pan frames; better query the pointer
5522         each time
5524 2004-07-06  Scott Smedley  <scottie7@tpg.com.au>
5526         * fvwm/fvwm.1.in:
5527         * fvwm/conditional.c:
5528         Extend "Test (Version >= x.y.z)" syntax to allow version comparison.
5530 2004-07-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5532         * fvwm/move_resize.c (GetResizeArguments):
5533         (GetResizeMoveArguments):
5534         (__resize_window):
5535         (__resize_step):
5536         (__resize_get_refpos):
5537         (__resize_get_dir_proximity):
5538         (__resize_get_dir_from_window):
5539         implemented fluxbox-like Alt-Button3 resizing
5541         * fvwm/virtual.c (HandlePaging):
5542         * fvwm/events.c (__merge_cr_moveresize):
5543         (__test_for_motion):
5544         (flush_property_notify):
5545         do not use XPutBackEvent as it shuffles events on the queue
5546         (test_button_event):
5547         (test_typed_window_event):
5548         new functions
5550         * libs/FEvent.c (fev_get_evpos_or_query):
5551         take pointer position from EnterNotify and LeaveNotify events
5553         * fvwm/move_resize.c (__move_loop):
5554         fixed multiple paging with certain SnapGrid / Move interactions
5555         (__resize_window):
5556         (__move_loop):
5557         * fvwm/virtual.c (HandlePaging):
5558         Workaround for buggy XFree not delivering some Pointer events
5559         simplified code
5561         * fvwm/virtual.c (MoveViewport):
5562         don't eat MotionNotify events
5564         * libs/FEvent.c (fev_get_last_event):
5565         new function
5566         (FWindowEvent):
5567         (FPutBackEvent):
5568         (FPeekIfEvent):
5569         (FPeekEvent):
5570         (FNextEvent):
5571         (FMaskEvent):
5572         (FIfEvent):
5573         (FCheckWindowEvent):
5574         (FCheckTypedWindowEvent):
5575         (FCheckTypedEvent):
5576         (FCheckMaskEvent):
5577         (FCheckIfEvent):
5578         keep a copy of the previous event in case FPutBackEvent is called
5580 2004-06-30  Scott Smedley  <scottie7@tpg.com.au>
5582         * fvwm/fvwm.1.in:
5583         Indicate optional window argument in section headings for
5584         Key, Mouse, PointerKey & Stroke commands.
5585         Remove strange "-Key" option listed for PointerKey.
5587 2004-06-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5589         * libs/Fft.c (FftDrawString):
5590         * fvwm/session.c (get_version_string):
5591         * fvwm/module_interface.c (FlushMessageQueue):
5592         * fvwm/fvwm.c (SaveDesktopState):
5593         * fvwm/colorset.h:
5594         * fvwm/colorset.c (cleanup_colorsets):
5595         * libs/PictureUtils.c (struct):
5596         fixed compilation with -Wall -Wstrict-prototypes -Wpointer-arith
5598 2004-06-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5600         * fvwm/events.c (__cr_detect_icccm_move):
5601         windows with ewmh hints are assumed to use icccm2 compliant movement
5603         * fvwm/ewmh_events.c (ewmh_WMStateMaxVert):
5604         (ewmh_WMStateMaxHoriz):
5605         fixed restart/maximized problem
5607         * libs/fvwmsignal.c (fvwmReapChildren):
5608         * fvwm/fvwm.c (ReapChildren):
5609         moved function to lib
5611 2004-06-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5613         * fvwm/modconf.c (send_desktop_geometry):
5614         (send_color_limit):
5615         (send_click_time):
5616         (send_move_threshold):
5617         (send_ignore_modifiers):
5618         increased static buffer size
5620 2004-06-13  Marcus Lundblad  <ml@update.uu.se>
5622         * libs/CombineChars.c (convert_to_ucs2):
5623         Replace illegal UTF-8 character sequences in input
5625 2004-06-11  Scott Smedley  <scottie7@tpg.com.au>
5627         * libs/Bindings.c:
5628         bugfix: wrong stroke action being invoked.
5630 2004-06-10  Scott Smedley  <scottie7@tpg.com.au>
5632         * fvwm/builtins.c:
5633         * fvwm/events.c:
5634         * libs/Bindings.c:
5635         Active _last_ matching binding. (ie. same behaviour as before
5636         win-specific bindings patch.)
5637         bugfix: segfault when looking up stroke bindings in root context.
5639 2004-06-07  Scott Smedley  <scottie7@tpg.com.au>
5641         * fvwm/bindings.c:
5642         * fvwm/builtins.c:
5643         * fvwm/events.c:
5644         * fvwm/fvwm.1.in:
5645         * fvwm/module_interface.c:
5646         * libs/Bindings.c:
5647         * libs/Bindings.h:
5648         * modules/FvwmScript/FvwmScript.c:
5649         * modules/FvwmScript/Instructions.c:
5650         Implemented window-specific key/mouse bindings.
5652         * modules/FvwmIconBox/FvwmIconBox.h:
5653         * libs/fvwmlib.h:
5654         * libs/wild.c:
5655         * libs/wild.h:
5656         Make args to matchWildcards() const.
5658 2004-06-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5660         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
5661         use EWMH_fullscreen
5662         * fvwm/ewmh.c (EWMH_fullscreen):
5663         new function
5665         * fvwm/add_window.c (AddWindow):
5666         implemented MAXVERT, MAXHORIZ and FULLSCREEN initial EWMH states
5668         * fvwm/ewmh_events.c (ewmh_WMStateMaxHoriz):
5669         (ewmh_WMStateMaxVert):
5670         (ewmh_WMStateShaded):
5671         (ewmh_WMStateSticky):
5672         (ewmh_WMStateStaysOnBottom):
5673         fixed core dumps
5674         (ewmh_WMState):
5675         don't try to maximize window when looking up the style
5676         (ewmh_WMDesktop):
5677         (ewmh_WMStateFullScreen):
5678         (ewmh_WMStateHidden):
5679         (ewmh_WMStateMaxVert):
5680         (ewmh_WMStateModal):
5681         (ewmh_WMStateShaded):
5682         (ewmh_WMStateSkipPager):
5683         (ewmh_WMStateSticky):
5684         (ewmh_WMStateStaysOnBottom):
5685         fixed ignoring ewmh hints
5687         * fvwm/expand.c (expand_vars_extended):
5688         include full path in iconfile and miniiconfile variables
5690 2004-06-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5692         * fvwm/functions.c (execute_complex_function):
5693         (CheckActionType):
5694         fixed double click patch
5696 2004-06-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5698         * fvwm/ewmh.c (EWMH_SetWMDesktop):
5699         use 0xFFFFFFFF instead of 0xFFFFFFFE for "sticky across all desks"
5701 2004-05-31  Dan Espen  <dane@mk.telcordia.com>
5703         * fvwm/fvwm.1.in (COLORSETS): Moved FvwmTheme description of colorsets
5704         into fvwm man page.
5706 2004-05-29  Norbert Buchmuller  <norbi@nix.hu>
5708         * libs/FImage.c (FShmSafeCreateImage):
5709         Yet another fix to SHM remote client problem
5711 2004-05-26  Francis Litterio  <franl@world.std.com>
5713         * fvwm/fvwm.1.in
5714         * fvmw/fvwm.h
5715         * fvwm/placement.c (__place_get_wm_pos)
5716         * fvwm/style.c (style_parse_one_style_option)
5717         Added support for new CenterPlacement style (cf. macro PLACE_CENTER).
5719 2004-05-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5721         * fvwm/events.c (HandleEnterNotify):
5722         fixed endless loop of edge commands when doing something that grabs
5723         the pointer
5725         * fvwm/functions.c (CheckActionType):
5726         (execute_complex_function):
5727         double clicks no longer work when pressing different buttons
5729 2004-05-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5731         * fvwm/placement.c (__place_get_wm_pos):
5732         fixed placement in top left corner when pressing escape during manual
5733         placement
5735 2004-05-23  Mikhael Goikhman  <migo@homemail.com>
5737         * configure.in:
5738         * AUTHORS:
5739         added Chinese translations
5741 2004-05-18  Olivier Chapuis  <olivier.chapuis@free.fr>
5743         * fvwm/ewmh.c (EWMH_SetFrameStrut):
5744         Fixed a miss-print
5746 2004-05-09  Mikhael Goikhman  <migo@homemail.com>
5748         * fvwm/conditional.c:
5749         * fvwm/fvwm.1.in:
5750         clean up Test code and documentation, add new False condition,
5751         unrecognized conditions produce Error return code now
5753 2004-05-06  Dan Espen  <dane@mk.telcordia.com>
5755         * fvwm/style.c: Remove extra char.
5757 2004-05-01  Olivier Chapuis  <olivier.chapuis@free.fr>
5759         * fvwm/ewmh.c (ewmh_atom_client_win):
5760         * fvwm/ewmh_intern.h:
5761         * fvwm/ewmh_events.c (EWMH_ProcessClientMessage):
5762         (ewmh_MoveResizeWindow):
5763         Added _NET_RESTACK_WINDOW as it is similar than _NET_MOVERESIZE_WINDOW
5765         * fvwm/events.c (__handle_cr_on_client):
5766         (__handle_configure_request):
5767         (events_handle_configure_request):
5768         Some renaming for consistency, force restacking if the event come from
5769         an ewmh restack
5771         * fvwm/ewmh_events.c (ewmh_MoveResize):
5772         Fixed _NET_WM_MOVERESIZE
5774         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
5775         Removed debug code
5777         * fvwm/ewmh.c (ewmh_atom_fvwm_win):
5778         (EWMH_SetFrameStrut):
5779         Added _NET_FRAME_EXTENTS as it is just _KDE_NET_WM_FRAME_STRUT
5781 2004-04-29  Olivier Chapuis  <olivier.chapuis@free.fr>
5783         * libs/FImage.c (FShmSafeCreateImage):
5784         Finished to fix SHM remote client problem
5786 2004-04-29  Olivier Chapuis  <olivier.chapuis@free.fr>
5788         * libs/FImage.c (FShmSafeCreateImage):
5789         Fixed when we are a remote client
5791 2004-04-21  Mikhael Goikhman  <migo@homemail.com>
5793         * INSTALL.fvwm:
5794         * NEWS:
5795         * acconfig.h:
5796         * fvwm/fvwm.1.in:
5797         * fvwm/fvwm.c:
5798         * fvwm/gnome.h:
5799         * fvwm/session.c:
5800         * libs/envvar.c:
5801         * libs/envvar.h:
5802         new default ~/.fvwm/config file is now recommended instead of
5803         still supported ~/.fvwm/.fvwm2rc
5805 2004-04-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5807         * fvwm/menus.c (NewMenuRoot):
5808         do not strip whitespace from menu names when creating a new menu
5810 2004-04-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5812         * fvwm/menuitem.c (menuitem_get_size):
5813         * fvwm/menuitem.h:
5814         renamed remaining "mips" to mipst
5816 2004-04-09  Olivier Chapuis  <olivier.chapuis@free.fr>
5818         * fvwm/events.c (HandleMapRequestKeepRaised):
5819         * fvwm/ewmh_events.c (ewmh_DesktopGeometry):
5820         Fixed EWMH DesktopGeometry and Stacking list
5822 2004-04-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5824         * fvwm/virtual.c (GetDeskNumber):
5825         (CMD_MoveToDesk):
5826         (CMD_GotoDesk):
5827         fixed MoveToDesk with one argument
5829 2004-04-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5831         * fvwm/style.c (style_parse_one_style_option):
5832         * fvwm/style.h:
5833         * fvwm/conditional.c (MatchesConditionMask):
5834         * fvwm/fvwm.h:
5835         * fvwm/window_flags.h:
5836         new style "State"
5838 2004-03-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5840         * fvwm/fvwm.1.in:
5841         corrected a typo
5843 2004-03-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5845         * fvwm/move_resize.c (unmaximize_fvwm_window):
5846         fixed redrawing of maximize button when unmaximizing but when the size
5847         and position does not change
5849 2004-03-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5851         * fvwm/expand.c (expand_vars_extended):
5852         new extended variable $[w.layer]
5854         * fvwm/move_resize.c (MaximizeHeight):
5855         (MaximizeWidth):
5856         (CMD_Maximize):
5857         applied modified layer patch for maximize by Rafal Bisingier
5859 2004-03-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5861         * fvwm/add_window.c (setup_frame_attributes):
5862         Hopefully fixed BackingStore code and removed now useless backing store
5863         for decorations
5865         * fvwm/expand.c (expand_vars_extended):
5866         new extended variable $[w.desk]
5868 2004-03-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5870         * NEWS:
5871         * configure.in:
5872         increased version to 2.5.11
5873         released 2.5.10
5875         * NEWS:
5876         * configure.in:
5877         updated for 2.5.10 release
5879         * libs/Graphics.c (do_relieve_rectangle_with_rotation):
5880         improved rotation code
5882         * libs/gravity.c (gravity_add_rotations):
5883         new function
5885 2004-03-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5887         * fvwm/placement.c (__explain_placement):
5888         new function
5890         * libs/FScreen.c (FScreenIsRectangleOnScreen):
5891         new function
5893         * fvwm/builtins.c (CMD_BugOpts):
5894         * fvwm/screen.h (ScreenInfo):
5895         new BugOpts option ExplainWindowPlacement
5896         renamed some members of Screen
5898 2004-03-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5900         * fvwm/placement.c (__place_get_wm_pos):
5901         (__place_get_nowm_pos):
5902         (__place_get_placement_flags):
5903         (__place_window):
5904         (__place_handle_x_resources):
5905         (setup_window_placement):
5906         split into multiple functions
5907         cleaned up a little
5909 2004-03-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5911         * fvwm/add_window.c (setup_window_placement):
5912         * fvwm/placement.c (setup_window_placement):
5913         moved function to placement.c
5914         fixed using PLACE_AGAIN placement mode
5915         (PlaceWindow):
5916         (__place_window):
5917         renamed function
5919 2004-03-15  Chris Ross  <cross+fvwm@distal.com>
5921         * libs/Graphics.c (do_relieve_rectangle_with_rotation)
5922         allow a negative line_width to invert the relief
5924 2004-03-06  Marcus Lundblad  <ml@update.uu.se>
5926         * libs/Flocale.c (FlocaleDrawString)
5927         (FlocaleDrawUnderline)
5928         (FlocaleTextWidth):
5929         reduced redundant calls to iconv
5931 2004-03-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5933         * fvwm/move_resize.c (CMD_XorValue):
5934         fixed a very small outline drawing problem caused by using 0 line width
5935         instead of 1
5937         * NEWS:
5938         * configure.in:
5939         increased version to 2.5.10
5941         * configure.in:
5942         * NEWS:
5943         updated for 2.5.9 release
5945         * fvwm/functions.c (execute_function_override_window):
5946         * fvwm/module_interface.c (ExecuteModuleCommand):
5947         * fvwm/conditional.c (circulate_cmd):
5948         sometimes, DeferExecution was called although a window was already
5949         selected, for example with the "Current" commend; fixed
5951 2004-02-28  Olivier Chapuis  <olivier.chapuis@free.fr>
5953         * libs/FImage.c (FShmSafeCreateImage):
5954         Fixed some safety tests
5956 2004-02-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5958         * fvwm/events.c (__handle_cr_on_client):
5959         fixed a bug in the Jave configure request workaround
5961 2004-02-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5963         * fvwm/events.c (__cr_detect_icccm_move):
5964         improved motion method detection for fullscreen requests
5966 2004-02-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5968         * fvwm/add_window.c (AddWindow):
5969         * fvwm/screen.h (ScreenInfo):
5970         * fvwm/builtins.c (CMD_BugOpts):
5971         new BugOpts option DisplayNewWindowNames intended for debugging
5973 2004-02-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5975         * libs/Bindings.c (FvwmStringToKeysym):
5976         small performance enhancement
5978         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
5979         (__move_loop):
5980         fixed the FlickeringMoveWorkaround option which did nothing before
5982 2004-02-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5984         * fvwm/style.c (style_parse_one_style_option):
5985         * fvwm/fvwm.h:
5986         * fvwm/style.h (SIS_UNMANAGED):
5987         * fvwm/add_window.c (AddWindow):
5988         New style Unmanaged
5990         * fvwm/expand.c (expand_vars_extended):
5991         new variables $[w.iconfile] and $[w.miniiconfile]
5993         * libs/Graphics.c (do_relieve_rectangle_with_rotation):
5994         made left side of a relief one pixel longer at the bottom
5996 2004-02-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
5998         * libs/defaults.h (DEF_FP_SORT_WINDOWLIST_BY):
5999         * fvwm/style.c (style_set_old_focus_policy):
6000         fixed default window list order with ClickToFocus
6002 2004-02-04  Marcus Lundblad  <ml@update.uu.se>
6004         * fvwm/libs/Flocale.h:
6005         * fvwm/libs/Flocale.c (FlocaleStringNumberOfBytes)
6006         (FlocaleStringByteToCharOffset)
6007         (FlocaleStringCharToByteOffset)
6008         (FlocaleStringCharLength):
6009         Made utility functions available outside of Flocale
6011 2004-01-31  Olivier Chapuis  <olivier.chapuis@free.fr>
6013         * fvwm/events.c (__test_for_motion):
6014         Fixed a lockup, see the long comment in the code
6016 2004-01-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6018         * fvwm/schedule.c (execute_obj_func):
6019         fixed using uninitialised return code
6021 2004-01-25  Olivier Chapuis  <olivier.chapuis@free.fr>
6023         * fvwm/builtins.c (do_title_style):
6024         Fixed MinHeight, it must reset the Height
6026 2004-01-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6028         * fvwm/menus.c (menuShortcuts):
6029         applied menu navigation patch by Anton Kazennikov
6031 2003-12-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6033         * libs/gravity.c (gravity_dir_to_string):
6034         (gravity_parse_dir_argument):
6035         use a constant for the dir table
6037 2003-12-16  Marcus Lundblad  <ml@update.uu.se>
6039         * fvwm/Flocale.c (FlocaleEncodeString)
6040         (FlocaleDrawUnderline):
6041         Fixed crash when there's no Iconv support
6043 2003-12-16  olicha  <olivier.chapuis@free.fr>
6045         * fvwm/functions.h:
6046         Used the FUNC_FLAGS_TYPE in find_func_t declaration
6048         * sample.fvwmrc/system.fvwm2rc-sample-95:
6049         Added some Xft fonts
6051 2003-12-12  olicha  <olivier.chapuis@free.fr>
6053         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6054         Fixed ewmh FullScreen when an application start fullscreen and
6055         desactivate this state
6057 2003-12-04  olicha  <olivier.chapuis@free.fr>
6059         * fvwm/placement.c (test_fit):
6060         * fvwm/ewmh.h:
6061         * fvwm/ewmh.c (ewmh_GetStrutIntersection):
6062         (EWMH_GetBaseStrutIntersection):
6063         (EWMH_GetStrutIntersection):
6064         Fixed placement vs the base struts
6066 2003-11-29  Mikhael Goikhman  <migo@homemail.com>
6068         * sample.fvwmrc/system.fvwm2rc-sample-95:
6069         improved Debian specific menu
6071 2003-11-15  Mikhael Goikhman  <migo@homemail.com>
6073         * sample.fvwmrc/system.fvwm2rc-sample-95:
6074         several updates; added Debian menu if found
6076 2003-11-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6078         * configure.in:
6079         new configure option --en/disable-iconv
6081 2003-11-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6083         * fvwm/menus.c (__mloop_handle_event):
6084         * fvwm/menustyle.c (menustyle_parse_style):
6085         (menustyle_copy):
6086         new MenuStyle options PopupIgnore and PopupClose
6088 2003-11-02  Dan Espen  <dane@mk.telcordia.com>
6090         * fvwm/menus.c (menu_binding): Remove debug code.
6091         * fvwm/bindings.c (ParseBinding): Hand off menu bindings to menu code.
6092         * fvwm/menus.h: Add menu_binding function.
6093         * fvwm/fvwm.1.in: Document the menu context in the mouse command for
6094         tear off menus.
6095         * fvwm/menus.c (__mloop_handle_event): Really crude ability to disable
6096         button 2 tearoff.
6097         * libs/wcontext.h (enum): Add MENU context.
6098         * libs/wcontext.c (win_contexts): More common binding contexts first in
6099         table.
6100         * libs/charmap.c (charmap_string_to_mask): Space before char in error
6101         message.
6103 2003-11-01  Mikhael Goikhman  <migo@homemail.com>
6105         * NEWS:
6106         * configure.in:
6107         increase version to 2.5.9
6109 2003-10-31  Mikhael Goikhman  <migo@homemail.com>
6111         * Makefile.am:
6112         fixed deb creation
6114         * configure.in:
6115         * NEWS:
6116         updated for 2.5.8 release
6118 2003-10-29  Mikhael Goikhman  <migo@homemail.com>
6120         * Makefile.am:
6121         * configure.in:
6122         initially added files for deb package auto-creating procedure
6124 2003-10-26  Mikhael Goikhman  <migo@homemail.com>
6126         * AUTHORS:
6127         * configure.in:
6128         added Swedish translations by Johan Svedberg
6130         * NEWS:
6131         updated
6133 2003-10-25  Mikhael Goikhman  <migo@homemail.com>
6135         * fvwm/add_window.c (GetWindowSizeHints):
6136         reindented broken hint messages
6138 2003-10-23  Mikhael Goikhman  <migo@homemail.com>
6140         * configure.in:
6141         improved Perl detection messages,
6142         restored FvwmGtkDebug independence from gtk libs
6144 2003-10-15  Mikhael Goikhman  <migo@homemail.com>
6146         * configure.in:
6147         * AUTHORS:
6148         added German translations by Andrei Mitrofanow
6150         * fvwm/fvwm.1.in:
6151         typos
6153 2003-10-11  Mikhael Goikhman  <migo@homemail.com>
6155         * NEWS:
6156         added 2.4.17 NEWS
6158 2003-09-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6160         * fvwm/fvwm.1.in:
6161         * fvwm/conditional.c (CreateConditionMask):
6162         (MatchesConditionMask):
6163         (CreateConditionMask):
6164         * fvwm/fvwm.h (WindowConditionMask):
6165         !CurrentPage, !CurrentDesk, !Layer ... now work as they should
6167 2003-09-23  olicha  <olivier.chapuis@free.fr>
6169         * libs/FImage.c (FShmInit):
6170         Removed debug code
6172 2003-09-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6174         * fvwm/focus.c (warp_to_fvwm_window):
6175         don't unnecessarily call MoveViewport
6177 2003-09-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6179         * fvwm/decorations.c (__is_resize_allowed):
6180         fixed a condition
6182 2003-09-06  malu  <ml@update.uu.se>
6184         * libs/FBidi.c (FBidiConvert):
6185         * libs/CombineChars.c (CombineChars):
6186         Fixed drawing combining characters on correct positions in
6187         right-to-left context
6189 2003-09-05  malu  <ml@update.uu.se>
6191         * libs/Flocale.c (FlocaleDrawString):
6192         (FlocaleTextWidth):
6193         Fixed drawing of combining characters with font shadow
6194         (character offsets were miscalculated, since FlocaleTextWidth
6195         adds shadow width)
6197 2003-09-05  malu  <ml@update.uu.se>
6199         * libs/Flocale.c (FlocaleDrawUnderline):
6200         Fixed bug with text width when a string contains only
6201         "orphaned" combining characters (compensation for font shadowd
6202         was counted twice)
6204 2003-09-04  olicha  <olivier.chapuis@free.fr>
6206         * todo-2.6:
6207         Added E.18, added comments on C.9 and C.15
6209 2003-09-03  olicha  <olivier.chapuis@free.fr>
6211         * libs/Flocale.c (FlocaleTextWidth):
6212         Fixed a comb_char core dump
6214         * libs/Makefile.am:
6215         Fixed compilation if either iconv, libpng or Xrender headers are
6216         not at a standard place
6218 2003-09-03  Mikhael Goikhman  <migo@homemail.com>
6220         * acinclude.m4:
6221         fixed error message for incorrect --with-SOMETHING-library argument
6223 2003-09-03  olicha  <olivier.chapuis@free.fr>
6225         * todo-2.6:
6226         Closed C.2 as Dominik fix it on 2003-03-13. Move B.5 to C.27
6228 2003-09-02  olicha  <olivier.chapuis@free.fr>
6230         * todo-2.6:
6231         C.12 is fixed
6233 2003-09-01  olicha  <olivier.chapuis@free.fr>
6235         * libs/gravity.c (gravity_dir_to_string):
6236         A new interface function to transform a direction_t to a string
6238 2003-08-31  S. Anderson  <sa@xmission.com>
6240         * libs/defaults.h (FLOCALE_MB_FALLBACK_FONT):
6241         Fixed missing font charsets
6243 2003-08-28  olicha  <olivier.chapuis@free.fr>
6245         * fvwm/move_resize.c (__move_loop):
6246         (AnimatedMoveAnyWindow):
6247         Updated bg of transparent tear off menu when moved
6249         * fvwm/events.c (HandlePropertyNotify):
6250         Updated ParentRelative tear off menu on bg change
6252         * fvwm/menus.c (UpdateMenuColorset):
6253         Updated colorsets of tear off menu when they change, this handle the
6254         case of root background change for RootTransparent
6256         * fvwm/menus.h:
6257         * fvwm/menus.c (menu_redraw_pr_tear_off_menu):
6258         An utility function for redrawing transparent tear off menu. Maybe
6259         we can merge
6261         * fvwm/add_window.c (validate_transientfor):
6262         Fixed transient for an ewmh desktop
6264 2003-08-27  olicha  <olivier.chapuis@free.fr>
6266         * libs/FRender.c (FRenderRender):
6267         * libs/PictureGraphics.c (PGraphicsCreateTranslucent):
6268         Removed and fixed some unused code
6270 2003-08-25  olicha  <olivier.chapuis@free.fr>
6272         * fvwm/misc.c (GrabEm):
6273         Fixed fvwm freeze if GRAB_FREEZE_CURSOR fail repeatedly
6275         * fvwm/modconf.c (send_color_limit):
6276         ifndefed color limit config info message which is not used anymore
6278         * fvwm/colorset.c (parse_colorset):
6279         Added a note on average bg
6281 2003-08-23  olicha  <olivier.chapuis@free.fr>
6283         * fvwm/style.c (print_styles):
6284         More info on memory used
6286         * fvwm/style.c (__simplify_style_list):
6287         Fixed upward simplication
6289 2003-08-14  olicha  <olivier.chapuis@free.fr>
6291         * fvwm/ewmh.c (ewmh_HandleMenu):
6292         Fixed the MENU window type, they are tear off menus
6294         * fvwm/fvwm.h:
6295         * fvwm/update.c (apply_window_updates):
6296         * fvwm/stack.c (new_layer):
6297         * fvwm/ewmh.c (EWMH_GetStyle):
6298         Fixed EWMHUseStackingHints update
6300         * fvwm/window_flags.h:
6301         * fvwm/fvwm.h:
6302         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6303         (ewmh_WMStateMaxHoriz):
6304         (ewmh_WMStateMaxVert):
6305         * fvwm/move_resize.c (unmaximize_fvwm_window):
6306         Fixed _NET_WM_STATE_FULLSCREEN: set the correct _NET_WM_STATE,
6307         uniconify and unshade when putting a window fullscreen
6309         * fvwm/ewmh_intern.h:
6310         * fvwm/ewmh.c (ewmh_AllowsFullScreen):
6311         Added _NET_WM_ACTION_FULLSCREEN as we have _NET_WM_STATE_FULLSCREEN
6313         * fvwm/move_resize.c (unmaximize_fvwm_window):
6314         (CMD_Resize):
6315         (CMD_ResizeMove):
6316         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6317         * fvwm/decorations.c (SelectDecor):
6318         * fvwm/windowshade.c (CMD_WindowShade):
6319         Removed the decor for EWMH fullscreen windows, forbid shading and
6320         allows Resize and MoveResize without unsetting the fullscreen/maximized
6321         state
6323         * fvwm/move_resize.c (CMD_ResizeMoveMaximize):
6324         (CMD_ResizeMaximize):
6325         Fixed ewmh state which was not set after these cmds
6327 2003-08-09  olicha  <olivier.chapuis@free.fr>
6329         * todo-2.6:
6330         Updated
6332 2003-08-08  olicha  <olivier.chapuis@free.fr>
6334         * fvwm/borders.c (border_draw_vector_to_pixmap):
6335         Fixed inversion of fg and bg in vector buttons
6337         * fvwm/style.c (__simplify_style_list):
6338         Fixed a memory leak
6340         * libs/System.c (fvwm_mkstemp):
6341         Removed debug code
6343 2003-08-07  olicha  <olivier.chapuis@free.fr>
6345         * configure.in:
6346         * acinclude.m4 (AM_SAFETY_CHECK_MKSTEMP):
6347         * acconfig.h:
6348         * libs/System.c (fvwm_mkstemp):
6349         * libs/fvwmlib.h:
6350         Added fvwm_mkstemp for replacing tempnam. configure check if mkstemp
6351         exists and work correctly, if not a replacement function is used
6352         (written by Michael Han in 2001-02 and inspired by the glibc mkstemp
6353         implementation).
6355         * libs/fsm.c (unique_filename):
6356         (SetAuthentication):
6357         * fvwm/session.c (getUniqueStateFilename):
6358         Replaced tempnam by fvwm_mkstemp
6360 2003-08-07  olicha  <olivier.chapuis@free.fr>
6362         * libs/Makefile.am:
6363         * libs/FSMlib.h (new file):
6364         * fvwm/session.c (*):
6365         * fvwm/session.h:
6366         fvwmize SMlib and ICElib
6368         * fvwm/session.c (matchWin):
6369         Fixed window matching for windows with no SM_CLIENT_ID and a
6370         window_role
6372         * libs/fsm.c (new file):
6373         * libs/fsm.h (new file):
6374         * fvwm/ConfigFvwmDefaults
6375         A set of functions for implementing a dummy session manager
6377         * fvwm/fvwm.1.in:
6378         GNOME 1 hints and EWHM support is not a configure time option
6379         (anymore).
6381 2003-08-06  Robert Wittek  <r.wittek@gmx.net>
6383         * fvwm/add_window.c (AddWindow):
6384         fixed stickyness across desks over a restart
6386 2003-08-06  olicha  <olivier.chapuis@free.fr>
6388         * fvwm/ewmh.c (EWMH_WindowInit):
6389         (EWMH_SetFrameStrut):
6390         Fixed position of kde tray windows in kicker
6392 2003-07-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6394         * fvwm/module_interface.c (FlushMessageQueue):
6395         retry writing pipe if write returns EINTR
6397 2003-07-28  olicha  <olivier.chapuis@free.fr>
6399         * fvwm/events.c (events_handle_configure_request):
6400         (HandleConfigureRequest):
6401         (__handle_configure_request):
6402         (__handle_cr_on_client):
6403         * fvwm/ewmh.c (ewmh_atom_client_win):
6404         * fvwm/ewmh_intern.h:
6405         * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
6406         (EWMH_ProcessClientMessage):
6407         Implemented _NET_MOVERESIZE_WINDOW
6409         * fvwm/fvwm.c (main):
6410         A -Wall fix
6412 2003-07-25  olicha  <olivier.chapuis@free.fr>
6414         * fvwm/ewmh.c (ewmh_HandleWindowType):
6415         Fixed handling of the _NET_WINDOW_TYPE prop when there are more
6416         that one type and we do not support the first one.
6418         * fvwm/expand.c (expand_vars_extended):
6419         Fixed conflict between extended variables name (desk.name and
6420         desk.n)
6422         * fvwm/session.c (callback_save_yourself):
6423         Respect the SmSaveGlobal save type. This should fix some session
6424         locking in the sm protocol
6426         * fvwm/session.c (setSmProperties):
6427         (SessionInit):
6428         Set some sm properties when fvwm start for fixing a problem with
6429         the restart style hint after a restart.
6431         * fvwm/fvwm.c (get_display_name):
6432         (usage):
6433         (main):
6434         * fvwm/session.c (setSmProperties):
6435         * fvwm/fvwm.1.in
6436         Added a possible positive or null arg to --single-screen which
6437         forces fvwm to start on the "current" display and the given
6438         screen. Use this to fix fvwm starting under a session manager:
6439         specify only the screen and not the display.screen for the
6440         restart sm command.
6442         * fvwm/fvwm.c (main):
6443         Fixed possible memory corruption if a display has more than
6444         10 screens.
6446         * fvwm/session.c (*):
6447         Better debuging msg
6449 2003-07-24  Mikhael Goikhman  <migo@homemail.com>
6451         * acinclude.m4:
6452         fixed xft/fontconfig detection with pkg-config
6454         * fvwm/fvwm.1.in:
6455         corrections in some long option names
6457 2003-07-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6459         * fvwm/add_window.c (setup_style_and_decor):
6460         * fvwm/geometry.c (set_window_border_size):
6461         * fvwm/fvwm.h (FvwmWindow):
6462         * fvwm/events.c (HandleShapeNotify):
6463         * fvwm/frame.c (frame_free_move_resize_args):
6464         (frame_setup_shape):
6465         (frame_reshape_border):
6466         fixed resizing of window borders if a window shape was added or deleted
6467         after the initial window setup
6469         * fvwm/update.c (apply_window_updates):
6470         removed unused code
6472         * fvwm/events.c (__cr_detect_icccm_move):
6473         disable motion method detection for shaped windows
6475 2003-07-21  olicha  <olivier.chapuis@free.fr>
6477         * fvwm/add_window.c (setup_window_structure):
6478         * fvwm/session.c (MatchWinToSM):
6479         Preserve is_name_changed window_flags within restart, session loading
6480         and recapture
6482 2003-07-20  olicha  <olivier.chapuis@free.fr>
6484         * fvwm/ewmh.c (EWMH_Init):
6485         fixed _NET_WM_NAME for our ewmh WM_CHECK window
6487         * fvwm/fvwm.c (InternUsefulAtoms):
6488         * fvwm/externs.h:
6489         * fvwm/session.c (GetWindowRole):
6490         Some applications use WINDOW_ROLE and not WM_WINDOW_ROLE
6492         * fvwm/session.c (GetClientID):
6493         Better determination of the CLIENT_LEADER
6495         * fvwm/session.c (setSmProperties):
6496         Set the CloneCommand for gnome-session editor (the sm spec says this
6497         properties is required). Removed the commented XSM ifdef.
6499         * fvwm/session.c (matchWin):
6500         (SaveWindowStates):
6501         Consider client only if it has a client id or a wm command.
6502         Removed the "two entries" session previous commit
6504 2003-07-16  olicha  <olivier.chapuis@free.fr>
6506         * fvwm/session.c (MatchWinToSM):
6507         Fixed restoring session state, if two window session entries have the
6508         same identifier ignore these entries
6510 2003-07-16  olicha  <olivier.chapuis@free.fr>
6512         * NEWS:
6513         * fvwm/style.h (SID_GET_NAME):
6514         (SID_SET_NAME):
6515         (SID_GET_WINDOW_ID):
6516         (SID_SET_WINDOW_ID):
6517         (SID_SET_HAS_NAME):
6518         (SID_GET_HAS_NAME):
6519         (SID_SET_HAS_WINDOW_ID):
6520         (SID_GET_HAS_WINDOW_ID):
6521         (SGET_ID):
6522         (SGET_WINDOW_ID):
6523         (SSET_WINDOW_ID):
6524         (SSET_ID_HAS_NAME):
6525         (SGET_ID_HAS_NAME):
6526         (SSET_ID_HAS_WINDOW_ID):
6527         (SGET_ID_HAS_WINDOW_ID):
6528         * fvwm/style.c (style_ids_are_equals):
6529         (style_id_equals_id):
6530         (styles_have_same_id):
6531         (fw_match_style_id):
6532         (one_fw_can_match_both_ids):
6533         (remove_all_of_style_from_list):
6534         (__simplify_style_list):
6535         (style_parse_one_style_option):
6536         (__style_command):
6537         (style_destroy_style):
6538         (print_styles):
6539         (CMD_Style):
6540         (CMD_WindowStyle):
6541         (CMD_FocusStyle):
6542         (CMD_DestroyStyle):
6543         (CMD_DestroyWindowStyle):
6544         * fvwm/fvwm.h (style_id_t):
6545         (window_style):
6546         * fvwm/functable.c (func_table):
6547         * fvwm/add_window.c (destroy_window):
6548         * fvwm/commands.h:
6549         * fvwm/fvwm.1:
6550         New WindowStyle and DestroyWindowStyle command for setting styles
6551         per window
6553 2003-07-14  Marcus Lundblad  <ml@update.uu.se>
6555         * libs/Flocale.c (FlocaleDrawString):
6556         * libs/FBidi.c (FBidiConvert):
6557         fixed drawing of combining characters in the case where a string
6558         consists of only combining characters
6560 2003-07-13  Marcus Lundblad  <ml@update.uu.se>
6562         * libs/CombineChars.c (CombineChars):
6563         bugfix: array mapping visual to logical position was allocated
6564         to small (factor 2) in decoposing code
6566 2003-07-11  Marcus Lundblad  <ml@update.uu.se>
6568         * libs/Flocale.c (FlocaleEncodeWinString):
6569         fixed a memory leak
6571         * libs/Flocale.c (FlocaleDrawString):
6572         (FlocaleRotatedDrawString):
6573         removed some code duplication
6575 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6577         * libs/CombineChars.c (combclass_table):
6578         (CombineChars):
6579         fixed supporting drawing marks superimposed that are in a combining
6580         class
6582 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6584         * libs/Flocale.c (FlocaleRotateDrawString):
6585         (FlocaleDrawString)
6586         fixed core dump when composing characters can't be converted to
6587         locale charset
6589 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6591         * AUTHORS:
6592         updated
6594 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6596         * todo-2.6 (todo):
6597         updated summary
6599 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6601         * NEWS:
6602         updated with reagrds to combing characters
6604 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6606         * todo-2.6
6607         closed B.8
6609 2003-07-09  Marcus Lundblad  <ml@update.uu.se>
6611         * libs/Flocale.c (FlocaleEncodeString):
6612         (FlocaleEncodeWinString):
6613         (FlocaleRotateDrawString):
6614         (FlocaleDrawString):
6615         (FlocaleDrawUnderline):
6616         fixed rendering combining characters using Unicode font in a
6617         non-UTF-8 locale
6619 2003-07-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6621         * fvwm/fvwm.1.in:
6622         renamed MoveWindowByProgramMethod to MoveByProgramMethod
6624 2003-07-08  Marcus Lundblad  <ml@update.uu.se>
6626         * libs/FBidi.h:
6627         fixed FBidi.h macro to work with no FriBIDI
6629 2003-07-08  Marcus Lundblad  <ml@update.uu.se>
6631         * libs/CombineChars.h (CombineChars):
6632         * libs/CombineChars.c (CombineChars):
6633         * libs/FBidi.h (FBidiConvert):
6634         * libs/FBidi.c (FBidiConvert):
6635         * libs/Flocale.c (FlocaleEncodeString):
6636         (FlocaleEncodeWinString):
6637         (FlocaleDrawUnderline):
6638         (FlocaleTextWidth):
6639         fixed drawing of underlines on characters to work in with BIDI
6640         and combining characters
6642 2003-07-08  Mikhael Goikhman  <migo@homemail.com>
6644         * todo-2.6:
6645         closed D.1 with "no consensus" resolution
6647 2003-07-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6649         * fvwm/fvwm.1.in:
6650         documented tear off menus
6652         * fvwm/placement.c (PlaceWindow):
6653         StartsOnPage + SkipMapping overrides PPosition
6655 2003-07-07  Mikhael Goikhman  <migo@homemail.com>
6657         * fvwm/functable.c:
6658         solved a problem with CMD_Dummy and exact command spelling
6660         * libs/CombineChars.c:
6661         * libs/CombineChars.h:
6662         * libs/FBidi.c:
6663         minor reformattings (use TABs not 8 spaces and a space after keywords
6664         like for, if or while)
6666 2003-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6668         * fvwm/update.c (apply_window_updates):
6669         * fvwm/update.h:
6670         * fvwm/add_window.c (setup_style_and_decor):
6671         * fvwm/style.h:
6672         * fvwm/style.c (style_parse_one_style_option):
6673         (check_window_style_change):
6674         new style MoveWindowByProgramMethod
6676         * libs/PictureImageLoader.c (PImageLoadXpm):
6677         use RETSIGTYPE and SIGNAL_RETURN for all signal handlers
6679         * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6680         implemented _NET_WM_STATE_FULLSCREEN handling
6682         * fvwm/move_resize.c (GetOnePositionArgument):
6683         fixed parsing of "+-x +-y" Move arguments
6684         (CMD_Maximize):
6685         use get_page_offset_check_visible
6687         * fvwm/geometry.c (get_page_offset_check_visible):
6688         new convenience function
6690         * fvwm/events.c (__handle_cr_on_client):
6691         fixed handling of gravities other than NW or Static
6692         (__cr_detect_icccm_move):
6693         fixed several bugs
6695 2003-07-06  Marcus Lundblad  <ml@update.uu.se>
6697         * libs/BidiJoin.c:
6698         * libs/BidiJoin.h:
6699         * libs/BidiJoin.c:
6700         * libs/BidiJoin.h:
6701         * libs/CombineChars.c:
6702         * libs/CombineChars.h:
6703         * libs/Flocale.c (FlocaleEncodeString):
6704         * libs/FBidi.c:
6705         * libs/FBidi.h:
6706         * libs/Makefile.am:
6707         Removed "F" prefix on FBidiJoin.c, FBidiJoin.h, FCombineChars.c and
6708         FCombineChars.h
6710 2003-07-06  olicha  <olivier.chapuis@free.fr>
6712         * libs/FRender.c (FRenderRender):
6713         Fixed compilation
6715 2003-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6717         * fvwm/ewmh.c (ewmh_check_wm_pid):
6718         (EWMH_WindowInit):
6719         detect whether a window has _NET_WM_PID set; use that to detect ICCCM
6720         compliant ConfigureNotify handling
6722 2003-07-05  Marcus Lundblad  <ml@update.uu.se>
6724         * libs/Flocale.c (FlocaleDrawUnderline):
6725         Commented out some non-working new code
6727 2003-07-05  Marcus Lundblad  <ml@update.uu.se>
6729         * libs/Flocale.c (FlocaleDrawString):
6730         fixed drawing superimposed characters with a fontset
6732 2003-07-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6734         * fvwm/events.c (__cr_detect_icccm_move):
6735         (__handle_cr_on_client):
6736         (__cr_get_grav_position):
6737         (__cr_get_static_position):
6738         * fvwm/window_flags.h:
6739         * fvwm/fvwm.h:
6740         try to autodetect whether application uses the icccm way of moving
6741         windows of the traditional way always using static gravity
6743         * acconfig.h:
6744         moved SIGNAL_RETURN macro definition to acconfig.h
6746         * fvwm/module_interface.c (DeadPipe):
6747         * fvwm/fvwm.c (SigDone):
6748         (Restart):
6749         (ReapChildren):
6750         use SIGNAL_RETURN macro
6752         * fvwm/events.c (__handle_cr_on_client):
6753         (__merge_cr_moveresize):
6754         (__cr_detect_icccm_move):
6756         * fvwm/events.c (__handle_cr_on_unmanaged):
6757         (__handle_cr_on_icon):
6758         (__handle_cr_on_shaped):
6759         (__handle_cr_restack):
6760         (__handle_cr_on_client):
6761         (HandleConfigureRequest):
6762         split the ConfigureRequest code into multiple functions
6764         * fvwm/update.c (apply_window_updates):
6765         fixed drawing of window decorations when "Style * Neverfocus" is used
6767         * fvwm/events.c (HandleKeyPress):
6768         fixed a bug with key binding contexts
6770         * fvwm/functions.c (__execute_function):
6771         * fvwm/expand.c (expand_vars):
6772         (expand_vars_extended):
6773         new extended variable $[func.context]
6775         * libs/Bindings.h:
6776         * libs/Bindings.c:
6777         moved some code to the new files
6779         * libs/charmap.h:
6780         * libs/charmap.c:
6781         * libs/modifiers.h:
6782         * libs/modifiers.c:
6783         * libs/wcontext.c:
6784         * libs/wcontext.h:
6785         new files
6787         * libs/Bindings.c:
6788         fixed a problem with uninitialised global variable
6790 2003-07-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6792         * libs/Bindings.c (key_modifiers):
6793         moved to new file wcontext.c
6795         * libs/gravity.c (gravity_parse_dir_argument):
6796         added aliases for compass directions:
6797           - = N
6798           _ = S
6799           [ = W
6800           ] = E
6801           ^ = NE
6802           > = SE
6803           v = SW
6804           [ = nw
6805           . = center
6807 2003-07-02  Marcus Lundblad  <ml@update.uu.se>
6809         * libs/FBidi.h:
6810         * libs/Flocale.c (FlocaleDrawString):
6811         (FlocaleRotateDrawString):
6812         Fixes to work without Fribidi
6814 2003-07-01  Marcus Lundblad  <ml@update.uu.se>
6816         * todo-2.6:
6817         Updated
6819 2003-07-01  Marcus Lundblad  <ml@update.uu.se>
6821         * libs/FbidiJoin.c (get_shaped_combined_char):
6822         (shape_n_join):
6823         Removed unused (get_shaped_combined_char) and commented out code
6824         Combining ligatures done in FCombineChars
6826 2003-07-01  Marcus Lundblad  <ml@update.uu.se>
6828         * libs/Flocale.c (FlocaleDrawString):
6829         (FlocaleRotateDrawString):
6830         (FlocaleTextWidth):
6831         * libs/FBidi.h:
6832         * libs/FBidi.c (FBidiConvert):
6833         * libs/FBidiJoin.c:
6834         * libs/FCombineChars.h:
6835         * libs/FCombineChars.c (FCombineChars):
6836         Added support for drawing superimposed combining characters
6838 2003-07-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6840         * fvwm/commands.h:
6841         * fvwm/functable.c (func_table):
6842         * fvwm/functions.c (CMD_TearMenuOff):
6843         (CMD_Title):
6844         (CMD_Silent):
6845         (CMD_Function):
6846         (CMD_KeepRc):
6847         merged all dummy commands into one: CMD_Dummy
6849 2003-07-01  olicha  <olivier.chapuis@free.fr>
6851         * fvwm/menus.c (DestroyMenu):
6852         (do_menu):
6853         Cleanup
6855 2003-07-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6857         * fvwm/menustyle.c (menustyle_copy):
6858         (copy_menu_style):
6859         renamed function
6861 2003-06-30  Marcus Lundblad  <ml@update.uu.se>
6863         * todo-2.6:
6864         Updated
6866 2003-06-30  olicha  <olivier.chapuis@free.fr>
6868         * fvwm/menus.c (do_menu):
6869         (DestroyMenu):
6870         (do_menu_close_tear_off_menu):
6871         (menu_close_tear_off_menu):
6872         Allowed to destroy tear off menu!
6874         * fvwm/menus.c (menu_tear_off):
6875         (menu_close_tear_off_menu):
6876         (do_menu_close_tear_off_menu):
6877         (clone_menu_root_static):
6878         (pop_menu_up):
6879         (menu_tear_off):
6880         (make_menu_window):
6881         (make_menu):
6882         (update_menu):
6883         Fixed client leaks (only create new client for menu if it is a tear off
6884         menu). Created a dedicated menu style for each tear off menu.
6886         * fvwm/menustyle.c (CMD_CopyMenuStyle):
6887         (copy_menu_style):
6888         * fvwm/menustyle.h:
6889         Split CMD_CopyMenuStyle into CMD_CopyMenuStyle and copy_menu_style
6891 2003-06-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6893         * fvwm/virtual.c (do_move_window_to_desk):
6894         (UnmapDesk):
6895         fixed "Visible" condition on non current desks
6897 2003-06-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
6899         * **/*.c:
6900         * **/*.h:
6901         shortened some comments
6902         removed GPL from .h files
6903         added GPL to all .c files
6904         include config.h in all .c files
6905         added "/* -*-c-*- */" where missing
6906         some reformatting and reindenting
6908         * fvwm/module_interface.c:
6909         * fvwm/module_interface.h:
6910         * libs/Fft.c:
6911         * libs/Flocale.c:
6912         * libs/gravity.h:
6913         * libs/Flocale.h:
6914         * fvwm/screen.h:
6915         * fvwm/misc.c:
6916         * fvwm/misc.h:
6917         * fvwm/windowshade.c:
6918         * fvwm/virtual.c:
6919         * fvwm/conditional.c:
6920         * fvwm/geometry.h:
6921         * fvwm/geometry.c:
6922         * fvwm/borders.c:
6923         * fvwm/frame.h:
6924         * fvwm/frame.c:
6925         * fvwm/update.c:
6926         * fvwm/session.c:
6927         * fvwm/placement.c:
6928         * fvwm/menus.c:
6929         * fvwm/icons.c:
6930         * fvwm/events.c:
6931         * fvwm/add_window.c:
6932         * fvwm/session.h:
6933         * fvwm/placement.h:
6934         * fvwm/icons.h:
6935         * fvwm/eventhandler.h:
6936         * fvwm/fvwm.h:
6937         * fvwm/add_window.h:
6938         * fvwm/repeat.c:
6939         * fvwm/functions.c:
6940         * fvwm/functable.c:
6941         * fvwm/functable.h:
6942         * fvwm/functions.h:
6943         renamed types func_type, repeat_t, initial_window_options_t,
6944         frame_title_layout_type, rotation_t, direction_t, fvwm_msg_t,
6945         last_added_item_type, common_flags_type, multi_direction_type,
6946         msg_masks_type to ..._t
6948         * fvwm/functions.c (__execute_function):
6949         (execute_complex_function):
6950         * fvwm/condrc.c (condrc_init):
6951         new function in new file to encapsulate all cond_rc_t handling
6953         * fvwm/condrc.h:
6954         * fvwm/fvwm.h (cond_rc_t):
6955         (cond_rc_enum):
6956         moved typed to new file
6958         * fvwm/functable.h:
6959         * fvwm/commands.h:
6960         * fvwm/functable.c (func_table):
6961         * fvwm/functions.c (__run_complex_function_items):
6962         (__execute_function):
6964         * fvwm/conditional.c (CMD_Break):
6965         (__rc_matches_rcstring_consume):
6966         Break takes the number of function levels to break out of as an
6967         argument
6969         * fvwm/expand.c (expand_vars_extended):
6970         * fvwm/conditional.c (circulate_cmd):
6971         (select_cmd):
6972         (direction_cmd):
6973         (__rc_matches_rcstring_consume):
6974         (CMD_All):
6975         (CMD_WindowId):
6976         (CMD_TestRc):
6977         (CMD_Test):
6978         * fvwm/read.c:
6979         * fvwm/read.h:
6980         * fvwm/functions.h:
6981         * fvwm/functions.c:
6982         (__run_complex_function_items):
6983         (execute_complex_function):
6984         * fvwm/expand.h:
6985         * fvwm/expand.c:
6986         * fvwm/fvwm.h:
6987         * fvwm/conditional.c:
6988         renamed fvwm_cond_func_rc by cond_rc_t
6989         made a type a struct
6990         added a member to indicate the number of function levels to break out
6991         of
6993         * fvwm/functable.c (func_table):
6994         * fvwm/conditional.c (CMD_TestRc):
6995         replaced conditional commands:
6996                 Cond -> TestRc
6997                 CondCase -> KeepRc TestRc
6998                 On -> Test
6999         (__rc_matches_rcstring_consume):
7000         new function
7002         * fvwm/conditional.c (CMD_CondCase):
7003         fixed the CondCase command
7005 2003-06-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7007         * configure.in:
7008         new configure option --deisable-gtk to disable detection of gtk library
7010         * fvwm/fvwm.1.in:
7011         cleaned up documentation of conditional commands
7012         general man page cleanup
7014 2003-06-17  Dan Espen  <dane@mk.telcordia.com>
7016         * fvwm/builtins.c (ReadDecorFace): Off by one patch from
7017         Anil Madhavapeddy.
7019 2003-06-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7021         * fvwm/fvwm.1.in:
7022         cleaned up of CirculateHit... conditions
7024 2003-06-15  olicha  <olivier.chapuis@free.fr>
7026         * fvwm/style.c (__simplify_style_list):
7027         Fixed is_merged_allowed: rest it to True when cur change
7028         Added "upward" simplification
7030 2003-06-14  olicha  <olivier.chapuis@free.fr>
7032         * fvwm/style.c (__simplify_style_list):
7033         (blocksintersect):
7034         (blockand):
7035         Fixed blockand which always returned True. Added blocksintersect which
7036         returns the same value as blockand but faster.
7038 2003-06-13  olicha  <olivier.chapuis@free.fr>
7040         * configure.in:
7041         * acinclude.m4:
7042         Fixed fontconfig and xft2 for version without *-config binnary. Used
7043         pkg-config for this: new macro AM_CHECK_PKG_CONFIG. Really reject
7044         fontconfig and xft2 if the version is < the required version
7045         (even if --disable-*test).
7047 2003-06-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7049         * libs/Graphics.c:
7050         define M_PI and M_PI_2 if they are not defined by math.h
7052 2003-06-10  Mikhael Goikhman  <migo@homemail.com>
7054         * libs/Colorset.c (LoadColorset):
7055         added a note to update Colorsets.pm too when the format is changed
7057 2003-06-09  Mikhael Goikhman  <migo@homemail.com>
7059         * WindowStyle_proposal.txt:
7060         s/WindowId/ThisWindow/ and other minor changes
7062 2003-06-06  olicha  <olivier.chapuis@free.fr>
7064         * libs/PictureImageLoader.c (PImageLoadPng):
7065         Fixed loading of png images if the caller want no alpha
7067 2003-06-04  olicha  <olivier.chapuis@free.fr>
7069         * libs/Flocale.c (FlocaleEncodeString):
7070         Fixed memroy leaks
7072 2003-06-03  Mikhael Goikhman  <migo@homemail.com>
7074         * libs/Makefile.am:
7075         only FCombineChars.c was distributed not FCombineChars.h
7077 2003-06-03  Marcus Lundblad  <ml@update.uu.se>
7079         * libs/FCombineChars.c (convert_to_utf8)
7080         fixed a bug when converting back to UTF-8 and a bug giving
7081         garbage at end of string in some cases
7083         * libs/Flocale.c (FlocaleEncodeString)
7084         fixed problem regarding combining-characters when BIDI is used
7086 2003-05-31  Marcus Lundblad  <ml@update.uu.se>
7088         * libs/Makefile.am:
7089         * libs/Flocale.c (FlocaleEncodeString):
7090         * libs/FCombineChars.c:
7091         * libs/FCombineChars.h:
7092         implemeted support for combining characters
7094 2003-05-31  Mikhael Goikhman  <migo@homemail.com>
7096         * configure.in:
7097         set the version 2.5.8
7099 2003-05-30  Mikhael Goikhman  <migo@homemail.com>
7101         * fvwm/builtins.c:
7102         * fvwm/fvwm2.1:
7103         SetEnv with only one parameter is ignored now
7105 2003-05-30  Dan Espen  <dane@mk.telcordia.com>
7107         * NEWS: Add 2.4.16 news.
7109 2003-05-29  Mikhael Goikhman  <migo@homemail.com>
7111         * fvwm/functions.c (expand_extended_var):
7112         (expand):
7113         fixed expanding variables that are empty, for example $[w.resource]
7114         or $[gt.a] or $[version.info] or $[EMPTY_STRING]
7116         * fvwm/fvwm.1.in:
7117         s/$w/$[w.id]/
7119 2003-05-29  olicha  <olivier.chapuis@free.fr>
7121         * fvwm/ewmh.c (ewmh_atom_wm_state):
7122         Do not claim that we support _NET_WM_STATE_FULLSCREEN
7124 2003-05-28  olicha  <olivier.chapuis@free.fr>
7126         * NEWS:
7127         A TaskBar news
7129 2003-05-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7131         * fvwm/focus.c (__update_windowlist):
7132         don't fiddle with the window list for windows that are going to be
7133         destroyed
7135         * fvwm/add_window.c (delete_client_context):
7136         (destroy_auxiliary_windows):
7137         (destroy_window):
7138         fixed empty frame windows when X reused the window id for a new window
7139         while the old one was scheduled to be destroyed
7141 2003-05-26  olicha  <olivier.chapuis@free.fr>
7143         * fvwm/icons.c (GetIconBitmap):
7144         (set_icon_pixmap_background):
7145         (CreateIconWindow):
7146         (DrawIconPixmapWindow):
7147         (DrawIconWindow):
7148         Fixed loading of application supplied pixmap on 8/24 depth screen
7150 2003-05-25  Dan Espen  <dane@mk.telcordia.com>
7152         * fvwm/builtins.c (CMD_Exec): Another attempt to fix problem with
7153         Rox Filer.
7155         * fvwm/decorations.c: Sync up motif hints structure to aix,hp,
7156         solaris.
7158 2003-05-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7160         * fvwm/misc.c (GrabEm):
7161         do not confine the pointer to the root window when grabbed; this can
7162         cause the pointer to be warped to another screen
7163         * fvwm/menus.c (get_menu_options):
7164         fixed placement of menus on Xinerama screens
7165         * libs/FScreen.c (FScreenGetResistanceRect):
7166         fixed function to do something useful
7167         * libs/Flocale.c (FlocaleDrawString):
7168         support font shadowing without colorsets
7169         * libs/ColorUtils.c:
7170         reformatted file
7171         * fvwm/menuitem.c (menuitem_paint):
7172         do not use colorsets in menus if they are not defined
7173         * fvwm/menustyle.c (menustyle_parse_style):
7174         fixed initialisation of MenuStyle colorsets when mwm/fvwm menu style is
7175         issued again
7177 2003-05-23  olicha  <olivier.chapuis@free.fr>
7179         * fvwm/bindings.c (ParseBinding):
7180         (bind_get_bound_button_contexts):
7181         * libs/Bindings.c (GrabWindowButton):
7182         Fixed window button grabbing
7184 2003-05-22  olicha  <olivier.chapuis@free.fr>
7186         * fvwm/colorset.c (parse_colorset):
7187         Fixed an uninit mem
7189         * fvwm/borders.c (border_fill_pixmap_background):
7190         Fixed problem with depth 1 pixmap
7192         * fvwm/conditional.c (CMD_On):
7193         Fixed memory leaks
7195         * fvwm/conditional.c (CreateConditionMask):
7196         Fixed memory leaks for layer and state
7198 2003-05-22  Mikhael Goikhman  <migo@homemail.com>
7200         * configure.in:
7201         added perllib/FVWM/Tracker/Makefile
7203 2003-05-22  olicha  <olivier.chapuis@free.fr>
7205         * fvwm/fvwm.1.in:
7206         * fvwm/style.h:
7207         * fvwm/style.c (print_styles):
7208         * fvwm/builtins.c (CMD_PrintInfo):
7209         New style subject to PrintInfo
7211 2003-05-20  olicha  <olivier.chapuis@free.fr>
7213         * libs/Flocale.c (FlocaleGetFontOrFontSet):
7214         Allowed empty xft font name
7216         * libs/Makefile.am:
7217         * libs/flist.c (new file):
7218         * libs/flist.h (new file):
7219         Added a flist structure and some basic function for handling such
7220         stucture
7222         * libs/FGettext.c (*):
7223         Use the new flist struct and functions interface
7225         * fvwm/screen.h (ScreenInfo):
7226         * fvwm/update.c (destroy_scheduled_windows):
7227         * fvwm/add_window.c (destroy_window):
7228         Added a list for the windows which are scheduled for destroy
7229         Remove a fw at once from the fw list when we destroy_window
7231 2003-05-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7233         * fvwm/style.c (CMD_DestroyStyle):
7234         do not update windows if no style was deleted
7235         (check_window_style_change):
7236         fixed update of window styles w/ DestroyStyle
7238 2003-05-18  olicha  <olivier.chapuis@free.fr>
7240         * fvwm/conditional.c (CMD_On):
7241         Added x,r,w,f and i file condition to the On command
7243         * fvwm/add_window.c (destroy_window):
7244         Fixed a memory leak (a FvwmWindow !) when a window is not destroyed
7245         but scheduled for destroy. Not sure that the fix is good.
7247         * fvwm/functions.c (__execute_function):
7248         * libs/defaults.h:
7249         Limited the depth of function to MAX_FUNCTION_DEPTH (=512).
7250         This fixes some cores dumps with "recursives" functions
7252         * fvwm/borders.c (border_create_root_transparent_pixmap):
7253         (border_draw_decor_to_pixmap):
7254         Fixed a core dump with a root transparent rotated title
7255         Fixed X errors 56 with RootTransparent titlebar and no E pixmap
7257         * libs/FGettext.c (fgettext_add_one_path):
7258         (FGettextInit):
7259         (FGettextSetLocalePath):
7260         Fixed memory leak and chainning
7262         * fvwm/builtins.c (CMD_PrintInfo):
7263         Fixed a parsing leak
7265         * fvwm/conditional.c (Circulate):
7266         Fixed a mask memory leaks
7268         * libs/defaults.h:
7269         * libs/Flocale.c (FlocaleGetFont):
7270         (FlocaleGetFontSet):
7271         (FlocaleGetFftFont):
7272         Fixed a core dump when a 0 font is given with an encoding hints.
7273         Added a default FFT font
7275         * fvwm/builtins.c (CMD_DefaultFont):
7276         Fixed a core dump when the default font change and a redraw
7277         (icon or window) is proceeded before flush_window_updates is called
7279         * fvwm/menustyle.c (CMD_CopyMenuStyle):
7280         Fixed gradients copy
7282         * fvwm/menustyle.c (menustyle_parse_style):
7283         Fixed UMR's related to colorset
7285         * fvwm/builtins.c (ReadDecorFace):
7286         Removed inconsistent #if 0 code and comments about leak and MiniIcon
7287         decor style.
7289         * fvwm/menustyle.h:
7290         * fvwm/menustyle.c (menustyle_free):
7291         Fixed a fore stipple gc leak
7293         * fvwm/windowlist.c (CMD_WindowList):
7294         Fixed a sor_keyname memory leak
7296         * fvwm/fvwm.c (ResetAllButtons):
7297         Fixed the default buttons memory leak
7299 2003-05-08  olicha  <olivier.chapuis@free.fr>
7301         * fvwm/windowlist.c (CMD_WindowList):
7302         Fixed a memory leak if MaxLabelWidth is used
7304 2003-05-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7306         * fvwm/functions.c (__context_has_window):
7307         (__execute_function):
7308         * fvwm/functions.h:
7309         fixed excution of functions requiring a window without a window when
7310         called with "silent" from a complex function
7312 2003-05-07  olicha  <olivier.chapuis@free.fr>
7314         * libs/System.c (searchPath):
7315         Fixed a core dump
7317 2003-05-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7319         * fvwm/move_resize.c (__move_loop):
7320         (__resize_window):
7321         fixed core dumps
7323 2003-05-03  olicha  <olivier.chapuis@free.fr>
7325         * todo-2.6:
7326         Updated
7328 2003-05-01  Bob Woodside  <dumbledore@woodsway.com>
7330         * fvwm/NEWS:
7331         Minor typo corrections.
7333 2003-04-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7335         * fvwm/move_resize.c (__move_loop):
7336         fixed UMR
7337         removed debug code
7338         (__resize_window):
7339         fixed UMR
7341 2003-04-28  olicha  <olivier.chapuis@free.fr>
7343         * fvwm/ewmh.c (ewmh_atom_wm_state):
7344         (ewmh_HandleDock):
7345         * fvwm/ewmh_events.c (ewmh_WMStateStaysOnTop):
7346         (ewmh_WMStateStaysOnBottom):
7347         Fixed EwmhUseStackingHints and EwmhIgnoreStackingHints style update
7349 2003-04-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7351         * fvwm/module_interface.c (do_execute_module):
7352         * fvwm/fvwm.c (main):
7353         * libs/envvar.c (flib_putenv):
7354         * fvwm/builtins.c (add_to_env_list):
7355         (CMD_SetEnv):
7356         (CMD_UnsetEnv):
7357         fixed putenv memory leaks
7359         * libs/envvar.c (strIns):
7360         removed debug code
7361         reformatted file
7362         (flib_putenv):
7363         replacement for putenv without memory leaks
7365         * fvwm/frame.c:
7366         removed debug code
7368         * fvwm/fvwm.c (StartupStuff):
7369         fixed UMR
7370         * fvwm/add_window.c (free_window_names):
7371         fixed memory leaks
7372         * fvwm/events.c (HandlePropertyNotify):
7373         fixed memory leak
7374         * fvwm/menus.c (do_menu):
7375         fixed core dump
7376         (__mloop_exit_selected):
7377         safety patch
7378         * fvwm/menucmd.c (menu_func):
7379         fixed memory leak
7381         * fvwm/builtins.c (CMD_Destroy):
7382         (CMD_Close):
7383         call destroy_window right after XKillClient; do not wait for the window
7384         to die on its own
7386         * fvwm/menucmd.c (menu_func):
7387         * fvwm/windowlist.c (CMD_WindowList):
7388         fixed core dumps
7390 2003-04-26  Mikhael Goikhman  <migo@homemail.com>
7392         * INSTALL.fvwm:
7393         several updates (FvwmGtk, gettext)
7395 2003-04-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7397         * fvwm/menucmd.c (menu_func):
7398         * fvwm/windowlist.c (CMD_WindowList):
7399         * fvwm/menus.h:
7400         * fvwm/menus.c (is_double_click):
7401         (pop_menu_up):
7402         (pop_menu_down):
7403         (pop_menu_down_and_repaint_parent):
7404         (__mloop_get_event_timeout_loop):
7405         (__mloop_get_event):
7406         (__mloop_handle_event):
7407         (__mloop_select_item):
7408         (__mloop_make_popup):
7409         (__mloop_get_mi_actions):
7410         (__mloop_do_popup):
7411         (__mloop_do_menu):
7412         (__mloop_handle_action_with_mi):
7413         (__mloop_handle_action_without_mi):
7414         (__mloop_exit):
7415         (menu_enter_tear_off_menu):
7416         (menu_close_tear_off_menu):
7417         (do_menu):
7418         replaced the pfw and pcontext members of the MenuParameters structure
7419         with an execution context pointer
7420         (_menu_execute_function):
7421         wrapper function to simplyfy command execution from within menus
7422         (do_menu):
7423         fixed warping pointer to first menu item when invoked with the mouse
7425         * fvwm/execcontext.c:
7426         removed debug code
7428 2003-04-26  Mikhael Goikhman  <migo@homemail.com>
7430         * libs/XError.c:
7431         reformatted
7433         * fvwm.1.in:
7434         * fvwm.c:
7435         replaced "Mouse 0 R N Menu MenuFvwmRoot" binding with "Mouse 1 R A"
7437 2003-04-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7439         * fvwm/menus.c (do_menu):
7440         the NoWarp position hint option works with root menus too
7442         * fvwm/ConfigFvwmDefaults:
7443         removed GrabFocusOff and GrabFocusTransient since they nullify the
7444         default with the plain focus policies
7446 2003-04-24  olicha  <olivier.chapuis@free.fr>
7448         * fvwm/ewmh_events.c (ewmh_WMStateStaysOnBottom):
7449         Fixed a miss print in my previous commit
7451         * fvwm/ewmh_events.c (ewmh_WMStateStaysOnBottom):
7452         (ewmh_MoveResize)
7453         (ewmh_WMStateStaysOnBottom):
7454         * fvwm/ewmh.c (ewmh_AllowsMinimize):
7455         * fvwm/ewmh_intern.h:
7456         Added comment on the implementation at the top of ewmh.c.
7457         Fixed _NET_WM_MOVERESIZE.  Added _NET_WM_ACTION_MINIMIZE in
7458         _NET_WM_ALLOWED_ACTIONS (almost nothing todo). Added
7459         _NET_WM_STATE_ABOVE (just an alias of _NET_WM_STATE_STAYS_ON_TOP)
7460         and _NET_WM_STATE_BELOW.
7462         * AUTHORS:
7463         Added David Fries. Updated my entries.
7465         * todo-2.6:
7466         One update
7468 2003-04-23  olicha  <olivier.chapuis@free.fr>
7470         * fvwm/module_interface.c (CMD_KillModule):
7471         Fixed a leak when we have an alias
7473         * libs/Picture.c (PFreeFvwmPictureData):
7474         * libs/Picture.h:
7475         New interface function for just freeing the allocated data (not
7476         the pixmaps).
7478 2003-04-22  olicha  <olivier.chapuis@free.fr>
7480         * fvwm/colorset.c (get_root_pixmap):
7481         Fixed a minor memory leak
7483         * fvwm/functions.c (execute_complex_function):
7484         Fixed uninitialized d.type
7486         * libs/Ficonv.c (FiconvSetupConversion):
7487         (FiconvUtf8ToCharset):
7488         (FiconvCharsetToUtf8):
7489         Formating clean-up
7491         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
7492         (EWMH_WMIconName):
7493         (EWMH_WMName):
7494         Fixed a core dump and safety check related to not loaded font
7496 2003-04-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7498         * libs/Module.h:
7499         reformatted
7501 2003-04-16  olicha  <olivier.chapuis@free.fr>
7503         * fvwm/ewmh_events.c (ewmh_CloseWindow):
7504         (ewmh_MoveResize):
7505         (ewmh_WMState):
7506         (ewmh_WMStateHidden):
7507         Check if functions are allowed
7509         * fvwm/ewmh.c (ewmh_HandleDesktop):
7510         (ewmh_HandleDock):
7511         Set Desktop and Dock uniconifiable and unmaximazable
7513         * fvwm/menuitem.c (menuitem_paint):
7514         * fvwm/screen.h:
7515         Fixed greyed action with EWMH desktop
7517 2003-04-16  Mikhael Goikhman  <migo@homemail.com>
7519         * NEWS:
7520         documented FvwmEvent behaviour of executing window related event
7521         handlers within a window context
7523         * fvwm/fvwm.1.in:
7524         updated WindowId entry
7526 2003-04-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7528         * fvwm/schedule.c (deschedule):
7529         (squeue_execute):
7530         (execute_obj_func):
7531         * fvwm/module_interface.c (DeleteMessageQueueBuff):
7532         (ExecuteCommandQueue):
7533         * libs/queue.c (fqueue_init):
7534         (fqueue_remove_or_operate_from_front):
7535         (fqueue_remove_or_operate_from_end):
7536         (fqueue_remove_or_operate_all):
7537         (fqueue_init):
7538         (fqueue_unlock_queue):
7539         (fqueue_lock_queue):
7540         (fqueue_add_at_front):
7541         (fqueue_add_inside):
7542         (fqueue_get_first):
7543         core dump fixes
7545         * libs/queue.c (fqueue_remove_or_operate_all):
7546         (fqueue_remove_or_operate_from_end):
7547         (fqueue_remove_or_operate_from_front):
7548         * fvwm/module_interface.c (DeleteMessageQueueBuff):
7549         (ExecuteCommandQueue):
7550         * fvwm/schedule.c (deschedule):
7551         (check_deschedule_obj_func):
7552         (deschedule_obj_func):
7553         (squeue_execute):
7554         (check_execute_obj_func):
7555         (execute_obj_func):
7556         (copy_obj_func):
7557         core dump fixes
7559 2003-04-15  Mikhael Goikhman  <migo@homemail.com>
7561         * fvwm/ConfigFvwmDefaults:
7562         * fvwm/fvwm.1.in:
7563         * fvwm/windowlist.c:
7564         * sample.fvwmrc/system.fvwm2rc-sample-95:
7565         * NEWS:
7566         WindowListFunc is executed now within a window context,
7567         so "WindowId $0" is not needed anymore in its definition
7569 2003-04-14  olicha  <olivier.chapuis@free.fr>
7571         * fvwm/fvwm.1.in:
7572         * NEWS:
7573         Documented LocalePath and $[gt.str]. FvwmScript news.
7575         * fvwm/expand.c (expand_vars_extended):
7576         Fixed $[gt.str] expansion
7578         * configure.in:
7579         New gettext domain FvwmScript
7581         * libs/FGettext.c (FGettextCopy):
7582         * libs/FGettext.h:
7583         New interface function which copies the string
7585 2003-04-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7587         * fvwm/conditional.c (CMD_Cond):
7588         allow to negate the condition code with '!' prefix
7590         * fvwm/schedule.c (CMD_Schedule):
7591         (CMD_Deschedule):
7592         support hexadecimal ids
7594         * libs/Parse.c (GetIntegerArguments):
7595         (_get_suffixed_integer_arguments):
7596         (GetSuffixedIntegerArguments):
7597         (GetIntegerArgumentsAnyBase):
7598         new utitily function to allow hexadecimal integer arguments
7600 2003-04-10  olicha  <olivier.chapuis@free.fr>
7602         * libs/Flocale.c (FlocaleGetFullNameOfFontStruct):
7603         (FlocaleGetCharsetOfFontStruct):
7604         (FlocaleGetCharsetFromName):
7605         (FlocaleFixNameForFontSet):
7606         (FlocaleGetFontSet):
7607         (FlocalePrintLocaleInfo):
7608         * libs/FlocaleCharset.h:
7609         * libs/FlocaleCharset.c (FlocaleCharsetIsCharsetXLocale):
7610         (FlocaleCharsetPrintXOMInfo):
7611         Load a FontSet only when this is reasonable. Finished PrintInfo locale 2
7613 2003-04-08  olicha  <olivier.chapuis@free.fr>
7615         * libs/defaults.h (FLOCALE_MB_FALLBACK_FONT):
7616         fixed the default font name
7618 2003-04-07  Mikhael Goikhman  <migo@homemail.com>
7620         * fvwm/events.c (HandlePropertyNotify):
7621         * fvwm/ewmh_names.c (EWMH_WMName, EWMH_WMIconName):
7622         completely ignore application requests to set exactly the same
7623         window name or icon name (xmms sets it every second),
7624         this avoids some redundant module messages and redraws
7626 2003-04-05  Mikhael Goikhman  <migo@homemail.com>
7628         * Makefile.am:
7629         fixed DIST
7631 2003-04-04  olicha  <olivier.chapuis@free.fr>
7633         * configure.in:
7634         Fixed a miss print in fribidi config check
7636 2003-04-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7638         * fvwm/focus.c (__restore_focus_after_unmap):
7639         iconified windows without an icon do not receive focus
7641 2003-03-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7643         * fvwm/virtual (CMD_GotoDeskAndPage):
7644         different "GotoDeskAndPage prev" fix that works with any viewports, not
7645         just multiples of the screen size
7647 2003-03-29  Mikhael Goikhman  <migo@homemail.com>
7649         * fvwm/virtual (CMD_GotoDeskAndPage):
7650         fixed "GotoDeskAndPage prev" with desks larger than 2x2
7652 2003-03-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7654         * ETHICAL_LICENSE:
7655         added file
7657         * fvwm/menucmd.c (menu_func):
7658         fixed double key presses to choose default menu action
7660         * fvwm/focus.c (__update_windowlist):
7661         fixed order of window list with SloopyFocus when using the Focus
7662         command
7664 2003-03-22  Mikhael Goikhman  <migo@homemail.com>
7666         * fvwm/fvwm.1.in:
7667         clarified some things, typo fixed
7669 2003-03-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7671         * libs/Colorset.c (CreateBackgroundPixmap):
7672         (GetWindowBackgroundPixmapSize):
7673         (get_aspect_dimensions):
7674         fixed size calculation of aspect pixmaps
7676 2003-03-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7678         * fvwm/icons.c (clear_icon):
7679         (clear_icon):
7680         (AutoPlaceIcon):
7681         (Iconify):
7682         * fvwm/geometry.c (get_icon_geometry):
7683         (modify_icon_position):
7684         set a valid icon picture position if there is neither a picture nor a
7685         title
7687 2003-03-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7689         * NEWS:
7690         * AUTHORS:
7691         reformatted to fit better on the web page
7693 2003-03-15  Mikhael Goikhman  <migo@homemail.com>
7695         * todo-2.6:
7696         added items from "My TODO" message on 2003-01-02
7698         * fvwm/fvwm.1.in:
7699         actually remove duplicate Iconify entry, use $[w.id] not $w, more fixes
7701 2003-03-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7703         * libs/FScreen.c:
7704         removed debug output
7706 2003-03-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7708         * libs/FScreen.c (FScreenMangleScreenIntoUSPosHints):
7709         (FScreenFetchMangledScreenFromUSPosHints):
7710         two functions to allow USPosition hints from modules and StartsOnScreen
7711         work at the same time
7713         * fvwm/conditional.c (direction_cmd):
7714         Some fixes, reformatting and improvements.
7716 2003-03-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7718         * fvwm/icons.c (Iconify):
7719         initialise icon position to +0+0 if there is neiter a picture nor a
7720         title
7722         * fvwm/functions.c (DeferExecution):
7723         action trigger fix
7725         * todo-2.6 (todo):
7726         closed some items
7728         * fvwm/update.c (apply_window_updates):
7729         fixed drawing of sticky icon titles when the stickyicon style is being
7730         set
7732 2003-03-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7734         * fvwm/placement.c (CMD_PlaceAgain):
7735         * fvwm/add_window.c (setup_window_placement):
7736         * fvwm/virtual.c (MapDesk):
7737         update the GNOME hints desk when changing desks; fixes placeagain with
7738         stickyicon style
7739         some placeagain fixes
7741         * fvwm/fvwm.1.in (Example):
7742         removed duplicate Iconify section
7744         * todo-2.6 (todo):
7745         closed C.11
7747         * fvwm/functable.c (func_table):
7748         * fvwm/functions.h (func_type):
7749         * fvwm/functions.c (__execute_function):
7750         (execute_complex_function):
7751         (DeferExecution):
7752         fixed a new and and old window selection bug
7754 2003-03-09  Dan Espen  <dane@mk.telcordia.com>
7756         * todo-2.6 (todo): Close C.13 (861): cant reproduce, no problems
7757         detected with Purify.
7759 2003-03-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7761         * libs/Colorset.c (SetWindowBackgroundWithOffset):
7762         use None, not 0 for Window structures
7764         * fvwm/events.c (InitEventHandlerJumpTable):
7765         (HandleKeyRelease):
7766         (__handle_key_event):
7767         * fvwm/bindings.c (ParseBinding):
7768         (activate_binding):
7769         * libs/Bindings.h:
7770         * fvwm/fvwm.1.in:
7771         removed key release binding because they can not work reliably
7773 2003-03-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7775         * fvwm/functable.c (func_table):
7776         trigger on ButtonPress for many of the functions
7778         * fvwm/functions.c (__execute_function):
7779         (__execute_function):
7780         fixed conditional commands a la "Current" triggered on root window
7782 2003-03-01  Dan Espen  <dane@mk.telcordia.com>
7784         * todo-2.6: Closed B.2, C.21.
7786 2003-02-28  olicha  <olivier.chapuis@free.fr>
7788         * libs/defaults.h:
7789         * fvwm/events.c (HandleConfigureRequest):
7790         Added a workaround for application with broken max/min size hints
7791         vs a size configure request. This "fixes" floating java JToolBar.
7793         * fvwm/add_window.c (GetWindowSizeHints):
7794         Check that the max size hint is not broken relatively to the the base
7795         size hint
7797 2003-02-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7799         * NEWS:
7800         * configure.in:
7801         released 2.5.6, set version to 2.5.7
7803         * NEWS:
7804         * configure.in:
7805         updated for 2.5.6
7807 2003-02-26  Tony Finch  <dot@dotat.at>
7809         * fvwm/borders.c (border_draw_one_border_part):
7810         Don't draw the handle relief marks when the border is flat.
7812 2003-02-27  Mikhael Goikhman  <migo@homemail.com>
7814         * configure.in:
7815         s/fribdi_in_path/fribidi_in_path/
7817         * todo-2.6:
7818         spell checking and some reformatting
7820 2003-02-26  olicha  <olivier.chapuis@free.fr>
7822         * fvwm/borders.c (border_setup_bar_pixmaps):
7823         Fixed a miss-print which can cause a core dump
7825         * todo-2.6:
7826         Added a 2.6 TODO file
7828 2003-02-25  Dan Espen  <dane@mk.telcordia.com>
7830         * fvwm/focus.c (focus_grab_buttons): Fix compile problems Forte7,
7831         void functioin cannot return a value.
7833 2003-02-25  olicha  <olivier.chapuis@free.fr>
7835         * configure.in:
7836         Fixed compilation warning if fribidi is in path
7838 2003-02-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7840         * fvwm/windowlist.c (CMD_WindowList):
7841         removed unused instruction
7843 2003-02-22  Dan Espen  <dane@mk.telcordia.com>
7845         * configure.in: Remove nested function from -Werror check.
7846         Lets configure work without gcc.
7848         * fvwm/read.h:
7849         * fvwm/read.c (run_command_stream): Make Break work from PipeRead.
7851 2003-02-21  Dan Espen  <dane@mk.telcordia.com>
7853         * fvwm/functions.c (__run_complex_function_items): Make Break start
7854         working again.
7856 2003-02-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7858         * fvwm/move_resize.c (get_outline_rects):
7859         (draw_move_resize_grid):
7860         initial drawing and final undrawing of wire frame no longer toggles the
7861         pixel in the top left corner of the screen
7863         * fvwm/expand.c (expand_vars):
7864         disabled warnings about one letter variables
7866 2003-02-17  Dan Espen  <dane@mk.telcordia.com>
7868         * README: Update to reflect release 2.5.x.
7869         * NEWS: Update news for FvwmPager drag fix.
7871 2003-02-15  olicha  <olivier.chapuis@free.fr>
7873         * fvwm/fvwm.1.in:
7874         Fixed a typo
7876 2003-02-13  olicha  <olivier.chapuis@free.fr>
7878         * fvwm/gnome.c (GNOME_SetClientList):
7879         Applied David Fries patch which fixes a possible crash with more
7880         than 256 windows
7881         (GNOME_SetClientList):
7882         malloc -> safemalloc
7884 2003-02-09  Dan Espen  <dane@mk.telcordia.com>
7886         * fvwm/fvwm.1.in (Note): Update %space/%tab description in menu.
7887         Give the XorValue range.
7889 2003-02-08  Dan Espen  <dane@mk.telcordia.com>
7891         * fvwm/fvwm.1.in: Fully document the emulate command.
7893 2003-02-06  olicha  <olivier.chapuis@free.fr>
7895         * fvwm/borders.c (get_common_decorations):
7896         (border_get_border_background):
7898 2003-02-05  Dan Espen  <dane@mk.telcordia.com>
7900         * fvwm/builtins.c (CMD_Exec): Use STDIN_FILENO instead of a zero.
7902 2003-02-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7904         * fvwm/menuitem.h:
7905         * fvwm/menuitem.c (menuitem_get_size):
7906         * fvwm/menus.c (calculate_item_sizes):
7907         renamed "mips" to mipst
7909         * fvwm/menuitem.c (menuitem_get_item_size):
7910         * fvwm/menus.c (_calculate_item_sizes):
7911         backed out patch from 30-Jan-2003
7913 2003-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7915         * fvwm/menuitem.h:
7916         * fvwm/menuitem.c (menuitem_get_item_size):
7917         * fvwm/menus.c (_calculate_item_sizes):
7918         functions renamed due to global name space collision with IRIX 6.5
7920 2003-01-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7922         * configure.in:
7923         added tests/hints/Makefile.am
7925 2003-01-24  Dan Espen  <dane@mk.telcordia.com>
7927         * fvwm/fvwm.1.in: Fixed next->previous in Prev command.
7929 2003-01-20  Dan Espen  <dane@mk.telcordia.com>
7931         * sample.fvwmrc/DecorWin95:
7932         * sample.fvwmrc/DecorMwm: Remove bad mouse binding, that I meant to
7933         Replace a long time ago.
7935 2003-01-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
7937         * fvwm/stack.c (new_layer):
7938         (collect_transients_recursive):
7939         (__restack_window):
7940         fixed Layer command
7942         * fvwm/events.c (HandleConfigureRequest):
7943         fixed placement of icons
7944         fixed size calculations of icons
7946 2003-01-18  Mikhael Goikhman  <migo@homemail.com>
7948         * fvwm/expand.c:
7949         fixed $[desk.name<n>] that was masked by $[desk.n],
7950         added $[desk.pagesx] and $[desk.pagesy]
7952 2003-01-16  Dan Espen  <dane@mk.telcordia.com>
7954         * NEWS: Update news.  Spelling fixes 2.5.x news.
7955         * fvwm/builtins.c (CMD_Exec): Close stdin so the exec'd process knows
7956         its not interactive.
7958 2003-01-12  Mikhael Goikhman  <migo@homemail.com>
7960         * fvwm/functable.c:
7961         added a short description together with the commands
7963 2003-01-12  Marcus Lundblad  <ml@update.uu.se>
7965         * NEWS:
7966         Added conditionals Closable,Iconifiable,Maximizable,FixedSize and
7967         HasHandles
7969 2003-01-11  Mikhael Goikhman  <migo@homemail.com>
7971         * expand.c:
7972         * NEWS:
7973         deprecate all single letter variables, new variables are supported now
7974         $[w.id], $[w.name], $[w.iconname], $[w.class], $[w.resource],
7975         $[desk.n], $[version.num], $[version.info], $[version.line].
7977 2003-01-07  Marcus Lundblad <ml@update.uu.se>
7979         * fvwm/style.c (style_parse_one_style_option):
7980         * fvwm/fvwm.1.in:
7981         Removed duplicate styles Unclosable,Unmaximizable,Uniconifiable and
7982         DisallowMaximizeFixedSize
7984 2003-01-06  Dan Espen  <dane@mk.telcordia.com>
7986         * fvwm/fvwm.1.in: Lang check.
7988 2003-01-03  olicha  <olivier.chapuis@free.fr>
7990         * fvwm/commands.h:
7991         * INSTALL.fvwm:
7992         * fvwm/ewmh.h:
7993         * fvwm/ewmh_intern.h:
7994         * fvwm/ewmh_names.c:
7995         * fvwm/ewmh_icons.c:
7996         * fvwm/ewmh_events.c:
7997         * fvwm/ewmh_conf.c:
7998         * fvwm/ewmh.c:
7999         * fvwm/gnome.c:
8000         * fvwm/gnome.h:
8001         * fvwm/functable.c (func_table):
8002         * fvwm/fvwm.c (setVersionInfo):
8003         * acconfig.h:
8004         * configure.in:
8005         Removed GNOME and HAVE_EWMH ifdef
8007         * fvwm/fvwm.1.in:
8008         Documented UseTitleDecorRotation
8010 2003-01-03  Mikhael Goikhman  <migo@homemail.com>
8012         * fvwm/module_interface.c (MoveViewport):
8013         * fvwm/virtual.c (CMD_DesktopSize, CMD_Send_WindowList):
8014         M_NEW_PAGE now has 7 arguments
8016 2003-01-02  olicha  <olivier.chapuis@free.fr>
8018         * fvwm/fvwm.1.in:
8019         Documented  the new icon style options
8021         * fvwm/fvwm.h:
8022         * fvwm/icons.h:
8023         * fvwm/icons.c (DrawIconTitleWindow):
8024         (DrawIconPixmapWindow):
8025         (setup_icon_title_size):
8026         * fvwm/style.c (style_parse_one_style_option):
8027         Fixed IconTitleRelief and IconBackgroundRelief arguments
8029         * fvwm/icons.c (GetIconPicture):
8030         (SetIconPixmapSize):
8031         Fixed IconSize style for non shaped depth > 1 pixmaps
8033 2003-01-02  Mikhael Goikhman  <migo@homemail.com>
8035         * NEWS:
8036         * fvwm/commands.h:
8037         * fvwm/conditional.c (CMD_On):
8038         * fvwm/functable.c:
8039         * fvwm/fvwm.1.in:
8040         new conditional command On for non-window related conditions
8042         * fvwm/execcontext.h:
8043         * fvwm/fvwm.c (Done, SetRCDefaults, StartupStuff):
8044         two new exec contexts for restarting
8046 2003-01-02  olicha  <olivier.chapuis@free.fr>
8048         * fvwm/builtins.c (ReadMultiPixmapDecor):
8049         StretchedPixmap -> AdjustedPixmap
8051         * fvwm/fvwm.1.in:
8052         Documented Colorset in BorderStyle, TitleStyle and ButonsStyle
8053         Documented the new MultiPixmap syntax
8055 2002-12-31  Mikhael Goikhman  <migo@homemail.com>
8057         * NEWS:
8058         * fvwm/fvwm.1.in:
8059         * fvwm/builtins.c (ReadTitleButton):
8060         * fvwm/screen.h:
8061         new button state shortcuts AllActiveUp, AllActiveDown,
8062         AllInactiveUp, AllInactiveDown
8064 2002-12-31  olicha  <olivier.chapuis@free.fr>
8066         * libs/PictureGraphics.c (PCopyArea):
8067         Fixed rendering of depth 1 pixmap with a mask
8069         * fvwm/update.c (apply_window_updates):
8070         Fixed icon bg cset update
8072         * fvwm/events.c (HandlePropertyNotify):
8073         * fvwm/geometry.c (move_icon_to_position):
8074         Fixed non shaped icons with a bg padding but without cs bg
8076         * NEWS:
8077         * fvwm/style.c (style_parse_icon_size_style):
8078         (merge_styles):
8079         * fvwm/fvwm.h (window_style):
8080         * fvwm/add_window.c (setup_icon_size_limits):
8081         * fvwm/icons.c (SetIconPixmapSize):
8082         (GetIconPicture):
8083         New option to IconSize style: Adjusted, Streched, Shrunk
8085         * fvwm/icons.c (SetIconPixmapSize):
8086         (GetIconPicture):
8087         Always center the icon with IconSize if the icon has a background
8089 2002-12-30  Mikhael Goikhman  <migo@homemail.com>
8091         * configure.in:
8092         FvwmWindowMenu renaming; compact long diagnostics into half of line
8094         * NEWS:
8095         documeted and corrected new features
8097         * fvwm/fvwm.1.in:
8098         removed a "deprecated" tag from TitleStyle/ButtonStyle/BorderStyle
8099         since these are the only way currently to create themes
8101         * fvwm/fvwm.c:
8102         small reformatting
8104 2002-12-30  olicha  <olivier.chapuis@free.fr>
8106         * NEWS:
8107         * fvwm/icons.c (setup_icon_title_size):
8108         (set_icon_pixmap_background):
8109         (CreateIconWindow):
8110         (DrawIconTitleWindow):
8111         (DrawIconPixmapWindow):
8112         (DrawIconWindow):
8113         (ChangeIconPixmap):
8114         (RedoIconName):
8115         * fvwm/events.c (HandleEnterNotify):
8116         (HandleExpose):
8117         (HandleLeaveNotify):
8118         (HandlePropertyNotify):
8119         * fvwm/borders.c (border_draw_decorations):
8120         * fvwm/default.h:
8121         * fvwm/fvwm.h:
8122         * fvwm/add_window.c (setup_icon_background_parameters):
8123         (setup_icon_title_parameters):
8124         (setup_style_and_decor):
8125         (setup_icon_font):
8126         * fvwm/geometry.c (move_icon_to_position):
8127         * fvwm/style.h:
8128         * fvwm/style.c (check_window_style_change):
8129         (update_style_colorset):
8130         (update_icon_title_cs_style):
8131         (update_icon_title_cs_hi_style):
8132         (update_icon_background_cs_style):
8133         (merge_styles):
8134         * fvwm/update.h:
8135         * fvwm/update.c (apply_window_updates):
8136         New style options IconBackgroundColorset, IconTitleColorset,
8137         HilightIconTitleColorset, IconTitleRelief, IconBackgroundRelief
8138         and IconBackgroundPadding
8140 2002-12-28  Mikhael Goikhman  <migo@homemail.com>
8142         * libs/FShm.h:
8143         fixed compilation without XShm
8145         * fvwm/borders.c (border_rotate_titlebar_descr):
8146         fixed warning: deprecated use of label at end of compound statement
8148 2002-12-27  olicha  <olivier.chapuis@free.fr>
8150         * fvwm/ConfigFvwmDefaults:
8151         UseTitleDecorRotation is a default
8153         * libs/Graphics.c (do_relieve_rectangle_with_rotation):
8154         (do_relieve_rectangle):
8155         * libs/fvwmlib.h:
8156         * fvwm/borders.c (border_draw_title_stick_lines):
8157         (border_create_root_transparent_pixmap):
8158         (border_mp_render_into_pixmap):
8159         (border_draw_decor_to_pixmap):
8160         (border_mp_render_into_pixmap):
8161         (border_mp_get_titlebar_descr):
8162         (border_mp_draw_mp_titlebar):
8163         (border_draw_decor_to_pixmap):
8164         (border_set_button_pixmap):
8165         (border_get_titlebar_draw_descr):
8166         (border_set_title_pixmap):
8167         (border_rotate_titlebar_descr):
8168         (border_get_titlebar_descr):
8169         Completed UseTitleDecorRotation
8171 2002-12-26  olicha  <olivier.chapuis@free.fr>
8173         * fvwm/update.c (apply_window_updates):
8174         * fvwm/frame.c (frame_get_titlebar_dimensions):
8175         (frame_set_decor_gravities):
8176         * fvwm/borders.c (border_set_button_pixmap):
8177         (border_get_titlebar_descr):
8178         (border_draw_one_button):
8179         Buttons order follows the title text rotations.
8180         More UseTitleDecorRotation preparation
8182         * fvwm/borders.c (border_draw_decor_to_pixmap):
8183         Fixed SolidButton
8185 2002-12-24  olicha  <olivier.chapuis@free.fr>
8187         * fvwm/borders.c (border_mp_render_into_pixmap):
8188         (border_fill_pixmap_background):
8189         Some borders drawing fixes
8191         * libs/Graphics.c (CreateRotatedPixmap):
8192         * fvwm/geometry.c (get_title_font_size_and_offset):
8193         * fvwm/update.c (apply_window_updates):
8194         * fvwm/borders.c (border_set_button_pixmap):
8195         (border_get_titlebar_draw_descr):
8196         (border_draw_title):
8197         (border_rotate_titlebar_descr):
8198         (border_get_titlebar_descr):
8199         More UseTitleDecorRotation preparation
8201 2002-12-22  Dan Espen  <dane@mk.telcordia.com>
8203         * fvwm/add_window.c (GetWindowSizeHints): Change hint warning message
8204         so we won't get so many application bugs report to fvwm-workers.
8206         * fvwm/fvwm.1.in: Grammar: allows to -> allows for.
8208 2002-12-21  Marcus Lundblad <ml@update.uu.se>
8210         * fvwm/style.c (style_parse_one_style_option):
8211         * fvwm/style.h:
8212         * fvwm/fvwm.h:
8213         * fvwm/window_flags:
8214         * fvwm/decorations.c (is_function_allowed,
8215                               __is_resize_allowed):
8216         Added styles Closable, Iconifiable, Maximizable and
8217         AllowMaximizeFixedSize
8218         * fvwm/conditional.c (MatchesConditionMask,
8219                               CreateConditionMask):
8220         Added conditionals Closable,Iconifiable and Maximizable
8221         * fvwm/fvwm.1.in:
8222         Documented styles Closable, Iconifiable, Maximizable and
8223         AllowMaximizeFixedSize and conditionals
8224         Closable,Iconifiable and Maximizable
8226 2002-12-20  olicha  <olivier.chapuis@free.fr>
8228         * fvwm/window_flags.h:
8229         * fvwm/update.h:
8230         * fvwm/update.c (apply_window_updates):
8231         * fvwm/style.h:
8232         * fvwm/style.c (style_parse_one_style_option):
8233         * fvwm/fvwm.h:
8234         UseTitleDecorRotation style preparation
8236         * fvwm/fvwm.c (main):
8237         Use best TrueColor visual
8239         * fvwm/borders.c (border_get_border_gcs):
8240         Create the transparent_gc with the Scr.NoFocusWin and not the FW_W_FRAME
8241         window which may have a depth != Pdepth
8243         * fvwm/menus.c (paint_side_pic):
8244         * fvwm/menuitem.c (menuitem_paint):
8245         * fvwm/icons.c (DrawIconPixmapWindow):
8246         * fvwm/colorset.c (parse_colorset):
8247         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
8248         Used Scr.AlphaGC
8250 2002-12-19  olicha  <olivier.chapuis@free.fr>
8252         * libs/Graphics.c (CreateRotatedPixmap):
8253         * libs/fvwmlib.h:
8254         New interface function CreateRotatedPixmap
8256         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
8257         (PImageLoadXpm):
8258         * libs/PictureGraphics.c (PCreateRenderPixmap):
8259         (PCreateDitherPixmap):
8260         * libs/Graphics.c (CreateGradientPixmap):
8261         (CreateRotatedPixmap):
8262         * acconfig.h:
8263         * configure.in:
8264         * libs/FShm.h (new file):
8265         * libs/FImage.h (new file):
8266         * libs/FImage.c (new file):
8267         * libs/Makefile.am:
8268         * fvwm/fvwm.c (setVersionInfo):
8269         Added MIT Shared Memory Extension for XImage
8271         * NEWS:
8272         Some news
8274         * fvwm/screen.h:
8275         * fvwm/builtins.c (ReadDecorFace):
8276         (FreeDecorFace):
8277         * fvwm/borders.c (border_draw_decor_to_pixmap):
8278         (border_fill_pixmap_background):
8279         AdjustedPixmap, StretchedPixmap and ShrunkPixmap
8281 2002-12-17  Mikhael Goikhman  <migo@homemail.com>
8283         * libs/FBidiJoin.c:
8284         shape-and-join fixes from Nadim Shaikli (slightly modified)
8286 2002-12-16  olicha  <olivier.chapuis@free.fr>
8288         * libs/PictureGraphics.h:
8289         * libs/PictureGraphics.c (PTileRectangle):
8290         (PGraphicsCreateTiledPicture):
8291         * libs/Graphics.c (CreateTiledPixmap):
8292         New interface function: PGraphicsCreateTiledPicture
8294         * fvwm/screen.h:
8295         * fvwm/fvwm.c (CreateGCs):
8296         Added a global (Scr) alpha GC
8298         * configure.in:
8299         * fvwm/screen.h:
8300         * fvwm/builtins.c (ReadMultiPixmapDecor):
8301         (update_decorface_colorset):
8302         (FreeDecorFace):
8303         * fvwm/borders.c (border_get_tb_parts_to_draw):
8304         (border_fill_pixmap_background):
8305         (border_setup_bar_pixmaps):
8306         (border_get_bar_pixmaps):
8307         (border_free_bar_pixmaps):
8308         (border_mp_render_into_pixmap):
8309         (border_mp_get_length):
8310         (border_mp_get_titlebar_descr):
8311         (border_mp_get_geometry):
8312         (border_mp_get_use_title_style_parts_and_geometry):
8313         (border_mp_draw_mp_titlebar):
8314         (border_draw_decor_to_pixmap):
8315         (border_draw_title_deep):
8316         (border_get_titlebar_draw_descr):
8317         (border_setup_use_title_style):
8318         (border_get_titlebar_descr_state):
8319         (border_get_titlebar_descr):
8320         (border_get_transparent_decorations_part):
8321         (border_draw_title_stick_lines):
8322         MultiPixmap can use Colorset and Solid color. Various others minor
8323         improvement in MultiPixmap. "Merge" the MultiPixmap code into the
8324         "main" drawing code and remove the #ifdef.
8325         New option to ButtonStyle and TitleStyle: StretchedPixmap.
8326         Use the new Scr.AlphaGC.
8328 2002-12-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8330         * fvwm/add_window.c (validate_transientfor):
8331         do not ignore transientfor hint for iconified windows
8333 2002-12-12  Jason Weber <baboon@imonk.com>
8335         * fvwm/fvwm.1.in:
8336         * fvwm/conditional.c (CMD_ScanForWindow):
8337         * fvwm/commands.h:
8338         * fvwm/functable.c:
8339         rename ScanWindow to ScanForWindow
8341 2002-12-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8343         * fvwm/menuitem.c (menuitem_paint):
8344         * fvwm/colorset.c (parse_colorset):
8345         * fvwm/icons.c (DrawIconPixmapWindow):
8346         * fvwm/focus.c (_SetFocusWindow):
8347         (_ReturnFocusWindow):
8348         (_DeleteFocus):
8349         (_ForceDeleteFocus):
8350         (__activate_window_by_command):
8351         patches to prevent UMR messages in memory debuggers
8353 2002-12-11  Jason Weber <baboon@imonk.com>
8355         * fvwm/fvwm.1.in: Added ScanWindow
8357         * fvwm/conditional.c (CMD_Direction, CMD_ScanWindow, direction_cmd):
8358         * fvwm/commands.h:
8359         * fvwm/functable.c:
8360         Generalized CMD_Direction into direction_cmd.
8361         Pipe CMD_Direction and CMD_ScanWindow into direction_cmd.
8362         Replace Cycle prefix with secondary direction argument.
8364 2002-12-10  Dan Espen  <dane@mk.telcordia.com>
8366         * fvwm/fvwm.1.in: Applied Mikhael's quote fix.
8368 2002-12-05  Marcus Lundblad <ml@update.uu.se>
8369         * fvwm/conditional.c (CreateConditionMask):
8370         Implemented conditional "FixedSize" and "HasHandles"
8371         * fvwm/fvwm.1.in
8372         Documented conditional options "FixedSize" and "HasHandles".
8374 2002-12-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8376         * fvwm/placement.c (PlaceWindow):
8377         fixed StickyAcrossDesks w/ StartsOnPage
8379         * fvwm/functable.c:
8380         * fvwm/commands.h:
8381         * fvwm/ewmh_conf.c (set_state_workaround):
8382         * fvwm/update.c (apply_window_updates):
8383         * fvwm/windowlist.c (CMD_WindowList):
8384         * fvwm/ewmh_events.c (ewmh_WMDesktop):
8385         (ewmh_WMStateSticky):
8386         * fvwm/conditional.c (CreateConditionMask):
8387         * fvwm/gnome.c (GNOME_SetHints):
8388         (GNOME_GetStyle):
8389         (GNOME_HandlePropRequest):
8390         * fvwm/placement.c (SmartPlacement):
8391         (get_next_x):
8392         (get_next_y):
8393         (test_fit):
8394         (PlaceWindow):
8395         * fvwm/session.c (SaveWindowStates):
8396         (MatchWinToSM):
8397         (MatchWinToSM):
8398         * fvwm/ewmh.c (check_desk):
8399         (EWMH_SetWMDesktop):
8400         (ewmh_ComputeAndSetWorkArea):
8401         (ewmh_HandleDynamicWorkArea):
8402         (ewmh_HandleDesktop):
8403         (ewmh_HandleDock):
8404         (ewmh_HandleMenu):
8405         (ewmh_HandleToolBar):
8406         * fvwm/virtual.c (UnmapDesk):
8407         (MapDesk):
8408         (MoveViewport):
8409         (do_move_window_to_desk):
8410         * fvwm/icons.c (setup_icon_title_size):
8411         (DrawIconTitleWindow):
8412         (AutoPlaceIcon):
8413         (Iconify):
8414         * fvwm/borders.c (is_button_toggled):
8415         (get_common_decorations):
8416         (border_draw_title_stick_lines):
8417         * fvwm/add_window.c (AddWindow):
8418         * fvwm/move_resize.c (__move_window):
8419         (__move_window):
8420         (is_window_sticky_across_pages):
8421         (is_window_sticky_across_desks):
8422         (MaximizeHeight):
8423         (MaximizeWidth):
8424         (stick_page):
8425         (stick_desk):
8426         (CMD_Stick):
8427         (CMD_StickAcrossPages):
8428         (CMD_StickAcrossDesks):
8429         (stick_across_pages):
8430         (stick_across_desks):
8431         (handle_stick_across_desks):
8432         (handle_stick_across_pages):
8433         (handle_stick):
8434         * fvwm/fvwm.h (struct):
8435         * fvwm/style.c (style_parse_one_style_option):
8436         (check_window_style_change):
8437         * fvwm/style.h:
8438         * fvwm/window_flags.h:
8439         renamed StickDesk to StickAcrossDesks, StickyDesk to StickyAcrossDesks,
8440         StickPage to StickAcrossPages and StickyPage to StickyAcrossPages
8441         everywhere
8443         * fvwm/focus.c (CMD_Focus):
8444         (CMD_FlipFocus):
8445         (__activate_window_by_command):
8446         (__update_windowlist):
8447         (__set_focus_to_fwin):
8448         (_SetFocusWindow):
8449         (_ReturnFocusWindow):
8450         (_DeleteFocus):
8451         (_ForceDeleteFocus):
8452         fixed window list order with FlipFocus command
8454 2002-12-08  Mikhael Goikhman  <migo@homemail.com>
8456         * AUTHORS:
8457         * NEWS:
8458         document bidi entry undocumented in 2.5.5
8460 2002-12-06  olicha  <olivier.chapuis@free.fr>
8462         * acinclude.m4:
8463         Fixed the "detection" of the LINGUAS variable
8465         * configure.in:
8466         Added ar to ALL_LINGUAS
8469 2002-12-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8471         * fvwm/move_resize.c (__resize_window):
8472         fixed handling of MontionNotify and PropertyNotify events
8474 2002-12-03  olicha  <olivier.chapuis@free.fr>
8476         * fvwm/borders.c (border_draw_decor_to_pixmap):
8477         (border_get_border_background):
8478         (get_common_decorations):
8479         BorderGC cleanup
8481         * fvwm/builtins.c (CMD_PrintInfo):
8482         New subject nls to PrintInfo
8484         * libs/FGettext.c (*):
8485         New command FlocalePath
8487 2002-12-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8489         * NEWS:
8490         * configure.in:
8491         changed version to 2.5.6
8493         * NEWS:
8494         * configure.in:
8495         updated for 2.5.5
8497 2002-12-02  olicha  <olivier.chapuis@free.fr>
8499         * libs/FRenderInit.c (FRenderInit):
8500         Fixed alpha depth if !XRenderSupport
8502         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
8503         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
8504         (PImageLoadPng):
8505         * libs/PictureImageLoader.h:
8506         Fixed image loading on bigedian machine
8508 2002-12-01  Mikhael Goikhman  <migo@homemail.com>
8510         * libs/FBidi.c (FBidiConvert):
8511         several small changes
8512         * libs/FBidiJoin.c (shape_n_join):
8513         enabled a new bidi shaping code
8515 2002-11-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8517         * fvwm/frame.c (frame_restore_client_gravities):
8518         (frame_free_move_resize_args):
8519         fixed a redrawing problem after shading a window
8521 2002-11-29  olicha  <olivier.chapuis@free.fr>
8523         * acinclude.m4:
8524         Defined AM_PATH_PROG_WITH_TEST and re-enable it
8526         * configure.in:
8527         * Makefile.am:
8528         Fixed two missprints
8530 2002-11-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8532         * fvwm/bindings.c (ParseBinding):
8533         fix for stroke-less compile
8535 2002-11-29  olicha  <olivier.chapuis@free.fr>
8537         * fvwm/commands.h (enum):
8538         * fvwm/functable.c (func_table):
8539         * fvwm/builtins.c (CMD_LocalePath):
8540         * libs/FGettext.c (FGettextSetLocalePath):
8541         * libs/FGettext.h:
8542         Preparation for LocalePath command
8544         * fvwm/screen.h (ScreenInfo):
8545         * fvwm/fvwm.c (CreateGCs):
8546         Rename Scr.TileGC to Scr.BordersGC
8548         * acinclude.m4:
8549         A libintl autoconf fix
8551         * libs/Colorset.c (CreateBackgroundPixmap):
8552         Do not grab the server when we dump the E setroot pixmap
8554 2002-11-29  olicha  <olivier.chapuis@free.fr>
8556         * acconfig.h:
8557         * fvwm/Makefile.am:
8558         * Makefile.am:
8559         * configure.in:
8560         * acinclude.m4:
8561         Added NLS support with gnu gettext
8563         * fvwm/fvwm.c (main):
8564         FGettextInit
8566         * fvwm/expand.c (expand_vars_extended):
8567         New extanded variable $[gt.any_string]
8569         * fvwm/virtual.c (CMD_DesktopName):
8570         * fvwm/windowlist.c (get_desk_title):
8571         * fvwm/expand.c (expand_vars_extended):
8572         * fvwm/fvwm.c (SetRCDefaults):
8573         * fvwm/ConfigFvwmSetup:
8574         Mark some strings to be translated
8576         * libs/FGettext.c (new file):
8577         * libs/FGettext.c (new file):
8578         * libs/Makefile.am:
8579         gnu gettext libintl warper
8581 2002-11-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8583         * fvwm/add_window.c (RestoreWithdrawnLocation):
8584         rixed rxvts with S/E gravity travelling off screen upon recapture after
8585         they were resized.
8587         * fvwm/events.c (__handle_key_event):
8588         * fvwm/bindings.c (activate_binding):
8589         (__rebind_global_key):
8590         fixed unbinding pointerkey bindings removing the grab for this key
8591         completely
8593         * fvwm/events.c (__is_bpress_window_handled):
8594         fixed click on override redirect windows being handled by the root
8595         window
8597         * fvwm/misc.c (GrabEm):
8598         confine the pointer to the root window when grabbed
8600         * fvwm/events.c (HandleUnmapNotify):
8601         fixed reparenting problem with restarts from desks != 0
8603 2002-11-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8605         * fvwm/events.c:
8606         removed experimental code
8608 2002-11-28  olicha  <olivier.chapuis@free.fr>
8610         * fvwm/borders.c (border_get_border_background):
8611         (border_draw_decor_to_pixmap):
8612         (border_fill_pixmap_background):
8613         Scr.TitleGC/Scr.TileGC cleanup. I will rename TileGC to BorderGC
8614         soon.
8616 2002-11-26  Mikhael Goikhman  <migo@homemail.com>
8618         * fvwm/fvwm.c (InitVariables):
8619         fixed DEFAULT_EDGE_SCROLL being interpretted as 100 pixels instead
8620         of 100%
8621         * fvwm/virtual.c (CMD_EdgeScroll):
8622         minor spacing
8624         * fvwm/ConfigFvwmDefaults:
8625         do not include empty ConfigFvwmProxyDefaults, added one binding
8627 2002-11-26  olicha  <olivier.chapuis@free.fr>
8629         * libs/Colorset.c (CreateBackgroundPixmap):
8630         * fvwm/colorset.c (parse_colorset):
8631         Be more safe with the E root pixmap
8633 2002-11-25  olicha  <olivier.chapuis@free.fr>
8635         * fvwm/move_resize.c (__move_loop):
8636         Redraw the transparent decoration parts when a move is abored
8638         * fvwm/colorset.c (parse_colorset):
8639         Fixed the fgsh Colorset colors when the Image change but not the bg
8641 2002-11-24  Jason Weber  <baboon@imonk.com>
8643         * fvwm/conditional.c (CMD_Direction):
8644         Extended Direction to allow CycleWest, CycleEast, etc that guarantees
8645         eventual traversal of all windows over repeated calls.  It also cycles
8646         back to the opposite extent when it hits the limit in the given
8647         direction.
8649 2002-11-22  olicha  <olivier.chapuis@free.fr>
8651         * fvwm/borders.h:
8652         * fvwm/borders.c (get_common_decorations):
8653         (border_get_parts_and_pos_to_draw):
8654         (border_get_changed_border_parts):
8655         (border_get_frame_pixmap, new):
8656         (border_get_border_background):
8657         (border_draw_one_border_part):
8658         (border_draw_decorations):
8659         (border_get_tb_parts_to_draw):
8660         (border_fill_pixmap_background):
8661         (border_get_titlebar_descr_state, new):
8662         (border_draw_titlebar):
8663         (border_setup_bar_pixmaps, new):
8664         (border_get_bar_pixmaps, new):
8665         (border_free_bar_pixmaps, new):
8666         (border_setup_use_title_style, new):
8667         (border_set_button_pixmap):
8668         (border_set_title_pixmap):
8669         (border_draw_one_button):
8670         (border_set_button_pixmap):
8671         (border_draw_title_deep):
8672         (border_get_transparent_decorations_part, new):
8673         Title, Border and Buttons Style Colorset Option: Drawing
8675         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
8676         (__move_window):
8677         (__move_loop):
8678         * fvwm/frame.c (__frame_setup_window):
8679         (frame_has_handles_and_tiled_border):
8680         (frame_create_move_resize_args):
8681         (frame_free_move_resize_args):
8682         Title, Border and Buttons Style Colorset Option: External drawing
8683         stuff. Basically additional redrawing for RootTransparent
8685         * fvwm/builtins.c (update_decorface_colorset, new):
8686         (update_titlebutton_colorset, new):
8687         (update_decors_colorset, new):
8688         (update_fvwm_colorset):
8689         Title, Border and Buttons Style Colorset Option: Dynamic updating
8691         * fvwm/screen.h:
8692         * fvwm/builtins.c (ReadDecorFace):
8693         Title, Border and Buttons Style Colorset Option: Configuration
8695         * libs/Colorset.c (GetWindowBackgroundPixmapSize, new):
8696         * libs/Colorset.h:
8697         Title, Border and Buttons Style Colorset Option: Convinent macros and
8698         function
8700 2002-11-18  Dan Espen  <dane@mk.telcordia.com>
8702         * libs/Makefile.am: Add missing Bindings.h.
8704 2002-11-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8706         * fvwm/move_resize.c (__move_loop):
8707         send M_CONFIGURE_WINDOW only when the window actually moves
8709 2002-11-16  Mikhael Goikhman  <migo@homemail.com>
8711         * libs/FBidi.c:
8712         * libs/FBidi.h:
8713         * libs/FBidiJoin.c:
8714         * libs/FBidiJoin.h:
8715         * libs/Makefile.am:
8716         incorporated a shape-and-join bidi functionality from Nadim Shaikli
8717         with minor improvements; it is disabled for now (#if 0) since
8718         some Arabic chars cause core dump
8720 2002-11-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8722         * fvwm/fvwm.1.in (Examples):
8723         added documentation of Icon option for PlaceAgain command
8725         * fvwm/events.c (__handle_key_event):
8726         fixed global key binding problem
8728 2002-11-15  olicha  <olivier.chapuis@free.fr>
8730         * libs/Bindings.c (MatchBindingExactly):
8731         (__compare_binding):
8732         compile fixes w/o stroke lib
8734         * NEWS:
8735         * fvwm/geometry.c (get_title_font_size_and_offset):
8736         * fvwm/builtins.c (do_title_style):
8737         New MinHeight option to TitleStyle
8739 2002-11-15  olicha  <olivier.chapuis@free.fr>
8741         * fvwm/builtins.c (update_fvwm_colorset):
8742         (CMD_Colorset):
8743         (do_title_style):
8745         * fvwm/builtins.h:
8746         * fvwm/colorset.c (update_root_transparent_colorset):
8747         Fixed update of the RootTransparent colorset in fvwm
8749 2002-11-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8751         * libs/Bindings.c (__compare_binding):
8752         (MatchBindingExactly):
8753         compoile fixes w/o stroke lib
8755 2002-11-14  olicha  <olivier.chapuis@free.fr>
8757         * fvwm/fvwm.1.in:
8758         * INSTALL.fvwm:
8759         * NEWS
8760         Removed any reference on "xft and flickering"
8762 2002-11-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8764         * fvwm/eventmask.h (XEVMASK_ICONW):
8765         * fvwm/events.c (HandleKeyRelease):
8766         (HandleKeyPress):
8767         (__handle_key_event):
8768         * fvwm/bindings.c (ParseBinding):
8769         (activate_binding):
8770         * libs/Bindings.h (enum):
8771         implemented key release bindings; prefix the key name with a '-';
8772         does not work well with some applications
8774 2002-11-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8776         * libs/Bindings.h:
8777         new file
8779         * fvwm/bindings.c (ParseBinding):
8780         (binding_cmd):
8781         (activate_binding):
8782         (bind_get_bound_button_contexts):
8783         (ParseBinding):
8784         (CMD_Stroke):
8785         (CMD_Mouse):
8786         (CMD_PointerKey):
8787         (CMD_Key):
8788         (RemoveMatchingBinding):
8789         (AddBinding):
8790         (AreBindingsEqual):
8791         (GrabWindowKey):
8792         (GrabWindowButton):
8793         (GrabAllWindowKeysAndButtons):
8794         * fvwm/module_interface.c (CMD_ModuleSynchronous):
8795         * fvwm/events.c (__handle_bpress_on_root):
8796         (__handle_bpress_on_managed):
8797         (HandleButtonRelease):
8798         * fvwm/builtins.c (CMD_Wait):
8799         (CMD_StrokeFunc):
8800         * libs/fvwmlib.h (enum):
8801         fixed Key vs. PointerKey with "A"ny context
8803 2002-11-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8805         * fvwm/icons.c (Iconify):
8806         icon placement safety patch
8807         (CreateIconWindow):
8808         fixed initial position of application provided icon windows
8810         * fvwm/session.c (LoadWindowStates):
8811         fixed parsing of strings beginning with whitespace in session file
8813         * fvwm/fvwm.1.in (Note):
8814         * fvwm/style.c (style_set_old_focus_policy):
8815         * libs/defaults.h (DEF_FP_MODIFIERS):
8816         set default modifiers for raising/focusing to N again
8818 2002-11-11  olicha  <olivier.chapuis@free.fr>
8820         * fvwm/fvwm.1.in:
8821         * fvwm/fvwm.c (main):
8822         (usage):
8823         named-palette -> visual-palette, -N -> -P
8825 2002-11-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8827         * fvwm/ConfigFvwmDefaults:
8828         include ConfigFvwmProxyDefaults
8830         * fvwm/fvwm.c (usage):
8831         polished usage message
8833 2002-11-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8835         * fvwm/fvwm.c (usage):
8836         (main):
8837         cleaned up usage and error messages
8838         use short option names in usage message an man page synopsis
8839         all options are case sensitive
8840         do not mention the "-" style long options in the man page; instead use
8841         the "--" style
8843         * fvwm/add_window.c (setup_frame_window):
8844         * fvwm/events.c (HandleMapNotify):
8845         * fvwm/eventmask.h (XEVMASK_FRAMEW_RECAPTURE):
8846         fixed empty decorations after recapture
8848         * fvwm/geometry.c (get_icon_geometry):
8849         * fvwm/icons.c (clear_icon):
8850         fixed icon jumping to 0 0 when the icon layout changes after the icon
8851         has been moved manually
8853         * fvwm/move_resize.c (__move_icon):
8854         fixed MoveToPage with icons
8856 2002-11-09  olicha  <olivier.chapuis@free.fr>
8858         * libs/Fft.c (FftGetRotatedFont):
8859         (FftGetFont):
8860         * libs/Fft.h:
8861         Check the return result of FftPatternGetMatrix
8863         * libs/Flocale.h:
8864         * libs/PictureBase.h:
8865         Added two macro
8867 2002-11-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8869         * fvwm/ewmh_conf.c (set_state_workaround):
8870         * fvwm/functable.c (func_table):
8871         * fvwm/update.c (apply_window_updates):
8872         * fvwm/windowlist.c (CMD_WindowList):
8873         * fvwm/ewmh_events.c (ewmh_WMDesktop):
8874         (ewmh_WMStateSticky):
8875         * fvwm/conditional.c (CreateConditionMask):
8876         (CreateConditionMask):
8877         * fvwm/gnome.c (GNOME_SetHints):
8878         (GNOME_GetStyle):
8879         (GNOME_HandlePropRequest):
8880         * fvwm/placement.c (SmartPlacement):
8881         (get_next_x):
8882         (test_fit):
8883         (get_next_y):
8884         (PlaceWindow):
8885         * fvwm/session.c (SaveWindowStates):
8886         (MatchWinToSM):
8887         * fvwm/ewmh.c (check_desk):
8888         (EWMH_SetWMDesktop):
8889         (ewmh_ComputeAndSetWorkArea):
8890         (ewmh_HandleDynamicWorkArea):
8891         (ewmh_HandleDesktop):
8892         (ewmh_HandleDock):
8893         (ewmh_HandleMenu):
8894         (ewmh_HandleToolBar):
8895         * fvwm/virtual.c (UnmapDesk):
8896         (MapDesk):
8897         (MoveViewport):
8898         (MoveViewport):
8899         (do_move_window_to_desk):
8900         * fvwm/icons.c (setup_icon_title_size):
8901         (DrawIconTitleWindow):
8902         (AutoPlaceIcon):
8903         (Iconify):
8904         * fvwm/borders.c (is_button_toggled):
8905         (get_common_decorations):
8906         (border_draw_title_stick_lines):
8907         * fvwm/add_window.c (AddWindow):
8908         * fvwm/move_resize.c (__move_window):
8909         (is_window_sticky_on_page):
8910         (is_window_sticky_on_desk):
8911         (MaximizeWidth):
8912         (MaximizeHeight):
8913         (stick_page):
8914         (stick_desk):
8915         (handle_stick):
8916         (handle_stick_page):
8917         (handle_stick_desk):
8918         (__handle_stick_exit):
8919         (CMD_StickDesk):
8920         (CMD_StickPage):
8921         * fvwm/style.c (style_parse_one_style_option):
8922         (check_window_style_change):
8923         * fvwm/style.h:
8924         * fvwm/fvwm.h:
8925         New Style options stickypage and stickydesk
8926         New WindowList options NoStickyPage, NoStickyDesk, StickyPage,
8927         StickyDesk, OnlyStickyPage, OnlyStickyDesk
8928         New conditions StickyPage and StickyDesk
8929         New commands StickPage and StickDesk
8931         * fvwm/move_resize.c (__move_window):
8932         do not unstick a window when using MoveToScreen
8934         * fvwm/ewmh_conf.c:
8935         reindented
8937         * fvwm/commands.h:
8938         * fvwm/functable.c (func_table):
8939         * fvwm/ewmh_conf.c (CMD_EwmhBaseStruts):
8940         renamed EWMHBaseStrut to EwmhBaseStruts
8942         * fvwm/style.c (style_set_old_focus_policy):
8943         SloppyFocus and MouseFocus use "FPFocusClickModifiers N" by default
8944         (style_parse_one_style_option):
8945         renamed "Border" style to "Borders"
8946         removed "NoBorder" style; use !Borders instead
8947         renamed PlacmentOverlapPenalties to MinOverlapPlacementPenalties
8948         renamed PlacmentOverlapPercentPenalties to
8949         MinOverlapPercentPlacementPenalties
8951         * fvwm/fvwm.1.in:
8952         * NEWS:
8953         corrected typo
8955         * libs/Fft.c:
8956         Fixed compiler warnings
8958 2002-11-09  Mikhael Goikhman  <migo@homemail.com>
8960         * configure.in:
8961         autogenerate FvwmWindowLister files
8963         * fvwm/fvwm.1.in:
8964         mention fvwm-menu-directory and fvwm-menu-desktop as examples
8965         of MissingSubmenuFunction and DynamicPopupAction
8967 2002-11-08  olicha  <olivier.chapuis@free.fr>
8969         * libs/PictureUtils.c (alloc_color_proportion):
8970         (alloc_color_proportion_dither):
8971         (alloc_color_proportion_grey):
8972         (alloc_color_x):
8973         (free_colors_in_table):
8974         (free_colors_x):
8975         (init_static_colors_table):
8976         (PictureFreeColors):
8977         (PictureInitColors):
8978         (PicturePrintColorInfo):
8979         Fixed StaticColor visual. Rename some of the color allocators. Clean up
8980         free colors stuff
8982 2002-11-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
8984         * fvwm/move_resize.c (__move_window):
8985         ignore MoveToPage with sticky windows
8987         * fvwm/conditional.c (Circulate):
8988         (circulate_cmd):
8989         Next and Prev commands begin looking at the context window, if any
8991         * fvwm/focus.c (__focus_grab_buttons):
8992         fixed initial button grabbing on client window
8994         * fvwm/stack.c (BroadcastRestack):
8995         split long packets, fixed a bug and cleaned up
8997         * libs/Module.c (ReadFvwmPacket):
8998         ignore packets that are too long
9000         * fvwm/fvwm.1.in:
9001         document PopupDelay and PopdownDelay defaults
9003 2002-11-06  olicha  <olivier.chapuis@free.fr>
9005         * libs/Fft.c (FftGetFont):
9006         (FftGetRotatedFont):
9007         Use a more perfectioned method for loading font with Xft/Fc. This
9008         method allows sanity check. Preserve the matrix when rotating
9009         Xft/Fc fonts.
9011         * libs/Flocale.c (FlocaleGetMinOffset):
9012         (FlocaleRotateDrawString):
9013         (FlocaleGetFontSet):
9014         (FlocaleGetFont):
9015         * libs/Fft.c (FftDrawString):
9016         (FftGetFont):
9017         * libs/FftInterface.h:
9018         * fvwm/geometry.c (get_title_font_size_and_offset):
9019         Move the computation of the good "y" for drawing text into Flocale.
9020         Use the max ascent, descent and height for font metric (in the place
9021         of the min's one).
9023         * libs/Flocale.c (FlocalePrintLocaleInfo):
9024         * libs/Flocale.h:
9025         * libs/Fft.c (FftPrintPatternInfo):
9026         * libs/Fft.h:
9027         * fvwm/builtins.c (CMD_PrintInfo):
9028         * NEWS:
9029         * fvwm.1.in:
9030         New option "Locale" to PrintInfo Command
9032 2002-11-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9034         * fvwm/events.c (HandleExpose):
9035         removed no-op
9037 2002-11-04  Dan Espen  <dane@mk.telcordia.com>
9039         * fvwm/fvwm.1.in: colour -> color
9040         Language check.
9042 2002-11-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9044         * fvwm/fvwm.1.in:
9045         * fvwm/fvwm.c (usage):
9046         (main):
9047         pallet -> palette
9049 2002-11-04  olicha  <olivier.chapuis@free.fr>
9051         * configure.in:
9052         Added -lXrender in Xft 1 tests (Ethan Blanton <eblanton@cs.ohiou.edu>)
9054         * libs/PictureUtils.c (alloc_color_dynamic_no_limit):
9055         (finish_ct_init):
9056         (PictureFreeColors):
9057         (PicturePrintColorInfo):
9058         Trace colours allocation out of the pallet in depth <= 8. Better
9059         information on coulours
9061         * libs/Fft.c (FftGetRotatedFont):
9062         * libs/Fft.h:
9063         Fixed rotated font when the original font has a matrix
9065         * libs/PictureBase.c (PictureInitCMapRoot):
9066         * libs/PictureUtils.h:
9067         * libs/PictureUtils.c (PictureInitColors):
9068         (PictureAllocColorTable):
9069         * libs/PictureBase.h (PictureColorLimitOption):
9070         * fvwm/fvwm.c (main):
9071         * fvwm/fvwm.1.in
9072         New options -strict-color-limit, -allocate-pallet, -static-pallet,
9073         -named-pallet. -color-limit now take only integer argument.
9076 2002-11-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9078         * libs/Module.h (struct):
9079         new type FvwmWinPacketBodyHeader to access the standard fields in a
9080         packet with a window
9082 2002-11-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9084         * NEWS:
9085         updated for 2.4.13
9087         * fvwm/functable.c (func_table):
9088         * fvwm/commands.h:
9089         * fvwm/style.c (style_parse_one_style_option):
9090         (parse_and_set_window_style):
9091         (__style_command):
9092         (CMD_Style):
9093         (CMD_FocusStyle):
9094         added a new command FocusStyle as a shorthand for
9095         "Style * FP..., FP..."
9097         * fvwm/builtins.c (__parse_vector_line_one_coord):
9098         (__parse_vector_line):
9099         (ReadDecorFace):
9100         split vector line parsing into sub functions
9101         (FreeDecorFace):
9102         fixed core dump in vector button offset patch
9104 2002-11-01  Marcus Lundblad <ml@update.uu.se>
9106         * fvwm/screen.h (vector_coords):
9107         added fields for offsets
9108         * fvwm/builtins.c (ReadDecorFace):
9109         rewrote parser for vector definitions to accept optional offsets
9110         * fvwm/fvwm.c (LoadDefaultLeftButton):
9111         (LoadDefaultRightButton)
9112         set default values for offsets
9113         * fvwm/borders.c (border_draw_vector_to_pixmap):
9114         updated XDrawLine call to take offsets into account
9115         * fvwm/fvwm.1.in:
9116         documented new options for vector offsets
9118 2002-11-01  olicha  <olivier.chapuis@free.fr>
9120         * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
9121         Fixed icon tint pixel, it was set to icon tint percent during some
9122         renaming
9124 2002-10-31  olicha  <olivier.chapuis@free.fr>
9126         * libs/PictureUtils.c (PictureAllocColorImage):
9127         (PictureOpenImageColorAllocator):
9128         (PictureCloseImageColorAllocator):
9129         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
9130         (FIMAGE_CMD_ARGS):
9131         (PImageLoadXpm):
9132         (PImageCreatePixmapFromArgbData):
9133         (PImageLoadPixmapFromFile):
9134         * libs/PictureBase.h (FvwmPictureThing):
9135         (PictureImageColorAllocator):
9136         * libs/Picture.h:
9137         * libs/Picture.c (PDestroyFvwmPicture):
9138         (PLoadFvwmPictureFromPixmap):
9139         * libs/Graphics.c (CreateGradientPixmap):
9140         * fvwm/fvwm.c:
9141         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
9142         Added a new way to allocate colors for image and gradient. This method
9143         allows, in particular, to save (in a "fast" way) the allocated pixels
9144         with a minimal memory usage.
9145         Fixed color leaks for png, ewmh and dithered xpm images.
9147         * fvwm/add_window.c (destroy_icon):
9148         * fvwm/fvwm.h (FvwmWindow):
9149         * fvwm/icons.c (GetIconFromFile):
9150         Fixed color leaks
9152 2002-10-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9154         * fvwm/commands.h:
9155         * fvwm/functable.c:
9156         * fvwm/stack.c (enum):
9157         (position_new_window_in_stack_ring):
9158         (new_layer):
9159         (must_move_transients):
9160         (restack_windows):
9161         (__restack_window):
9162         (__raise_lower_recursion):
9163         (__raise_or_lower_window):
9164         (raise_or_lower_window):
9165         (collect_transients_recursive):
9166         (__is_restack_transients_needed):
9167         (RestackWindow):
9168         (CMD_RestackTransients):
9169         new command RestackTransients which works like Raise and Lower but does
9170         not restack windows that are not transient
9171         renamed some functions
9172         general cleanup
9174         * fvwm/fvwm.1.in:
9175         corrected cursor movement key bindings
9177         * fvwm/bindings.c (activate_binding):
9178         fixed problem w/ bindings being overridden by applications OpenOffice
9179         and the Gnome panel
9181 2002-10-29  Mikhael Goikhman  <migo@homemail.com>
9183         * configure.in:
9184         * NEWS:
9185         switched to 2.5.5
9187         * configure.in:
9188         include FvwmProxy to build
9190 2002-10-29  Mikhael Goikhman  <migo@homemail.com>
9192         * configure.in:
9193         exclude FvwmProxy from build
9195         * configure.in:
9196         * NEWS:
9197         updated for 2.5.4
9199 2002-10-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9201         * configure.in:
9202         added FvwmProxy module
9204 2002-10-29  Mikhael Goikhman  <migo@homemail.com>
9206         * fvwm/fvwm.1.in:
9207         * fvwm/windowlist.c (CMD_WindowList):
9208         renamed SortClassName to SortByClass
9210 2002-10-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9212         * fvwm/menustyle.c (menustyle_update):
9213         (menustyle_parse_style):
9214         (menustyle_get_styleopt_index):
9215         (menustyle_parse_style):
9216         (CMD_CopyMenuStyle):
9217         * fvwm/menustyle.h:
9218         removed HilightRelief MenuStyle and hard coded it
9220 2002-10-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9222         * fvwm/menus.c (make_menu_window):
9223         fixed updating menu background with "Menustyle * Background"
9225         * fvwm/stack.c (__get_stacking_sibling):
9226         (restack_windows):
9227         fixed another stacking problem
9229 2002-10-28  Mikhael Goikhman  <migo@homemail.com>
9231         * acinclude.m4:
9232         * configure.in:
9233         corrected and lined up several help lines
9235         * INSTALL.fvwm:
9236         added --enable-xinerama-emulation description
9238 2002-10-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9240         * fvwm/stack.c (restack_windows):
9241         (__get_stacking_sibling):
9242         fixed another stacking problem
9244 2002-10-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9246         * fvwm/add_window.c (AddWindow):
9247         braodcast M_RESTACK_WINDOW after M_ADD_WINDOW to fix problem with
9248         windows starting lowered or on other layers in FvwmPager
9250         * fvwm/stack.c (restack_windows):
9251         (__get_visible_window):
9252         fixed a stacking problem with layers
9254 2002-10-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9256         * fvwm/functable.c (func_table):
9257         fixed Pick command
9259 2002-10-24  Mikhael Goikhman  <migo@homemail.com>
9261         * NEWS:
9262         * fvwm/fvwm.1.in:
9263         * fvwm/windowlist.c:
9264         new WindowList option SortByResource
9266         * fvwm/style.c (check_window_style_change):
9267         * libs/FlocaleCharset.c:
9268         fixed gcc warning
9270         * AUTHORS:
9271         place recent authors to the top, not bottom
9273         * fvwm/builtins.c:
9274         corrected typo in error message
9276 2002-10-23  Dan Espen  <dane@mk.telcordia.com>
9278         * fvwm/fvwm.1.in: Lang check done.
9280 2002-10-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9282         * fvwm/menus.c:
9283         work on new menu loop code
9285         * libs/timeout.h:
9286         * libs/timeout.c:
9287         new files
9289         * fvwm/menus.c (__mloop_handle_event):
9290         (__mloop_get_event):
9291         (__mloop_handle_action_with_mi):
9292         * fvwm/menus.h (MenuReturn):
9293         renamed MenuReturn member menu to target_menu
9295         * fvwm/menus.c (__mloop_handle_event):
9296         * fvwm/menus.h (MenuReturn):
9297         removed a "write only" member of MenuReturn
9299         * fvwm/conditional.c (circulate_cmd):
9300         fixed the "Any" command
9302 2002-10-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9304         * fvwm/stack.c (mark_transient_subtree):
9305         fixed stack ring corruption with iconified transients
9306         (restack_windows):
9307         fixed a problem with lowering windows below the icons of their
9308         transients
9310 2002-10-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9312         * libs/Colorset.c:
9313         * fvwm/menustyle.c:
9314         * libs/Colorset.h:
9315         * libs/Flocale.h:
9316         * libs/PictureBase.h:
9317         * fvwm/menuitem.c:
9318         * fvwm/geometry.c:
9319         * fvwm/colorset.c:
9320         renamed colorset_struct to colorset_t
9322 2002-10-22  olicha  <olivier.chapuis@free.fr>
9324         * libs/PictureUtils.c:
9325         Minor fixes and add #if O experimental code
9327 2002-10-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9329         * fvwm/icons.c (DrawIconPixmapWindow):
9330         (DrawIconWindow):
9331         * fvwm/events.c (HandlePropertyNotify):
9332         * libs/Fft.c (FftDrawString):
9333         * libs/Colorset.c (DumpColorset):
9334         (LoadColorset):
9335         * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
9336         use renamed colorset_struct members
9338         * libs/Colorset.h (colorset_struct):
9339         renamed and re-sorted members and cut down bit field lengths for
9340         percentile members
9342         * fvwm/menustyle.c (menustyle_update):
9343         fixed core dump
9345         * fvwm/stack.c (restack_windows):
9346         fixed flickering when raising transients; can't prevent flickering when
9347         lowering a window completely
9348         (restack_windows):
9349         fixed unnecessary error message
9351         * fvwm/fvwm.c (main):
9352         init Scr to zeros
9354         * fvwm/stack.c (__restack_window):
9355         fixed a stacking problem with icons
9357         * fvwm/add_window.c (destroy_icon):
9358         fixed a memory leak
9360 2002-10-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9362         * fvwm/menuitem.c (menuitem_paint):
9363         * fvwm/menustyle.c (menustyle_parse_style):
9364         * fvwm/menus.c (paint_side_pic):
9365         (paint_menu):
9366         (select_menu_item):
9367         (repaint_transparent_menu):
9368         * fvwm/menustyle.h (MenuLook):
9369         cleaned up menu drawing code, fixed last patch
9371         * fvwm/menuitem.c (menuitem_paint):
9372         * fvwm/menustyle.c (menustyle_parse_style):
9373         fixed HilightBack default
9375         * fvwm/bindings.c (binding_cmd):
9376         (bind_get_bound_button_contexts):
9377         (ParseBinding):
9378         * fvwm/screen.h (ScreenInfo):
9379         fixed mouse bindings with buttons > 5
9381         * fvwm/menuitem.c (menuitem_paint):
9382         * fvwm/menustyle.c (menustyle_parse_style):
9383         (menustyle_parse_style):
9384         (CMD_CopyMenuStyle):
9385         (menustyle_update):
9386         (menustyle_free):
9387         * fvwm/menus.c (repaint_transparent_menu):
9388         * fvwm/menustyle.h:
9389         HilightBack and ActiveFore are now independent
9391 2002-10-18  olicha  <olivier.chapuis@free.fr>
9393         * libs/PictureUtils.c (get_color_index):
9394         (create_mapping_table):
9395         (PictureAllocColorTable):
9396         Use a new distance and method for color approximation. Use 68 colors
9397         for the default under depth 8. I am happy with this, should use a
9398         similar distance method for dithering
9400         * libs/PictureUtils.c (alloc_color_dynamic_no_limit):
9401         (PictureAllocColorTable):
9402         (PictureDitherByDefault):
9403         (PictureUseBWOnly):
9404         (PictureIitColors):
9405         (PicturePrintColorInfo):
9406         * libs/PictureUtils.h:
9407         Allows -color-limit to work with any visual and depth for testing
9408         propose. Should replace (Pdepht < 2) test by (PictureUseBWOnly())
9410         * fvwm/colorset.c:
9411         Replaced (Pdepht < 2) test by (PictureUseBWOnly())
9413 2002-10-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9415         * fvwm/add_window.c (get_default_window_attributes):
9416         cleaned up
9418         * fvwm/builtins.c (CMD_ChangeDecor):
9419         removed some duplicate redrawing
9421         * fvwm/update.c (apply_decor_change):
9422         suppress duplicate window update upon ChangeDecor
9423         (apply_window_updates):
9424         do not delete the focus window
9426 2002-10-17  olicha  <olivier.chapuis@free.fr>
9428         * NEWS:
9429         A bunch of news
9431         * libs/Colorset.c (CreateBackgroundPixmap):
9432         Use a 1x1 pixmap and not a widthxheight pixmap for Plain color
9434         * fvwm/builtins.c (CMD_Colorset):
9435         Do not BroadcastColorset in CMD_Colorset, parse_colorset do that!
9437 2002-10-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9439         * fvwm/add_window.c (AddWindow):
9440         * fvwm/update.c (apply_window_updates):
9441         * fvwm/move_resize.c (handle_stick):
9442         (CMD_Stick):
9443         suppress drawing of sticky decorations initially
9444         reduce module communication overhead when (un)sticking windows
9446         * fvwm/borders.c (border_draw_decorations):
9447         * fvwm/window_flags.h:
9448         * fvwm/fvwm.h:
9449         * fvwm/frame.c (frame_create_move_resize_args):
9450         (get_resize_decor_gravities_one_axis):
9451         (frame_mrs_setup_draw_decorations):
9452         (mr_args_internal):
9453         initialize window decorations with a "None" pixmap;
9454         delay drawing window decorations initially to prevent drawing multiple
9455         times;
9456         => windows grabbing the focus upon startup are drawn focused
9457         immediately
9459         * fvwm/frame.c (frame_free_move_resize_args):
9460         reparent the frame hide windows to NoFocusWin instead of Root to
9461         suppress unnecessary ReparentNotify events
9463 2002-10-16  olicha  <olivier.chapuis@free.fr>
9465         * fvwm/fvwm.c (main):
9466         Fixed a typo
9468         * libs/FRender.h:
9469         Fixed compilation with X cvs
9471         * libs/Colorset.c (CreateBackgroundPixmap):
9472         Fixed a GC leak
9474         * fvwm/events.c (HandlePropertyNotify):
9475         * fvwm/colorset.c (update_root_pixmap):
9476         Use _XROOTPMAP_ID and not ESETROOT_PMAP_ID neither XSETROOT_ID
9477         to found a root pixmap
9479 2002-10-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9481         * fvwm/bindings.c (bind_get_bound_button_contexts):
9482         another mouse binding fix
9484         * fvwm/conditional.c (CreateConditionMask):
9485         simplified parsing
9486         all conditions have a negation with '!' prepended
9487         (Circulate):
9488         (CMD_All):
9489         (select_cmd):
9490         Current, All, Pick, ThisWindow and PointerWindow imply the
9491         CirculateHitShaded condition.
9493         * fvwm/focus.c (__focus_grab_buttons):
9494         * libs/defaults.h (NUMBER_OF_EXTENDED_MOUSE_BUTTONS):
9495         fixed bindings using mouse buttons >= 6
9497 2002-10-15  olicha  <olivier.chapuis@free.fr>
9499         * libs/PictureUtils.c (PicturePrintColorInfo):
9500         (print_colormap):
9501         * fvwm/commands.h:
9502         * fvwm/functable.c (func_table):
9503         * fvwm/builtins.c (CMD_PrintInfo):
9504         * fvwm/fvwm.1.in:
9505         New cmd PrintInfo. Only one arg at present time: "Colors"
9507         * fvwm/fvwm.c (main):
9508         Auto detect card with 2 hardware colormaps and choose the best
9509         visual and colormap
9511         * libs/PictureUtils.c (PictureInitColors):
9512         (*):
9513         * libs/PictureUtils.h:
9514         * fvwm/fvwm.c (main):
9515         * libs/PictureBase.c (PictureInitCMapRoot):
9516         (PictureInitCMap):
9517         * libs/PictureBase.h:
9518         Try to support DirectColor visual in a good way, I do not think
9519         this is really useful.
9520         Added a flexible interface function PictureInitColors for
9521         colors allocation initialization.
9522         Some cleanup in color allocation and some preparation for a new
9523         method for saving and freeing colors allocated by images and gradients.
9524         Removed some ifdefed to 0 debug code.
9526         * libs/Picture.c (*):
9527         * libs/Picture.h:
9528         * libs/PictureImageLoader.c (*):
9529         * libs/PictureImageLoader.h:
9530         Replace Root by win
9532 2002-10-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9534         * fvwm/add_window.c (setup_key_and_button_grabs):
9535         * fvwm/bindings.c (ParseBinding):
9536         (activate_binding):
9537         * fvwm/add_window.c (setup_key_and_button_grabs):
9538         don't grab window context specific bindings anymore; instead, set
9539         Scr.buttons2grab accordingly
9541         * fvwm/bindings.c (activate_binding):
9542         fixed stroke bindings on window context being ignored if no other
9543         action was bound to that context
9545         * fvwm/add_window.c (destroy_icon):
9546         fixed duplicate icon pixmap when switching from NoIconOverride to
9547         IconOverride
9549 2002-10-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9551         * fvwm/icons.c:
9552         re-indented some code
9553         (AutoPlaceIcon):
9554         fixed random position of icon title for icons with a position hint
9556         * fvwm/fvwm.1.in:
9557         corrected default of Use/NoIconPosition style
9559 2002-10-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9561         * fvwm/windowlist.c (CMD_WindowList):
9562         fixed random string for iconified windows in the WindowList
9564 2002-10-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9566         * NEWS:
9567         updated for 2.4.12
9569 2002-10-08  olicha  <olivier.chapuis@free.fr>
9571         * libs/PictureBase.c (*):
9572         (PictureInitCMapRoot)
9573         (PictureSetupWhiteAndBlack):
9574         (PictureWhitePixel):
9575         (PictureBlackPixel):
9576         (PictureDefaultGC):
9577         New interface function PictureWhitePixel, PictureBlackPixel. Analogue
9578         of the Xlib WhitePixel and BlackPixel functions but in the Pvisaul.
9579         New interface function PictureInitCMapRoot analogue to PictureInitCMap,
9580         but always use the root visual and allows to set or not a private
9581         color limit table.
9582         New interface PictureDefaultGC, analogue of Xlib DefaultGC function
9583         but which respects the Pvisual
9585         * libs/PictureGraphics.c (*):
9586         * libs/FScreen.c (FScreenInit):
9587         * libs/FRender.c (FRenderRender):
9588         * libs/Fft.c (FftDrawString):
9589         * fvwm/icons.c (CreateIconWindow):
9590         * fvwm/colorset.c (parse_colorset):
9591         * fvwm/move_resize.c (CMD_XorValue):
9592         * fvwm/colorset.c (alloc_colorset):
9593         * fvwm/fvwm.c (main):
9594         Use the new interface functions and some fix if the fvwm depth !=
9595         the root depth.
9597         * libs/PictureUtils.c (PictureAllocColorTable):
9598         Change the default color table to a 4x4x4 cc + 4 grey
9600 2002-10-07  Dan Espen  <dane@mk.telcordia.com>
9602         * fvwm/fvwm.1.in: Use built-in, not builtin.
9604 2002-10-06  Mikhael Goikhman  <migo@homemail.com>
9606         * configure.in:
9607         s/FvwmNewDebug/FvwmDebug/
9609         * fvwm/commands.h:
9610         * fvwm/conditional.c (CMD_NoWindow):
9611         * fvwm/functable.c:
9612         * NEWS:
9613         new command NoWindow to remove window context
9615         * fvwm/fvwm.1.in:
9616         use "fvwm" spelling, at least in the middle of sentences
9618 2002-10-06  Dan Espen  <dane@mk.telcordia.com>
9620         * fvwm/fvwm.1.in: Dont refer to fvwm commands as
9621         builtin commands.  Use "builtin", not "built in" or "built-in".
9622         Other adjustments.
9624 2002-10-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9626         * libs/Graphics.c (do_relieve_rectangle):
9627         removed debug message
9629         * fvwm/focus.c (__update_windowlist):
9630         (__set_focus_to_fwin):
9631         fixed reversal of __update_windowlist arguments causing FlipFocus to
9632         break [and maybe other things]
9634 2002-10-05  olicha  <olivier.chapuis@free.fr>
9636         * libs/PictureUtils.c (alloc_color_cube):
9637         It si possible to enable "gamma correction" for colors cubes (disabled,
9638         define USE_GAMMA_CORRECTION to 1 and set COLOR_GAMMA and GREY_GAMMA)
9640         * libs/PictureUtils.c (get_color_index):
9641         (create_mapping_table):
9642         Use a more exact approximation of colors for pur cc without the big
9643         16x16x16 cc
9645         * libs/PictureUtils.c (PictureFreeColors):
9646         Fixed a memory leak
9648         * libs/Graphics.c (CreateGradientPixmap):
9649         (CreateGradientPixmapFromString):
9650         Cleanup
9652 2002-10-04  olicha  <olivier.chapuis@free.fr>
9654         * libs/PictureUtils.c (*):
9655         Used a better color approximation for color cube when we do not dither.
9656         Added some new colors tables: color cube with some grey colors.
9657         Change the default to a 4x4x3 cc with 6 grey (54 colors).
9658         Some visual fixes.
9660         * fvwm/fvwm.c (main):
9661         Fixed the visual option
9663 2002-10-03  Mikhael Goikhman  <migo@homemail.com>
9665         * configure.in:
9666         generate FvwmNewDebug and FvwmGtkDebug
9668 2002-10-02  olicha  <olivier.chapuis@free.fr>
9670         * libs/PictureUtils.c (USED_DIST):
9671         Used the euclidian distance for colors distance
9673         * libs/Fft.c (FftGetFont):
9674         Disable Xft if the Xserver does not support XRender
9676 2002-10-01  olicha  <olivier.chapuis@free.fr>
9678         * libs/Fft.c (FftGetFont):
9679         Disable Xft if the Xserver does not support XRender
9681         * libs/FRender.c (FRenderRender):
9682         * libs/PictureGraphics.c (PGraphicsTintRectangle):
9683         Fixed
9685         * libs/Colorset.c (SetRectangleBackground):
9686         (SetClippedRectangleBackground):
9687         * libs/Colorset.h:
9688         New interface function for drawing a subset of a colorset rectangle
9690 2002-09-26  olicha  <olivier.chapuis@free.fr>
9692         * fvwm/update.c (apply_window_updates):
9693         Fixed icons colorset update
9695         * libs/FRender.c (FRenderRender):
9696         Fixed bitmap rendering
9698         * fvwm/update.c (apply_window_updates):
9699         * fvwm/geometry.c (move_icon_to_position):
9700         * fvwm/events.c (HandleEnterNotify):
9701         (HandleExpose):
9702         (HandleLeaveNotify):
9703         (HandlePropertyNotify):
9704         * fvwm/add_window.c (setup_icon_font):
9705         * fvwm/icons.c (DrawIconWindow):
9706         (DrawIconTitleWindow):
9707         (DrawIconPixmapWindow):
9708         (ChangeIconPixmap):
9709         (RedoIconName):
9710         Fixed focus/unfocus flickering
9712 2002-09-25  olicha  <olivier.chapuis@free.fr>
9714         * fvwm/icons.c (DrawIconTitleWindow):
9715         One more drawing fix
9717 2002-09-24  olicha  <olivier.chapuis@free.fr>
9719         * fvwm/icons.c (DrawIconTitleWindow):
9720         An other drawing fix
9722 2002-09-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9724         * fvwm/move_resize.c (__move_loop):
9725         fixed uninitialised variable
9726         (InteractiveMove):
9727         fixed starting move at random position
9729 2002-09-24  olicha  <olivier.chapuis@free.fr>
9731         * fvwm/update.c (apply_window_updates):
9732         * fvwm/geometry.c (move_icon_to_position):
9733         * fvwm/events.c (HandleEnterNotify):
9734         (HandleExpose):
9735         (HandleLeaveNotify):
9736         (HandlePropertyNotify):
9737         * fvwm/add_window.c (setup_icon_font):
9738         * fvwm/icons.c (DrawIconWindow):
9739         (DrawIconTitleWindow):
9740         (DrawIconPixmapWindow):
9741         (ChangeIconPixmap):
9742         (RedoIconName):
9743         Fixed icon drawing. Split icon window drawing.
9745         * libs/FRender.c (*):
9746         Fixed compilation and small clean up
9748 2002-09-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9750         * fvwm/conditional.c (CreateFlagString):
9751         fixed quoting in conditional command conditions
9753         * fvwm/menus.c (__mloop_handle_event):
9754         removed unnecessary querying of pointer position on button release in
9755         menus
9756         (__menu_loop):
9757         fixed posting menus
9759         * fvwm/bindings.c (ParseBinding):
9760         increased maximum allowed key symbol name length to 200 characters
9762         * fvwm/execcontext.h (enum):
9763         * fvwm/fvwm.c (Done):
9764         (SetRCDefaults):
9765         (main):
9766         (StartupStuff):
9767         use new contexts
9769         * fvwm/execcontext.h (enum):
9770         added EXCT_INIT ['I'] and EXCT_EXIT ['X'] contexts
9772         * fvwm/menus.c (pop_menu_up):
9773         fixed accidental menu animation with certain menu position hints
9775 2002-09-23  olicha  <olivier.chapuis@free.fr>
9777         * libs/FRender.c (*):
9778         Fixed(?) XRender rendering with some Xserver
9780         * fvwm/update.c (apply_window_updates):
9781         * fvwm/geometry.c (move_icon_to_position):
9782         * fvwm/events.c (HandleEnterNotify):
9783         (HandleExpose):
9784         (HandleLeaveNotify):
9785         (HandlePropertyNotify):
9786         * fvwm/add_window.c (setup_icon_font):
9787         * fvwm/icons.c (DrawIconWindow):
9788         (ChangeIconPixmap):
9789         (RedoIconName):
9790         Clip text and icon drawing for the icons
9792 2002-09-21  Mikhael Goikhman  <migo@homemail.com>
9794         * NEWS:
9795         * libs/System.c:
9796         Path commands now support form: "path1;ext1:path2:path3;ext3"
9797         where ext1 (for example, ".png") means all files in path1 should
9798         be forced to have extention ".png" even if the requested icon
9799         has ".xpm" ("calculator.xpm" or has no extention at all ("calculator")
9801         * fvwm/execcontext.h:
9802         small changes in latters used for EXCT_* constants
9804         * fvwm/module_interface.c:
9805         * libs/Picture.c:
9806         * libs/PictureBase.c:
9807         * fvwm/cursor.c:
9808         some spacing reindentation
9810 2002-09-21  olicha  <olivier.chapuis@free.fr>
9812         * libs/FRender.c (FRenderCompositeAndCheck):
9813         Temporally take GraphicsExposure in account
9815 2002-09-20  Mikhael Goikhman  <migo@homemail.com>
9817         * libs/vpacket.h:
9818         fixed incorrect MiniIconPacket definition: s/char *name/char name[1]/
9820 2002-09-20  olicha  <olivier.chapuis@free.fr>
9822         * fvwm/icons.c (GetIconPicture):
9823         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
9824         Fixed the alpha channel
9826 2002-09-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9828         * NEWS:
9829         updated for 2.4.11
9831 2002-09-20  olicha  <olivier.chapuis@free.fr>
9833         * libs/FRender.c (FRenderTintPicture):
9834         (FRenderTintRectangle):
9835         (FRenderRender):
9836         * libs/FRenderInterface.h:
9837         * libs/PictureGraphics.c (PGraphicsTintRectangle):
9838         Make FRender code more modular. Add a 24+8 tinting method and enable it
9839         in the place of the 32 tinting method (which can be enabled by defining
9840         USE_ABSOLUTE_FORMATE)
9842 2002-09-19  olicha  <olivier.chapuis@free.fr>
9844         * fvwm/menus.c (get_menu_repaint_transparent_parameters):
9845         (animated_move_back):
9846         (pop_menu_up):
9847         (repaint_transparent_menu):
9848         * fvwm/move_resize.c (AnimatedMoveOfWindow):
9849         (AnimatedMoveAnyWindow):
9850         * fvwm/move_resize.h:
9851         Support the new colorset transparent options and fix greyed item
9852         of transparent animated menus
9854         * fvwm/menus.c (pop_menu_up):
9855         (animated_move_back):
9857         * libs/Rectangles.c:
9858         * libs/Rectangles.h:
9859         * libs/Makefile.am:
9860         New libs files for rectangles, segments, regions ..etc
9862         * fvwm/menus.c (clear_expose_menu_area):
9863         (get_menu_paint_item_parameters):
9864         (paint_menu):
9865         (select_menu_item):
9866         (ParentalMenuRePaint):
9867         (ParentalMenuRePaint):
9868         * fvwm/menuitem.c (clear_menu_item_background):
9869         (menuitem_paint):
9870         * fvwm/menuitem.h (MenuPaintItemParameters):
9871         Clip the item icons and text drawing
9873         * fvwm/menus.c (__mloop_exit):
9874         Fixed an indirect uninitialized variable bug
9876         * fvwm/menus.c (__mloop_handle_event): *
9877         (__mloop_handle_action_with_mi): *
9878         Update some comments
9880         * libs/FRender.c (FRenderVisualInit):
9881         (FRenderRender):
9882         * fvwm/colorset.c (parse_colorset):
9883         Small clean up
9885 2002-09-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9887         * fvwm/menus.c (__menu_loop):
9888         (__mloop_handle_action_with_mi):
9889         fixed parent menu redrawing
9891         * fvwm/style.c (check_window_style_change):
9892         * fvwm/update.c (apply_window_updates):
9893         * fvwm/add_window.c (setup_icon_size_limits):
9894         honour changes in IconSize style without recapture
9896         * fvwm/focus.c (focus_query_open_grab_focus):
9897         * fvwm/events.c (HandlePropertyNotify):
9898         * fvwm/add_window.c (setup_transientfor):
9899         take care of various funny initial transientfor settings
9901         * fvwm/stack.c (__raise_lower_recursion):
9902         new function
9903         fixed stacking core dump
9905 2002-09-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9907         * libs/Graphics.c:
9908         ANSI C fixes
9910         * configure.in:
9911         added a program that tests for -Werror option and similar; bug out of
9912         configure if the test program doesn't compile
9914 2002-09-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9916         * fvwm/fvwm.1.in:
9917         * configure.in:
9918         add a "do not edit" warning at the beginning of the man page
9920         * configure.in:
9921         enable the original CFLAGS and CPPFLAGS before generating the Makefiles
9923         * libs/FScreen.c (XineramaQueryScreens):
9924         fixed linking problem when compiling without Xinerama
9926         * fvwm/cursor.c (CMD_CursorStyle):
9927         fixed cursorstyle command being applied to windows without handles
9929         * fvwm/ewmh.h (EWMH_ProcessClientMessage):
9930         (EWMH_ProcessPropertyNotify):
9931         * fvwm/gnome.h (GNOME_ProcessClientMessage):
9932         (GNOME_HandlePropRequest):
9933         fixed dummy macros when compiling without gnome/ewmh support
9935 2002-09-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9937         * libs/queue.c (fqueue_add_inside):
9938         add a new command with the same execution time as a previous one behind
9939         it
9941         * configure.in:
9942         override CFLAGS and CPPFLAGS with empty strings instead of generating an
9943         error message
9945         * fvwm/functions.c (__execute_function):
9946         * fvwm/execcontext.h (exec_context_type_t):
9947         replace enum values with letters for readability
9949         * fvwm/functions.c (__execute_function):
9950         improved command log output
9952         * fvwm/schedule.c (execute_obj_func):
9953         fixed schedule queue timing
9955         * configure.in:
9956         refuse to run configure if CFLAGS is not empty
9958 2002-09-16  Mikhael Goikhman  <migo@homemail.com>
9960         * fvwm/misc.c:
9961         fixed compilation with --enable-command-log; simplified fvwm_msg()
9963         * libs/Module.c:
9964         reformatted; don't send end-of-line with SET_*MASK
9966 2002-09-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
9968         * fvwm/borders.c (border_draw_multi_pixmap_titlebar):
9969         fixed multipixmap title drawing
9971         * fvwm/frame.h (struct):
9972         * fvwm/frame.c (frame_get_titlebar_dimensions):
9973         removed unused code
9975         * fvwm/events.c (HandlePropertyNotify):
9976         applied FlocaleGetNameProperty core dump fix by Suzanne Skinner
9978         * libs/Fft.c (FftDrawString):
9979         -Wall fix when compiling w/o Xft
9981 2002-09-15  olicha  <olivier.chapuis@free.fr>
9983         * libs/Colorset.c (CreateBackgroundPixmap):
9984         Fixed a dpy problem with FvwmBacker
9985         * libs/Colorset.c (CreateBackgroundPixmap):
9986         Fixed creation a root transparent pixmap for small root pixmap
9988 2002-09-14  olicha  <olivier.chapuis@free.fr>
9990         * libs/Fft.c (FftDrawString):
9991         Fixed clip region with shadow font
9993         * libs/PictureGraphics.c (PGraphicsCreateTranslucent):
9994         Added a function to create translucent pixmaps
9995         * libs/Colorset.c (CreateBackgroundPixmap):
9996         A small fix
9997         * libs/FRender.c (FRenderRender):
9998         Allows to use the root window as src pixmap
10000 2002-09-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10002         * fvwm/fvwm.1.in:
10003         Fixed open double quotes in ButtonState section
10005 2002-09-13  Dan Espen  <dane@mk.telcordia.com>
10007         * fvwm/fvwm.1.in: Add -cmd module timeout information.
10009 2002-09-13  olicha  <olivier.chapuis@free.fr>
10011         * libs/Colorset.c (CreateBackgroundPixmap):
10012         (UpdateBackgroundTransparency):
10013         (SetRectangleBackground):
10014         * libs/Colorset.h:
10015         * fvwm/colorset.c (*):
10016         * fvwm/colorset.h:
10017         * fvwm/events.c (HandlePropertyNotify):
10018         Starting implementation of RootTransparent colorset. Worked on
10019         tinted Transparent colorset. Various colorset parsing fixes.
10021         * libs/Fft.c (FftDrawString):
10022         * libs/Flocale.h:
10023         Added the possibility to draw with a clipping region.
10025         * libs/FRender.c (FRenderRender):
10026         * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
10027         (PCreateRenderPixmap):
10028         (PGraphicsCreateTransprency):
10029         (PGraphicsTintRectangle):
10030         Improve current rendering functions to be able to tint the
10031         ParentalRelative pixmap or the background of a window.
10032         Re-enabled XRender rendering.
10034         * fvwm/borders.c:
10035         remove a #if 0 debug "render" code
10037 2002-09-13  Mikhael Goikhman  <migo@homemail.com>
10039         * fvwm/builtins.c (ReadTitleButton):
10040         * fvwm/screen.h:
10041         new button state shortcuts AllNormal, AllToggled,
10042         AllActive, AllInactive, AllUp, AllDown
10044         * fvwm/module_interface.c:
10045         minor reformatting
10047         * acconfig.h:
10048         possibly fixed compilation with non gcc
10050 2002-09-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10052         * fvwm/focus.c (_focus_grab_buttons):
10053         (__focus_grab_buttons):
10054         renamed
10055         (__focus_grab_one_button):
10056         grab all modifier combinations on client windows by default if
10057         necessary; this saves a lot of traffic but may grab unnecessary
10058         modifiers with mouse bindings on the client window
10060         * fvwm/fvwm.1:
10061         * libs/defaults.h (DEF_FP_MODIFIERS):
10062         * fvwm/events.c (__handle_focus_raise_click):
10063         * fvwm/style.c (style_parse_focus_policy_style):
10064         * fvwm/focus_policy.h (FPOL_ANY_MODIFIER_MASK):
10065         default is now to use any modifiers for clicktofocus/raise purposes
10067         * fvwm/menus.c (__mloop_get_event):
10068         fixed menu hang
10069         (menu_tear_off):
10070         fixed tear off menus
10072         * libs/FEvent.c (FCheckIfEvent):
10073         (FCheckMaskEvent):
10074         (FCheckTypedEvent):
10075         (FCheckTypedWindowEvent):
10076         (FCheckWindowEvent):
10077         fixed FCheck...Event functions thus fixing Menu command behaving like
10078         Popup
10080         * fvwm/move_resize.c (InteractiveMove):
10081         fixed offset between pointer and window when dragging
10083         * fvwm/virtual.c (HandlePaging):
10084         * fvwm/icons.c (CMD_Iconify):
10085         * fvwm/move_resize.c (InteractiveMove):
10086         * fvwm/menus.c (get_menu_options):
10087         (get_menu_options):
10088         * libs/FScreen.c (GetMouseXY):
10089         use new function fev_get_evpos_or_query()
10091         * libs/Makefile.am:
10092         * libs/Pointer.c:
10093         removed file
10095         (GetLocationFromEventOrQuery):
10096         moved to FEvent.c and renamed to fev_get_evpos_or_query()
10097         * libs/FEvent.c (fev_set_evpos):
10098         new function
10100         * fvwm/functions.c (__execute_function):
10101         (execute_complex_function):
10102         fixed complex action clicking logic
10104         * fvwm/add_window.c (CaptureOneWindow):
10105         fixed RecaptureWindow
10106         (CaptureAllWindows):
10107         fixed Restart
10109         * fvwm/functable.c (func_table):
10110         fixed running RecaptureWindow without a context window
10112         * fvwm/conditional.c (circulate_cmd):
10113         fixed action to run
10115         * fvwm/events.c (HandleVisibilityNotify):
10116         fixed VisibilityNotify handling
10118         * fvwm/functions.c (execute_complex_function):
10119         fixed memory corruption
10120         (__execute_function):
10121         fixed using wrong context
10122         (__execute_function):
10123         removed conditional that was always true now
10124         (DeferExecution):
10125         fixed core dump
10127         * fvwm/module_interface.c (ExecuteModuleCommand):
10128         initialise module number
10130 2002-09-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10132         * fvwm/add_window.c (CaptureOneWindow):
10133         fixed memory corruption
10135         * fvwm/icons.c (Iconify):
10136         (DeIconify):
10137         fixed bug introduced with transient stacking patch
10139         * fvwm/functions.c (DeferExecution):
10140         (__execute_function):
10141         (execute_complex_function):
10142         cleaned up and optimized exec_context handling
10144         * fvwm/schedule.c:
10145         * fvwm/menucmd.c:
10146         * fvwm/update.c:
10147         * fvwm/windowlist.c:
10148         * fvwm/conditional.c:
10149         * fvwm/focus.c:
10150         * fvwm/functions.c:
10151         * fvwm/placement.c:
10152         * fvwm/colorset.c:
10153         * fvwm/stack.c:
10154         * fvwm/virtual.c:
10155         * fvwm/module_interface.c:
10156         * fvwm/icons.c:
10157         * fvwm/builtins.c:
10158         * fvwm/add_window.c:
10159         * fvwm/move_resize.c:
10160         * fvwm/fvwm.h (F_CMD_ARGS):
10161         (F_PASS_ARGS):
10162         completely removed the builtin command arguments fw, w, and context
10164         * fvwm/functions.c (DeferExecution):
10165         fixed core dump
10167         * fvwm/stack.c (BroadcastRestack):
10168         removed global lastTimestamp
10170         * fvwm/ewmh_events.c (EWMH_ProcessClientMessage):
10171         (EWMH_ProcessPropertyNotify):
10172         (ewmh_WMStateShaded):
10173         (ewmh_WMStateSticky):
10174         (ewmh_WMStateHidden):
10175         (ewmh_WMState):
10176         (ewmh_MoveResize):
10177         (ewmh_WMDesktop):
10178         (ewmh_CloseWindow):
10179         (ewmh_DesktopGeometry):
10180         (ewmh_ActiveWindow):
10181         use new function interface
10183         * fvwm/menus.c (do_menu):
10184         * fvwm/menucmd.c (menu_func):
10185         * fvwm/windowlist.c (CMD_WindowList):
10186         use new function interface
10187         replaced "(XEvent *)1" hack with a regular flag
10189 2002-09-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10191         * fvwm/add_window.c (destroy_window):
10192         * fvwm/update.c (destroy_scheduled_windows):
10193         * fvwm/screen.h (ScreenInfo):
10194         new member is_executing_menu_function
10196         * fvwm/windowlist.c (CMD_WindowList):
10197         * fvwm/menucmd.c (menu_func):
10198         * fvwm/gnome.c (CMD_GnomeButton):
10199         (GNOME_ProcessClientMessage):
10200         (GNOME_HandlePropRequest):
10201         * fvwm/modconf.c (CMD_Send_ConfigInfo):
10202         * fvwm/update.c (apply_window_updates):
10203         * fvwm/repeat.c (CMD_Repeat):
10204         * fvwm/conditional.c (circulate_cmd):
10205         (CMD_Prev):
10206         (CMD_Next):
10207         (CMD_None):
10208         (CMD_Any):
10209         (CMD_Current):
10210         (CMD_Cond):
10211         (CMD_CondCase):
10212         (select_cmd):
10213         (CMD_All):
10214         (CMD_Direction):
10215         (CMD_WindowId):
10216         * fvwm/focus.c (warp_to_fvwm_window):
10217         (CMD_WarpToWindow):
10218         * fvwm/read.c (run_command_stream):
10219         (run_command_file):
10220         (CMD_Read):
10221         (CMD_PipeRead):
10222         * fvwm/fvwm.c (Done):
10223         (SetRCDefaults):
10224         (StartupStuff):
10225         (main):
10226         use new function interface
10227         (main):
10228         fixed running startup script under random module number
10230         * fvwm/functions.c (execute_function_override_window):
10231         * fvwm/functions.c (execute_function_override_wcontext):
10232         new convenience functions
10234         * fvwm/gnome.c:
10235         * fvwm/modconf.c:
10236         * fvwm/session.c:
10237         re-indented
10239         * fvwm/module_interface.c (CMD_Send_WindowList):
10240         (CMD_set_mask):
10241         (CMD_set_sync_mask):
10242         (CMD_set_nograb_mask):
10243         fixed core dumps
10244         don't use "Module" argument anymore
10245         (ExecuteModuleCommand):
10246         made static
10247         use new function interface
10249         * fvwm/add_window.c (CaptureOneWindow):
10250         (do_recapture):
10251         (CaptureAllWindows):
10252         * fvwm/events.c (HandleMapRequestKeepRaised):
10253         * fvwm/add_window.c (AddWindow):
10254         AddWindow takes executiuon context as its argument instead of the
10255         window; changed caller
10256         don't use "Event" anymore
10258         * fvwm/fvwm.c (StartupStuff):
10259         generate an execution context for startup
10261         * fvwm/move_resize.c (DoResize):
10262         (__resize_step):
10263         (moveLoop):
10264         (__move_loop):
10265         renamed and used new function interface in args
10267         * fvwm/geometry.c (constrain_size):
10268         added XEvent *e argument to remove use of global "Event"; changed all
10269         callers
10271 2002-09-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10273         * fvwm/stack.c (get_next_window_in_stack_ring):
10274         (get_prev_window_in_stack_ring):
10275         (get_transientfor_fvwmwindow):
10276         * fvwm/icons.c (SetMapStateProp):
10277         * fvwm/events.c (fake_map_unmap_notify):
10278         * fvwm/misc.c (IsRectangleOnThisPage):
10279         * fvwm/menus.c (menu_enter_tear_off_menu):
10280         (menu_close_tear_off_menu):
10281         * fvwm/icons.c (DrawIconWindow):
10282         * fvwm/focus.c:
10283         * fvwm/colormaps.c (InstallWindowColormaps):
10284         made FvwmWindow * arguments const in many functions
10286         * fvwm/menus.c (pop_menu_up):
10287         (pop_menu_down):
10288         (__mloop_do_menu):
10289         (__mloop_do_popup):
10290         (do_menu):
10291         (menu_enter_tear_off_menu):
10292         (__mloop_get_event):
10293         (__mloop_get_event_timeout_loop):
10294         (__mloop_do_menu):
10295         (__mloop_get_mi_actions):
10296         (is_double_click):
10297         * fvwm/events.c (HandleEnterNotify):
10298         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
10299         (__move_window):
10300         (__move_loop):
10301         (__resize_step):
10302         (__resize_window):
10303         * fvwm/functions.c (DeferExecution):
10304         (__execute_function):
10305         * fvwm/windowlist.c (CMD_WindowList):
10306         * fvwm/colormaps.c (colormap_handle_colormap_notify):
10307         * fvwm/module_interface.c (CMD_ModuleSynchronous):
10308         (ExecuteModuleCommand):
10309         * fvwm/builtins.c (CMD_Wait):
10310         * fvwm/events.c (WaitForButtonsUp):
10311         (HandleShapeNotify):
10312         (HandleVisibilityNotify):
10313         (HandleUnmapNotify):
10314         (HandleSelectionRequest):
10315         (HandleReparentNotify):
10316         (HandlePropertyNotify):
10317         (HandleMotionNotify):
10318         (HandleMapRequestKeepRaised):
10319         (HandleMapRequest):
10320         (HandleMappingNotify):
10321         (HandleMapNotify):
10322         (HandleLeaveNotify):
10323         (HandleKeyPress):
10324         (HandleFocusOut):
10325         (HandleFocusIn):
10326         (HandleExpose):
10327         (HandleEnterNotify):
10328         (HandleDestroyNotify):
10329         (HandleColormapNotify):
10330         (HandleClientMessage):
10331         (HandleButtonRelease):
10332         (HandleButtonPress):
10333         (__handle_bpress_on_root):
10334         (__handle_bpress_action):
10335         (__handle_click_to_raise):
10336         (__handle_click_to_focus):
10337         (__is_bpress_window_handled):
10338         (__handle_focus_raise_click):
10339         don't use "Event", "Fw" and old_execute_function() anymore
10341         * fvwm/events.c (dispatch_event):
10342         removed preserve_tmpwin argument; changed all callers
10344         * fvwm/events.c (CoerceEnterNotifyOnCurrentWindow):
10345         fixed random focus member of faked event
10347         * fvwm/gnome.c (GNOME_ProcessClientMessage):
10348         * fvwm/ewmh_events.c (EWMH_ProcessClientMessage):
10349         (EWMH_ProcessPropertyNotify):
10350         * fvwm/move_resize.c (DisplaySize):
10351         (DisplayPosition):
10352         (position_geometry_window):
10353         * fvwm/geometry.c (get_window_borders):
10354         (get_window_borders_no_title):
10355         made args const
10357         * fvwm/events.c (dispatch_event):
10358         create event execution context
10359         (HandleClientMessage):
10360         removed useless local "button"
10361         (GetContext):
10362         don't fiddle with global Fw anymore; added argument to return context
10363         window; changed all callers
10365         * fvwm/events.c (CoerceEnterNotifyOnCurrentWindow):
10366         * fvwm/move_resize.c (__resize_window):
10367         use new event handle interface
10369         * fvwm/events.c:
10370         * fvwm/eventhandler.h:
10371         new event handler interface
10373         * fvwm/functions.c (CMD_Plus):
10374         * fvwm/builtins.c (AddToDecor):
10375         (CMD_AddToDecor):
10376         (CMD_DestroyDecor):
10377         use F_CMD_ARGS in AddToDecor
10378         (CMD_StrokeFunc):
10379         removed useless check for realloc return value
10380         use new function interface
10381         fixed another memory leak
10383         * fvwm/builtins.c (__remove_window_decors):
10384         replace old_execute_function with execute_function
10386         * fvwm/add_window.c (setup_window_placement):
10387         * fvwm/placement.c (PlaceWindow):
10388         * fvwm/schedule.c (execute_obj_func):
10389         * fvwm/colorset.c (add_to_junk):
10390         use new function call interface
10392         * fvwm/fvwm.h (F_EXEC_ARGS):
10393         (F_PASS_EXEC_ARGS):
10394         removed now unused macros
10396         * fvwm/functions.c (CheckActionType):
10397         (cf_cleanup):
10398         (DeferExecution):
10399         (__execute_function):
10400         (__run_complex_function_items):
10401         (execute_complex_function):
10402         rewrote function call interface
10404         * fvwm/functions.c (__run_complex_function_items):
10405         new function split off from execute_complex_function
10407         * fvwm/externs.h:
10408         * fvwm/events.c:
10409         removed "Event" global
10411 2002-09-08  Dan Espen  <dane@mk.telcordia.com>
10413         * fvwm/fvwm.1.in: Language check.
10415 2002-09-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10417         * fvwm/functions.c (old_execute_function):
10418         removed
10420         * fvwm/module_interface.c (do_execute_module):
10421         don't write module argument anymore; code claimed that writing 0 into
10422         *Module prevented WaitForButtonsUp from being called, but that was
10423         either a lie or a relic of the past
10425         * fvwm/fvwm.h (exec_func_args_type):
10426         removed type
10427         (F_CMD_ARGS):
10428         (F_PASS_ARGS):
10429         removed *Module argument
10431         * fvwm/functions.c (__execute_function):
10432         new interface
10434         * fvwm/functions.h (enum):
10435         added more function execution falgs
10437         * fvwm/fvwm.h:
10438         add exec_context_t *exc to builtin arguments
10440         * libs/FEvent.c (fev_copy_last_event):
10441         new function
10443         * fvwm/execcontext.h:
10444         * fvwm/execcontext.c:
10445         new files introducing the "exec_context_t" structure that shall replace
10446         the builtin command interface
10448         * fvwm/stack.c (__RaiseOrLowerWindow):
10449         (RaiseOrLowerWindow):
10450         (__restack_window):
10451         (mark_transient_subtree):
10452         (__sort_transient_ring):
10453         properly handle restacking of windows with more than one transient and
10454         multiple levels of transients at the same time
10455         (__RaiseOrLowerWindow):
10456         (RaiseOrLowerWindow):
10457         renamed function and added wrapper
10459         * fvwm/fvwm.h (FvwmWindow):
10460         added new scratch registers
10462 2002-09-06  Mikhael Goikhman  <migo@homemail.com>
10464         * configure.in:
10465         * Makefile.am:
10466         minor improvements in the new release procedure
10468 2002-09-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10470         * fvwm/stack.c (RaiseOrLowerWindow):
10471         (__restack_window):
10472         (mark_transient_subtree):
10473         (must_move_transients):
10474         (is_on_top_of_layer_ignore_rom):
10475         handle restacking trees of transient windows; still does not work too
10476         well if a window has multiple transients at the same time
10478 2002-09-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10480         * fvwm/stack.h:
10481         * fvwm/stack.c:
10482         restored versions from before 9th of September
10483         (RaiseOrLowerWindow):
10484         fixed StackTransientParent style without RaiseTransient or
10485         LowerTransient on transient_for window
10486         StackTransientParent works only on window in the same layer
10487         (mark_transient_subtree):
10488         fixed handling of window group hint w/ iconify
10489         (restack_windows):
10490         (RaiseOrLowerWindow):
10491         (new_layer):
10492         fixed flickering when overlapping transients aree lowered
10494         * fvwm/move_resize.c (__resize_window):
10495         * fvwm/colorset.c (add_to_junk):
10496         cleaned up event handling
10498         * fvwm/move_resize.c (__resize_window):
10499         renamed function and changed callers
10501         * fvwm/fvwm.h (F_PASS_ARGS):
10502         (F_CMD_ARGS):
10503         removed eventp command argument
10505         * fvwm/events.c (DispatchEvent):
10506         (dispatch_event):
10507         renamed function, added event argument and changed all callers
10509         * libs/FEvent.c (fev_fake_event):
10510         * libs/FEvent.c (fev_get_evtype__remove_me):
10511         new functions
10513         * fvwm/menus.c (menuShortcuts):
10514         (is_double_click):
10515         (pop_menu_up):
10516         (pop_menu_up):
10517         (pop_menu_down):
10518         (pop_menu_down):
10519         (__mloop_init):
10520         (__mloop_get_event_timeout_loop):
10521         (__mloop_get_event):
10522         (__mloop_do_popup):
10523         (__mloop_do_popup):
10524         (do_menu):
10525         * fvwm/builtins.c (CMD_FakeClick):
10526         * fvwm/functions.c (CheckActionType):
10527         (CheckActionType):
10528         * fvwm/focus.c (__try_program_focus):
10529         (__try_program_focus):
10530         * fvwm/icccm2.c (SetupICCCM2):
10531         * fvwm/virtual.c (HandlePaging):
10532         * fvwm/module_interface.c (make_vpacket):
10533         (make_new_vpacket):
10534         * fvwm/schedule.c (squeue_get_next_ms):
10535         (squeue_get_next_ms):
10536         (CMD_Schedule):
10537         * fvwm/stack.c (BroadcastRestack):
10538         * fvwm/move_resize.c (resize_window):
10539         (moveLoop):
10540         * libs/FEvent.c (fev_get_evtime):
10541         removed global lastTimestamp; use fev_get_evtime() from FEvent.c instead
10543         * fvwm/events.c (HandleEnterNotify):
10544         (DispatchEvent):
10545         (My_XNextEvent):
10546         (discard_events):
10547         (discard_window_events):
10548         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
10549         (moveLoop):
10550         (resize_window):
10551         * fvwm/menus.c (__mloop_get_event):
10552         * fvwm/virtual.c (HandlePaging):
10553         (MoveViewport):
10554         * fvwm/functions.c (DeferExecution):
10555         (CheckActionType):
10556         * fvwm/misc.c (get_server_time):
10557         * fvwm/builtins.c (CMD_StrokeFunc):
10558         * fvwm/menus.c (pop_menu_up):
10559         (pop_menu_down):
10560         (__mloop_init):
10561         * libs/FEvent.c (fev_update_last_timestamp):
10562         removed StashEventTime function; handle this directly in FEvent.c
10564         * fvwm/module_interface.c (ExecuteModuleCommand):
10565         * fvwm/misc.c (Keyboard_shortcuts):
10566         * fvwm/colormaps.c (colormap_handle_colormap_notify):
10567         * fvwm/events.c (handle_all_expose):
10568         (dispatch_event):
10569         (HandleEvents):
10570         (HandleKeyPress):
10571         don't use Event global anymore
10573         * fvwm/bindings.c (activate_binding):
10574         fixed key bindings on window corners
10576         * libs/fvwmlib.h (C_DECOR):
10577         context including all parts of the decorations
10579 2002-09-04  Mikhael Goikhman  <migo@homemail.com>
10581         * libs/FEvent.h:
10582         fixed compilation warning in #endif comment
10584         * fvwm/borders.c:
10585         removed debug fprintf
10587         * acconfig.h:
10588         * configure.in:
10589         * fvwm/fvwm.c:
10590         * fvwm/fvwm.1:
10591         another solution for reporting the cvs status
10593 2002-09-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10595         * configure.in (LIBOBJS):
10596         * acinclude.m4 (smr_SWITCH):
10597         fix for autoconf 2.53
10599         * fvwm/*.[ch]:
10600         removed unnecessary includes
10602         * fvwm/Makefile.am (fvwm_SOURCES):
10603         * fvwm/events.h:
10604         * fvwm/eventmasks.h:
10605         * fvwm/eventhandlers.h:
10606         new files split from events.h
10608         * fvwm/icccm2.c (HandleSelectionRequest):
10609         (HandleSelectionClear):
10610         * fvwm/colormaps.c (HandleColormapNotify):
10611         * fvwm/menus.c (menu_tear_off):
10612         * fvwm/move_resize.c (resize_window):
10613         * fvwm/events.c:
10614         * fvwm/events.h:
10615         new argument avh_args_t to the event handler functions; still unused
10616         moved all event handlers to events.c
10617         remove now unnecessary includes in some files
10619         * fvwm/icccm2.c (HandleSelectionRequest):
10620         re-indented file
10622         * **/*.c:
10623         use replacements for X event functions everywhere
10625 2002-09-03  Mikhael Goikhman  <migo@homemail.com>
10627         * fvwm/defaults.h:
10628         * fvwm/screen.h:
10629         * fvwm/borders.c (border_flags_to_button_state):
10630         (CMD_ButtonState):
10631         * fvwm/builtins.c (ReadTitleButton):
10632         * fvwm.1.in (ButtonStyle, TitleStyle, ButtonState):
10633         * fvwm/fvwm.c (InitVariables):
10634         Imlemented new title and button states InactiveUp and InactiveDown,
10635         new state shortcuts Active, Inactive, ToggledActive, ToggledInactive.
10636         So now there are 4+4 states and 2+2 aliases instead of 3+3 states.
10637         Updated all ButtonStyle, TitleStyle and ButtonState commands.
10639         * fvwm/fvwm.c:
10640         reformat license info in -version to be 3 lines and one empty line
10641         instead of 5 non-empty lines, for readability
10643 2002-09-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10645         * libs/FEvent.c:
10646         * libs/FEvent.h:
10647         * libs/Makefile.am:
10648         new files
10650         * fvwm/stack.c (__raise_or_lower_recursion):
10651         (RaiseOrLowerWindow):
10652         split into two functions
10653         renamed to __raise_or_lower_window
10654         (mark_transient_subtree):
10655         new flag MARK_CLEAR
10656         (position_new_window_in_stack_ring):
10657         (RaiseWindow):
10658         (LowerWindow):
10659         cleaned up stacking code
10661         * fvwm/menus.c (paint_menu):
10662         fixed a minor drawing problem with menu item reliefs
10664 2002-09-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10666         * fvwm/move_resize.c (InteractiveMove):
10667         removed eventp from interface
10668         changed all callers
10670         * fvwm/menucmd.c (menu_func):
10671         * fvwm/gnome.c (GNOME_ProxyButtonEvent):
10672         * fvwm/windowlist.c (CMD_WindowList):
10673         * fvwm/read.c (run_command_file):
10674         (run_command_stream):
10675         * fvwm/focus.c (warp_to_fvwm_window):
10676         * libs/Event.c (GetSubwindowFromEvent):
10677         * fvwm/events.c (GetContext):
10678         * libs/Pointer.c (GetLocationFromEventOrQuery):
10679         * fvwm/builtins.c (CMD_StrokeFunc):
10680         (CMD_StrokeFunc):
10681         * fvwm/events.c (StashEventTime):
10682         * fvwm/move_resize.c (InteractiveMove):
10683         * fvwm/functions.c (DeferExecution):
10684         (old_execute_function):
10685         * fvwm/fvwm.h (F_CMD_ARGS):
10686         (F_EXEC_ARGS):
10687         make eventp argument const to ease clean up work
10689         * fvwm/windowlist.c (CMD_WindowList):
10690         * fvwm/move_resize.c (InteractiveMove):
10691         * fvwm/menucmd.c (menu_func):
10692         * fvwm/icons.c (CMD_Iconify):
10693         always query pointer position in case a script modified the position
10694         in the input event
10696         * fvwm/focus.c (SetPointerEventPosition):
10697         removed function since it modifies the global event variable
10699         * fvwm/functable.c (func_table):
10700         added cursor and event type members fo DeferExecution call
10701         * fvwm/functions.c (DeferExecution):
10702         made static, call from inside functions.c only
10703         removed calls everywhere
10705         * fvwm/builtins.c (CMD_StrokeFunc):
10706         fixed memory leak
10708         * fvwm/virtual.c (HandlePaging):
10709         (MoveViewport):
10710         don't use global "Event" anymore
10711         (HandlePaging):
10712         pass in event structure through arguments
10713         changed all callers
10715 2002-09-02  olicha  <olivier.chapuis@free.fr>
10717         * libs/Colorset.c (*):
10718         * libs/Colorset.h:
10719         * libs/colorset.c (parse_colorset):
10720         * libs/PictureGraphics.c (PGrabXImage):
10721         (PCreateRenderPixmap):sx
10722         (PGraphicsCreateTransprency):
10723         * libs/PictureGraphics.h:
10724         An experimental implementation of ParentalRelative tinted background
10726         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
10727         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
10728         (PImageLoadPng):
10729         * libs/PictureGraphics.c (PGraphicsCreateStretchPicture):
10730         * libs/FRenderInit.c (FRenderInit):
10731         (FRenderGetAlphaDepth):
10732         * libs/FRenderInit.h:
10733         Fixed alpha blending for xserver without depth 8 pixmap
10734         (maybe a tmp fix)
10736         * fvwm/fvwm.1.in
10737         typo
10739 2002-09-01  olicha  <olivier.chapuis@free.fr>
10741         * NEWS:
10742         Colorset and alpha blending news
10744 2002-08-31  olicha  <olivier.chapuis@free.fr>
10746         * libs/Ficonv.c (convert_charsets):
10747         Fixed compilation on systems that do not have EILSEQ
10749 2002-08-30  olicha  <olivier.chapuis@free.fr>
10751         * libs/PictureGraphics.c (PGraphicsCreateStretchPicture):
10752         Fixed compilation of certain modules
10754         * fvwm/borders.c (border_render_into_pixmap):
10755         * libs/PictureGraphics.c (PGraphicsCreateStretchPicture):
10756         * libs/PictureGraphics.h:
10757         * libs/Graphics.c (CreateStretchPixmap):
10758         (CreateStretchYPixmap):
10759         (CreateStretchXPixmap):
10760         Progress with masks in multipixmap title
10762         * libs/PictureGraphics.c (PCopyArea):
10763         (PTileRectangle):
10764         (PCreateRenderPixmap):
10765         * fvwm/borders.c (border_fill_pixmap_background):
10766         Some drawing fixes
10768         * fvwm/icons.c (DrawIconWindow):
10769         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
10770         Fixed the shape mask of ewmh icons and icons with some alpha
10772 2002-08-30  olicha  <olivier.chapuis@free.fr>
10774         * libs/PictureGraphics.c (PCreateRenderPixmap):
10775         (PGrabImageErrorHandler):
10776         (PGraphicsCopyPixmaps):
10777         (PGraphicsCopyFvwmPicture):
10778         (PGraphicsTileRectangle):
10779         (PGraphicsRenderPixmaps):
10780         (PGraphicsRenderPicture):
10781         * libs/PictureGraphics.h:
10782         * libs/PictureBase.h:
10783         Replaced PGraphicsTileRectangle with a more powerful function,
10784         PCreateRenderPixmap, which performs *full* XRender simulation.
10785         So alpha blending is now supported even without Xrender support.
10786         New interface function PGraphicsRenderPixmaps and PGraphicsRenderPicture
10787         for direct rendering with tint and alpha channel.
10789         * libs/FRender.c (FRenderVisualInit):
10790         (FRenderCopyArea):
10791         (FRenderTintRectangle):
10792         (FRenderRender):
10793         * libs/FRenderInterface.h:
10794         Replaced FRenderCopyArea and FRenderTintRectangle with a more general
10795         and more powerfull function FRenderRender
10797         * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
10798         (PImageLoadPng):
10799         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
10800         Load the alpha even without Xrender support
10802         * libs/Colorset.h:
10803         * fvwm/colorset.c (parse_pixmap_tint):
10804         (parse_colorset):
10805         (alloc_colorset):
10806         Implemented IconTint, IconAlpha, bgTint. Tint (~ PixmapTint or ImageTint
10807         or obsolete TintMask) also tints gradients and the tint is applied
10808         only to the pixmap not the bg color. The average bg is computed from
10809         the "original" pixmap and not the tinted one, bgTint should be used
10810         to get a real average bg in the case the pixmap is tinted
10812         * fvwm/icons.c (DrawIconWindow):
10813         (CreateIconWindow):
10814         * fvwm/menuitem.c (menuitem_paint):
10815         * fvwm/menus.c (paint_side_pic):
10816         * fvwm/borders.c (border_get_border_background):
10817         (border_draw_decor_to_pixmap):
10818         (border_fill_pixmap_background):
10819         * fvwm/events.c (HandlePropertyNotify):
10820         Picture rendering use the new PGraphicsRenderPixmaps and
10821         PGraphicsRenderPicture libs functions. Respect new colorset options
10823         * fvwm/colorset.c (parse_colorset):
10824         (alloc_colorset):
10825         (CMD_ReadWriteColors):
10826         * fvwm/fvwm.1.in:
10827         Removed the read write colorset codes
10829         * libs/Graphics.c (CalculateGradientDimensions):
10830         Fixed the size of dithered H and V gradients
10832         * libs/PictureUtils.c (*):
10833         * libs/PictureUtils.h:
10834         Some cleanup
10836 2002-08-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10838         * fvwm/menus.c (paint_menu_gradient_background):
10839         fixed drawing of SidePic menu background when not using SideColor
10841 2002-08-28  Hippo
10842         * FvwmIconBox/icons.c:
10843         Fixed core dump
10845 2002-08-26  Mikhael Goikhman  <migo@homemail.com>
10847         * NEWS: mention new FvwmButtons additions and TitleStyle MultiPixmap
10849 2002-08-26  Mikhael Goikhman  <migo@homemail.com>
10851         * configure.in:
10852         fixed --disable-ewmh
10854         * libs/Picture.c:
10855         * libs/Picture.h:
10856         added const to some prototypes
10858 2002-08-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10860         * fvwm/menus.c (MenuInteraction):
10861         (__menu_loop):
10862         renamed MenuInteraction to __menu_loop
10864         * fvwm/menus.c (pop_menu_up):
10865         (do_menu):
10866         (MenuInteraction):
10867         removed pdo_warp_to_title argument of pop_menu_up and changed all
10868         callers; logic is now in last_saved_position_hints
10869         (__menu_get_next_event_timeout_loop):
10870         began to split MenuInteraction into several sub functions
10871         go away, evil "goto"!
10873         * fvwm/style.c (style_parse_one_style_option):
10874         all boolean styles - and *only* boolean styles, can be prefixed with a
10875         '!' to invert their meaning
10876         (style_parse_button_style):
10877         moved Button and NoButton styles to separate function
10879         * configure.in:
10880         * NEWS:
10881         updated for 2.5.4-devel
10883         * configure.in:
10884         2.5.3 was released
10886         * configure.in:
10887         * NEWS:
10888         updated for 2.5.3
10890         * fvwm/menuitem.h (struct):
10891         * fvwm/menus.c (paint_menu_gradient_background):
10892         (paint_menu_pixmap_background):
10893         (paint_menu):
10894         (clear_expose_menu_area):
10895         fixed TiledPixmap menu background drawing bug
10896         sorted function in file and removed forward declarations
10898 2002-08-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10900         * fvwm/Makefile.am (LDADD):
10901         put -lfvwm at front of library list
10903         * fvwm/windowlist.c (CMD_WindowList):
10904         print window's page instead of current page in windowlist
10906 2002-08-24  Bob Woodside  <dumbledore@woodsway.com>
10908         * fvwm/events.c (HandleButtonPress, HandleEnterNotify):
10909         Fix for Experimental RaiseOverUnmanaged Handling.
10911 2002-08-22  Bob Woodside  <dumbledore@woodsway.com>
10913         * fvwm/focus.h:
10914         * fvwm/stack.h:
10915         New defs for Experimental RaiseOverUnmanaged Handling.
10917         * fvwm/events.c (HandleEnterNotify):
10918         * fvwm/focus.c:
10919         (set_focus_to_fwin)
10920         (focus_query_grab_buttons)
10921         (_focus_grab_buttons)
10922         (focus_grab_buttons)
10923         (focus_grab_buttons_client_entered)
10924         (_SetFocusWindow)
10925         (__activate_window_by_command)
10926         (_ReturnFocusWindow)
10927         (_DeleteFocus)
10928         (_ForceDeleteFocus)
10929         * fvwm/stack.c:
10930         (raise_over_unmanaged)
10931         (is_above_unmanaged)
10932         (_is_on_top_of_layer)
10933         (is_on_top_of_layer)
10934         (is_on_top_of_layer_and_above_unmanaged)
10935         Experimental RaiseOverUnmanaged Handling - an attempt to fix the
10936         interaction of RaiseOverUnmanaged with various focus policies,
10937         particularly mouse focus + client click raises; issue mouse
10938         button grabs when and only when they are actually needed; and
10939         fix the old "xfm + MouseFocusClickRaises" bug once and for all.
10940         (Thanks to the GFPR, this is much more straightforward to do!)
10942 2002-08-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10944         * fvwm/fvwm.1.in:
10945         added a paragraph about scripting and complex functions.
10947         * fvwm/style.c (style_parse_one_style_option):
10948         fixed flag_mask and change_mask of TitleAt... styles that broke left
10949         and bottom titles
10951 2002-08-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10953         * fvwm/fvwm.1.in:
10954         describe new focus policy styles
10956 2002-08-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
10958         * fvwm/style.c (merge_styles):
10959         fixed applying style updates immediately
10961         * fvwm/geometry.c (constrain_size):
10962         fixed font resizing of maximized windows
10964         * fvwm/window_flags.h:
10965         * fvwm/fvwm.h (has_new_wm_normal_hints):
10966         new window flags
10968         * fvwm/events.c (HandleEnterNotify):
10969         fixed UngrabNotify returning focus to just unfocused window
10970         * fvwm/focus.h:
10971         added debug code
10973         * fvwm/style.c (merge_styles):
10974         (free_style_mask):
10975         (__simplify_style_list):
10976         fixed default style calculations
10978         * fvwm/events.c (HandleConfigureRequest):
10979         disabled debug output
10981         * fvwm/style.c (merge_styles):
10982         * fvwm/fvwm.h (window_style):
10983         new style member default_mask to allow two levels of defaults;
10984         fixes focus policy defaults
10985         * fvwm/style.h:
10986         rewrote many of the macros; changed all callers
10988         * fvwm/borders.c (RenderIntoPixmap):
10989         (DrawMultiPixmapTitlebar):
10990         (border_render_into_pixmap):
10991         (border_draw_multi_pixmap_titlebar):
10992         applied Suzanne Skinner's multi pixmap titles fix
10993         renamed functions and changed all callers
10995         * libs/FScreen.c (FScreenGetScrRect):
10996         (FindScreen):
10997         (FScreenGetScrId):
10998         new utility functions
11000         * fvwm/windowlist.c (CMD_WindowList):
11001         new option MaxLabelWidth for the WIndowList command based on patch by
11002         Maxim F. Ischenko
11003         new options NoLayer, ShowPage, ShowPageX, ShowPageY and ShowScreen to
11004         WindowList command.
11006         * fvwm/events.c (HandleConfigureRequest):
11007         removed debug code now that the EXPERIMENTAL_ANTI_RACE_CONDITION_CODE
11008         seems to work without problems
11010 2002-08-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11012         * fvwm/style.c (merge_styles):
11013         fixed style defaults getting stuck to on once set
11015         * configure.in:
11016         fixed a number of non portable uses of the "test" command and unified
11017         the used syntax of all calls to reduce chance of copy-and-paste
11018         problems
11020 2002-08-17  Mikhael Goikhman  <migo@homemail.com>
11022         * configure.in:
11023         * fvwm/fvwm.1.in:
11024         minor typos and improvements;
11025         better string quotings and detection of fribidi for autoconf-2.53
11027         * fvwm/Makefile.am:
11028         don't include *.in in EXTRA_DIST, they are auto-included
11030 2002-08-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11032         * fvwm/events.c (HandleConfigureRequest):
11033         (HandlePropertyNotify):
11034         (is_resizing_event_pending):
11035         fixed uninitialised return code of test_resizing_event
11037 2002-08-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11039         * fvwm/decorations.c (SelectDecor):
11040         * fvwm/style.h:
11041         * fvwm/window_flags.h:
11042         * fvwm/fvwm.h:
11043         moved common.s.has_no_border window flag to common.has_no_border to
11044         fix windows getting stuck without a border once the HandleWidth or
11045         BorderWidth was set to 0 and then increased again
11047         * fvwm/fvwm.1.in:
11048         removed reference to BUGS and TODO
11050         * configure.in:
11051         moved a lot of constant definitions to configure.in; the fvwm.lsm and
11052         fvwm.1 files don't have to be updated for a release anymore; the release
11053         number and date are set by configure
11055         * fvwm/fvwm.c (setVersionInfo):
11056         fixed output of "fvwm -version"
11058 2002-08-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11060         * fvwm/style.c (style_parse_one_style_option):
11061         Old focus styles override less of the behaviour specified with the
11062         FP... styles; use defaults instead without setting the mask
11063         (style_parse_one_style_option):
11064         removed the styles MouseFocusClickIgnoreMotion and
11065         MouseFocusClickIgnoreMotionOff, use the corresponfing FP... styles
11066         instead
11067         (style_parse_one_style_option):
11068         ClickToFocusRaises now works only on the client window, not on the
11069         decorations
11070         (style_parse_one_style_option):
11071         fixed FocusFollowsMouse style
11072         (style_set_old_focus_policy):
11073         moved old default focus settings to a separate function, simplified code
11075 2002-08-14  Dan Espen  <dane@mk.telcordia.com>
11077         * fvwm/fvwm.1: Add hot-spot is an offset information,
11078         fix spelling, "hot-spot", not "hotspot" (too bad its wrong in
11079         the xpm docs).
11081 2002-08-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11083         * fvwm/style.c (style_parse_focus_policy_style):
11084         fixed parsing of FPFocusClickButtons and FocusClickModifiers
11086         * libs/Makefile.am:
11087         added missing files
11089         * fvwm/events.c (HandleConfigureRequest):
11090         fixed ConfigureRequest race condition
11092 2002-08-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11094         * configure.in:
11095         quote environment variables
11097 2002-08-13  olicha  <olivier.chapuis@free.fr>
11099         * NEWS:
11100         Color limit and dithering news
11102         * fvwm/fvwm.1:
11103         Added a minimal doc for the -color-limit option
11105         * fvwm/builtins.c (CMD_ColorLimit):
11106         ColorLimit is obsolete
11108         * fvwm/builtins.c (ReadDecorFace):
11109         * libs/PictureUtils.c (my_dither_depth_15_16_init):
11110         (PictureAllocColorAllProp):
11111         Implemented dithering for depth 16 and 15. This is off by default
11112         in colorset (use the dither colorset option) and on by default
11113         for window title gradient. Gradient are visibly more smooth.
11115         * libs/PictureUtils.c (*):
11116         Some cleanup
11118 2002-08-13  Mikhael Goikhman  <migo@homemail.com>
11120         * fvwm/fvwm.1:
11121         corrected the pixmap cursor description, added an example
11123 2002-08-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11125         * fvwm/menus.c (select_menu_item):
11126         (paint_menu_gradient_background):
11127         fixed a redrawing problem with H/Vgradient menu faces
11128         (MenuInteraction):
11129         fixed a minor problem w/ entering submenus via keyboard
11131 2002-08-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11133         * fvwm/move_resize.c (CMD_ResizeMove):
11134         (CMD_Resize):
11135         (CMD_Maximize):
11136         (CMD_ResizeMaximize):
11137         (CMD_ResizeMoveMaximize):
11138         commands can be used on iconified windows again
11140         * ONEWS:
11141         * NEWS:
11142         moved pre-2.2 NEWS to ONEWS
11144         * libs/strdup.c:
11145         * libs/safemalloc.c:
11146         * libs/envvar.c:
11147         * libs/alloca.c:
11148         * libs/Target.c:
11149         * libs/Parse.c:
11150         * libs/Bindings.c:
11151         * fvwm/menustyle.c:
11152         * fvwm/menus.c:
11153         * fvwm/menuitem.c:
11154         * fvwm/menucmd.c:
11155         * fvwm/frame.c:
11156         * fvwm/events.c:
11157         * fvwm/borders.c:
11158         let config.h include strinh.h or strings.h
11160         * fvwm/style.c (style_parse_one_style_option):
11161         (style_parse_one_style_option):
11162         fixed icon box crash
11164         * fvwm/bindings.c (update_nr_buttons):
11165         fixed extra buttons on window decorations
11167         * fvwm/style.c (style_parse_one_style_option):
11168         fixed parsing of the FP... and !FP... styles
11170 2002-08-12  Bob Woodside  <dumbledore@woodsway.com>
11172         * fvwm/style.c (style_parse_one_style_option):
11173         Fixed a typo so that ClickToFocusRaisesOff actually turns
11174         the option off instead of on.
11176 2002-08-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11178         * fvwm/focus.c (focus_grab_buttons):
11179         only grab necessary buttons on the client window
11181 2002-08-11  olicha  <olivier.chapuis@free.fr>
11183         * libs/PictureUtils.c (PICTURE_DEBUG_COLORS_ALLOC_FAILURE):
11184         Removed some debug code
11186         * fvwm/fvwm.c (main):
11187         (usage):
11188         Added -color-limit to fvwm usage
11190 2002-08-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11192         * fvwm/style.c (style_parse_one_style_option):
11193         (style_parse_focus_policy_style):
11194         added style options "FP..." to control focus policy
11195         removed OverrideGrabFocus and AllowGrabFocus styles
11197         * fvwm/style.c (merge_styles):
11198         fixed style defaults != 0
11200         * fvwm/focus.c (__restore_focus_after_unmap):
11201         fixed a bug w/ reverting the focus from transients to the parent
11203         * fvwm/ewmh.c (ewmh_HandleDesktop):
11204         * fvwm/style.c (style_parse_one_style_option):
11205         fixed defaults for various focus styles
11207         * NEWS:
11208         updated for 2.4.9
11210         * fvwm/frame.c (frame_mrs_resize_move_windows):
11211         backed out anti-flicker patch that slowed down command processing
11213         * fvwm/bindings.c (update_nr_buttons):
11214         (ParseBinding):
11215         fixed sluggish processing of mouse bindings
11217         * fvwm/events.c (__handle_bpress_action):
11218         fixed drawing of pressed decorations w/o bindings
11220         * fvwm/frame.c (frame_move_resize):
11221         removed debug code that broke focus handling
11223         * fvwm/style.c (style_parse_one_style_option):
11224         fixed passing the focus click to the app by default
11226         * fvwm/events.c (__handle_click_to_focus):
11227         * fvwm/focus.c (set_focus_to_fwin):
11228         (__set_focus_to_fwin):
11229         removed drawing code that broke as many places as it fixed; plus it
11230         cause unnecessary redraws
11232         * fvwm/events.c (HandleConfigureRequest):
11233         send a synthetical ConfigureNotify if an application is not granted its
11234         wishes from a ConfigureRequest; this is necessary for FixedPPosition
11235         and FixedPSize to work properly; also to be ICCCM compliant
11236         always force border_width 0 in these events
11237         in the experimental cr merging code, send a number of cn events equal
11238         to the number of merged events
11240         * libs/Parse.c:
11241         * fvwm/style.c:
11242         reformatted
11244         * fvwm/style.c (style_parse_focus_policy_style):
11245         (style_parse_icon_size_style):
11246         (style_parse_icon_box_style):
11247         (style_parse_icon_grid_style):
11248         (style_parse_icon_fill_style):
11249         (style_parse_one_style_option):
11250         (parse_and_set_window_style):
11251         split into separate functions
11252         (style_parse_one_style_option):
11253         simplified and cleaned up
11255         * fvwm/events.h:
11256         * fvwm/decorations.c:
11257         * fvwm/cursor.h:
11258         * fvwm/cursor.c:
11259         * fvwm/conditional.h:
11260         * fvwm/conditional.c:
11261         * fvwm/colorset.h:
11262         * fvwm/colors.h:
11263         * fvwm/colors.c:
11264         * fvwm/colormaps.c:
11265         * fvwm/bindings.h:
11266         * fvwm/bindings.c:
11267         reformatted and cleaned up
11269 2002-08-11  olicha  <olivier.chapuis@free.fr>
11271         * libs/PictureUtils.c (*):
11272         * libs/PictureUtils.h:
11273         * libs/PictureDitherMatrice.h (new file):
11274         * libs/PictureImageLoader.c (*):
11275         * libs/PictureImageLoader.h:
11276         * libs/PictureGraphics.c  (PGraphicsCreateDitherPixmap):
11277         (PCreateDitherPixmap):
11278         (PCreateTintedPixmap):
11279         * libs/PictureGraphics.h:
11280         * libs/PictureBase.c (PictureInitCMap):
11281         * libs/PictureBase.h:
11282         * libs/Picture.c (*):
11283         * libs/Picture.h:
11284         * libs/Fxpm.h:
11285         * libs/Colorset.c (DumpColorset):
11286         (LoadColorset):
11287         * libs/Colorset.h:
11288         * libs/Graphics.c (all gradient functions):
11289         * libs/fvwmlib.h:
11290         * fvwm/screen.h:
11291         * fvwm/move_resize.c (CMD_XorPixmap):
11292         * fvwm/colors.c (FreeColors):
11293         * fvwm/builtins.c (CMD_DefaultColors):
11294         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
11295         * fvwm/builtins.c (FreeDecorFace):
11296         (ReadDecorFace):
11297         * fvwm/menus.c (pop_menu_down):
11298         (paint_menu_gradient_background):
11299         (scanForPixmap):
11300         * fvwm/menus.h:
11301         * fvwm/menustyle.c (menustyle_free_face):
11302         (menustyle_parse_face):
11303         (menustyle_free):
11304         (menustyle_update):
11305         (menustyle_parse_style):
11306         (CMD_CopyMenuStyle):
11307         * fvwm/menustyle.h:
11308         * fvwm/icons.c (GetIconFromFile):
11309         * fvwm/builtins.c (ReadMultiPixmapDecor):
11310         (ReadDecorFace):
11311         * fvwm/borders.c (border_draw_decor_to_pixmap):
11312         * fvwm/add_window.c (setup_mini_icon):
11313         * fvwm/fvwm.c (main):
11314         * fvwm/colorset.c (free_colorset_background):
11315         (parse_pixmap):
11316         (parse_shape):
11317         (parse_colorset):
11318         New color limit method and implement dithering in depth <= 8.
11319         Added a "fvwm picture attributes" structure for loading image.
11320         Some colors leaks fix. Add some (weak) color leaks. New option
11321         -color-limit for fvwm. 257 fix. Some prepartion for tint and
11322         alpha in colorset.
11324 2002-08-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11326         * libs/Flocale.c (FlocaleRotateDrawString):
11327         fixed a crash
11329 2002-08-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11331         * fvwm/style.c (parse_and_set_window_style):
11332         fixed the default for passing the click-to-raise click for mousey
11333         focus
11335         * fvwm/events.c (__handle_click_to_focus):
11336         removed redundant code
11337         (WaitForButtonsUp):
11338         fixed sluggish motion event handling when waiting for buttons to be
11339         released
11341         * fvwm/focus.c (__set_focus_to_fwin):
11342         (set_focus_to_fwin):
11343         fixed redrawing the border w/ mousey focus when the window was entered,
11344         then the border was clicked before the FocusIn event arrived
11346         * fvwm/events.c (__handle_bpress_on_managed):
11347         * fvwm/style.c (parse_and_set_window_style):
11348         fixed some small focus problems
11350         * fvwm/fvwm.c:
11351         reformatted and cleaned up
11353         * fvwm/fvwm.1:
11354         formatting fixes
11356         * fvwm/focus.c (focus_query_click_to_raise):
11357         (focus_query_click_to_focus):
11358         * fvwm/style.c (parse_and_set_window_style):
11359         * fvwm/events.c (__test_for_motion):
11360         (__check_click_to_focus_or_raise):
11361         (__handle_focus_raise_click):
11362         (__is_bpress_window_handled):
11363         (__handle_click_to_focus):
11364         (__handle_click_to_raise):
11365         (__handle_bpress_stroke):
11366         (__handle_bpress_action):
11367         (__handle_bpress_on_root):
11368         (__handle_bpress_on_unmanaged):
11369         (__handle_bpress_on_managed):
11370         (HandleButtonPress):
11371         GFPR: completely rewrote ButtonPress handler, thus finishing the core
11372         of the new focus code; only the parsing for the new styles is missing
11374         * fvwm/virtual.c (is_pan_frame):
11375         new function
11377 2002-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11379         * fvwm/add_window.c (AddWindow):
11380         fixed compile error
11382         * fvwm/events.c (__handle_focus_raise_click):
11383         (HandleButtonPress):
11384         clean up
11386         * fvwm/events.c (__handle_focus_raise_click):
11387         * fvwm/fvwm.h (struct):
11388         * fvwm/style.c (check_window_style_change):
11389         (parse_and_set_window_style):
11390         * fvwm/session.c (MatchWinToSM):
11391         * fvwm/window_flags.h:
11392         eliminated parts of the old focus code
11394         * fvwm/focus.c (__set_focus_to_fwin):
11395         (set_focus_to_fwin):
11396         * fvwm/fvwm.c (InitVariables):
11397         * fvwm/add_window.c (destroy_window):
11398         * fvwm/events.c (__handle_focus_raise_click):
11399         * fvwm/screen.h (ScreenInfo):
11400         eliminated Scr.Ungrabbed global
11402         * fvwm/update.c (apply_window_updates):
11403         (flush_window_updates):
11404         * fvwm/icons.c (DeIconify):
11405         (Iconify):
11406         * fvwm/move_resize.c (CMD_Maximize):
11407         (__move_window):
11408         (handle_stick):
11409         * fvwm/frame.c (frame_free_move_resize_args):
11410         (__frame_setup_window):
11411         * fvwm/virtual.c (do_move_window_to_desk):
11412         (CMD_GotoDeskAndPage):
11413         (goto_desk):
11414         (MoveViewport):
11415         * fvwm/stack.c (LowerWindow):
11416         * fvwm/events.c (HandleMapNotify):
11417         (HandleVisibilityNotify):
11418         (DispatchEvent):
11419         (HandleFocusIn):
11420         (__handle_focus_raise_click):
11421         (HandleEnterNotify):
11422         (HandleMapRequestKeepRaised):
11423         * fvwm/add_window.c (setup_key_and_button_grabs):
11424         (setup_focus_policy):
11425         (destroy_window):
11426         * fvwm/focus.c (__try_other_screen_focus):
11427         (__set_focus_to_fwin):
11428         (set_focus_to_fwin):
11429         (focus_grab_buttons_on_pointer_window):
11430         (focus_grab_buttons_on_layer):
11431         (focus_grab_buttons_new):
11432         cleaned up focus grab handling.
11434         * fvwm/focus.c (focus_grab_buttons_on_pointer_window):
11435         clean up
11437 2002-08-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11439         * fvwm/add_window.c (setup_window_structure):
11440         (AddWindow):
11441         discarded unused return code
11443         * fvwm/focus.c (focus_grab_buttons):
11444         split into two fucntions and fixed a bug with ungrabbing buttons
11446         * fvwm/focus_policy.c (fpol_query_allow_set_focus):
11447         * fvwm/style.c (parse_and_set_window_style):
11448         * fvwm/icons.c (DeIconify):
11449         (DeIconify):
11450         * fvwm/events.c (HandleButtonPress):
11451         (HandleEnterNotify):
11452         (HandleLeaveNotify):
11453         (HandleMapNotify):
11454         (HandleMapRequestKeepRaised):
11455         * fvwm/add_window.c (CaptureAllWindows):
11456         * fvwm/virtual.c (UnmapDesk):
11457         (MapDesk):
11458         (do_move_window_to_desk):
11459         * fvwm/update.c (flush_window_updates):
11460         * fvwm/focus.c (set_focus_model):
11461         (DeleteFocus):
11462         (__restore_focus_after_unmap):
11463         much more GFPR work; these patches may break lots of things
11465         * fvwm/focus.c (set_focus_to_fwin):
11466         (__activate_window_by_command):
11467         (SetFocusWindow):
11468         (ReturnFocusWindow):
11469         (DeleteFocus):
11470         (ForceDeleteFocus):
11471         renamed MoveFocus to set_focus_to_fwin
11473 2002-08-07  Mikhael Goikhman  <migo@homemail.com>
11475         * libs/Fft.c (FftDrawString):
11476         removed redudant and buggy code that called DrawStringFunc before
11477         this pointer gets initialized
11479         * fvwm/focus.c (focus_query_click_to_raise):
11480         fixed possibly-uninitialized variable warning
11482         * fvwm/Makefile.am:
11483         specify stroke includes before Xft includes, may improve some cases
11485 2002-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11487         * configure.in:
11488         fixed sys/time.h detection
11490         * fvwm/events.c (HandleMappingNotify):
11491         * libs/Bindings.c (AddBinding):
11492         added MappingNotify event handler
11494         * fvwm/events.c (HandleMapRequest):
11495         removed debug code
11497         * fvwm/events.c (InitEventHandlerJumpTable):
11498         another attempt at handling "unknown" modifiers in key bindings
11500 2002-08-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11502         * fvwm/stack.c (is_on_top_of_layer_ignore_rom):
11503         * fvwm/add_window.c (destroy_window):
11504         * fvwm/focus.c (focus_grab_buttons):
11505         fixed core dump
11507 2002-08-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11509         * fvwm/focus.c (focus_force_refresh_focus):
11510         * fvwm/events.c (HandleEnterNotify):
11511         (HandlePropertyNotify):
11512         (HandleButtonPress):
11513         * fvwm/icons.c (DeIconify):
11514         * fvwm/virtual.c (MapDesk):
11515         * fvwm/focus_policy.c (fpol_query_allow_user_focus):
11516         * fvwm/update.c (apply_window_updates):
11517         * fvwm/module_interface.c:
11518         * fvwm/conditional.c (MatchesConditionMask):
11519         more GFPR work
11521         * fvwm/icons.c (Iconify):
11522         removed "#if 0"ed code
11524         * fvwm/module_interface.c:
11525         disabled the old ConfigureWindow module interface
11527         * vms/vms.c:
11528         * libs/fvwmsignal.h:
11529         * libs/Picture.c:
11530         * fvwm/ewmh_intern.h:
11531         * fvwm/events.c:
11532         * fvwm/module_interface.c:
11533         * fvwm/misc.c:
11534         use ftime.h
11536         * libs/ftime.h:
11537         new file to encapsulate time.h and sys/time.h inclusion
11539         * fvwm/stack.c:
11540         re-indented
11541         (mark_transient_subtree):
11542         (__mark_group_member):
11543         cleaned up and split into two functions
11545         * fvwm/focus.c (CMD_Focus):
11546         (CMD_FlipFocus):
11547         * fvwm/icons.c (DeIconify):
11548         clean up
11549         (FocusOn)
11550         (__activate_window_by_command):
11551         renamed function
11553         * fvwm/focus_policy.c (fpol_query_allow_set_focus):
11554         * fvwm/focus_policy.h (fpol_set_focus_by_t):
11555         * fvwm/style.c (parse_and_set_window_style):
11556         (parse_and_set_window_style):
11557         began implementing new focus control styles
11559         * fvwm/focus.c (DoSetFocus):
11560         (__restore_focus_after_unmap):
11561         (MoveFocus):
11562         (refresh_focus):
11563         more GFPR work
11564         (DoSetFocus):
11565         (__set_focus_to_fwin):
11566         function renamed
11568         * fvwm/conditional.c (MatchesConditionMask):
11569         * fvwm/focus.c (focus_query_open_grab_focus):
11570         (focus_query_close_restore_focus):
11571         (focus_does_accept_input_focus):
11572         (MoveFocus):
11573         * fvwm/events.c (HandleUnmapNotify):
11574         (HandleEnterNotify):
11575         (HandleMapNotify):
11576         (HandleMapRequestKeepRaised):
11577         renamed some functions
11579         * libs/defaults.h:
11580         * fvwm/focus_policy.c:
11581         * fvwm/focus_policy.h:
11582         prepared some future focus policy flags
11584         * configure.in:
11585         enable error message when png or xpm test compilation fails
11587         * fvwm/style.h:
11588         * fvwm/window_flags.h:
11589         * fvwm/ewmh.c (ewmh_HandleDesktop):
11590         * fvwm/style.c (parse_and_set_window_style):
11591         (check_window_style_change):
11592         * fvwm/events.c (HandleButtonPress):
11593         (HandleVisibilityNotify):
11594         began GFPR migration of *raises* focus policy flags
11596         * fvwm/focus.c (focus_is_focusd):
11597         new function
11599         * libs/Bindings.c (AddBinding):
11600         fixed handling of "unknown" modifiers in key bindings
11602         * fvwm/focus.c (focus_grab_buttons):
11603         (focus_query_grab_buttons):
11604         moved focus policy code into separate function
11606 2002-08-02  Mikhael Goikhman  <migo@homemail.com>
11608         * Makefile.am:
11609         DESTDIR fix
11611 2002-08-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11613         * fvwm/style.c (parse_and_set_window_style):
11614         * fvwm/focus.c (focus_query_grab_focus):
11615         * fvwm/events.c (HandleMapNotify):
11616         (HandlePropertyNotify):
11617         * fvwm/focus_policy.c (fpol_init_default_fp):
11618         * libs/defaults.h:
11619         new styles OverrideGrabFocus and AllowGrabFocus
11620         cleaned up focus grabbing code and moved to focus.c
11622 2002-07-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11624         * fvwm/focus.c (CMD_WarpToWindow):
11625         fixed negative arguments for unmanaged windows
11627         * fvwm/conditional.c (CMD_Direction):
11628         use PeekToken instead of GetNextToken
11629         cleaned up
11630         new direction "center"
11632 2002-07-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11634         * fvwm/events.c (addkbsubinstoarray):
11635         disabled experimental pointer warping code
11637         * fvwm/menus.c:
11638         removed menu crash debug code
11640 2002-07-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11642         * fvwm/menus.c:
11643         added tons of crash debug code
11645         * fvwm/add_window.c:
11646         made a lot of internal functions static
11648         * fvwm/add_window.c (setup_button_windows):
11649         (destroy_title_window):
11650         (destroy_button_windows):
11651         (destroy_resize_handle_windows):
11652         (destroy_auxiliary_windows):
11653         (destroy_icon):
11654         (destroy_window):
11655         * fvwm/icons.c (CreateIconWindow):
11656         safety patches w/ XDeleteContext
11658         * fvwm/menus.c (DestroyMenu):
11659         fixed a crash w/ accessing already deleted menus
11661 2002-07-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11663         * fvwm/menus.c (get_menu_options):
11664         fixed menu context rectangle "icon" if the icon was not just a pixmap
11666 2002-07-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11668         * fvwm/events.c (HandleMapNotify):
11669         (HandleMapRequestKeepRaised):
11670         (HandleUnmapNotify):
11671         * fvwm/ewmh_events.c (ewmh_WMStateModal):
11672         * fvwm/ewmh.c (ewmh_HandleDesktop):
11673         * fvwm/style.c (parse_and_set_window_style):
11674         removed old do_grab_focus_when_created and *_when_transient_* flags
11676 2002-07-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11678         * fvwm/conditional.c (MatchesConditionMask):
11679         * fvwm/focus.c (DoSetFocus):
11680         * fvwm/session.c (MatchWinToSM):
11681         * fvwm/module_interface.c (SETOLDFLAGS):
11682         removed old is_lenient flag
11684         * fvwm/bindings.c:
11685         * fvwm/style.c (__simplify_style_list):
11686         (simplify_style_list):
11687         reformatted
11689         * fvwm/window_flags.h:
11690         * fvwm/style.h:
11691         access macros for focus policy flags structures
11692         reformatted
11694         * fvwm/focus_policy.c:
11695         * fvwm/focus_policy.h:
11696         new files, begin great focus policy rewrite aka GFPR
11698 2002-07-22  Bob Woodside  <dumbledore@woodsway.com>
11700         * fvwm/placement.c (PlaceWindow):
11701         Fixed interaction between CascadePlacement and StartsOnPage
11703 2002-07-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11705         * libs/fvwmsignal.c (fvwmSelect):
11706         call alloca(0) in fvwmSelect to make sure the memory is not leaked in
11707         modules
11709 2002-07-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11711         * fvwm/add_window.c (CaptureOneWindow):
11712         fixed a core dump w/ windows being destroyed during a recapture
11713         (AddWindow):
11714         removed duplicate check if new windows still exist
11716         * fvwm/placement.c (CMD_PlaceAgain):
11717         * fvwm/move_resize.c (move_window_doit):
11718         (__move_icon):
11719         * fvwm/virtual.c (MapDesk):
11720         (MoveViewport):
11721         (do_move_window_to_desk):
11722         * fvwm/icons.c (AutoPlaceIcon):
11723         (ChangeIconPixmap):
11724         (Iconify):
11725         some cleanup in movement code
11726         new option "Icon" to PlaceAgain command
11727         adapted documentation accordingly
11729         * fvwm/move_resize.c (move_window_doit):
11730         (__move_window):
11731         renamed function
11733 2002-07-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11735         * libs/Flocale.c (FlocaleRotateDrawString):
11736         create gcs only once
11738         * fvwm/fvwm.1:
11739         removed some references to Recapture
11740         UseDecor, UseStyle, AddToDecor, ChangeDecor, DestroyDecor, UpdateDecor,
11741         ButtonStyle, BorderStyle and TitleStyle are planned to be removed in 3.0
11743         * libs/gravity.c (gravity_parse_multi_dir_argument):
11744         fixed "all" multidir selecting "center" too
11746         * libs/Fft.c (FftDrawString):
11747         * libs/Flocale.c (FlocaleRotateDrawString):
11748         (FlocaleFontStructDrawString):
11749         (FlocaleDrawString):
11750         fixed some text placement bugs w/ shadow text
11751         (FlocaleGetShadowTextPosition):
11752         implemented "center" shadows
11754 2002-07-20  olicha  <olivier.chapuis@free.fr>
11756         * libs/Flocale.c (FlocaleRotateDrawString):
11757         Removed some static declarations
11759 2002-07-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11761         * libs/gravity.c (gravity_multi_dir_to_dir):
11762         * libs/gravity.h (enum):
11763         new function, cleaned up
11764         (enum):
11765         * fvwm/fvwm.h (FvwmWindow):
11766         * libs/Fft.c:
11767         * fvwm/geometry.c:
11768         * fvwm/borders.c:
11769         moved text_rotation_type to gravity.h and renamed to rotation_type
11771         * libs/Flocale.h:
11772         fixed several bugs in the access macros
11774         * libs/Flocale.c:
11775         removed unused static FlocaleSeted
11776         (FlocaleFontStructDrawString):
11777         simplified function
11779         * fvwm/virtual.c (CMD_EdgeCommand):
11780         * fvwm/windowshade.c (CMD_WindowShade):
11781         * fvwm/conditional.c (CMD_Direction):
11782         adapted to changes in ParseDirectionArgument
11784         * libs/gravity.h:
11785         * libs/gravity.c (ParseDirectionArgument):
11786         new direction "Center"
11788         * fvwm/virtual.c (CMD_EdgeCommand):
11789         reformatted
11791 2002-07-18  olicha  <olivier.chapuis@free.fr>
11793         * libs/PictureUtils.c (PictureRGBtoPixel):
11794         (decompose_mask):
11795         Fixed(??) color allocation for some visuals
11797 2002-07-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11799         * libs/Flocale.c (FlocaleFontStructDrawString):
11800         a little code cleanup
11802         * fvwm/events.c (HandleEnterNotify):
11803         removed debug code
11804         anothe click+drag fix
11806         * libs/Pointer.c (GetLocationFromEventOrQuery):
11807         * fvwm/focus.c (SetPointerEventPosition):
11808         * fvwm/functions.c (CheckActionType):
11809         * fvwm/builtins.c (CMD_StrokeFunc):
11810         * fvwm/move_resize.c (moveLoop):
11811         (resize_window):
11812         fixed some bugs w/ pointer on wrong screen
11814 2002-07-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11816         * fvwm/events.c (HandleLeaveNotify):
11817         fixed problem w/ click+drag and mousey focus
11819         * fvwm/menus.c (size_menu_horizontally):
11820         fixed menu style SubmenusLeft w/ icons in menu items
11822 2002-07-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11824         * fvwm/menuitem.c (menuitem_paint):
11825         * fvwm/menus.h:
11826         * fvwm/menus.c (paint_menu_gradient_background):
11827         (get_menu_paint_item_parameters):
11828         removed circular dependency of menus.c and menuitem.c by using callback
11829         functions
11831 2002-07-17  olicha  <olivier.chapuis@free.fr>
11833         * fvwm/menuitem.c:
11834         A -Wall fix
11836         * fvwm/fvwm.c (InitVariables):
11837         (main):
11838         * fvwm/colorset.c (parse_colorset):
11839         (alloc_colorset):
11840         (CMD_ReadWriteColors):
11841         * fvwm/builtins.c (CMD_ColorLimit):
11842         * libs/PictureUtils.h:
11843         * libs/PictureUtils.c (PictureReduceColor):
11844         (PictureReduceRGBColor):
11845         (PictureRGBtoPixel):
11846         (PictureAllocColor):
11847         (PictureFreeColors):
11848         (PictureGetNextColor):
11849         (colors_alloc_fail):
11850         (my_alloc_color):
11851         (AllocColors*):
11852         (AllocColorTable):
11853         (PictureAllocColorTable):
11854         * libs/PictureImageLoader.c (PImageXpmAllocColor):
11855         (PImageXpmFreeColor):
11856         (PImageLoadXpm):
11857         * libs/PictureBase.c (PictureInitCMap):
11858         * libs/Graphics.c (AllocLinearGradient):
11859         * libs/ColorUtils.c (GetShadow):
11860         (GetHilite):
11861         (GetForeShadow):
11862         (GetTintedPixel):
11863         (GetSimpleColor):
11864         (GetColor):
11865         (fvwmlib_clone_color):
11866         * libs/PictureGraphics.c (PGraphicsTintRectangle):
11867         Implemented a new color limit method
11869 2002-07-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11871         * fvwm/move_resize.c (moveLoop):
11872         fixed problem moving the pointer off screen while moving a window
11873         (AnimatedMoveAnyWindow):
11874         fixed pointer warping w/ multiple screens and animated window motion
11876 2002-07-12  olicha  <olivier.chapuis@free.fr>
11878         * fvwm/menus.c (get_menu_paint_item_parameters):
11879         (paint_menu_gradient_background):
11880         * fvwm/menuitem.c (menuitem_paint):
11881         * fvwm/menuitem.h:
11882         * fvwm/menus.h:
11883         Fixed B/DGradient with Xft fonts
11885         * libs/Colorset.h:
11886         * libs/ColorUtils.c (GetTintedColor):
11887         (GetTintedPixel):
11888         * fvwm/colorset.c (parse_simple_tint):
11889         (parse_colorset):
11890         (alloc_colorset):
11891         Implemented fgTint colorset option
11893         * libs/PictureImageLoader.c:
11894         * libs/PictureUtils.c:
11895         * libs/PictureUtils.h:
11896         * libs/Makefile.am:
11897         Moved color limitation and some rgb to pixel functions from
11898         PictureImageLoader to new files PictureUtils.c, PictureUtils.h
11900         * fvwm/colorset.c (parse_colorset):
11901         * libs/PictureGraphics.c (PCreateTintedPixmap):
11902         (PGraphicsTintRectangle):
11903         Implemented tinting for X server without Xrender support and
11904         did color limitation when tinting
11907 2002-07-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11909         * fvwm/events.c (WaitForButtonsUp):
11910         fixed handling of button release events
11912 2002-07-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11914         * fvwm/menus.c (MenuInteraction):
11915         fixed core dump w/ dynamic popdown action destroying a menu
11916         (paint_menu_gradient_background):
11917         fixed hang and/or incorrect drawing of b and d gradients in menus
11919         * fvwm/events.c (HandleEnterNotify):
11920         (HandleLeaveNotify):
11921         improved LEAVE_WINDOW/ENTER_WINDOW handling
11923 2002-07-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11925         * libs/Colorset.c (SetWindowBackground):
11926         (SetWindowBackgroundWithOffset):
11927         (ScrollPixmap):
11928         implemented new functions to allow pixmap backgrounds with an offset
11930 2002-07-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11932         * fvwm/events.c (HandleMapRequestKeepRaised):
11933         send Map/UnmapNotify before iconyfying, not after
11935 2002-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11937         * fvwm/events.c (HandleMapRequestKeepRaised):
11938         fake a MapNotify and then an UnmapNotify when a window is created iconic
11940         * fvwm/add_window.c (AddWindow):
11941         workaround for buggy TK menu positioning
11943         * fvwm/module_interface.c (FlushMessageQueue):
11944         (PositiveWrite):
11945         (get_pipe_name):
11946         tried to fix module communication deadlock w/ sync mask and a full write
11947         pipe
11949         * libs/Strings.c:
11950         re-indented file
11952         * libs/defaults.h:
11953 2002-07-06  olicha  <olivier.chapuis@free.fr>
11955         * libs/Flocale.c (FlocaleGetFontSet):
11956         Removed some unwanted code
11958 2002-07-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11960         * fvwm/events.c (HandleLeaveNotify):
11961         (HandleEnterNotify):
11962         reduced the number of MX_LEAVE/ENTER_WINDOW messages
11964         * fvwm/events.c (CMD_XSync):
11965         very experimental patch to cycle through subwindows accepting keyboard
11966         input; call Xsync command repeatedly to test; crashes fvwm if more than
11967         1000 subwindows are used;
11969         * fvwm/focus.c (CMD_WarpToWindow):
11970         fixed a bug in warpttowindow command with subwindows of unmanaged
11971         windows
11973 2002-07-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11975         * fvwm/events.c (HandlePropertyNotify):
11976         * fvwm/events.h:
11977         handle changes in the size_inc and base_size hints during opaque
11978         resizing.
11980         * fvwm/events.c (HandleButtonPress):
11981         ClickToFocus + ClickToFocusPassesClickOff now blocks event handling
11982         until the button is released again; this restores the old behaviour
11983         from 2.3.23 and before with click+drag and rxvt/aterm
11985 2002-06-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11987         * fvwm/update.c (apply_window_updates):
11988         fixed applying neverfocus to currently focused window; decorations
11989         partially drawn hilighted
11991 2002-07-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
11993         * fvwm/menucmd.c (menu_func):
11994         another module/menu/context window fix
11995         do not use global Fw anymore
11997 2002-07-05  olicha  <olivier.chapuis@free.fr>
11999         * libs/Flocale.c (FlocaleStringToString2b):
12000         Fixed crash with big5-0 FontStruct
12002 2002-07-04  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12004         * fvwm/menucmd.c (menu_func):
12005         fixed context window of menus invoked by a module
12006         (menu_func):
12007         fixed context menus on windows
12009         * libs/vpacket.h (ConfigWinPacket):
12010         * fvwm/module_interface.c (CONFIGARGSNEW):
12011         * fvwm/fvwm.h (FvwmWindow):
12012         fixed bugs in type conversions for transmitting certain information to
12013         modules
12015         * fvwm/functions.c (CheckActionType):
12016         fixed window selection problem w/ menus invoked from modules
12018 2002-07-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12020         * fvwm/gnome.c (GNOME_HandlePropRequest):
12021         -Wall fixes
12023         * fvwm/module_interface.c (ExecuteCommandQueue):
12024         fixed compile bug w/ --enable-debug-msgs
12026 2002-06-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12028         * fvwm/events.c (HandleButtonPress):
12029         (HandleKeyPress):
12030         * fvwm/menus.c (MenuInteraction):
12031         (do_menu):
12032         * fvwm/windowlist.c (CMD_WindowList):
12033         * fvwm/menucmd.c (menu_func):
12034         * fvwm/module_interface.c (ExecuteModuleCommand):
12035         * fvwm/add_window.c (adjust_fvwm_internal_windows):
12036         go away, evil globals! [removed the useless global variable
12037         "ButtonWindow"]
12039         * fvwm/events.c (HandleUnmapNotify):
12040         (HandleMapNotify):
12041         * fvwm/icons.c (Iconify):
12042         * fvwm/window_flags.h (IS_ICONIFY_PENDING):
12043         * fvwm/fvwm.h (struct):
12044         renamed is_deiconify_pending to is_iconify_pending
12045         some re-indenting
12047 2002-06-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12049         * fvwm/menus.c (MenuInteraction):
12050         (pop_menu_down):
12051         (menu_enter_tear_off_menu):
12052         (do_menu):
12053         * fvwm/events.c (HandleButtonPress):
12054         (HandleButtonRelease):
12055         (HandleKeyPress):
12056         (GetContext):
12057         * fvwm/menucmd.c (menu_func):
12058         (menu_func):
12059         * fvwm/module_interface.c (ExecuteModuleCommand):
12060         go away, evil globals! [removed the useless global variable "Context"]
12061         removed is_menu_from_frame_or_window_or_titlebar flag
12063         * fvwm/module_interface.c:
12064         * fvwm/windowlist.c:
12065         re-indented files
12067 2002-06-28  Mikhael Goikhman  <migo@homemail.com>
12069         * fvwm/menuitem.c (menuitem_paint):
12070         fixed fg color of the inactive disabled menu item
12072         * NEWS:
12073         old typo
12074         * fvwm/fvwm.1:
12075         removed a mention of RedHat (I don't think it is correct),
12076         reworded a mention of fvwm95
12078 2002-06-26  Mikhael Goikhman  <migo@homemail.com>
12080         * **/*.c:
12081         tabify only the leading spaces, untabify the middle of line
12083 2002-06-25  David Fries  <dfries@mail.win.org>
12085         * fvwm/fvwm.1:
12086         * fvwm/windowlist.c:
12087         Added code to sort based on the class name of a window for
12088         the WindowList function.
12090 2002-06-25  olicha  <olivier.chapuis@free.fr>
12092         * acinclude.m4:
12093         A minor fix
12095 2002-06-25  Mikhael Goikhman  <migo@homemail.com>
12097         * AUTHORS:
12098         add Anders Andersson (spelling fixes in all man pages) and Steve Talley
12100 2002-06-24  Steve Talley  <stephen.talley@sun.com>
12102         * fvwm/add_window.c:
12103         * fvwm/add_window.h:
12104         * fvwm/fvwm.1:
12105         * fvwm/fvwm.h:
12106         * fvwm/icons.c:
12107         * fvwm/icons.h:
12108         * fvwm/style.c:
12109         * fvwm/style.h:
12110         * libs/defaults.h:
12111         New Style option IconSize
12113 2002-06-24  Mikhael Goikhman  <migo@homemail.com>
12115         * NEWS, configure.in:
12116         changed version to 2.5.3
12118 2002-06-24  Mikhael Goikhman  <migo@homemail.com>
12120         * INSTALL.fvwm:
12121         removed C++ section
12123         * fvwm/fvwm.1:
12124         * libs/FlocaleCharset.c:
12125         small fixes
12127 2002-06-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12129         * fvwm/events.c (WaitForButtonsUp):
12130         use the wait cursot only after the 20th pass through the loop
12132 2002-06-21  Dan Espen  <dane@mk.telcordia.com>
12134         * fvwm/fvwm.1 (Examples): Language check.
12135         PipeRead as synchronous Exec.
12136         Better example for PipeRead.
12138 2002-06-21  olicha  <olivier.chapuis@free.fr>
12140         * fvwm/fvwm.1:
12141         * NEWS:
12142         Documented StringEncoding= in font name
12144         * INSTALL.fvwm
12145         Removed --disable-compound-text doc
12147 2002-06-20  olicha  <olivier.chapuis@free.fr>
12149         * libs/FBidi.h (FBidiConvert):
12150         Fixed compile if !HAVE_BIDI
12152 2002-06-19  olicha  <olivier.chapuis@free.fr>
12154         * fvwm/fvwm.c (InitVariables):
12155         (StartupStuff):
12156         Allocate colorset 0 in InitVariable in the place of StartupStuff.
12157         This fix a "null expression" at init in menustyle.c (menustyle_update)
12159 2002-06-19  Mikhael Goikhman  <migo@homemail.com>
12161         * configure.in:
12162         reworded supported feature listing, fixed the default xft detection
12163         * INSTALL.fvwm:
12164         added the "Supported Features" section
12166 2002-06-19  olicha  <olivier.chapuis@free.fr>
12168         * fvwm/colorset.h:
12169         Removed not useful #define/#undef FVWM_COLORSET_PRIVATE
12171         * INSTALL.fvwm:
12172         Removed --enable-mulibyte and --disable-compound-text config option
12173         documentation. s/enable-xft/disable-xft/ and document --disable-xrender
12175         * configure.in:
12176         Xft is on by default no
12178         * libs/FlocaleCharset.c (*):
12179         * libs/FlocaleCharset.h:
12180         * libs/Ficonv.c (*):
12181         * libs/Ficonv.h:
12182         * libs/Flocale.c (*):
12183         * libs/Flocale.h:
12184         * libs/Fft.c (*):
12185         * libs/FftInterface.h:
12186         * libs/FBidi.c:
12187         * libs/FBidi.h:
12188         * fvwm/ewmh_names.c ():
12189         Some cleanup. Implemented StringEncoding= in font names. Fixed
12190         string encoding for xft fonts. Try to be more cleaver about defaults
12191         charsets. Improvement in the locale charset table.
12193         * fvwm/fvwm.1:
12194         Some documentation cleanup regarding Xft
12196 2002-06-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12198         * fvwm/functions.c (find_func_type):
12199         fixed bug i introduced w/ last commit
12201         * fvwm/fvwm.c (Done):
12202         (StartupStuff):
12203         * fvwm/functions.c (functions_is_complex_function):
12204         * fvwm/builtins.c (CMD_DestroyFunc):
12205         (CMD_AddToFunc):
12206         (CMD_Plus):
12207         moved functions to functions.c
12208         general cleanup
12210         * fvwm/functable.c:
12211         * fvwm/functable.h:
12212         * fvwm/functions.h:
12213         * fvwm/commands.h:
12214         * fvwm/functions.c:
12215         moved some types and functions to other/new files
12217         * fvwm/functions.c:
12218         * fvwm/expand.c (expand_vars_extended):
12219         (expand_vars):
12220         functions moved to new file
12222         * fvwm/functions.c:
12223         reindented file
12225 2002-06-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12227         * fvwm/events.c (CoerceEnterNotifyOnCurrentWindow):
12228         fixed colourmap focus problem
12230         * **/*.[ch]:
12231         tabified all files and removed all trailing spaces
12233         * fvwm/move_resize.c (move_window_doit):
12234         * fvwm/virtual.c (CMD_MoveToDesk):
12235         MoveToPage and MoveToDesk no longer unstick windows
12237 2002-06-17  Mikhael Goikhman  <migo@homemail.com>
12239         * INSTALL.fvwm:
12240         small improvements
12242         * configure.in:
12243         reworded some names of supported features
12245 2002-06-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12247         * fvwm/update.c (apply_window_updates):
12248         * fvwm/session.c (MatchWinToSM):
12249         * fvwm/add_window.c (setup_window_structure):
12250         * fvwm/windowshade.c (CMD_WindowShade):
12251         * fvwm/window_flags.h:
12252         fixed a problem w/ shaded windows changind the title direction
12254         * fvwm/geometry.c (get_shaded_geometry):
12255         fixed shading window to 0 width or height
12257         * fvwm/add_window.c (AddWindow):
12258         fixed a memory leak and an initial window placement bug
12260 2002-06-15  Mikhael Goikhman  <migo@homemail.com>
12262         * configure.in:
12263         minor improvements in output, added bin/fvwm-perllib
12265 2002-06-12  Mikhael Goikhman  <migo@homemail.com>
12267         * fvwm/menustyle.c (CMD_CopyMenuStyle):
12268         fixed copying PopupOffset values in CopyMenuStyle
12270         * NEWS:
12271         Copied 2.4.8 NEWS
12273 2002-06-10  Mikhael Goikhman  <migo@homemail.com>
12275         * libs/Strings.c:
12276         * libs/Strings.h:
12277         added CopyStringWithQuotes, not perfect, but works for now
12279 2002-06-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12281         * fvwm/functions.h:
12282         * fvwm/commands.h:
12283         * fvwm/functions.c (func_config):
12284         * libs/FScreen.c (FScreenConfigureSLSScreens):
12285         (FScreenConfigureModule):
12286         * fvwm/virtual.c (CMD_XineramaSlsScreens):
12287         new command XineramaSLSScreens
12289         * libs/FScreen.c:
12290         cleaned up Xinerama ifdefs
12292 2002-06-07  Dan Espen  <dane@mk.telcordia.com>
12294         * NEWS:
12295         * fvwm/fvwm.1 (FONT SHADOW EFFECTS): Reword.
12297 2002-06-07  olicha  <olivier.chapuis@free.fr>
12299         * libs/Flocale.h:
12300         * libs/Flocale.c (FlocaleGetShadowTextPosition):
12301         Some shadow text position fixes
12303 2002-06-06  olicha  <olivier.chapuis@free.fr>
12305         * fvwm/update.c (apply_window_updates):
12306         Fixed the position of shaded windows after certain style update
12308         * acinclude.m4:
12309         Fixed some options names
12311 2002-06-06  Mikhael Goikhman  <migo@homemail.com>
12313         * fvwm/module_interface.c (CMD_SendToModule):
12314         fixed SendToModule when the first parameter contains quotes
12316 2002-06-06  olicha  <olivier.chapuis@free.fr>
12318         * fvwm/fvwm.c (main):
12319         * fvwm/ewmh.c (EWMH_Init):
12320         Init the EWMH before reading the config. Always setup the working
12321         area.
12323 2002-06-05  olicha  <olivier.chapuis@free.fr>
12325         * fvwm/update.c (apply_window_updates):
12326         Fixed the position of a shaded window during a style update
12327         (do_redecorate)
12329         * libs/Flocale.c (FlocaleRotateDrawString):
12330         (FlocaleGetShadowTextPosition):
12331         Fixed side title text position if the font has no shadow
12333         * acconfig.h:
12334         * libs/Ficonv.c (FiconvInit):
12335         * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
12336         * libs/Flocale.c (FlocaleInit):
12337         (FlocaleRotateDrawString):
12338         (FlocaleGetFontSet):
12339         (FlocaleGetFontOrFontSet):
12340         (FlocaleLoadFont):
12341         (FlocaleDrawString):
12342         (FlocaleTextWidth):
12343         (FlocaleFreeNameProperty):
12344         (FlocaleGetNameProperty):
12345         (FlocaleTextListToTextProperty):
12346         Finish to remove the multibyte patch. This gives a more clean code
12347         and can only prevent bugs
12349 2002-06-05  Mikhael Goikhman  <migo@homemail.com>
12351         * fvwm/placement.c (PlaceWindow):
12352         fixed CascadePlacement with huge windows (xterm -g 240x100),
12353         that were aligned to bottom-right instead of top-left;
12354         small adjustments (removed border_width from calculations,
12355         don't place normal windows at 0, commented out some strange code)
12357 2002-06-04  Mikhael Goikhman  <migo@homemail.com>
12359         * NEWS:
12360         document CascadePlacement and FvwmIconMan improvements
12362         * fvwm/fvwm.1:
12363         typo
12365 2002-06-03  Mikhael Goikhman  <migo@homemail.com>
12367         * fvwm/add_window.c (adjust_fvwm_internal_windows):
12368         * fvwm/fvwm.c (InitVariables):
12369         * fvwm/placement.c (PlaceWindow):
12370         * fvwm/screen.h (struct ScreenInfo):
12371         improved *CascadePlacement, if the last placed window does not exist
12372         any more, reuse the last used position instead of adding a new cascade
12374 2002-06-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12376         * fvwm/events.c (HandleEnterNotify):
12377         * fvwm/fvwm.c (InitVariables):
12378         * fvwm/events.h:
12379         Fixed colormap handling over decorative parts of a window
12381 2002-06-03  olicha  <olivier.chapuis@free.fr>
12383         * fvwm/module_interface.c (make_named_packet):
12384         Fixed an write out of memory bug. This complete Mikhail Kruk patch
12385         related to named module packet
12387 2002-06-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12389         * fvwm/focus.c (focus_grab_buttons):
12390         * fvwm/events.c (HandleButtonPress):
12391         fixed a problem w/ ClickToFocus + ClickToFocusRaisesOff
12393 2002-06-03  Mikhael Goikhman  <migo@homemail.com>
12395         * fvwm/bindings.c (ParseBinding):
12396         replaced an error "Illegal mouse button" with a descriptive warning
12397         when a button number is greater than NUMBER_OF_MOUSE_BUTTONS
12399 2002-05-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12401         * fvwm/events.c (GetContext):
12402         fixed key bindings on decorations
12404         * fvwm/events.h:
12405         removed XEVMASK_DECORW
12407 2002-05-31  olicha  <olivier.chapuis@free.fr>
12409         * NEWS:
12410         * fvwm/fvwm.1:
12411         Documented shadow effect in a new section FONT EFFECTS
12413 2002-05-31  olicha  <olivier.chapuis@free.fr>
12415         * libs/Fft.c (FftDrawString):
12416         * libs/Colorset.c (DumpColorset):
12417         (LoadColorset):
12418         * libs/Colorset.h:
12419         * fvwm/colorset.c (parse_colorset):
12420         New colorset option fg_alpha which defines an alpha for rendering
12421         text with Xft
12423 2002-05-29  olicha  <olivier.chapuis@free.fr>
12425         * libs/Fft.c (FftSetupEncoding):
12426         * libs/Fft.h:
12427         * libs/FRender.h:
12428         Added Xft2 support
12430         * acinclude.m4:
12431         * configure.in:
12432         Added detection for fontconfig and Xft2. Added FT2 CFLAGS and LIBS
12433         to Xft FLAGS and LIBS
12435         * fvwm/Makefile.am:
12436         * libs/Makefile.am:
12437         Put $(Xft_CFLAGS) before $(X_CFLAGS) to be able to use an independent
12438         Xft2 library. Removed FT2 CFLAGS and LIBS
12440 2002-05-27  olicha  <olivier.chapuis@free.fr>
12442         * acinclude.m4:
12443         * acconfig.h:
12444         * configure.in:
12445         Some Xft2 and fontconfig preparation
12447         * libs/Flocale.h:
12448         * libs/Flocale.c (FlocaleParseShadow):
12449         (FlocaleLoadFont):
12450         (FlocaleGetShadowTextPosition):
12451         Added offset to shadow text
12453         * libs/Flocale.h:
12454         Fixed the position of ne shadow text and remove some unused #define
12456 2002-05-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12458         * fvwm/colorset.c (parse_colorset):
12459         fixed integer overflow in average colour calculation
12461 2002-05-27  olicha  <olivier.chapuis@free.fr>
12463         * libs/gravity.c (GetNextMultiDirection):
12464         (ParseMultiDirectionArgument):
12465         * libs/gravity.h:
12466         Added a multi direction type which is a "<<" version of direction
12467         type. Added a parse and a next functions
12469         * libs/Flocale.h:
12470         * libs/Flocale.c (FlocaleParseShadow):
12471         (FlocaleGetNextShadowDirection):
12472         (FlocaleGetShadowTextPosition):
12473         Used gravity multi direction type and functions. Removed
12474         FlocaleGetNextShadowDirection
12476 2002-05-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12478         * fvwm/focus.c (restore_focus_after_unmap):
12479         fixed a problem w/ colormap transition when transient window died
12481         * fvwm/add_window.c (AddWindow):
12482         clean up
12484         * fvwm/session.c (getUniqueStateFilename):
12485         applied security patch by Jan Echternach
12487         * fvwm/fvwm.c (InitVariables):
12488         Properly initialise Scr.flags.is_pointer_on_this_screen
12490         * libs/fvwmlib.h (FvwmFont):
12491         * fvwm/fvwm.c (setVersionInfo):
12492         * configure.in:
12493         * config.h.in:
12494         * acconfig.h (MULTIBYTE):
12495         removed MULTIBYTE option (unconditionally on)
12497 2002-05-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12499         * libs/gravity.c (ParseDirectionArgument):
12500         allow "t", "u", ... shortcuts as direction arguments
12502         * fvwm/style.c (check_window_style_change):
12503         (parse_and_set_window_style):
12504         * fvwm/frame.c (frame_setup_border):
12505         (frame_get_shading_laziness):
12506         (frame_get_sidebar_geometry):
12507         * fvwm/decorations.c (SelectDecor):
12508         * fvwm/add_window.c (setup_style_and_decor):
12509         (setup_resize_handle_cursors):
12510         (setup_resize_handle_windows):
12511         (change_resize_handle_windows):
12512         (destroy_auxiliary_windows):
12513         * fvwm/borders.c (border_get_border_gcs):
12514         (border_draw_border_parts):
12515         * fvwm/style.h (SCSET_HAS_BORDER):
12516         * fvwm/fvwm.h (FvwmWindow):
12517         * fvwm/window_flags.h (SET_HAS_BORDER):
12518         new styles NoBorder/Border
12520 2002-05-26  olicha  <olivier.chapuis@free.fr>
12522         * libs/Flocale.h:
12523         * libs/Flocale.c (FlocaleParseShadow):
12524         (FlocaleGetNextShadowDirection):
12525         (FlocaleGetShadowTextPosition):
12526         (FlocaleLoadFont):
12527         Implemented multidirectional shadow text rendering
12529         * libs/Flocale.h:
12530         * libs/Flocale.c
12531         (FlocaleFontStructDrawString):
12532         (FlocaleRotateDrawString):
12533         (FlocaleLoadFont):
12534         (FlocaleDrawString):
12535         (FlocaleTextWidth):
12536         * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
12537         * libs/Fft.c (FftDrawString):
12538         Cleanup the FlocaleFont structure by addings some flags
12540 2002-05-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12542         * fvwm/events.c (HandleFocusIn):
12543         * fvwm/add_window.c (adjust_fvwm_internal_windows):
12544         * fvwm/screen.h (ScreenInfo):
12545         * fvwm/focus.c (FocusOn):
12546         ignore EnterNotify events while a window is waiting to receive focus
12547         from the Focus or FlipFocus commands; should prevent plenty of race
12548         contidions caused by executing complex functions by a key press, button
12549         press or from a menu; fixes Alt-Tab problem
12551         * fvwm/events.c (HandleMapNotify):
12552         immediately draw window decorations when window is mapped; the new frame
12553         drawing code takes care of suppressing unnecessary redraws
12554         (HandleLeaveNotify):
12555         fixed a bug w/ LeaveNotify event with NotifyGrab
12557 2002-05-22  olicha  <olivier.chapuis@free.fr>
12559         * libs/Flocale.h:
12560         * libs/Fft.c (FftDrawString):
12561         * libs/Flocale.c (FlocaleFontStructDrawString):
12562         (FlocaleRotateDrawString):
12563         (FlocaleLoadFont):
12564         (FlocaleGetShadowTextPosition):
12565         (FlocaleDrawString):
12566         (FlocaleDrawUnderline):
12567         (FlocaleTextWidth):
12568         Implemented negative shadow text
12570 2002-05-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12572         * fvwm/menucmd.c (CMD_AddToMenu):
12573         * fvwm/windowlist.c (CMD_WindowList):
12574         * fvwm/menus.h:
12575         * fvwm/menus.c
12576         changed signature of AddToMenu
12578         * fvwm/menus.c (clone_menu_root_static):
12579         fixed problem w/ menu style usage count and tear off menus
12580         fixed core dump w/ not copying the missing sub menu function in tear
12581         off menus
12582         (clone_menu_item_list):
12583         (AddToMenu):
12584         (add_another_menu_item):
12585         (size_menu_vertically):
12586         fixed additional "More..." items in sub menus of torn off menus
12588 2002-05-22  Mikhael Goikhman  <migo@homemail.com>
12590         * libs/colorset.h:
12591         fixed #endif warning
12592         * fvwm/ConfigFvwmDefaults:
12593         added CirculateSkip to tear off menus
12594         * fvwm.1:
12595         fixed ShadeAgain quoting
12597 2002-05-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12599         * fvwm/events.c (HandleButtonPress):
12600         allow to pass the focus click to applications and have a function bound
12601         to it at the same time
12603         * fvwm/fvwm.c:
12604         * fvwm/colorset.h:
12605         fixed compilation problem
12607 2002-05-20  olicha  <olivier.chapuis@free.fr>
12609         * libs/PictureImageLoader.c (PImageRGBtoPixel):
12610         Fixed blue colour in png image and ewmh icons
12612         * libs/Flocale.c (FlocaleLoadFont):
12613         Removed some debug code
12615         * fvwm/colorset.c (parse_colorset):
12616         * libs/fvwmlib.h:
12617         * libs/ColorUtils.c (GetForeShadowColor):
12618         Added Mikhael algo to compute the default fgsh
12620 2002-05-18  Mikhael Goikhman  <migo@homemail.com>
12622         * fvwm/functions.c (expand_extended_var):
12623         expand $[fgsh.csN], use constants instead of numbers
12625 2002-05-17  olicha  <olivier.chapuis@free.fr>
12627         * libs/Flocale.c (FlocaleDrawString):
12628         (FlocaleDrawUnderline):
12629         * libs/Flocale.h:
12630         Removed some unused and debug code
12632 2002-05-17  olicha  <olivier.chapuis@free.fr>
12634         * fvwm/menuitem.c (draw_underline):
12635         * libs/Flocale.h:
12636         * libs/Flocale.c (FlocaleDrawUnderline):
12637         Move draw_underline into Flocale.c and fix underline position with
12638         shadow rendering
12640 2002-05-17  olicha  <olivier.chapuis@free.fr>
12642         * fvwm/style.c (update_window_color_style):
12643         (update_window_color_hi_style):
12644         * fvwm/move_resize.c (DisplayPosition):
12645         (DisplaySize):
12646         * fvwm/menuitem.c (menuitem_paint):
12647         * fvwm/borders.c (get_common_decorations):
12648         (border_get_titlebar_draw_descr):
12649         * fvwm/fvwm.h:
12650         * fvwm/icons.c (DrawIconWindow):
12651         Pass the colorset to text drawing via the FlocaleWinString structure
12653         * libs/fvwmlib.h:
12654         * libs/ColorUtils.c (GetForeShadowColor):
12655         (GetForeShadow):
12656         * fvwm/colorset.c (parse_colorset):
12657         * libs/Colorset.h:
12658         * libs/Colorset.c (DumpColorset):
12659         (LoadColorset):
12660         Added fgsh colorset and two new functions GetForeShadowColor and
12661         GetForeShadow which should be modified
12663         * libs/Makefile.am:
12664         * libs/Fft.h:
12665         * libs/FftInterface.h (new file):
12666         * libs/Fft.c (FftDrawString):
12667         * libs/Flocale.h:
12668         * libs/Flocale.c (FlocaleFontStructDrawString):
12669         (FlocaleRotateDrawString):
12670         (FlocaleDrawString):
12671         (FlocaleTextWidth):
12672         (FlocaleLoadFont):
12673         Implemented text shadow rendering
12675 2002-05-11  olicha  <olivier.chapuis@free.fr>
12677         * fvwm/builtins.h:
12678         * fvwm/builtins.c (refresh_window):
12679         * fvwm/update.c (apply_window_updates):
12680         * fvwm/update.h:
12681         * fvwm/style.c (check_window_style_change):
12682         ParentalRelativity style is now dynamic
12684 2002-05-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12686         * fvwm/menuitem.c (menuitem_paint):
12687         fixed menu item hilight area
12689 2002-05-09  olicha  <olivier.chapuis@free.fr>
12691         * libs/Makefile.am:
12692         * libs/XError.c (request_name):
12693         * libs/PictureImageLoader.c (PImageLoadPng):
12694         (PImageCreatePixmapFromArgbData):
12695         * libs/PictureGraphics.c (PGraphicsTintRectangle):
12696         (PGraphicsTileRectangle):
12697         (PGraphicsCopyFvwmPicture):
12698         * libs/FRenderInit.c (new file):
12699         * libs/FRenderInit.h (new file):
12700         * libs/FRenderInterface.h:
12701         * libs/FRender.c (*):
12702         * fvwm/colorset.c (parse_tint):
12703         (parse_colorset):
12704         * fvwm/fvwm.c (main):
12705         * fvwm/events.c (HandlePropertyNotify):
12706         Change the design of the previous commit. Now a module should call
12707         FRenderInit when it wants to use a function which depends on XRender.
12709 2002-05-09  olicha  <olivier.chapuis@free.fr>
12711         * fvwm/colorset.c:
12712         A -Wall fix
12714         * libs/Flocale.h:
12715         * libs/Fft.h:
12716         Fixed Compilation
12717         Include Fft.h include FRender.h as Xft.h include Xrender.h
12719         * libs/FRenderInterface.h:
12720         * libs/FRender.h:
12721         * libs/FRender.c (FRenderInit):
12722         (FRenderGetErrorCodeBase):
12723         (FRenderGetMajorOpCode):
12724         (FRenderGetExtensionSupported):
12725         (FRenderGetErrorText):
12726         Improve XRender initialization, check if the XRender extension is
12727         enabled and get the error code base and the major op code.
12728         Add error functions for the X error handler.
12730         * libs/XError.c (PrintXErrorAndCoredump):
12731         (request_name):
12732         Really enable USE_GET_ERROR_TEXT and take in account XRender error code
12733         and major op code
12735         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
12736         * fvwm/events.c (HandlePropertyNotify):
12737         * fvwm/colorset.c (parse_tint):
12738         (parse_colorset):
12739         * libs/PictureImageLoader.c (PImageLoadPng):
12740         (PImageCreatePixmapFromArgbData):
12741         * libs/PictureGraphics.c (PGraphicsCopyPixmaps):
12742         (PGraphicsCopyFvwmPicture):
12743         (PGraphicsTileRectangle):
12744         * libs/FRender.c (FRenderCopyArea):
12745         (FRenderTintRectangle):
12746         Check if the XRender extension is enabled on the display before
12747         performing XRender operations
12749 2002-05-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12751         * fvwm/menuitem.c (menuitem_paint):
12752         fixed item hilighting problems
12754 2002-05-07  olicha  <olivier.chapuis@free.fr>
12756         * fvwm/colorset.c (parse_colorset):
12757         More coloset fixes
12759 2002-05-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12761         * fvwm/events.c (HandlePropertyNotify):
12762         workaround for xterm resize problem
12764         * fvwm/colorset.c (parse_colorset):
12765         (free_colorset_background):
12766         (parse_pixmap):
12767         (parse_tint):
12768         fixed various bugs and core dumps w/ the cs->picture structure;
12769         note: it's a pointer, so compare with NULL, not with None
12771         * fvwm/frame.c (frame_setup_window):
12772         (frame_setup_window_app_request):
12773         (frame_force_setup_window):
12774         (frame_setup_window_internal):
12775         (frame_create_move_resize_args):
12776         (frame_free_move_resize_args):
12777         * fvwm/add_window.c (setup_window_attr):
12778         * fvwm/events.c (HandleConfigureRequest):
12779         (HandlePropertyNotify):
12780         fixed [?] bit_gravity/resize problem
12782         * fvwm/events.c (HandleEnterNotify):
12783         reformatted EdgeCommand code
12785 2002-05-06  olicha  <olivier.chapuis@free.fr>
12787         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
12788         Resize an ewmh icon to the wanted size if it is to big
12790         * fvwm/ewmh.c (EWMH_WindowDestroyed):
12791         Set also the stacking list when a window is destroyed
12793 2002-05-03  Dan Espen  <dane@mk.telcordia.com>
12795         * fvwm/fvwm.1: Finish language check.
12796         Fix typo in Mouse section, context should be on new line.
12798 2002-05-02  Dan Espen  <dane@mk.telcordia.com>
12800         * fvwm/fvwm.1 (file): Restore icons and images text with some
12801         improvement.
12802         Started on lang check, not done yet.
12804 2002-05-02  Mikhail Kruk  <meshko@cs.brandeis.edu>
12806         * fvwm/module_interface.c (make_named_packet):
12807         Applied Mikhail Kruk patch
12809 2002-05-02  olicha  <olivier.chapuis@free.fr>
12811         * libs/FlocaleCharset.h:
12812         * libs/Ficonv.c (FiconvSetupConversion):
12813         * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
12814         * libs/Flocale.h:
12815         * libs/Flocale.c (FlocaleGetFftFont):
12816         (FlocaleGetFontSet):
12817         (FlocaleGetFont):
12818         (FlocaleLoadFont):
12819         (FlocaleUnloadFont):
12820         * fvwm/fvwm.1:
12821         Implemented charset/iconv hints in font name
12823 2002-04-29  Stian Sletner  <stian@sletner.com>
12825         * fvwm/windowlist.c (CMD_WindowList):
12826         Added new Windowlist option IconifiedAtEnd
12828 2002-04-30  Mikhael Goikhman  <migo@homemail.com>
12830         * fvwm/module_interface.c:
12831         * libs/Module.c:
12832         * libs/Module.h:
12833         moved two constant strings to Module.h, so they may be used by perllib
12835 2002-04-29  olicha  <olivier.chapuis@free.fr>
12837         * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
12838         Fixed a core dump if the charset is not found
12840         * libs/Flocale.c (FlocaleStringToString2b):
12841         Removed some debug code
12843 2002-04-29  olicha  <olivier.chapuis@free.fr>
12845         * libs/Fft.c (FftGetFontWidths):
12846         (FftGetFontWidths):
12847         * libs/Fft.h
12848         * libs/Flocale.h:
12849         * libs/Flocale.c (FlocaleGetFont):
12850         (FlocaleGetFontSet):
12851         (FlocaleGetFftFont):
12852         Removed min_char_offset member of the FlocaleFont as it is not use
12853         since we rotate string for side title
12855         * libs/Ficonv.c (FiconvSetupConversion):
12856         * libs/FlocaleCharset.c (FlocaleGetBidiCharset):
12857         (FlocaleCharsetSetFlocaleCharset):
12858         * libs/Flocale.h:
12859         * libs/Flocale.c (FlocaleTextWidth):
12860         (FlocaleDrawString):
12861         (FlocaleUtf8ToUnicodeStr2b):
12862         (FlocaleLoadFont):
12863         (FlocaleStringToString2b):
12864         (FlocaleRotateDrawString):
12865         (FlocaleFontStructDrawString):
12866         Added support for drawing string with 10646-1 fonts without an utf8
12867         locale. Also, drawing strings with a multibyte font now work not so
12868         bad even if the locale have nothing to do with the font.
12870         * libs/Fft.c (FftUtf8ToFftString16):
12871         (FftDrawString):
12872         (FftTextWidth):
12873         Added utf8 rendering with iso10646-1 fonts on system without
12874         Xft Utf8 functions
12876         * fvwm/colorset.c (reset_cs_pixmap):
12877         (parse_pixmap):
12878         (parse_shape):
12879         (parse_tint):
12880         (parse_colorset):
12881         Colorset now accept bitmaps. Split a bit parse_colorset for readability
12883 2002-04-28  Mikhael Goikhman  <migo@homemail.com>
12885         * fvwm/menus.c:
12886         fixed core dump on default Alt-Tab (Alt released when mouse is outside)
12888 2002-04-27  Mikhael Goikhman  <migo@homemail.com>
12890         * fvwm/move_resize.c:
12891         don't start Move with snap disabled if Alt is initially pressed
12893 2002-04-26  Mikhael Goikhman  <migo@homemail.com>
12895         * NEWS, configure.in:
12896         changed version to 2.5.2
12898 2002-04-25  Mikhael Goikhman  <migo@homemail.com>
12900         * fvwm/fvwm.1:
12901         improved main headers, added new COLORSETS section;
12902         documented State condition
12904         * NEWS:
12905         documented Tint in colorsets and utility renaming
12907         * libs/Flocale.c:
12908         corrected several error reporting problems
12910 2002-04-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12912         * fvwm/events.h:
12913         fixed leaving tear off menus
12915 2002-04-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12917         * fvwm/borders.c (border_draw_part_relief):
12918         (border_set_button_pixmap):
12919         (border_draw_title_stick_lines):
12920         (border_draw_title_mono):
12921         (border_draw_title_relief):
12922         * libs/fvwmlib.h (RelieveRectangle2):
12923         (RelieveRectangle):
12924         replaced functions by macros
12926         * libs/Graphics.c (do_relieve_rectangle):
12927         applied performance patch by Dave Trollope
12929 2002-04-24  Mikhael Goikhman  <migo@homemail.com>
12931         * libs/FBidi.c:
12932         * libs/FBidi.h:
12933         * libs/Flocale.c:
12934         * libs/Flocale.h:
12935         * libs/FlocaleCharset.c:
12936         FBidi is now independent from Flocale* again;
12937         iso8859-6.8x fonts recognized now as bidi-enabled
12939 2002-04-23  Mikhael Goikhman  <migo@homemail.com>
12941         * libs/Flocale.c:
12942         fixed --disable-multibyte
12944 2002-04-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
12946         * fvwm/borders.c (border_draw_title_deep):
12947         (border_set_title_pixmap):
12948         (border_set_button_pixmap):
12949         fixed SolidButton title and button style
12951 2002-04-23  Mikhael Goikhman  <migo@homemail.com>
12953         * fvwm/fvwm.1:
12954         * NEWS:
12955         * AUTHORS:
12956         added new entry about CurrentAtEnd
12958         * colorset.c:
12959         minor reformatting and spell checking
12961 2002-04-23  Jochen Klenner  <jochen.klenner@gmx.net>
12963         * fvwm/windowlist.c (CMD_WindowList):
12964         Added new Windowlist option CurrentAtEnd
12966 2002-04-22  olicha  <olivier.chapuis@free.fr>
12968         * fvwm/colorset.c (parse_colorset):
12969         * libs/Colorset.h:
12970         Fixed an enormous core dump which comes from a cvs merging problem
12972         * fvwm/Makefile.am:
12973         * acconfig.h:
12974         * configure.in:
12975         Added Xrender detection and link fvwm if needed
12977         * libs/PictureGraphics.c:
12978         * libs/PictureGraphics.h:
12979         * libs/FRender.c:
12980         * libs/FRender.h:
12981         * libs/FRenderInterface.h:
12982         * libs/PictureGrpahics.c (*):
12983         * libs/PictureGrpahics.h:
12984         New libs files to acheive alpha-blend rendering and better XBM
12985         support. PictureGraphics contains elaborated version and also
12986         simplified version of XFillRectangle, XCopyPlan and XCopyArea
12987         Xlib functions.
12989         * fvwm/fvwm.h:
12990         * fvwm/icons.c (clear_icon):
12991         (GetIconPicture):
12992         (DrawIconWindow):
12993         (GetIconFromFile):
12994         * fvwm/events.c (HandlePropertyNotify):
12995         * fvwm/borders.c (border_fill_pixmap_background):
12996         (border_get_border_background):
12997         (border_draw_decor_to_pixmap):
12998         * fvwm/menuitem.c (menuitem_paint):
12999         * fvwm/add_window.c (destroy_icon):
13000         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
13001         * fvwm/geometry.c (move_icon_to_position):
13002         * fvwm/colorset.c (free_colorset_background):
13003         (parse_colorset):
13004         * libs/Colorset.h:
13005         Implemented alpha-blend rendering with the new libs function
13007         * fvwm/colorset.c (free_colorset_background):
13008         (parse_colorset):
13009         * libs/Colorset.h:
13010         Implemented tinting of a Pixmap background colorset
13012         * fvwm/colorset.c (parse_colorset):
13013         Use the Scr.NoFocusWin as main window in the place of the
13014         Scr.SizeWindow, this fix a lot of X errors in my machine.
13016         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
13017         Donated our alpha channel
13019         * libs/vpacket.h:
13020         * fvwm/module_interface.h:
13021         * fvwm/module_interface.c (SendFvwmPicture):
13022         (BroadcastMiniIcon):
13023         (SendMiniIcon):
13024         (BroadcastFvwmPicture):
13025         (CMD_Send_WindowList):
13026         * fvwm/add_window.c (change_mini_icon):
13027         (broadcast_mini_icon):
13028         * fvwm/ewmh_icons.c:
13029         Replace BroadcastMiniIcon and SendMiniIcon by BroadcastFvwmPicture and
13030         SendFvwmPicture which send the alpha. Add a MiniIconPacket structure
13032         * libs/Makefile.am:
13033         * libs/PictureBase.c (*):
13034         * libs/PictureBase.h:
13035         * libs/Picture.c (*):
13036         * libs/Picture.h:
13037         * libs/PictureImageLoader.c (*):
13038         * libs/PictureImageLoader.h:
13039         * fvwm/*:
13040         Rename some libs file InitPicture -> PictureBase, FImageLoader ->
13041         PictureImageLoader.
13042         Rename some libs function: InitPictureCMap -> PictureInitCMap,
13043         UseDefaultVisual -> PictureUseDefaultVisual, UseFvwmVisual ->
13044         PictureUseFvwmVisual, PictureSaveFvwmVisual -> SaveFvwmVisual,
13045         SetImagePath -> PictureSetImagePath, findImageFile ->
13046         PictureFindImageFile, PictureList -> FvwmPictureList,
13047         LoadFvwmPicture removed now  PImageLoadFvwmPictureFromFile replace it,
13048         GetPicture -> PGetFvwmPicture, CachePicture -> PCacheFvwmPicture,
13049         DestroyPicture -> PDestroyFvwmPicture, LoadPictureFromPixmap ->
13050         PLoadFvwmPictureFromPixmap, CachePictureFromPixmap ->
13051         PCacheFvwmPictureFromPixmap, fvwm_clone_picture -> PCloneFvwmPicture.
13052         Also renamed more recent functions in PictureImageLoader.
13054         * fvwm/borders.c (border_draw_one_border_part):
13055         (border_draw_decor_to_pixmap):
13056         Fixed drawing of a TiledPixmap borded and fixed position of buttons
13057         pixmap
13059         * fvwm/menus.c (pop_menu_up):
13060         (animated_move_back):
13061         (ParentalMenuRePaint):
13062         * fvwm/move_resize.h (resize_geometry_window):
13063         * fvwm/move_resize.c (move_window_doit):
13064         (AnimatedMoveAnyWindow):
13065         (AnimatedMoveOfWindow):
13066         (AnimatedMoveFvwmWindow):
13067         Fixed transparent animated menu
13069 2002-04-21  Mikhael Goikhman  <migo@homemail.com>
13071         * fvwm/fvwm.1:
13072         fixed two places
13074 2002-04-19  Hippo
13076         * fvwm/colorset.c:
13077         * libs/Colorset.c:
13078         fixed running out of colors on 8bpp with ReadWriteColors;
13079         simulate colorsets on monochrome displays using three 1-bit pixmaps
13081 2002-04-19  Mikhael Goikhman  <migo@homemail.com>
13083         * configure.in:
13084         fixed $PERL detection again
13086 2002-04-18  Hippo
13088         * configure.in:
13089         added -Wno-implicit-int to -Wall in case of gcc
13091         * fvwm/colorset.c:
13092         * fvwm/fvwm.c:
13093         fixed ReadWriteColors on a PseudoColor display
13095 2002-04-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13097         * fvwm/move_resize.c (move_window_doit):
13098         set the is_icon_moved too flag if the icon was moved non-interactively
13100 2002-04-16  Hippo
13102         * fvwm/*.[ch]:
13103         * NEWS:
13104         Moved FvwmTheme functionality into fvwm.
13105         Added new commands Colorset, ReadWriteColors, CleanupColorsets.
13107 2002-04-17  Mikhael Goikhman  <migo@homemail.com>
13109         * configure.in:
13110         fixed $PERL detection
13112         * fvwm/fvwm.1:
13113         * fvwm/ConfigFvwmDefaults:
13114         several fixes and spelling
13116 2002-04-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13118         * libs/Bindings.c (CheckBinding):
13119         (MatchBinding):
13120         (GrabWindowKey):
13121         (GrabWindowButton):
13122         (MatchBindingExactly):
13123         patch by yeti@physics.muni.cz to help with a weird problem w/ czech
13124         keyboards
13126 2002-04-12  Mikhael Goikhman  <migo@homemail.com>
13128         * configure.in:
13129         configure now uses $PERL if set
13131         * **:
13132         all programs installed into ${bindir} have now fvwm- prefix;
13133         documentation updated
13135 2002-04-11  Mikhael Goikhman  <migo@homemail.com>
13137         * **:
13138         renamed fvwm2 executable to fvwm, fvwm2 man page to fvwm;
13139         documentation updated
13141 2002-04-11  Mikhael Goikhman  <migo@homemail.com>
13143         * NEWS:
13144         added 2.4.7 entries
13146 2002-04-10  Dan Espen  <dane@mk.telcordia.com>
13148         * AUTHORS: New author.
13150         * NEWS: Edge Command.
13152 2002-04-09  Uwe Pross  <uwe.pross@gmx.net>
13154         * fvwm/fvwm2.1:
13155         Added EdgeCommand paragraph.
13157         * fvwm/events.c (HandleEnterNotify):
13158         Added execution of Scr.PanFrame*.command if set
13160         * fvwm/fvwm.c (InitVariables):
13161         Added init strings for pan frame commands.
13163         * fvwm/virtual.c:
13164         * fvwm/virtual.h:
13165         (checkPanFrames):
13166         Avoid hiding of pan frames if pan frame command is set.
13167         (CMD_EdgeCommand):
13168         Implementation of the buildin command EdgeCommand. First
13169         implementation of this function.
13171         * fvwm/screen.h (struct):
13172         added char * command in structure Panframe to store the pan frame
13173         command.
13175         * fvwm/functions.c:
13176         added declaration of CMD_ENTRY("edgecommand")
13178         * fvwm/functions.h:
13179         added definition of Flag F_EDGE_COMMAND
13181         * fvwm/commands.h:
13182         added definition of CMD_EdgeCommand(F_CMD_ARGS)
13184 2002-04-10  Mikhael Goikhman  <migo@homemail.com>
13186         * fvwm/fvwm2.1:
13187         added "BI-DIRECTIONAL TEXTS" section
13189         * libs/System.c:
13190         added #include <sys/select.h> to fix endless loop on QNX
13192 2002-04-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13194         * fvwm/fvwm2.1:
13195         changed description of focus models
13197 2002-04-09  olicha  <olivier.chapuis@free.fr>
13199         * configure.in:
13200         Check for libpng libpng 1.0.4a or better
13202 2002-04-08  Mikhael Goikhman  <migo@homemail.com>
13204         * fvwm/add_window.c (setup_title_geometry):
13205         * fvwm/fvwm.h:
13206         * fvwm/fvwm2.1:
13207         * fvwm/geometry.c (get_title_font_size_and_offset):
13208         * fvwm/geometry.h:
13209         * fvwm/style.c (parse_and_set_window_style, check_window_style_change):
13210         * fvwm/style.h:
13211         * fvwm/window_flags.h:
13212         * libs/Fft.c (FftGetRotatedFont, FftGetFont, FftDrawString):
13213         * libs/Fft.h:
13214         * libs/Flocale.c (FlocaleRotateDrawString, FlocaleDrawString):
13215         * libs/Flocale.h:
13216         new Style options TopTitleRotated / TopTitleNotRotated,
13217         BottomTitleRotated / BottomTitleNotRotated
13219 2002-04-08  olicha  <olivier.chapuis@free.fr>
13221         * libs/Makefile.am:
13222         Fixed make dist again
13224 2002-04-07  Dan Espen  <dane@mk.telcordia.com>
13226         * fvwm/fvwm2.1 (ICONS AND IMAGES): Language fix, then rewrite.
13228 2002-04-07  Mikhael Goikhman  <migo@homemail.com>
13230         * INSTALL.fvwm:
13231         minor wording fixes
13233         * NEWS:
13234         mention a new FvwmIconMan syntax
13236         * sample.fvwmrc/new-features:
13237         * sample.fvwmrc/system.fvwm2rc:
13238         * sample.fvwmrc/system.fvwm2rc-sample-95:
13239         use a new module syntax
13241 2002-04-06  olicha  <olivier.chapuis@free.fr>
13243         * fvwm/fvwm2.1:
13244         * INSTALL.fvwm:
13245         Forget to save some file
13247         * libs/FImageLoader.c (c100_init_base_table):
13248         Allows init even if !XPM
13250         * libs/Makefile.am:
13251         Remove a F
13253         * configure.in:
13254         Fixed png detection
13256         * libs/FImageLoader.c (FImageCreatePixmapFromArgbData):
13257         Fixed a GC memory leaks.
13259         * fvwm/fvwm.c (setVersionInfo):
13260         * fvwm/fvwm2.1:
13261         Updated -version for png, bidi and xft
13263         * fvwm/fvwm2.1:
13264         Modified the ICONS section. Rename it ICONS AND IMAGES and
13265         document PNG file format. Replace "xpm or bitmap file" by
13266         "image file" in a few place.
13268         * INSTALL.fvwm:
13269         * NEWS:
13270         PNG news and documented libpng in the "Optional libraries used by FVWM"
13271         section
13273 2002-04-05  olicha  <olivier.chapuis@free.fr>
13275         * libs/FImageLoader.c (c100_init_base_table):
13276         (FImageReduceRGBColor):
13277         (FImageCreatePixmapFromArgbData):
13278         Speed up color limitation for png image and ewmh icons
13279         Respect color limit even with DirectColor and TrueColor
13281         * configure.in:
13282         * acconfig.h (HAVE_PNG):
13283         Added test for libpng. Enable FvwmBanner, FvwmScript and xpmroot
13284         even without XPM support
13286         * libs/Makefile.am
13287         * libs/InitPicture.c (new file):
13288         * libs/InitPicture.h (new file):
13289         * libs/Picture.c:
13290         * libs/Picture.h:
13291         * libs/FImageLoader.c (new file):
13292         * libs/FImageLoader.h (new file):
13293         * libs/Fxpm.h (new file):
13294         * libs/Fpng.h (new file):
13295         Images are loaded in FImageLoader. PNG image can be loaded, the loader
13296         come from Imlib2 and the argb loader from fvwm/ewmh_icons.c.
13297         ColorLimit stuff is applied to PNG image.
13298         Split Picture.c, Picture.h into InitPicture.c, InitPicture.h,
13299         Picture.c and Picture.h.
13300         InitPicture contains the Picture structure, initialize the visual,
13301         depth and color map and contains image path stuff as Picture contains
13302         Picture manipulations.
13304         * libs/ColorUtils.c:
13305         * libs/Picture.h:
13306         Moved the Picture color utils func to ColorUtils
13308         * fvwm/Makefile.am:
13309         links against libpng
13311         * fvwm/icons.c (GetIconPicture):
13312         (GetXPMFile):
13313         (GetBitmapFile):
13314         (GetIconFromFile):
13315         Replace GetXPMFile and GetBitmapFile by GetIconFromFile which use
13316         the libs image loader
13318         * fvwm/cursor.c (CMD_CursorStyle):
13319         Use FImageLoadCursorPixmapFromFile (no PNG support here)
13321         * fvwm/ewmh_icons.c (create_pixmap_from_ewmh_icon):
13322         (EWMH_SetIconFromWMIcon):
13323         Use the argb loader of the libs. ColorLimit are now applied to ewmh
13324         icons
13326         * fvwm/modconf.c:
13327         Send the ColorLimit to module in any case
13329         * libs/fvwmlib.h:
13330         * libs/Graphics.c:
13331         * libs/Flocale.c
13332         * libs/Fft.c:
13333         * libs/Colorset.c:
13334         * fvwm/add_window.c:
13335         * fvwm/builtins.c:
13336         * fvwm/fvwm.h:
13337         * fvwm/menus.c:
13338         * fvwm/menustyle.c:
13339         * fvwm/move_resize.c:
13340         include cleanup
13342 2002-04-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13344         * fvwm/events.c (test_map_request):
13345         (test_resizing_event):
13346         fixed endless loop in HandleConfigureRequest
13348 2002-03-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13350         * fvwm/add_window.c (setup_style_and_decor):
13351         fixed borderless transients
13353         * fvwm/events.c (test_resizing_event):
13354         (HandleConfigureRequest):
13355         * fvwm/frame.c (frame_create_move_resize_args):
13356         * fvwm/add_window.c (AddWindow):
13357         * fvwm/fvwm.h:
13358         * fvwm/window_flags.h:
13359         tried to improve ConfigureRequest handling
13361         * fvwm/events.c (HandlePropertyNotify):
13362         recalculate window size when the base_width or base_height hint
13363         changes; fixes some problems with xemacs
13365         * fvwm/virtual.c (map_window):
13366         redraw decorations
13368         * fvwm/borders.c (border_draw_decorations):
13369         don't redraw windows on a different desk
13370         keep track of Scr.Hilite
13372 2002-03-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13374         * fvwm/virtual.c (unmap_window):
13375         * fvwm/move_resize.c (resize_window):
13376         * fvwm/icons.c (Iconify):
13377         * fvwm/add_window.c (CaptureOneWindow):
13378         * fvwm/borders.c (border_undraw_decorations):
13379         mark window decorations as not drawn whenever the frame is unmapped
13381 2002-03-30  Dan Espen  <dane@mk.telcordia.com>
13383         * fvwm/fvwm2.1: Fixup IconBox geometry examples.
13385 2002-03-29  Mikhael Goikhman  <migo@homemail.com>
13387         * libs/FBidi.c:
13388         use safemalloc and alloca instead of malloc
13390 2002-03-29  olicha  <olivier.chapuis@free.fr>
13392         * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
13393         Set the X locale charset on system without XOpenOM
13395 2002-03-27  Mikhael Goikhman  <migo@homemail.com>
13397         * configure.in:
13398         fixed multibyte support reporting
13400 2002-03-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13402         * libs/fvwmlib.h:
13403         * fvwm/fvwm.h:
13404         * config.h.in:
13405         moved gcc extension __attribute__ handling to config.h
13407         * fvwm/fvwm.c (main):
13408         * fvwm/stack.c (add_window_to_stack_ring_after):
13409         * fvwm/icons.c (GetIconWindow):
13410         (GetIconBitmap):
13411         * fvwm/add_window.c:
13412         fixed core dumps and other bugs in debug messages
13414 2002-03-27  olicha  <olivier.chapuis@free.fr>
13416         * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
13417         (FlocaleCharsetSetFlocaleCharset):
13418         * acconfig.h:
13419         * configure.in (problem_multibyte):
13420         Fixed compilation for system without XOpenOM in Xlib.h
13422         * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
13423         * libs/Ficonv.c (FiconvInit):
13424         Be more safe
13426         * fvwm/fvwm.c:
13427         include only libs/Flocale.h
13429 2002-03-26  Mikhael Goikhman  <migo@homemail.com>
13431         * configure.in:
13432         fixed detection of fribidi-0.9.0, it is incompatible (not good for us)
13434         * libs/FBidi.c:
13435         * libs/FBidi.h:
13436         * libs/Flocale.c:
13437         * libs/FlocaleCharset.c:
13438         minor modifications, like removed #include;
13439         fixed core dump with bidi and utf-8
13441 2002-03-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13443         * fvwm/frame.c (frame_update_hidden_window_pos):
13444         fixed shade/maximize/unshade
13446         * fvwm/builtins.c (FreeDecorFace):
13447         fixed memory leak
13449         * fvwm/borders.c (get_common_decorations):
13450         (border_get_border_style):
13451         * fvwm/style.c (parse_and_set_window_style):
13452         * fvwm/style.h:
13453         * fvwm/window_flags.h:
13454         * fvwm/fvwm.h (struct):
13455         * fvwm/frame.c (frame_mrs_setup_draw_decorations):
13456         (frame_create_move_resize_args):
13457         (frame_move_resize_step):
13458         (frame_next_move_resize_args):
13459         new styles WindowShadeLazy [default], WindowShadeBusy and
13460         WindowShadeAlwaysLazy
13462         * fvwm/frame.c (frame_set_decor_gravities):
13463         fixed window bit gravities
13464         split into smaller functions
13465         (frame_move_resize_step):
13466         fixed a bug w/ the parent gravity
13467         (frame_hide_changing_window_parts):
13468         fixed flickering in one of the corners during shade animation
13469         (frame_mrs_hide_changing_parts):
13470         renamed function
13471         (frame_mrs_prepare_vars):
13472         (frame_mrs_hide_unhide_parent):
13473         (frame_mrs_setup_draw_decorations):
13474         (frame_mrs_resize_move_windows):
13475         new functions
13477 2002-03-25  olicha  <olivier.chapuis@free.fr>
13479         * libs/Fft.c (FftSetupEncoding):
13480         Fixed compilation
13482         * libs/Flocale.c (FlocaleDrawString):
13483         * libs/FBidi.c (FBidiConvert):
13484         * libs/FBidi.h:
13485         Pass the font to FBidiConvert
13487         * acconfig.h (HAVE_LIBCHARSET):
13488         * acinclude.m4 (CHECK_LIBCHARSET):
13489         * configure.in:
13490         If libiconv is used check for libcharset
13492         * libs/Makefile.am:
13493         * libs/FlocaleCharset.h:
13494         * libs/FlocaleCharset.c:
13495         * libs/Flocale.h:
13496         * libs/Flocale.c (*):
13497         * libs/Fft.c (FftSetupEncoding):
13498         * libs/Fft.h:
13499         New structure FlocaleCharset to handle font, iconv and fribidi charsets.
13500         FlocaleFont has such a member which is set when charset info are needed.
13501         FlocaleCharset.c contains a big table which associates to an X charset
13502         various possible locale charsets and the fribidi charset.
13503         If libiconv is used, libcharset is used to compute the locale charset.
13504         Various Flocale clean up.
13506         * fvwm/fvwm.c (main):
13507         Removed the call to FlocaleInitCharset, it is now done automatically
13508         when needed
13510         * libs/Makefile.am:
13511         * libs/Ficon.h:
13512         * libs/Ficonv.c:
13513         * fvwm/ewmh.c (ewmh_atom_property_notify[]):
13514         * fvwm/ewmh.h:
13515         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
13516         (EWMH_WMIconName):
13517         (EWMH_WMName):
13518         (EWMH_SetDesktopNames):
13519         Moved iconv conversions into the library. Try to found the good iconv
13520         charset with the help of the font and of the FlocaleCharset table.
13522 2002-03-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13524         * libs/Module.c (SendFvwmPipe):
13525         * libs/Graphics.c (do_relieve_rectangle):
13526         * fvwm/menustyle.c (menustyle_parse_old_style):
13527         * fvwm/add_window.c (setup_window_structure):
13528         memory management patches by Dave Trollope
13530         * fvwm/frame.c (frame_get_sidebar_geometry):
13531         hide the handles when using the NoHandles style
13533         * fvwm/borders.c (border_redraw_decorations):
13534         change in title rotation is applied immediately, don't use the value "2"
13535         to force redrawing
13537         * fvwm/style.c (parse_and_set_window_style):
13538         removed "TitleLeft" and "TitleRight" styles; only the "TitleAt..."
13539         styles can be used
13540         documented the new title directions
13541         (parse_and_set_window_style):
13542         removed the ...TitleRotated[Counter]ClockWise use ...CW and ...CCW
13543         instead
13544         documented these styles
13546         * fvwm/add_window.c (CaptureOneWindow):
13547         (CaptureAllWindows):
13548         (AddWindow):
13549         cleaned up
13551         * fvwm/icons.c (DeIconify):
13552         fiexd fucoused window not hilighting after deiconification
13554 2002-03-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13556         * fvwm/update.c (apply_window_updates):
13557         windows are not unshaded when the decoration layout changes
13559         * fvwm/frame.c (frame_create_move_resize_args):
13560         fixed excessive redrawing
13561         (frame_get_hidden_pos):
13562         fixed parent geometry when window is hidden
13564         * fvwm/add_window.c (setup_frame_stacking):
13565         fixed stacking of right buttons
13567         * fvwm/frame.c (frame_set_decor_gravities):
13568         fixed title and button bit gravities
13570         * fvwm/add_window.c (setup_frame_stacking):
13571         (change_auxiliary_windows):
13572         fixed "button" style
13574         * fvwm/geometry.c (get_title_button_geometry):
13575         * fvwm/menus.c (pop_menu_up):
13576         fixed menu placement relative to window titles
13578         * libs/Flocale.c (FlocaleDrawString):
13579         fixed compiler warning w/o fribidi
13581         * fvwm/virtual.c (MoveViewport):
13582         (MapDesk):
13583         (do_move_window_to_desk):
13584         * fvwm/update.c (apply_window_updates):
13585         * fvwm/icons.c (Iconify):
13586         (CMD_Iconify):
13587         * fvwm/module_interface.c (SETOLDFLAGS):
13588         * fvwm/ewmh_events.c (ewmh_WMStateHidden):
13589         * fvwm/style.c (parse_and_set_window_style):
13590         * fvwm/window_flags.h:
13591         * fvwm/session.c (MatchWinToSM):
13592         * fvwm/placement.c (PlaceWindow):
13593         * fvwm/add_window.c (CaptureAllWindows):
13594         (setup_window_placement):
13595         (CaptureOneWindow):
13596         (AddWindow):
13597         (destroy_window):
13598         * fvwm/menus.c (menu_tear_off):
13599         * fvwm/events.c (HandleMapRequestKeepRaised):
13600         (HandleMapNotify):
13601         * fvwm/fvwm.h:
13602         removed some of those pesky globals: PPosOverride, isIconicState and
13603         isIconifiedByParent; pass round a structure instead
13604         removed the do_start_iconic window flag
13605         removed do_delete_icon_moved flag
13607 2002-03-24  Mikhael Goikhman  <migo@homemail.com>
13609         * acconfig.h:
13610         * configure.in:
13611         renamed HAVE_FRIBIDI to HAVE_BIDI
13613         * libs/FBidi.c:
13614         * libs/FBidi.h:
13615         added more comments
13617         * fvwm/Makefile.am:
13618         * libs/Flocale.c:
13619         * libs/Makefile.am:
13620         added a dummy call to FBidi to test linking against bidi libs
13622 2002-03-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13624         * fvwm/windowshade.c (CMD_WindowShade):
13625         changed syntax of windowshade with direction
13626         (CMD_WindowShade):
13627         update button state after unshading
13629         * fvwm/add_window.c (AddWindow):
13630         fixed mini icon update
13632         * fvwm/events.c (HandleEnterNotify):
13633         fixed icon picture redrawing
13634         icon titles are no longer raised and expanded if the icon has only a
13635         title
13637         * fvwm/move_resize.c (resize_window):
13638         fixed core dump
13640         * libs/gravity.c (gravity_move_resize_parent_child):
13641         * fvwm/frame.c (frame_get_titlebar_dimensions):
13642         (frame_prepare_animation_shape):
13643         (frame_move_resize_step):
13644         (frame_get_titlebar_dimensions_only):
13645         (frame_get_hidden_pos):
13646         (frame_update_hidden_window_pos):
13647         (frame_free_move_resize_args):
13648         (frame_create_move_resize_args):
13649         fixed shading of shaped windows
13651         * fvwm/borders.c:
13652         clean up
13654         * fvwm/fvwm.c (main):
13655         * fvwm/misc.c (GrabEm):
13656         fixed a problem with the cursor shape during window shading
13658         * fvwm/update.c (apply_window_updates):
13659         fixed drawing of hilighted window after a decoration change
13661         * fvwm/update.c (apply_window_updates):
13662         * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
13663         * fvwm/borders.c (RedrawDecorations):
13664         renamed RedrawDecorations()
13666         * fvwm/move_resize.c (move_window_doit):
13667         * libs/fvwmrect.c:
13668         * fvwm/misc.c (move_into_rectangle):
13669         (intersect_xrectangles):
13670         functions renamed and moved to fvwmrect.c
13672         * fvwm/borders.c (border_get_changed_border_parts):
13673         (frame_get_changed_border_parts):
13674         reduced border redrawing
13675         moved fucntion to borders.c
13677         * fvwm/events.c (HandleButtonPress):
13678         (DispatchEvent):
13679         suppress button events on frame windows
13681         * fvwm/frame.c (frame_setup_border):
13682         fixed a problem with the border setup
13684         * fvwm/borders.c (border_draw_decorations):
13685         * fvwm/events.c (HandleEnterNotify):
13686         fixed icon title drawing
13688         * fvwm/misc.c (GrabEm):
13689         fixed a pointer grab hang with xmag?
13691         * fvwm/move_resize.c (resize_window):
13692         use frame_move_resize function to improve performance
13694         * fvwm/add_window.c (AddWindow):
13695         fixed recaturing shaded windows
13697         * fvwm/borders.c:
13698         suppress unnecessary title redraws
13700         * fvwm/frame.c:
13701         window shading works again; there are still some problems with
13702         recapture, restart, border drawing and shaped windows
13704 2002-03-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13706         * fvwm/geometry.c (get_shaded_geometry_with_dir):
13707         new function
13709         * fvwm/frame.c (frame_get_title_bar_dimensions):
13710         fixed minor button layout bug
13711         (frame_update_hidden_window_pos):
13713         * fvwm/ewmh_names.c (EWMH_WMName):
13714         * fvwm/gnome.c (GNOME_HandlePropRequest):
13715         * fvwm/focus.c (DoSetFocus):
13716         * fvwm/stack.c (new_layer):
13717         * fvwm/icons.c (DeIconify):
13718         (Iconify):
13719         * fvwm/events.c (HandleFocusIn):
13720         (HandlePropertyNotify):
13721         (HandleExpose):
13722         (HandleMapNotify):
13723         (HandleButtonPress):
13724         (HandleLeaveNotify):
13725         * fvwm/builtins.c (CMD_ChangeDecor):
13726         (CMD_UpdateDecor):
13727         * fvwm/move_resize.c (resize_move_window):
13728         (resize_window):
13729         (resize_window):
13730         (maximize_fvwm_window):
13731         (handle_stick):
13732         * fvwm/borders.c (DrawDecorations):
13733         (RedrawDecorations):
13734         removed function DrawDecorations()
13735         (border_draw_decorations):
13736         renamed draw_decorations_with_geom() to border_draw_decorations()
13738         * fvwm/events.c (HandleExpose):
13739         fixed drawing icon titles
13741         * fvwm/add_window.c (adjust_fvwm_internal_windows):
13742         * fvwm/events.c (HandleFocusIn):
13743         (HandleFocusOut):
13744         * fvwm/screen.h (ScreenInfo):
13745         return the focus to the window that had the focus before an or window
13746         stole it and then died.
13748         * fvwm/menus.c (scanForColor):
13749         removed duplicate call of strlen
13750         use alloca instead of safemalloc
13752         * fvwm/menustyle.c (menustyle_parse_style):
13753         don't call memset right before memcpy
13755         * fvwm/module_interface.c (AddToMessageQueue):
13756         (DeleteMessageQueueBuff):
13757         removed one safemalloc and inline'd the function
13758         merged AddToMessageQueue into PositiveWrite
13760         * fvwm/borders.c (border_draw_decor_to_pixmap):
13761         fixed pixmap and mini icon buttons
13762         (border_fill_pixmap_background):
13763         fixed an X error
13764         (border_get_tb_parts_to_draw):
13765         buttons and title background using the border style is updated when the
13766         buttons moves
13768         * fvwm/events.c (WaitForButtonsUp):
13769         don't grab the whole server but merely the pointer to allow applications
13770         redrawing themselves
13772         * fvwm/borders.c:
13773         finished writing title drawing code
13775         * fvwm/move_resize.c (resize_window):
13776         (resize_move_window):
13777         (unmaximize_fvwm_window):
13778         removed now unnecessary calls to DrawDecorations()
13780         * fvwm/frame.c (frame_hide_changing_window_parts):
13781         fixed hiding bottom/right titles
13783         * fvwm/add_window.c (AddWindow):
13784         fixed recapturing shaded windows
13786         * fvwm/misc.c (GrabEm):
13787         fixed the cursor over the title window while resizing
13789 2002-03-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13791         * libs/Graphics.c (CreateTiledPixmap):
13792         improved efficience: let the X server tile a pixmap via the GC settings
13794         * fvwm/fvwm.c (CreateGCs):
13795         * fvwm/screen.h (ScreenInfo):
13796         added new global GC Scr.TileGC
13798         * fvwm/borders.c (border_fill_pixmap_background):
13799         * fvwm/ewmh_icons.c (create_pixmap_from_ewmh_icon):
13800         use already created gcs
13802         * fvwm/ewmh_icons.c (create_pixmap_from_ewmh_icon):
13803         * fvwm/menus.c (paint_menu_gradient_background):
13804         fixed using a randow members in gcs
13806 2002-03-22  Mikhael Goikhman  <migo@homemail.com>
13808         * configure.in:
13809         added compilation test for fribidi
13811 2002-03-22  Dan Espen  <dane@mk.telcordia.com>
13813         * NEWS: Document FvwmForm timeout.
13815 2002-03-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13817         * fvwm/session.c (MatchWinToSM):
13818         * fvwm/add_window.c (AddWindow):
13819         preserve user states over a restart
13821         * fvwm/add_window.c (setup_window_structure):
13822         preserve user states over a recapture
13824         * fvwm/functions.c (execute_function):
13825         "Silent" suppresses the "No such command ..." message
13827         * fvwm/frame.c (frame_move_resize):
13828         * fvwm/misc.c (GrabEm):
13829         fixed the cursor shape during resizing
13830         fixed button looks in small windows
13832 2002-03-22  Mikhael Goikhman  <migo@homemail.com>
13834         * libs/FBidi.c:
13835         * libs/FBidi.h:
13836         new files
13838 2002-03-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13840         * fvwm/fvwm.c (LoadDefaultLeftButton):
13841         (LoadDefaultRightButton):
13842         * fvwm/borders.c (border_draw_vector_to_pixmap):
13843         * fvwm/screen.h (DecorFace):
13844         * fvwm/builtins.c (ReadDecorFace):
13845         fixed transparent vector line support
13847         * libs/Graphics.c (CreateGradientPixmap):
13848         fixed potential core dump with illegal gradients
13850 2002-03-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13852         * fvwm/fvwm.h (FvwmWindow):
13853         removed button_background_pixmap member
13855         * fvwm/update.c (apply_window_updates):
13856         fixed changing the decoration size
13858         * fvwm/windowshade.c (CMD_WindowShade):
13859         * fvwm/frame.c (frame_setup_border):
13860         * fvwm/functions.c (execute_complex_function):
13861         removed debug code
13863         * fvwm/move_resize.c (resize_window):
13864         fixed aboting of a opaque resize w/ maximized windows
13865         (ParseOneResizeArgument):
13866         resize arguments don't take the border into account
13867         (GetResizeArguments):
13868         implemented new option "Frame" to the Resize and ResizeMove commands
13870 2002-03-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13872         * fvwm/fvwm2.1:
13873         * fvwm/builtins.c (ReadDecorFace):
13874         * fvwm/borders.c (DrawLinePattern):
13875         implemented transparent drawing color in vector buttons: C == 4
13877         * libs/defaults.h (MAX_TITLE_BUTTON_VECTOR_LINES):
13878         * fvwm/builtins.c (ReadDecorFace):
13879         increased allowed number of lines in a vector button to 10000 and moved
13880         the definition to defaults.h
13882         * fvwm/virtual.c (MoveViewport):
13883         don't send useless M_NEW_PAGE packets
13885         * fvwm/frame.c:
13886         * fvwm/borders.c:
13887         started work on new button/title drawing code
13889         * fvwm/events.c (HandleExpose):
13890         don't handle expose on the title bar
13892         * fvwm/borders.c:
13893         * fvwm/frame.c (frame_get_sidebar_geometry):
13894         * fvwm/fvwm.h (FvwmWindow):
13895         replaced border_state with decor_state
13897         * libs/defaults.h (NR_RIGHT_BUTTONS):
13898         added a comment
13900         * fvwm/events.h:
13901         * fvwm/events.c (HandleExpose):
13903         * fvwm/frame.c (frame_setup_border):
13904         hide sidebars if they are too small, i.e. 0 pixels
13906 2002-03-20  olicha  <olivier.chapuis@free.fr>
13908         * libs/Flocale.c (FlocaleFreeNameProperty):
13909         Fixed random core dump
13911 2002-03-19  olicha  <olivier.chapuis@free.fr>
13913         * fvwm/ConfigFvwmDefaults:
13914         RightTitleRotatedCW is a default
13916 2002-03-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13918         * fvwm/frame.c (frame_get_sidebar_geometry):
13919         window corners are always at least the border width thick
13921         * fvwm/geometry.c (update_absolute_geometry):
13922         fixed south/east shading
13924         * fvwm/frame.c (frame_move_resize_step):
13925         did the best I could to prevent rxvt from flashing in the background
13926         colour
13928         * fvwm/add_window.c (get_default_window_attributes):
13929         (get_default_window_attributes):
13930         (setup_resize_handle_windows):
13931         * fvwm/borders.c (border_get_border_gcs):
13932         applied -visual fix by Hippo
13934         * fvwm/cursor.c (CMD_CursorStyle):
13935         fixed endless loop
13937         * fvwm/frame.c (frame_get_title_bar_dimensions):
13938         fixed order of right buttons
13939         (frame_move_resize_step):
13940         reduced flashing when maximizing
13942         * fvwm/geometry.c (update_absolute_geometry):
13943         adapted for horizontal shading
13945 2002-03-19  Mikhael Goikhman  <migo@homemail.com>
13947         * fvwm/borders.c:
13948         * fvwm/builtins.c:
13949         * fvwm/fvwm.h:
13950         * fvwm/geometry.c:
13951         * libs/Fft.c:
13952         * libs/Flocale.c:
13953         * libs/Flocale.h:
13954         several renamings of text_direction to text_rotation
13956 2002-03-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
13958         * fvwm/windowshade.c (CMD_WindowShade):
13959         * fvwm/frame.c (frame_create_move_resize_args):
13960         (frame_move_resize_step):
13961         hack to enable non-animated window shading for the time being
13963         * fvwm/style.c (parse_and_set_window_style):
13964         (parse_and_set_window_style):
13965         allow to abbreviate [Counter]ClockWise with [C]CW
13967         * fvwm/frame.c (frame_move_resize_step):
13968         fixed
13970         * fvwm/geometry.c (gravity_constrain_size):
13971         removed useless code
13973         * fvwm/update.c (apply_window_updates):
13974         * fvwm/add_window.c (AddWindow):
13975         * fvwm/move_resize.c (unmaximize_fvwm_window):
13976         (resize_window):
13977         do not write into frame_g. only frame.c should do this
13979         * libs/defaults.h (MIN_WINDOW_TITLEBUTTON_LENGTH):
13980         (MIN_WINDOW_TITLE_LENGTH):
13981         new default values
13982         * fvwm/frame.c (frame_setup_title_bar):
13983         (get_resize_decor_gravities_one_axis):
13984         (frame_setup_window_internal):
13985         (frame_move_resize_step):
13986         (frame_create_move_resize_args):
13987         rewrote frame_setup_title_bar function
13989         * fvwm/add_window.c (setup_frame_stacking):
13990         fixed title bar stacking order
13992         * fvwm/frame.c (frame_setup_title_bar):
13993         removed yesterday's 'fix'
13995         * fvwm/add_window.c (hide_screen):
13996         (setup_title_window):
13997         (setup_resize_handle_windows):
13998         (setup_button_windows):
13999         fixed visual and depth of decoration windows
14001 2002-03-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14003         * fvwm/frame.c (frame_setup_title_bar):
14004         fixed title layout bug
14006         * fvwm/move_resize.c (MaximizeHeight):
14007         fixed bug in "grow" option of the Maximize command
14009         * fvwm/geometry.h:
14010         fixed broken prototype for get_title_font_size_and_offset
14012         * fvwm/geometry.c (get_title_font_size_and_offset):
14013         simplified code a bit
14015 2002-03-18  olicha  <olivier.chapuis@free.fr>
14017         * fvwm/geometry.h:
14018         * fvwm/geometry.c (get_title_font_size_and_offset):
14019         * fvwm/add_window.c (setup_title_geometry):
14020         * fvwm/style.h:
14021         * fvwm/style.c (parse_and_set_window_style):
14022         (check_window_style_change):
14023         * fvwm/update.c (apply_window_updates):
14024         * fvwm/window_flags.h:
14025         * fvwm/fvwm.h:
14026         Reworte side title direction styles and use LeftTitleRotatedClockWise /
14027         LeftTitleRotatedCounterClockWise, RightTitleRotatedClockWise /
14028         RightTitleRotatedCounterClockWise
14030 2002-03-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14032         * acconfig.h:
14033         * vms/config.h (FMiniIconsSupported):
14034         removed last traces of MINI_ICONS ifdef
14036         * fvwm/windowlist.c (CMD_WindowList):
14037         * fvwm/update.c (apply_window_updates):
14038         * fvwm/style.h:
14039         * fvwm/style.c (merge_styles):
14040         (parse_and_set_window_style):
14041         (check_window_style_change):
14042         * fvwm/screen.h:
14043         * fvwm/module_interface.c (SendMiniIcon):
14044         (BroadcastMiniIcon):
14045         (CMD_Send_WindowList):
14046         * fvwm/fvwm.h (FvwmWindow):
14047         * fvwm/ewmh_icons.c (ewmh_WMIcon):
14048         (EWMH_DoUpdateWmIcon):
14049         (ewmh_SetWmIconFromPixmap):
14050         (EWMH_DeleteWmIcon):
14051         (EWMH_SetIconFromWMIcon):
14052         * fvwm/builtins.c (ReadDecorFace):
14053         * fvwm/borders.c (DrawButton):
14054         (CMD_BorderStyle):
14055         (CMD_BorderStyle):
14056         * fvwm/add_window.c (setup_window_structure):
14057         (setup_mini_icon):
14058         (destroy_mini_icon):
14059         (change_mini_icon):
14060         (AddWindow):
14061         * acconfig.h (FMiniIconsSupported):
14062         replaced all MINI_ICONS ifdefs with FMiniIconsSupported to enable
14063         compiler checks
14065         * fvwm/screen.h:
14066         removed an FANCY_TITLEBARS ifdef
14068         * fvwm/borders.c (border_draw_one_part):
14069         (border_draw_border_parts):
14070         (border_draw_all_parts):
14071         (draw_clipped_decorations_with_geom):
14072         performance enhancement
14074 2002-03-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14076         * fvwm/frame.c (frame_move_resize_step):
14077         force setting up the border when function is called with FRAME_MR_SETUP
14078         (frame_setup_window_internal):
14079         removed duplicate frame setup
14081         * fvwm/borders.c (border_get_parts_and_pos_to_draw):
14082         fixed logic bug
14083         (draw_clipped_decorations_with_geom):
14084         do not flush the X queue after drawing; let the caller do it
14086         * fvwm/frame.c (frame_get_sidebar_geometry):
14087         fixed layout of windows with a small height
14088         (frame_hide_changing_window_parts):
14089         fixed flickering
14091         * fvwm/borders.c:
14092         * fvwm/frame.c:
14093         made good progress with frame layout rewrite. I think it is already
14094         considerably faster.
14095         some general clean up
14097         * fvwm/add_window.c (setup_decor_window):
14098         function removed
14100         * fvwm/windowshade.c (CMD_WindowShade):
14101         * fvwm/stack.c (verify_stack_ring_consistency):
14102         (RaiseOrLowerWindow):
14103         * fvwm/move_resize.c (resize_move_window):
14104         (move_window_doit):
14105         (draw_move_resize_grid):
14106         * fvwm/icons.c (DrawIconWindow):
14107         * fvwm/icccm2.c (CloseICCCM2):
14108         (convertProperty):
14109         (HandleSelectionRequest):
14110         * fvwm/fvwm.c (main):
14111         (SaveDesktopState):
14112         * fvwm/focus.c (DoSetFocus):
14113         * fvwm/ewmh.c (EWMH_ManageKdeSysTray):
14114         * fvwm/events.c (HandlePropertyNotify):
14115         (HandleButtonPress):
14116         (HandleConfigureRequest):
14117         * fvwm/add_window.c (RestoreWithdrawnLocation):
14118         (Reborder):
14119         * fvwm/builtins.c (CMD_Delete):
14120         (CMD_Destroy):
14121         (CMD_Close):
14122         (CMD_FakeClick):
14123         * fvwm/menus.c (paint_menu):
14124         (DestroyMenu):
14125         * fvwm/misc.c (UngrabEm):
14126         (GrabEm):
14127         * fvwm/schedule.c (execute_obj_func):
14128         * fvwm/add_window.c (hide_screen):
14129         (destroy_window):
14130         use XFlush instead of XSync when the latter is not necessary
14132         * libs/fvwmrect.c (fvwmrect_rectangles_equal):
14133         new function
14135         * fvwm/add_window.c (adjust_fvwm_internal_windows):
14136         inform frame module if the window with the hide windows dies
14138         * fvwm/placement.c (PlaceWindow):
14139         (CMD_PlaceAgain):
14140         * fvwm/add_window.c (setup_window_attr):
14141         (setup_frame_attributes):
14142         (AddWindow):
14143         (RestoreWithdrawnLocation):
14144         (setup_window_placement):
14145         * fvwm/geometry.c (gravity_translate_to_northwest_geometry):
14146         (get_title_geometry):
14147         * fvwm/fvwm.c (InitVariables):
14148         * fvwm/frame.c (frame_setup_frame):
14149         * fvwm/colormaps.c (HandleColormapNotify):
14150         (InstallWindowColormaps):
14151         * fvwm/events.c (HandleConfigureRequest):
14152         (HandleUnmapNotify):
14153         * fvwm/fvwm.h (FvwmWindow):
14154         removed attr member of FvwmWindow and replaced by a structure defined
14155         ourselves that is much smaller
14157         * fvwm/add_window.c (hide_screen):
14158         don't use save_unders and backing_store for the window used in recapture
14160         * fvwm/frame.c (frame_init):
14161         * fvwm/fvwm.c (main):
14162         new function to initialise frame module
14164         * libs/fvwmrect.c (fvwmrect_subtract_rectangles):
14165         new function
14167 2002-03-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14169         * fvwm/frame.c:
14170         clean up
14172         * fvwm/borders.h (enum):
14173         * fvwm/borders.c (draw_clipped_decorations_with_geom):
14174         (border_get_parts_and_pos_to_draw):
14175         * fvwm/fvwm.h (struct):
14176         some clean up
14177         fixed calculations of which border parts to draw
14179         * fvwm/fvwm2.1:
14180         corrected some typos
14181         * fvwm/frame.c:
14182         * fvwm/borders.c:
14183         handle marks work again
14185 2002-03-16  Dan Espen  <dane@mk.telcordia.com>
14187         * AUTHORS: New author added.
14189 2002-03-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14191         * fvwm/frame.c:
14192         * fvwm/borders.c:
14193         * fvwm/add_window.c (setup_frame_stacking):
14194         * fvwm/cursor.c (CMD_CursorStyle):
14195         * fvwm/events.c (HandleExpose):
14196         (HandleMapNotify):
14197         (HandleEnterNotify):
14198         (HandleLeaveNotify):
14199         (GetContext):
14200         * fvwm/geometry.c (get_title_button_geometry):
14201         * fvwm/virtual.c (map_window):
14202         * fvwm/add_window.c (setup_parent_window):
14203         (setup_resize_handle_cursors):
14204         (setup_resize_handle_windows):
14205         (resize_resize_handle_windows):
14206         (change_resize_handle_windows):
14207         some progress with new frame layout
14209         * fvwm/add_window.c (setup_visible_name):
14210         fixed off-by-one bug in setup_visible_name
14211         maximum window number can be set in defaults.h
14213 2002-03-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14215         * fvwm/windowlist.h:
14216         * fvwm/virtual.h:
14217         * fvwm/update.h:
14218         * fvwm/style.h:
14219         * fvwm/read.h:
14220         * fvwm/placement.h:
14221         * fvwm/menus.h:
14222         * fvwm/move_resize.h:
14223         * fvwm/icons.h:
14224         * fvwm/geometry.h:
14225         * fvwm/frame.h:
14226         * fvwm/focus.h:
14227         * fvwm/events.h:
14228         * fvwm/borders.h:
14229         * fvwm/add_window.h:
14230         * fvwm/ewmh_names.c:
14231         * fvwm/ewmh_icons.c:
14232         * fvwm/ewmh_events.c:
14233         * fvwm/ewmh.c:
14234         * fvwm/frame.c:
14235         * fvwm/menucmd.c:
14236         * fvwm/schedule.c:
14237         * fvwm/geometry.c:
14238         * fvwm/gnome.c:
14239         * fvwm/windowlist.c:
14240         * fvwm/cursor.c:
14241         * fvwm/update.c:
14242         * fvwm/bindings.c:
14243         * fvwm/colormaps.c:
14244         * fvwm/decorations.c:
14245         * fvwm/conditional.c:
14246         * fvwm/misc.c:
14247         * fvwm/read.c:
14248         * fvwm/placement.c:
14249         * fvwm/fvwm.c:
14250         * fvwm/virtual.c:
14251         * fvwm/session.c:
14252         * fvwm/functions.c:
14253         * fvwm/stack.c:
14254         * fvwm/icons.c:
14255         * fvwm/module_interface.c:
14256         * fvwm/style.c:
14257         * fvwm/add_window.c:
14258         * fvwm/events.c:
14259         * fvwm/builtins.c:
14260         * fvwm/move_resize.c:
14261         * fvwm/borders.c:
14262         * fvwm/menus.c:
14263         * fvwm/fvwm.h (FvwmWindow):
14264         moved all windows into a separate sub structure and wrote access macros
14265         renamed FvwmWindow argument to builtin commands to "fw"
14266         renamed tmp_win to fw everywhere
14268         * fvwm/borders.c (RedrawBorder):
14269         * fvwm/decorations.c (SelectDecor):
14270         * fvwm/add_window.c (setup_style_and_decor):
14271         (setup_resize_handle_cursors):
14272         * fvwm/window_flags.h:
14273         * fvwm/fvwm.h (struct):
14274         added new member has_handles and new macro HAS_HANDLES
14276         * fvwm/decorations.c (SelectDecor):
14277         fixed the NoHandles style
14279         * fvwm/decorations.c (SelectDecor):
14280         * fvwm/style.c (check_window_style_change):
14281         (parse_and_set_window_style):
14282         * fvwm/style.h:
14283         * fvwm/fvwm.h (struct):
14284         renamed has_no_handles to has_no_border
14286 2002-03-15  olicha  <olivier.chapuis@free.fr>
14288         * libs/Flocale.h:
14289         * libs/Fft.c (is_utf8_encoding):
14290         Compilation fixes
14292         * libs/Flocale.h:
14293         s/COMPUND_TEXT/COMPOUND_TEXT
14295         * fvwm/fvwm2.1:
14296         Removed matrix xft specification doc as now it is use internally by
14297         fvwm
14299         * libs/Flocale.c (FlocaleRotateDrawString):
14300         (FlocaleUnloadFont):
14301         (FlocaleDrawString):
14302         (FlocaleTextWidth):
14303         * libs/Fft.h:
14304         * libs/Fft.c (FftGetRotatedFont):
14305         (FftGetFont):
14306         (FftDrawString):
14307         (FftTextWidth):
14308         * fvwm/borders.c (DrawMultiPixmapTitlebar):
14309         (RedrawTitle):
14310         * fvwm/geometry.c (get_title_font_size_and_offset):
14311         * fvwm/style.c (parse_and_set_window_style):
14312         (check_window_style_change):
14313         * fvwm/update.c (apply_window_updates):
14314         * fvwm/update.h:
14315         * fvwm/style.h:
14316         * fvwm/fvwm.h:
14317         * fvwm/window_flags.h:
14318         Implemented vertical text rendering, new style SideTitleTextDefault,
14319         SideTitleTextTopToBottom, SideTitleTextBottomToTop
14321 2002-03-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14323         * fvwm/fvwm.h:
14324         removed inclusion of fvwmdebug.h
14326         * libs/gravity.c (ParseDirectionArgument):
14327         fixed direction parsing
14329         * fvwm/menus.c (get_menu_options):
14330         fixed a compiler warning
14332 2002-03-12  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14334         * fvwm/bindings.c (ParseBinding):
14335         fixed compiler warning
14337         * fvwm/ewmh_events.c (EWMH_GetIconGeometry):
14338         * fvwm/ewmh.h:
14339         fixed compilation w/ --disable-ewmh
14341         * fvwm/windowlist.c (CMD_WindowList):
14342         fixed parsing of conditions versus position of window list broken with
14343         a recent "fix"
14345 2002-03-11  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14347         * libs/Fft.h:
14348         * libs/Fft.c (FftTextWidth):
14349         (is_utf8_encoding):
14350         (FftGetFontWidths):
14351         (FftDrawString):
14352         removed the HAVE_XFT_UTF8 ifdefs and fixed not setting FftUtf8Support
14353         if HAVE_XFT was not set.
14355         * fvwm/events.h (XEVMASK_DECORW):
14356         select EnterNotify and LeaveNotify on frame instead of decor_w
14358         * fvwm/add_window.c (setup_title_window):
14359         (setup_button_windows):
14360         (setup_resize_handle_windows):
14361         frame window is the new parent of the title, button and handle windows
14362         (setup_frame_stacking):
14363         new stacking order of decoration windows
14365         * fvwm/menuitem.c (menuitem_paint):
14366         * fvwm/events.c (HandleExpose):
14367         xft fixes
14369         * fvwm/move_resize.c (unmaximize_fvwm_window):
14370         don't force to redraw the frame
14372         * libs/gravity.c (gravity_get_offsets):
14373         (gravity_move):
14374         (gravity_resize):
14375         functions moved to gravity.c
14377 2002-03-10  olicha  <olivier.chapuis@free.fr>
14379         * acconfig.h (HAVE_XFT_UTF8):
14380         * configure.in:
14381         * libs/Fft.c (is_utf8_encoding):
14382         (FftGetFontWidths):
14383         (FftDrawString):
14384         (FftTextWidth):
14385         Detected if Xft can handle utf8 string
14387         * libs/Fft.h:
14388         * fvwm/menuitem.c (menuitem_paint):
14389         * fvwm/events.c (HandleExpose):
14390         Fixed Xft related compilation failure and warning
14392 2002-03-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14394         * fvwm/virtual.c:
14395         * fvwm/update.c:
14396         * fvwm/move_resize.c:
14397         * fvwm/icons.c:
14398         * fvwm/focus.c:
14399         * fvwm/events.c:
14400         * fvwm/builtins.c:
14401         * fvwm/add_window.c:
14402         * fvwm/frame.c (frame_setup_window):
14403         (frame_force_setup_window):
14404         (frame_setup_shape):
14405         SetupFrame renamed to frame_setup_window
14406         ForceSetupFrame renamed to frame_force_setup_window
14407         SetShape renamed to frame_setup_shape
14409         * fvwm/windowshade.c:
14410         moved most code to frame.c
14412         * fvwm/frame.c (SetShape):
14413         (SetupTitleBar):
14414         (set_decor_gravity):
14415         (ForceSetupFrame):
14416         (SetupFrame):
14417         functions moved to new file
14419         (SetupTitleBar):
14420         (frame_setup_title_bar):
14421         renamed function
14423         * libs/Parse.h:
14424         direction code moved to gravity.c and gravity.h
14426         * fvwm/windowshade.c (CMD_WindowShade):
14427         * fvwm/geometry.c (get_shaded_geometry):
14429         * libs/FScreen.c (FScreenInit):
14430         (FScreenUpdateEmulationMapState):
14431         changed Xinerame emulation layout
14433         * fvwm/fvwm2.1:
14434         Corrected the description of the XineramaPrimaryScreen command that was
14435         essentially lying.
14437 2002-03-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14439         * fvwm/menus.c (menu_tear_off):
14440         (unlink_item_from_menu):
14441         (menu_strip_tear_off_title):
14442         use the text from a title item as the tear off menu title if the menu
14443         begins with a title; skip separators and tear off bars at the front of
14444         the menu
14446         * **/*.[ch]:
14447         implemented titleatleft and titleatright styles; titles are not drawn
14448         vertically yet
14450         * fvwm/style.c (check_window_style_change):
14451         * fvwm/update.c (apply_window_updates):
14452         * fvwm/ewmh_names.c (EWMH_WMIconName):
14453         (EWMH_WMName):
14454         (charset_to_utf8):
14455         * fvwm/ewmh.c (ksmserver_workarround):
14456         * fvwm/update.c (apply_window_updates):
14457         * fvwm/conditional.c (MatchesConditionMask):
14458         * fvwm/fvwm.c (main):
14459         * fvwm/session.c (SaveWindowStates):
14460         (matchWin):
14461         (MatchWinToSM):
14462         * fvwm/functions.c (expand):
14463         * fvwm/stack.c (dump_stack_ring):
14464         (verify_stack_ring_consistency):
14465         * fvwm/module_interface.c (BroadcastWindowIconNames):
14466         (CMD_Send_WindowList):
14467         * fvwm/add_window.c (free_window_names):
14468         (free_window_names):
14469         * fvwm/events.c (HandlePropertyNotify):
14470         * fvwm/builtins.c (CMD_Wait):
14471         * fvwm/style.c (CMD_DestroyStyle):
14472         (lookup_style):
14473         Adapted to changes of Flocale.h
14475         * acconfig.h:
14476         removed COMPUND_TEXT ifdef
14478         * configure.in:
14479         mutibyte defaults to on
14481         * acconfig.h:
14482         * libs/Flocale.c:
14483         * libs/Flocale.h:
14484         * fvwm/fvwm.h (FvwmWindow):
14485         cleaned up Flocale stuff for better information hiding
14487         * libs/Flocale.c (get_FlocaleFontSet):
14488         (get_FlocaleFont):
14489         added a new font strucht member min_char_offset for vertical text
14491         * libs/Flocale.c (get_FlocaleFontSet):
14492         fixed a bug in descent calculation
14494         * fvwm/fvwm.h (FvwmWindow):
14495         removed title_g
14497         * fvwm/borders.c (RedrawButtons):
14498         (SetupTitleBar):
14499         (RedrawBorder):
14500         (SetupFrame):
14501         (RedrawTitle):
14502         (DrawMultiPixmapTitlebar):
14503         don't use title_g or boundary_width
14505         * libs/Flocale.c (FlocaleTextWidth):
14506         * libs/Flocale.c (FlocaleDrawString):
14507         added interface for vertical strings
14508         * libs/Flocale.h (FlocaleWinString):
14509         added flags structure w/ is_vertical_string flag
14511         * fvwm/borders.c (RedrawTitle):
14512         (DrawMultiPixmapTitlebar):
14513         * fvwm/screen.h (ScreenInfo):
14514         * fvwm/icons.c (DrawIconWindow):
14515         * fvwm/move_resize.c (DisplayPosition):
14516         (DisplaySize):
14517         * fvwm/screen.h (ScreenInfo):
14518         removed ScratchStr and TitleStr; *please* don't use global variables
14519         without need
14521         * fvwm/move_resize.c (ParseOneResizeArgument):
14522         (GetResizeArguments):
14523         (GetResizeMoveArguments):
14524         (resize_window):
14525         (resize_move_window):
14526         * fvwm/module_interface.c (CONFIGARGS):
14527         (OLDCONFIGARGS):
14528         (CONFIGARGSNEW):
14529         * fvwm/placement.c (PlaceWindow):
14530         * fvwm/add_window.c (setup_title_window):
14531         (setup_button_windows):
14532         (setup_parent_window):
14533         (resize_resize_handle_windows):
14534         (change_resize_handle_windows):
14535         (AddWindow):
14536         * fvwm/geometry.c (get_window_borders):
14537         (gravity_get_naked_geometry):
14538         (gravity_add_decoration):
14539         (constrain_size):
14540         don't use title_g.width and title_g.height anymore
14542         * libs/defaults.h (EXTRA_TITLE_FONT_WIDTH):
14543         new macro
14545         * fvwm/borders.c (SetupTitleBar):
14546         * fvwm/add_window.c (setup_title_window):
14547         don't use title_g.x and title_g.y anymore
14548         (setup_title_geometry):
14549         new function
14551         * fvwm/fvwm.h (FvwmWindow):
14552         replaced title_g by title_length and title_thickness
14553         renamed title_text_y to title_text_offset
14555         * fvwm/add_window.c (setup_style_and_decor):
14556         (setup_parent_window):
14557         * fvwm/decorations.c (SelectDecor):
14558         * fvwm/placement.c (PlaceWindow):
14559         * fvwm/windowlist.c (CMD_WindowList):
14560         * fvwm/events.c (SendConfigureNotify):
14561         (HandlePropertyNotify):
14562         (HandleMapNotify):
14563         * fvwm/move_resize.c (DisplaySize):
14564         (ParseOneResizeArgument):
14565         (GetResizeArguments):
14566         (GetResizeMoveArguments):
14567         (resize_window):
14568         (resize_move_window):
14569         * fvwm/geometry.c (gravity_get_naked_geometry):
14570         (gravity_add_decoration):
14571         (constrain_size):
14572         don't use boundary_width anymore
14574         * fvwm/borders.c (SetupTitleBar):
14575         made static
14577         * fvwm/fvwmdebug.c:
14578         removed outdated file that was never used
14580         * fvwm/move_resize.c (move_window_doit):
14581         fixed GNOME and EWMH hints when unsticking a window
14583         * fvwm/virtual.c (CMD_MoveToDesk):
14584         unstick windows when MoveToDesk is used
14586         * fvwm/builtins.c:
14587         * fvwm/windowshade.c (CMD_WindowShade):
14588         (CMD_WindowShadeAnimate):
14589         functions moved to windowshade.c
14591         * fvwm/window_flags.h:
14592         * fvwm/menus.c (pop_menu_up):
14593         * fvwm/builtins.c (CMD_WindowShade):
14594         * fvwm/move_resize.c (resize_window):
14595         * fvwm/icons.c (AutoPlaceIcon):
14596         * fvwm/borders.c (SetupFrame):
14597         don't use HAS_BOTTOM_TITLE any more
14598         (ButtonPosition):
14599         function removed
14601         * fvwm/geometry.c (get_title_font_width_and_offset):
14602         * fvwm/geometry.c (set_window_border_size):
14603         * fvwm/geometry.c (is_window_border_minimal):
14604         * fvwm/geometry.c (get_window_borders_no_title):
14605         * fvwm/geometry.c (get_shaded_client_window_pos):
14606         * fvwm/geometry.c (get_icon_corner):
14607         * fvwm/geometry.c (get_title_gravity):
14608         * fvwm/geometry.c (get_title_geometry):
14609         * fvwm/borders.c (get_button_number):
14610         new functions
14612         * fvwm/borders.c (SetupFrame):
14613         (SetShape):
14614         * fvwm/events.c (HandleShapeNotify):
14615         * fvwm/borders.c (SetupTitleBar):
14616         * fvwm/update.c (apply_window_updates):
14617         * fvwm/add_window.c (setup_window_font):
14618         removed title_top_height
14620         * libs/defaults.h (WINDOW_FREAKED_OUT_SIZE):
14621         renamed
14623         * fvwm/events.c (SendConfigureNotify):
14624         * fvwm/events.c (HandleConfigureRequest):
14625         preparations for W/E titles
14626         don't use title_top_height any more
14628         * fvwm/ewmh_events.c (ewmh_WMStateShaded):
14629         use title_dir flags
14631         * fvwm/geometry.c (get_window_borders):
14632         * fvwm/style.c (parse_and_set_window_style):
14633         (check_window_style_change):
14634         * fvwm/style.h (SCSET_TITLE_DIR):
14635         * fvwm/window_flags.h (GET_TITLE_DIR):
14636         * fvwm/fvwm.h (struct):
14637         replaced has_bottom_title flag with title_dir that can be DIR_N, DIR_S,
14638         DIR_W or DIR_E
14640         * libs/Parse.c (ParseDirectionArgument):
14641         * libs/Parse.h:
14642         use new type direction_type
14644 2002-03-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14646         * fvwm/ewmh.c (EWMH_SetFrameStrut):
14647         use function from geometry.c to get the border size
14649         * fvwm/geometry.c (get_shaded_geometry):
14650         added code for shading in all directions
14652 2002-03-07  Dan Espen  <dane@mk.telcordia.com>
14654         * fvwm/bindings.c (ParseBinding): Handle key_string lengths up to 30.
14656 2002-03-07  olicha  <olivier.chapuis@free.fr>
14658         * libs/Flocale.c (FInitLocale):
14659         * fvwm/fvwm.c (main):
14660         Set the locale using "" as locale argument
14662 2002-03-07  Mikhael Goikhman  <migo@homemail.com>
14664         * fvwm/fvwm2.1:
14665         fixed some typos and indentation of several new variable entries
14667 2002-03-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14669         * fvwm/functions.h (enum):
14670         * fvwm/functions.c (func_config):
14671         * fvwm/commands.h:
14672         * fvwm/conditional.c (CMD_ThisWindow):
14673         renamed command "This" to "ThisWindow"
14675         * fvwm/conditional.c (Circulate):
14676         "Current" no longer selects a random window when no window is focused
14678         * fvwm/icccm2.c (SetupICCCM2):
14679         removed debug fprintf
14681         * fvwm/functions.c (expand_extended_var):
14682         implemented new extended variables pointer.x, pointer.x, pointer.wx,
14683         pointer.wy, pointer.cx and pointer.cy.
14685         * libs/Parse.c (ParseDirectionArgument):
14686         allow N, S, W, E, NW, SW, SE, NE for direction arguments
14688         * fvwm/builtins.c (CMD_WindowShade):
14689         fixes for animated shading w/ titleatbottom+north and titleattop+south
14691 2002-03-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14693         * fvwm/move_resize.c (moveLoop):
14694         (resize_window):
14695         * fvwm/virtual.c (HandlePaging):
14696         moving/resizing windows opaque is much faster
14698 2002-03-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14700         * fvwm/add_window.c (resize_resize_handle_windows):
14701         (change_resize_handle_windows):
14702         (setup_window_font):
14703         fixed changing the handlewidth style
14705         * fvwm/update.c (apply_window_updates):
14706         * fvwm/geometry.c (update_absolute_geometry):
14707         * fvwm/builtins.c (CMD_WindowShade):
14708         * fvwm/ewmh_events.c (ewmh_WMStateShaded):
14709         * fvwm/conditional.c (CreateConditionMask):
14710         * fvwm/geometry.c (get_shaded_geometry):
14711         * fvwm/session.c (MatchWinToSM):
14712         * fvwm/add_window.c (setup_window_structure):
14713         (AddWindow):
14714         * fvwm/window_flags.h (SHADED_DIR):
14715         * fvwm/fvwm.h (struct):
14716         implemented new WindowShade options "North" and "South" to allow shading
14717         a window in either direction, regardless of if the title is at the top
14718         or bottom.
14720         * libs/Module.c (module_expand_action):
14721         new convenience function for modules
14723 2002-03-03  Dan Espen  <dane@mk.telcordia.com>
14725         * fvwm/fvwm2.1: Fixes to the font section.
14727 2002-03-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14729         * fvwm/conditional.c (CMD_WindowId):
14730         set the correct context window for unmanaged windows
14732         * fvwm/icons.c (DrawIconWindow):
14733         raise the icon title even if it's too small to be expanded
14735         * fvwm/conditional.c (CMD_Cond):
14736         Fixed it the right way this time
14737         (CMD_Any):
14738         same fix for the 'Any' command
14739         (circulate_cmd):
14740         (CMD_Prev):
14741         (CMD_Next):
14742         (CMD_None):
14743         (CMD_Any):
14744         (CMD_Current):
14745         unified circulating functions into a single one
14746         (CMD_Pick):
14747         Pick allows to pick functions that have CirculateSkip set
14748         fixed a memory leak
14749         (select_cmd):
14750         (CMD_This):
14751         (CMD_Pick):
14752         (CMD_PointerWindow):
14753         unified selecting functions into a single one
14754         (CMD_PointerKey):
14755         (CMD_All):
14756         Allow user to override the default CirculateHit of these functions
14758         * fvwm/conditional.c (CMD_Cond):
14759         Fixed a problem w/ the window selection
14761         * fvwm/menus.h:
14762         * fvwm/menus.c:
14763         * fvwm/menudim.h:
14764         * fvwm/menudim.c:
14765         * fvwm/menustyle.h:
14766         * fvwm/menustyle.c:
14767         * fvwm/menucmd.c:
14768         * fvwm/menuitem.c:
14769         * fvwm/menuitem.h:
14770         moved some of the menu code into separate files
14771         more work on tear off menus; windowlist can now be torn off without a
14772         memory leak
14774         * fvwm/template.c:
14775         * fvwm/template.h:
14776         added templates for new source files
14778         * libs/Picture.c (fvwmlib_clone_color):
14779         new function
14781         * fvwm/menus.c (make_menu):
14782         (update_menu):
14783         removed unused parameter from make_menu()
14785         * fvwm/fvwm2.1 (Example):
14786         corrected statement about CaptureHonorsStartsOnPage being the default
14788 2002-03-03  Mikhael Goikhman  <migo@homemail.com>
14790         * INSTALL.fvwm:
14791         * Makefile.am:
14792         * configure.in:
14793         added and documented --disable-bidi and --disable-perllib
14795 2002-03-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14797         * fvwm/geometry.c (get_window_borders):
14798         fixed calculation of $[cw.y] and $[cw.height]
14800         * fvwm/move_resize.c (resize_move_window):
14801         windows are mo longer hilighted after ResizeMove or ResizeMoveMaximize
14803 2002-03-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14805         * fvwm/move_resize.c (resize_move_window):
14807 2002-02-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14809         * configure.in:
14810         re-added --enable-xinerama-emulation option that was removed recently
14812 2002-02-28  Mikhael Goikhman  <migo@homemail.com>
14814         * INSTALL.fvwm:
14815         * NEWS:
14816         * fvwm/fvwm2.1:
14817         several corrections and rewording
14819 2002-02-28  olicha  <olivier.chapuis@free.fr>
14821         * fvwm/fvwm2.1:
14822         New section FONT NAMES AND FONT LOADING
14824         * INSTALL.fvwm:
14825         * NEWS:
14826         Document --enable-xft
14828         * libs/Fft.c (get_FlocaleXftFont):
14829         Used the xft font height in the place of ascent+descent
14831         * fvwm/icons.c (DrawIconWindow):
14832         Fixed the fg colors of the icon title
14834 2002-02-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14836         * fvwm/conditional.c (CMD_CondCase):
14837         fixed CondCase command
14838         (CMD_Cond):
14839         fixed numeric return codes
14841         * fvwm/add_window.c (CMD_Recapture):
14842         fixed focus loss w/ SloppyFocus and MouseFocus after RecaptureWindow
14844         * acinclude.m4 (smr_CHECK_LIB):
14845         disabled a destructing gnome_prefix logic again
14847         * fvwm/events.c (GetContext):
14848         * libs/Bindings.c (win_contexts):
14849         * libs/fvwmlib.h:
14850         new contexts for individual parts of the window border
14852 2002-02-26  Mikhael Goikhman  <migo@homemail.com>
14854         * acinclude.m4:
14855         disabled a destructing gnome_prefix logic
14857         * configure.in:
14858         replaced fribidi detection mechanism, now fribidi-config is used
14860 2002-02-26  olicha  <olivier.chapuis@free.fr>
14862         * acconfig.h (HAVE_XFT):
14863         * acinclude.m4:
14864         * configure.in:
14865         * libs/Fft.c (new file):
14866         * libs/Flocale.c (FlocaleLoadFont):
14867         (FlocaleUnloadFont):
14868         (FlocaleDrawString):
14869         (FlocaleTextWidth):
14870         (get_FlocaleFontSet):
14871         (get_FlocaleFont):
14872         (get_FlocaleFontOrFontSet):
14873         * libs/Flocale.h:
14874         * fvwm/Makefile.am:
14875         Added anti-alised font rendering using Xft. This is off by default.
14876         A font can now be given as a ";" separated list of either ","
14877         separated list of XFLD font name or Xft font name with "xft:" as
14878         prefix, e.g.:
14879           xft:Verdana:Regular:size=12:rgba=rgb;-adobe-*-medium-r-*--12-*,fixed
14880         See Flocale.h for details
14882         * fvwm/events.c (HandleExpose):
14883         * fvwm/menus.c (paint_item):
14884         Always clear the text area before drawing text with an Xft font
14886 2002-02-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14888         * acinclude.m4 (smr_CHECK_LIB):
14889         fixed a bug with variable expansion and autoconf cache values
14891 2002-02-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14893         * fvwm/menus.c (seek_submenu_instance):
14894         (FindPopup):
14895         * fvwm/fvwm.c (InitVariables):
14896         some general menu clean up
14898         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
14899         * fvwm/move_resize.h (resize_geometry_window):
14900         * fvwm/menus.c (animated_move_back):
14901         (pop_menu_up):
14902         (ParentalMenuRePaint):
14903         Removed the global variables for parental relativity.  Please *do not*
14904         use globals in menus.c or anywhere else.  I'm trying to remove most
14905         globals in the long run.
14907         * libs/Graphics.c (do_relieve_rectangle):
14908         removed debug code
14910         * fvwm/menus.c (MenuInteraction):
14911         fixed tearing off menus by selecting a tear off item with the keyboard
14913         * fvwm/menus.c (MenuInteraction):
14914         fixed menus not popping down sometimes
14916         * fvwm/functions.c (CMD_TearMenuOff):
14917         * fvwm/menus.c (AddToMenu):
14918         (MenuInteraction):
14919         (warp_pointer_to_item):
14920         (get_selectable_item_index):
14921         (get_selectable_item_from_index):
14922         (get_selectable_item_from_section):
14923         (menuShortcuts):
14924         (paint_item):
14925         (draw_tear_off_bar):
14926         * fvwm/menus.h (MI_IS_TEAR_OFF_BAR):
14927         New command "TearMenuOff" in menus.  In a normal item, this tears off
14928         the menu when selected.  If the item has no title, it is drawn as a
14929         dashed line too.  Pressing button 2 over a title tears out the menu too.
14930         some clean up
14932         * fvwm/menus.c (make_menu_window):
14933         fixed problem w/ mapping menus, performance enhancement
14935         * fvwm/builtins.c (CMD_Destroy):
14936         (CMD_Close):
14937         fixed core dump
14939         * fvwm/functions.c (execute_function):
14940         (expand_extended_var):
14941         (expand):
14942         new variable cond.rc that returns the last return code of a conditinal
14943         command
14945 2002-02-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
14947         * fvwm/conditional.c (CMD_Cond):
14948         (CMD_CondCase):
14949         (CMD_Break):
14950         * fvwm/commands.h:
14951         * fvwm/functions.h:
14952         * fvwm/functions.c:
14953         new conditional commands Cond, CondCase and Break
14955         * fvwm/ewmh_events.c (ewmh_WMStateSticky):
14956         (ewmh_WMStateShaded):
14957         (ewmh_WMState):
14958         (ewmh_MoveResize):
14959         (ewmh_WMStateHidden):
14960         (ewmh_WMDesktop):
14961         (ewmh_CloseWindow):
14962         (ewmh_ActiveWindow):
14963         (ewmh_DesktopGeometry):
14964         * fvwm/gnome.c (GNOME_HandlePropRequest):
14965         * fvwm/windowlist.c (CMD_WindowList):
14966         * fvwm/update.c (apply_window_updates):
14967         * fvwm/conditional.c (CMD_Pick):
14968         (CMD_Prev):
14969         (CMD_Next):
14970         (CMD_None):
14971         (CMD_Any):
14972         (CMD_Current):
14973         (CMD_PointerWindow):
14974         (CMD_This):
14975         (CMD_All):
14976         (CMD_Direction):
14977         (CMD_WindowId):
14978         * fvwm/read.c (run_command_stream):
14979         * fvwm/fvwm.c (Done):
14980         (SetRCDefaults):
14981         (StartupStuff):
14982         (main):
14983         * fvwm/module_interface.c (ExecuteModuleCommand):
14984         * fvwm/move_resize.c (handle_stick):
14985         * fvwm/add_window.c (AddWindow):
14986         * fvwm/events.c (HandleKeyPress):
14987         (HandleButtonPress):
14988         (HandleClientMessage):
14989         (HandleButtonRelease):
14990         (HandlePropertyNotify):
14991         * fvwm/builtins.c (CMD_DestroyDecor):
14992         (AddToDecor):
14993         (CMD_StrokeFunc):
14994         * fvwm/functions.h (func_type):
14995         * fvwm/functions.c (old_execute_function):
14996         (execute_function):
14997         (execute_complex_function):
14999         * fvwm/fvwm.h (fvwm_cond_func_rc):
15000         inplemented return codes OK, NO_MATCH and ERROR for conditional commands
15002         * fvwm/ConfigFvwmDefaults:
15003         set some default styles for tear off menu windows
15005         * fvwm/menus.c (menuShortcuts):
15006         ignore actions that would normally close a menu if it's a tear off menu
15007         <Backspace> creates a tear off menu
15008         <Escape> closes a tear off menu
15010         * fvwm/builtins.c (CMD_Delete):
15011         (CMD_Destroy):
15012         (CMD_Close):
15013         * fvwm/menus.c (DestroyMenu):
15014         (make_menu_window):
15015         (MenuInteraction):
15016         * fvwm/menus.h (MenuRootDynamic):
15017         Each menu window is created with a unique display to prevent fvwm from
15018         being killed when a tear off menu is destroyed.  Of course this is
15019         inefficient, but still better than writing a menu module.
15021 2002-02-23  Mikhael Goikhman  <migo@homemail.com>
15023         * configure.in:
15024         autogenerate perllib/FVWM/Module/Makefile
15026 2002-02-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15028         * fvwm/move_resize.c (moveLoop):
15029         fixed a problem with keyboard movement vs. EdgeResistance
15031 2002-02-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15033         * fvwm/events.c:
15034         fixed problem with root bindings and xfishtank
15036         * fvwm/windowlist.c (CMD_WindowList):
15037         applied patch by to Darren Marshall to fix placement of window list on
15038         wrong xinerama screen
15040         * libs/Parse.c (GetSuffixedIntegerArguments):
15041         integer arguments that must not have a suffix but have one are ignored
15043         * fvwm/icons.c (DeIconify):
15044         (Iconify):
15045         applied patch by Markus Schwarzenberg to fix a rare problem with the
15046         is_map_pending flag, iconified icons and restart
15048 2002-02-22  Mikhael Goikhman  <migo@homemail.com>
15050         * fvwm/commands.h:
15051         * fvwm/conditional.c (CMD_This):
15052         * fvwm/functions.c:
15053         * fvwm/functions.h:
15054         * fvwm/fvwm2.1:
15055         * NEWS:
15056         added new conditional command This
15058 2002-02-21  Mikhael Goikhman  <migo@homemail.com>
15060         * acconfig.h:
15061         * configure.in:
15062         added fribidi library detection
15064 2002-02-12  olicha  <olivier.chapuis@free.fr>
15066         * libs/Flocale.h (FlocaleFont):
15067         * libs/Flocale.c (get_FlocaleFont):
15068         (get_FlocaleFontSet):
15069         Compute the ascent and descent of the FlocaleFont structure directly
15070         from the XFontSetExtents data in the case of a fontset
15071         Added max_char_width to the FlocaleFont structure
15073         * libs/Makefile.am (libfvwm_a_SOURCES):
15074         * libs/GetFont.c:
15075         Removed libs/GetFont.c
15077         * fvwm/menus.c (FreeMenuStyle):
15078         (UpdateMenuStyle):
15079         (NewMenuStyle):
15080         (CMD_CopyMenuStyle):
15081         * fvwm/menus.h (MenuLook):
15082         Fixed default font handling font by using a new MenuLook flags
15083         USING_DEFAULT_FONT
15085         * fvwm/menus.c (UpdateMenuStyle):
15086         Fixed default font update
15088         * fvwm/fvwm.c (SetRCDefaults):
15089         (InitVariables):
15090         Load the real default font FALLBACK_FONT or MB_FALLBACK_FONT at
15091         fvwm initialization
15093 2002-02-11  Mikhael Goikhman  <migo@homemail.com>
15095         * configure.in:
15096         added FvwmPerl/* file generation
15098 2002-02-11  olicha  <olivier.chapuis@free.fr>
15100         * INSTALL.fvwm:
15101         * NEWS:
15102         Multibyte news. Document --disable-compound-text and --disable-ewmh.
15104         * libs/Flocale.h:
15105         Added more documentation and change the MB_FALLBACK_FONT to
15106         "-*-fixed-medium-r-semicondensed-*-13-*,-*-fixed-medium-r-normal-*-14-*,
15107         -*-medium-r-normal-*-16-*" (with XFree) this should gives something
15108         more consistent with the none multibyte case.
15110 2002-02-10  olicha  <olivier.chapuis@free.fr>
15112         * fvwm/ewmh.c (EWMH_RestoreInitialStates):
15113         (EWMH_ExitStuff):
15114         * fvwm/events.c (HandleUnmapNotify):
15115         (HandleReparentNotify):
15116         * fvwm/ewmh_events.c (ewmh_WMStateShaded):
15117         (ewmh_WMStateSticky):
15118         (ewmh_WMStateHidden):
15119         Restore various ewmh initial states when a window is  unmapped or
15120         reparented
15122 2002-02-10  Mikhael Goikhman  <migo@homemail.com>
15124         * Makefile.am:
15125         * configure.in:
15126         added support for new perllib directory
15128 2002-02-09  olicha  <olivier.chapuis@free.fr>
15130         * libs/fvwmlib.h:
15131         * libs/Flocale.c:
15132         * libs/Flocale.h:
15133         * acconfig.h:
15134         * configure.in:
15135         Rename I18N_MB to MULTIBYTE
15136         Added --disable-compound-text (COMPOUND_TEXT), so this is on by default
15138         * libs/Flocale.c (*):
15139         * libs/Flocale.h:
15140         New Font and Text API. A cache is used for fonts information. Font
15141         loading is more powerfull as both font or fontset can be loaded.
15142         See Flocale.h for details, more comments will be added soon.
15143         Fortunately, it seems that there are no more memory problems with
15144         --enable-multibyte!
15145         If COMPOUND_TEXT, then non XA_STRING text properties are converted
15146         with XmbTextPropertyToTextList
15148         * fvwm/events.c (HandlePropertyNotify):
15149         * fvwm/misc.c (NewFontAndColor):
15150         * fvwm/icons.h:
15151         * fvwm/misc.h:
15152         * fvwm/menus.c (FreeMenuStyle):
15153         (NewMenuStyle):
15154         (CMD_CopyMenuStyle):
15155         (draw_underline):
15156         (calculate_item_sizes):
15157         (size_menu_horizontally):
15158         (paint_item):
15159         * fvwm/builtins.c (CMD_DefaultFont):
15160         (ApplyDefaultFontAndColors):
15161         * fvwm/add_window.c (destroy_icon_font):
15162         (setup_icon_font):
15163         (destroy_window_font):
15164         (setup_window_font):
15165         (free_window_names):
15166         (setup_window_name):
15167         (setup_icon):
15168         * fvwm/fvwm.h (FvwmWindow):
15169         * fvwm/move_resize.c (DisplayPosition):
15170         (resize_geometry_window):
15171         (DisplaySize):
15172         * fvwm/fvwm.c (InitVariables):
15173         * fvwm/icons.c (DrawIconWindow):
15174         (setup_icon_title_size):
15175         * fvwm/borders.c (RedrawTitle):
15176         (DrawMultiPixmapTitlebar):
15177         * fvwm/screen.h (ScreenInfo):
15178         Use the new Text and Font API
15180 2002-02-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15182         * fvwm/module_interface.c (PositiveWrite):
15183         fixed core dump when a module died in the select of PositiveWrite()
15185         * fvwm/module_interface.c (initModules):
15186         (ClosePipes):
15187         (do_execute_module):
15188         (KillModule):
15189         (KillModuleByName):
15190         (CMD_SendToModule):
15191         (PositiveWrite):
15192         * fvwm/modconf.c (ModuleConfig):
15193         removed WITHOUT_KILLMODULE_ALIAS_SUPPORT ifdef; always off now
15195         * fvwm/icons.c (GetXPMFile):
15196         suppress unnecessary error message for xmb icons
15198         * fvwm/misc.c (fvwm_msg):
15199         * fvwm/misc.h (enum):
15200         added new fvwm_msg type "OLD" for deprecated commands
15202 2002-02-07  Mikhael Goikhman  <migo@homemail.com>
15204         * configure.in:
15205         generate fvwmbug, not fvwmbug.sh; prepare LOCAL_BUGADDR for it
15207         * INSTALL.fvwm:
15208         New section "Bug Reports".
15210 2002-02-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15212         * fvwm/update.c (apply_window_updates):
15213         fixed propagation of window border and title colours to the modules
15215 2002-02-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15217         * fvwm/menus.c (do_menu):
15218         fixed leaving tear off menus when something is selected with the mouse
15220 2002-02-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15222         * fvwm/events.c (HandleEnterNotify):
15223         * fvwm/menus.c:
15224         more work on tear off menus
15226 2002-02-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15228         * fvwm/events.h (XEVMASK_TEAR_OFF_MENU):
15229         * fvwm/menus.c (menu_enter_tear_off_menu):
15230         (find_entry):
15231         (menuShortcuts):
15232         (MenuInteraction):
15233         (pop_menu_up):
15234         properly calculate pointer position in tear off menus
15235         (MenuInteraction):
15236         fixed active wait w/ poopup/popdown delays
15238         * fvwm/windowlist.c (CMD_WindowList):
15239         don't initialise some variables twice
15241 2002-01-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15243         * fvwm/add_window.c (CaptureOneWindow):
15244         properly recapture tear off menus
15246         (IS_MESSAGE_IN_MASK):
15247         (is_message_selected):
15248         (PositiveWrite):
15249         (PositiveWrite):
15250         * fvwm/schedule.c (deschedule):
15251         (squeue_execute):
15252         * fvwm/events.c (My_XNextEvent):
15253         * libs/queue.h:
15254         * fvwm/module_interface.c (ClosePipes):
15255         (CMD_ModuleSynchronous):
15256         (KillModule):
15257         performance enhancements; made macros out of simple functions
15259         * fvwm/builtins.c (CMD_WindowShade):
15260         don't redraw the decorations if window was not shaded or unshaded
15262         * fvwm/schedule.c (deschedule_obj_func):
15263         (execute_obj_func):
15264         fixed core dump when a scheduled command deschedules itself
15266 2002-01-31  olicha  <olivier.chapuis@free.fr>
15268         * NEWS:
15269         FvwmButtons news
15271 2002-01-31  Mikhael Goikhman  <migo@homemail.com>
15273         * NEWS:
15274         * fvwm/move.c (moveLoop):
15275         while moving if Mod1 (Alt/Meta) is pressed ignore snap attraction
15277         * fvwm/session.c (get_version_string):
15278         switch from static to date-based version string
15280         * configure.in:
15281         remove --enable-kanji compatibility option
15283         * fvwm/schedule.h:
15284         * libs/queue.h:
15285         fix warnings, gcc compains on having something after #endif
15287 2002-01-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15289         * fvwm/builtins.c (CMD_Delete):
15290         (CMD_Close):
15291         (CMD_Destroy):
15292         don't crash fvwm when trying to close a tear off menu
15294         * fvwm/decorations.c (is_function_allowed):
15295         * fvwm/menus.c (menu_expose):
15296         (do_menu):
15297         * fvwm/events.c (HandleReparentNotify):
15298         (HandleUnmapNotify):
15299         * fvwm/add_window.c (AddWindow):
15300         (AddWindow):
15301         * fvwm/fvwm.h (struct):
15302         * fvwm/add_window.c (CaptureAllWindows):
15303         (CaptureOneWindow):
15304         * fvwm/events.h (flush_property_notify):
15305         * fvwm/events.c (HandleMapRequestKeepRaised):
15306         started work on tear off menus
15308         * fvwm/fvwm.c (main):
15309         * fvwm/events.c (CMD_Sync):
15310         (CMD_Synchronize):
15311         * fvwm/commands.h (CMD_Synchronize):
15312         * fvwm/functions.h (enum):
15313         * fvwm/functions.c (func_config):
15314         new commands XSync and XSynchronize for debugging
15316         * fvwm/conditional.c (CreateConditionMask):
15317         (MatchesConditionMask):
15318         * fvwm/builtins.c (CMD_State):
15319         * fvwm/fvwm.h (struct):
15320         * fvwm/functions.h:
15321         * fvwm/commands.h:
15322         * fvwm/functions.c (func_config):
15323         new command "State"
15324         new condition "State"
15326         * libs/queue.c:
15327         fixed core dump
15329 2002-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15331         * fvwm/module_interface.c (AddToMessageQueue):
15332         (initModules):
15333         (DeleteMessageQueueBuff):
15334         (FlushMessageQueue):
15335         * fvwm/events.c (My_XNextEvent):
15336         * fvwm/module_interface.c (AddToCommandQueue):
15337         (ExecuteCommandQueue):
15338         use code from queue.c
15340         * fvwm/schedule.c:
15341         * fvwm/queue.c:
15342         * fvwm/queue.h:
15343         * fvwm/events.c (My_XNextEvent):
15344         "Schedule 0" commands are executed before event handling
15345         moved some of the chedule code into a new queue library
15347 2002-01-30  olicha  <olivier.chapuis@free.fr>
15349         * libs/Flocale.c (FInitLocale): Fixed a miss print in an error msg
15351 2002-01-30  olicha  <olivier.chapuis@free.fr>
15353         * libs/Flocale.c:
15354         * libs/Flocale.h:
15355         * libs/Makefile.am:
15356         * fvwm/fvwm.c (main):
15357         New libs files Flocale.c and Flocale.h with a function to set the
15358         locale as the Xlib prog man says to do it. Use it in fvwm.c. There is
15359         also a function to get the charset (from ewmh_name.c) and which
15360         setlocale if this has not been done with the above function. This
15361         function is also called at fvwm2 startup
15363         * fvwm/ewmh_names.c (charset_to_utf8):
15364         (utf8_to_charset):
15365         Use the Fcharset variable and remove get_charset
15367         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
15368         A minor fix
15370         * libs/GetFont.c (GetFontSetOrFixed):
15371         Free the missing charset list as suggested by Alexander Kotelnikov.
15372         Report problems with missing charset only 5 times. Remove the
15373         STRICTLY_FIXED code
15375 2002-01-30  Mikhael Goikhman  <migo@homemail.com>
15377         * configure.in:
15378         a patch to config.status to generate scripts executable, may be handy;
15379         added generation of utils/fvwm24_convert
15381 2002-01-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15383         * fvwm/schedule.c:
15384         * fvwm/functions.c (expand_extended_var):
15385         implemented $[schedule.last] and $[schedule.next] variables
15386         implemented new command "Deschedule"
15388         * fvwm/misc.c (get_server_time):
15389         fixed MouseFocus
15391 2002-01-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15393         * fvwm/misc.c (get_server_time):
15394         * fvwm/events.c (My_XNextEvent):
15395         * fvwm/icccm2.c (SetupICCCM2):
15396         * fvwm/functions.h:
15397         * fvwm/commands.h:
15398         * fvwm/functions.c (func_config):
15399         * fvwm/schedule.c:
15400         implemented new command "Schedule"
15402         * fvwm/builtins.c (CMD_Exec):
15403         applied job control patch by Alexander Kotelnikov using the portable
15404         version of setpgrp()
15406         * libs/setpgrp.c (fvwm_setpgrp):
15407         * libs/setpgrp.h (fvwm_setpgrp):
15408         * libs/Makefile.am:
15409         * configure.in:
15410         added checks for setpgrp and setpgid
15412 2002-01-29  olicha  <olivier.chapuis@free.fr>
15414         * acinclude.m4:
15415         Better test for iconv second argumeny
15417         * configure.in:
15418         Use gnu libiconv in priority against the system iconv
15420 2002-01-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15422         * fvwm/stack.c (RaiseOrLowerWindow):
15423         (restack_windows):
15424         (collect_transients_recursive):
15425         * fvwm/icons.c (get_visible_icon_window_count):
15426         fixed stack ring corruption with icons that have either no picture or
15427         no title
15429 2002-01-28  olicha  <olivier.chapuis@free.fr>
15431         * fvwm/ewmh_names.c (charset_to_utf8):
15432         (utf8_to_charset):
15433         (EWMH_SetVisibleName):
15434         (get_charset):
15435         Better message errors in get_charset, use UTF-8 in the place of UTF8,
15436         set the ewmh visible (icon) name only if the fvwm visible name is
15437         different from the ICCCM (icon) window name, limit the number of
15438         conversions error messages to 10
15440 2002-01-28  olicha  <olivier.chapuis@free.fr>
15442         * fvwm/functions.c (func_config):
15443         * fvwm/commands.h:
15444         * fvwm/builtins.c (CMD_PropertyChange):
15445         New undocumented command PropertyChange to send MX_PROPERTY_CHANGE
15446         messages
15448         * fvwm/module_interface.h:
15449         * fvwm/module_interface.c (BroadcastPropertyChange):
15450         * libs/Module.h (MX_PROPERTY_CHANGE):
15451         New module message MX_PROPERTY_CHANGE for all propose messages.
15453         * fvwm/events.c (HandlePropertyNotify):
15454         * libs/defaults.h:
15455         Send a MX_PROPERTY_CHANGE message with MX_PROPERTY_CHANGE_BACKGROUND
15456         as argument when fvwm2 detects that the root background change
15457         Removed the ROOT_BG_CHANGE_STRING stuff
15459 2002-01-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15461         * NEWS, configure.in:
15462         changed version to 2.5.1
15464         * fvwm/misc.c (get_pointer_fvwm_window):
15465         * fvwm/commands.h:
15466         * fvwm/functions.c (func_config):
15467         * fvwm/conditional.c (CreateConditionMask):
15468         (MatchesConditionMask):
15469         (CMD_PointerWindow):
15470         (CreateConditionMask):
15471         (CMD_Any):
15472         * fvwm/fvwm.h (WindowConditionMask):
15473         new conditions focused, !focused, haspointer, !haspointer
15474         new command PointerWindow that works like Current but on the window
15475         that currently contains the pointer
15476         new command Any which works like None but inverts the condition
15477         fixed parsing of conditions with more than one comma
15479         * fvwm/module_interface.h:
15480         * fvwm/module_interface.c (do_execute_module):
15481         (initModules):
15482         * libs/Module.h (MAX_XMSG_MASK):
15483         fixed default message mask for modules
15485         * fvwm/update.c (flush_window_updates):
15486         * fvwm/virtual.c (UnmapDesk):
15487         (MapDesk):
15488         (do_move_window_to_desk):
15489         * fvwm/icons.c (DeIconify):
15490         (DeIconify):
15491         * fvwm/events.c (HandlePropertyNotify):
15492         (HandleMapRequestKeepRaised):
15493         (HandleMapNotify):
15494         (HandleButtonPress):
15495         (HandleEnterNotify):
15496         (HandleLeaveNotify):
15497         * fvwm/focus.c (DoSetFocus):
15498         (MoveFocus):
15499         (SetFocusWindow):
15500         (ReturnFocusWindow):
15501         (DeleteFocus):
15502         (ForceDeleteFocus):
15503         (FocusOn):
15504         (restore_focus_after_unmap):
15505         Fixed a race condition with M_FOCUS_CHANGE events and window updates by
15506         suppressing the M_FOCUS_CHANGE message if the focus does not change in
15507         the flush_window_updates() function.
15509 2002-01-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15511         * fvwm/placement.c (PlaceWindow):
15512         minor performance enhancement
15514 2002-01-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15516         * libs/defaults.h:
15517         * fvwm/menus.c (MenuInteraction):
15518         (pointer_in_active_item_area):
15519         (pointer_in_passive_item_area):
15520         new menu style PopupActiveArea
15522 2002-01-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15524         * fvwm/move_resize.c (CMD_ResizeMaximize):
15525         (CMD_ResizeMoveMaximize):
15526         fixed ResizeMaximize and ResizeMoveMaximize on pages other than 0 0
15528 2002-01-21  olicha  <olivier.chapuis@free.fr>
15530         * fvwm/fvwm2.1:
15531         s/Penalities/Penalties/g
15533 2002-01-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15535         * fvwm/events.c (HandleLeaveNotify):
15536         (HandleEnterNotify):
15537         * fvwm/modconf.c (ModuleConfig):
15538         * fvwm/update.c (apply_window_updates):
15539         * fvwm/module_interface.c (BroadcastWindowIconNames):
15540         (CMD_Send_WindowList):
15541         (initModules):
15542         (do_execute_module):
15543         (PositiveWrite):
15544         (CMD_set_nograb_mask):
15545         (CMD_set_sync_mask):
15546         (CMD_set_mask):
15547         (set_mseggage_mask):
15548         (is_message_in_mask):
15549         (is_message_selected):
15550         * libs/Module.h:
15551         rewrote message interface to allow more than 32 messages with minimal
15552         changes in the existing interfaces.
15553         new module messages MX_ENTER_WINDOW and MX_LEAVE_WINDOW
15555         * fvwm/style.h:
15556         * fvwm/style.c (parse_and_set_window_style):
15557         * fvwm/fvwm.h (struct):
15558         * fvwm/events.c (HandleButtonPress):
15559         implemented new styles MouseFocusClickIgnoreMotion and
15560         MouseFocusClickIgnoreMotionOff
15562         * fvwm/focus.c (focus_grab_buttons):
15563         fixed button mask for > 5 buttons
15565 2002-01-19  olicha  <olivier.chapuis@free.fr>
15567         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
15568         Save and restore the icon_pixmap_w and add comments
15570 2002-01-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15572         * fvwm/events.c (HandleEnterNotify):
15573         fixed EnterNotify events for icons
15575 2002-01-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15577         * fvwm/*.c:
15578         * fvwm/stack.c (overlap_box):
15579         (overlap):
15580         * fvwm/icons.c (clear_icon):
15581         * fvwm/add_window.c (destroy_icon):
15582         * fvwm/fvwm.h (FvwmWindow):
15583         * fvwm/geometry.c (get_window_borders):
15584         (get_client_geometry):
15585         * libs/fvwmrect.h (struct):
15586         * fvwm/functions.c (expand_extended_var):
15587         implemented new extended variables cw.x, cw.y, cw.width, cw.height that
15588         return the geometry of the client window
15589         implemented new extended variables it.x, it.y, it.width, it.height that
15590         return the geometry of the icon title
15591         implemented new extended variables ip.x, ip.y, ip.width, ip.height that
15592         return the geometry of the icon picture
15593         implemented new extended variables i.x, i.y, i.width, i.height that
15594         return the geometry of the whole icon
15595         fixed $[w.height] when the window is shaded
15596         cleaned up icon geometry code
15598 2002-01-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15600         * fvwm/commands.h:
15601         * fvwm/functions.c:
15602         * fvwm/functions.h:
15603         * fvwm/move_resize.c (unmaximize_fvwm_window):
15604         (maximize_fvwm_window):
15605         (CMD_Maximize):
15606         (CMD_ResizeMaximize):
15607         (CMD_Resize):
15608         (resize_window):
15609         (CMD_ResizeMove):
15610         (resize_move_window):
15611         (CMD_ResizeMoveMaximize):
15612         New command ResizeMaximize.  Works like Resize, but modifies the
15613         maximized size of the window, not the normal size.
15614         New command ResizeMoveMaximize that works similarly.
15615         (resize_move_window):
15616         fixed ResizeMove command
15618         * fvwm/functions.c (expand):
15619         fixed core dump when using something like $[$v] in a command
15621 2002-01-17  olicha  <olivier.chapuis@free.fr>
15623         * libs/defaults.h (ROOT_BG_CHANGE_STRING):
15624         * fvwm/events.c (HandlePropertyNotify):
15625         * fvwm/fvwm.c (InternUsefulAtoms):
15626         * fvwm/extern.h:
15627         Send the ROOT_BG_CHANGE_STRING to modules when fvwm2 detects
15628         that the root background has changed. This uses the _XSETROOT_ID
15629         and XROOTPMAP_ID properties
15631         * fvwm/ewmh.c (atom_get):
15632         Be paranoid
15634 2002-01-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15636         * fvwm/update.c (flush_window_updates):
15637         fixed unnecessary window style updates
15639         * fvwm/style.c (parse_and_set_window_style):
15640         * fvwm/add_window.c (RestoreWithdrawnLocation):
15641         (AddWindow):
15642         (setup_frame_attributes):
15643         * fvwm/fvwm.h (FvwmWindow):
15644         Fvwm does no longer disable backing store on all of its windows. This
15645         cause too many problems with some applications, e.g. rdist.  Introduced
15646         the new style BackingStoreWindowDefault that tells fvwm not to modify
15647         the backing store attribute on the client window - which now is the
15648         default.
15650 2002-01-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15652         * fvwm/commands.h:
15653         * fvwm/functions.c (func_config):
15654         * libs/Module.c (SetMessageMask2):
15655         (SetNoGrabMask2):
15656         * libs/Module.h:
15658         * configure.in:
15659         fixed building with libstroke-0.5.1 on Solaris8
15661         * fvwm/stack.c (new_layer):
15662         * fvwm/borders.c (DrawButton):
15663         (RedrawButtons):
15664         (RedrawTitle):
15665         * fvwm/builtins.c (SetLayerButtonFlag):
15666         (do_button_style):
15667         * fvwm/screen.h (struct):
15668         Applied the layer button patch by Richard Curnow with a few
15669         modifications
15671         * fvwm/icons.c (GetIconBitmap):
15672         (GetIconWindow):
15673         Ignore client icons that have the wrong depth
15675         * fvwm/events.c (HandleEnterNotify):
15676         Tried to fix focusing problem w/ unclutter.
15678 2002-01-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15680         * fvwm/functions.c (CheckActionType):
15681         remove debug code
15683         * fvwm/menus.c (paint_item):
15684         * fvwm/misc.c (is_function_allowed):
15685         * fvwm/move_resize.c (is_move_allowed):
15686         (is_resize_allowed):
15687         (is_maximize_allowed):
15688         * fvwm/decorations.c (check_if_function_allowed):
15689         combined all these functions into a new one
15690         use this function everywhere
15691         use the Fixed... styles to decide if a menu item is greyed or not
15693 2002-01-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15695         * fvwm/events.c (HandleExpose):
15696         eat up expose events even if the server claims that the expose count is
15697         zero; fixes a problem with many redraws of windows that are uncovered
15698         by shading a window above them
15700 2002-01-10  olicha  <olivier.chapuis@free.fr>
15702         * fvwm/focus.c (DoSetFocus):
15703         * fvwm/move_resize.c (CMD_Maximize):
15704         (CMD_Maximize):
15705         (handle_stick):
15706         (CMD_ResizeMove):
15707         (CMD_Resize):
15708         * fvwm/icons.c (DeIconify):
15709         (DeIconify):
15710         (Iconify):
15711         * fvwm/gnome.c (GNOME_HandlePropRequest):
15712         * fvwm/ewmh_names.c (EWMH_WMName):
15713         * fvwm/events.c (HandleFocusIn):
15714         (HandlePropertyNotify):
15715         (HandleMapNotify):
15716         (HandleButtonPress):
15717         (HandleLeaveNotify):
15718         (HandleExpose):
15719         * fvwm/builtins.c (CMD_UpdateDecor):
15720         (CMD_WindowShade):
15721         * fvwm/borders.c (draw_clipped_decorations):
15722         (DrawDecorations):
15723         (RedrawDecorations):
15724         * fvwm/borders.h:
15725         Added a new argument to DrawDecoration similar to draw_window_parts,
15726         which indicate which part of the decor should be cleared. At present
15727         time only CLEAR_FRAME is taken in account and this is used in
15728         ShadeWindow to draw the decoration without flickering. This argument
15729         may be used in the future to reduce opaque resizing flickering
15731         * fvwm/builtins.c (CMD_WindowShade):
15732         Draw the decoration during unshading a window
15734         * fvwm/menus.c (ParentalMenuRePaint):
15735         Fixed transparent animated menu again
15737         * NEWS:
15738         Some update
15740 2002-01-09  olicha  <olivier.chapuis@free.fr>
15742         * fvwm/style.c (CMD_Style):
15743         free all the elements of the ptmpstyle before freeing it
15745         * fvwm/menus.c (ParentalMenuRePaint):
15746         Fixed transparent animated menu with HilightBackOff
15748 2002-01-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15750         * fvwm/style.c (merge_styles):
15751         fixed core dump w/ multiple use of the UseStyle style and HilightBack
15752         in the copied style
15754 2002-01-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15756         * fvwm/modconf.c (send_ignore_modifiers):
15757         (send_move_threshold):
15758         (send_click_time):
15759         (send_colorsets):
15760         (send_color_limit):
15761         (send_image_path):
15762         (send_desktop_geometry):
15763         (CMD_Send_ConfigInfo):
15764         moved code into new functions
15766         * libs/defaults.h (DEFAULT_MODS_UNUSED):
15767         moved to defaults.h
15769         * fvwm/bindings.c (CMD_IgnoreModifiers):
15770         * fvwm/module_interface.c (broadcast_xinerama_state):
15771         * fvwm/modconf.c (send_ignore_modifiers):
15772         broadcast IgnoreModifiers to modules
15774         * fvwm/bindings.c (CMD_IgnoreModifiers):
15775         fixed IgnoreModifiers command without arguments
15776         * fvwm/fvwm2.1:
15777         corrected documentation of IgnoreModifiers command
15779 2002-01-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15781         * fvwm/add_window.c:
15782         * fvwm/cursor.c:
15783         * fvwm/virtual.c:
15784         * fvwm/builtins.c:
15785         * fvwm/bindings.c:
15786         * fvwm/move_resize.c:
15787         * fvwm/events.c:
15788         * fvwm/stack.c:
15789         * fvwm/module_interface.c:
15790         * fvwm/focus.c:
15791         * fvwm/placement.c:
15792         * fvwm/menus.c:
15793         * fvwm/icons.c:
15794         * fvwm/fvwm.h (FvwmWindow):
15795         remnamed icon_w member to icon_title_w
15797 2002-01-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15799         * fvwm/icons.c (RedoIconName):
15800         fixed sizing of icon title for icons without a pixmap
15801         (RedoIconName):
15802         (CreateIconWindow):
15803         (Iconify):
15804         (CreateIconWindow):
15805         rewrote icon title layout and moved the constants to defaults.h
15807         * fvwm/menus.c (menuShortcuts):
15808         (handle_emacs_bindings):
15809         implemented emacs style bindings in menus [ctrl-a/b/e/f/g/left/right]
15811 2002-01-04  Dan Espen  <dane@mk.telcordia.com>
15813         * fvwm/fvwm2.1: Language checks done.
15814         .IR command not in column 1 fixed.
15816 2002-01-04  olicha  <olivier.chapuis@free.fr>
15818         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
15819         (AnimatedMoveOfWindow):
15820         (AnimatedMoveFvwmWindow):
15821         (move_window_doit):
15822         * fvwm/menus.c (ParentalMenuRePaint):
15823         (animated_move_back):
15824         (pop_menu_up):
15825         Fixed transparent animated menu
15827 2002-01-03  olicha  <olivier.chapuis@free.fr>
15829         * fvwm/move_resize.c (is_resize_allowed):
15830         (is_move_allowed):
15831         Do not check if moveing/resizeing is MWM allowed for a no user request
15832         This fix for example FvwmWinList with MwmFunctions & NoOverride
15834         * fvwm/move_resize.c (AnimatedMoveAnyWindow):
15835         * fvwm/move_resize.c (is_move_allowed):
15836         Allowed moving if tmp_win is null and check if move is allowed and
15837         not resize in AnimatedMoveAnyWindow. This fix animated menu
15839         * fvwm/ewmh.c (ewmh_AllowsMaximize):
15840         (ewmh_AllowsMove):
15841         (ewmh_AllowsResize):
15842         Check as a user request
15844         * fvwm/fvwm2.1:
15845         * fvwm/move_resize.c (CMD_Maximize):
15846         (MaximizeWidth):
15847         (MaximizeHeight):
15848         New global flags "layer" and "ewmiwa". layer causes the grow* methods
15849         to ignore the windows with a layer less or equal to the layer of
15850         the maximized window. ewmhiwa causes to ignore the ewmh working area.
15851         Reorder a bit the Maximize documentation
15853         * fvwm/fvwm2.1:
15854         * fvwm/functions.c (expand_extended_var):
15855         New variables $[desk.name<n>] to get the desktop names
15857 2002-01-01  Dan Espen  <dane@mk.telcordia.com>
15859         * fvwm/read.c (CMD_Read): Correct message on missing file when using
15860         Read with full path.
15862 2002-01-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15864         * libs/defaults.h:
15865         * fvwm/misc.c (GrabEm):
15866         reduced number of grab attempts from 500 to 50 @ 10 ms = 0.5 seconds */
15868         * fvwm/events.c (HandleUnmapNotify):
15869         (HandleMapRequestKeepRaised):
15870         (check_map_request):
15871         fixed unmanaged window when window was mapped/unmapped/mapped too fast
15873         * fvwm/add_window.c (FetchWmProtocols):
15874         (setup_wm_hints):
15875         * fvwm/fvwm.h (FvwmWindow):
15876         * fvwm/events.c (HandleEnterNotify):
15877         (HandlePropertyNotify):
15878         * fvwm/focus.c (refresh_focus):
15879         (set_focus_model):
15880         fixed focus problems with netscape and ddd
15882 2001-12-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15884         * libs/Target.c (fvwmlib_keyboard_shortcuts):
15885         * libs/Pointer.c (GetLocationFromEventOrQuery):
15886         * fvwm/virtual.c (HandlePaging):
15887         * fvwm/move_resize.c (GetOnePositionArgument):
15888         (InteractiveMove):
15889         (AnimatedMoveAnyWindow):
15890         (moveLoop):
15891         (CMD_Resize):
15892         * fvwm/module_interface.c (ExecuteModuleCommand):
15893         * fvwm/menus.c (do_menu):
15894         (menuShortcuts):
15895         (MenuInteraction):
15896         (get_menu_options):
15897         * fvwm/functions.c (execute_complex_function):
15898         * fvwm/events.c (HandleClientMessage):
15899         (WaitForButtonsUp):
15900         * fvwm/conditional.c (CMD_Direction):
15901         * fvwm/builtins.c (CMD_CursorMove):
15902         (CMD_FakeClick):
15903         (CMD_StrokeFunc):
15904         handle return code of XQueryPointer everywhere; necessary for dual head
15906         * fvwm/misc.c (GrabEm):
15907         Pointer was warped to other screen with a dual head setup
15909 2001-12-31  olicha  <olivier.chapuis@free.fr>
15911         * fvwm/ewmh_events.c (ewmh_WMStateModal):
15912         Removed some code which try to raise ewmh modal window over
15913         its transientfor window; this seems not possible without a new style
15914         or a bad hack in stack.c
15916 2001-12-30  Dan Espen  <dane@mk.telcordia.com>
15918         * libs/GetFont.c (GetFontSetOrFixed): Cleanup the message about the
15919         fallback to fixed font so it shows the right font for I18N.
15921 2001-12-30  olicha  <olivier.chapuis@free.fr>
15923         * fvwm/window_flags.h:
15924         * fvwm/session.c (MatchWinToSM):
15925         (LoadWindowStates):
15926         (SaveWindowStates):
15927         (get_version_string):
15928         * fvwm/move_resize.c (CMD_Maximize):
15929         (handle_stick):
15930         * fvwm/icons.c (CMD_Iconify):
15931         * fvwm/ewmh.c (EWMH_SetWMState):
15932         (EWMH_WindowInit):
15933         (EWMH_ExitStuff):
15934         (EWMH_SetAllowedActions):
15935         (EWMH_WindowInit):
15936         * fvwm/ewmh.h:
15937         * fvwm/ewmh_intern.h:
15938         * fvwm/ewmh_events.c (ewmh_WMState*):
15939         * fvwm/builtins.c (CMD_WindowShade):
15940         * fvwm/stack.c (new_layer):
15941         * fvwm/update.c (apply_window_updates):
15942         * fvwm/update.h (struct):
15943         * fvwm/add_window.c (setup_window_structure):
15944         (setup_window_name):
15945         (setup_icon):
15946         * fvwm/style.c (check_window_style_change):
15947         The skip list and modal ewmh window states are now updated after
15948         an use/ignore ewmh state style changes. The other ewmh states are
15949         starting state only. All the initial ewmh states are keep in memory
15950         for FvwmIdent.
15952         * fvwm/ewmh.c (EWMH_Handle*):
15953         * fvwm/fvwm.h:
15954         Set the ewmh_window_type to an int (and not the corresponding atom)
15955         accordingly to the window type
15957         * fvwm/ewmh_events.c (ewmh_WMStateModal):
15958         ewmh modal transient windows have RaiseTransient and GrabFocusTransient
15959         style
15961         * fvwm/ewmh.c (EWMH_GetStyle):
15962         * fvwm/ewmh_events.c (ewmh_WMDesktop):
15963         Respect the _NET_WM_DESKTOP hints at window mapping as a StartsOnDesk
15964         hints
15966         * libs/vpacket.h (ConfigWinPacket):
15967         * fvwm/module_interface.c (CONFIGARGSNEW):
15968         (OLDCONFIGARGS):
15969         (CONFIGARGS):
15970         Added ewmh_hint_layer, ewmh_hint_desktop and ewmh_window_type to the
15971         cfgpacket for FvwmIdent
15973 2001-12-20  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15975         * fvwm/move_resize.c (resize_geometry_window):
15976         fixed wrong size calculation of geometry window
15978 2001-12-19  olicha  <olivier.chapuis@free.fr>
15980         * fvwm/ewmh_names.c (convert_charsets):
15981         More precise error messages
15983         * fvwm/fvwm2.1:
15984         A few formatting fixes
15986 2001-12-18  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
15988         * fvwm/gnome.c (GNOME_SetHints):
15989         fixed window getting frozen into position upon a recapture or restart
15991 2001-12-17  Dan Espen  <dane@mk.telcordia.com>
15993         * fvwm/fvwm2.1: Fixup wording in EWMHIconicStateWorkaround.
15995 2001-12-17  olicha  <olivier.chapuis@free.fr>
15997         * fvwm/fvwm2.1:
15998         Tried to clarify the EWMHIconicStateWorkaround BugOpts
16000         * fvwm/ewmh.c (delete_kst_item):
16001         (set_kde_sys_tray):
16002         (EWMH_IsKdeSysTrayWindow):
16003         (EWMH_ManageKdeSysTray):
16004         * fvwm/events.c (HandleReparentNotify):
16005         Fixed reparenting management of kde system tray windows and
16006         added some off debugging code
16008         * fvwm/virtual.c (CMD_DesktopName):
16009         Removed some debugging code
16011 2001-12-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16013         * fvwm/fvwm.h (struct):
16014         * fvwm/window_flags.h (IS_FIXED_PPOS):
16015         * fvwm/style.h (SCSET_IS_FIXED_PPOS):
16016         * fvwm/style.c (parse_and_set_window_style):
16017         (check_window_style_change):
16018         implemented new styles FixedPPosition, FixedUSPosition, FixedSize,
16019         FixedUSSize, FixedPSize and Variable PPosition, ...
16021         * fvwm/events.c (HandleConfigureRequest):
16022         * fvwm/ewmh.c (ewmh_AllowsResize):
16023         (is_resize_allowed):
16024         (ewmh_AllowsMove):
16025         (ewmh_AllowsMove):
16026         * fvwm/gnome.c (GNOME_SetHints):
16027         (AnimatedMoveAnyWindow):
16028         (CMD_ResizeMove):
16029         use new functions
16030         * fvwm/move_resize.c (is_move_allowed):
16031         (is_resize_allowed):
16032         (is_maximize_allowed):
16033         new functions to clean up some code
16035 2001-12-15  Dan Espen  <dane@mk.telcordia.com>
16037         * fvwm/fvwm2.1: Doc fixups.
16039 2001-12-15  olicha  <olivier.chapuis@free.fr>
16041         * fvwm/builtins (CMD_BugOpts):
16042         * fvwm/ewmh.c:
16043         * fvwm/ewmh_conf.c (EWMH_BugOpts):
16044         * fvwm/ewmh_events.c (ewmh_StateHidden):
16045         * fvwm/fvwm.c (InitVariables):
16046         * fvwm/fvwm2.1:
16047         * fvwm/icons.c (CMD_Iconify):
16048         * fvwm/screen.h:
16049         * fvwm/virtual.c (unmap_window):
16050         (map_window):
16051         Implemented the new _NET_WM_STATE_HIDDEN ewmh state that allows
16052         to fix the IconicState problems in vitrual.c. New BugOpts
16053         EWMHIconicStateWorkaround for supporting current KDE versions
16055         * fvwm/events.c (HandlePropertyNotify):
16056         * fvwm/ewmh.c (ewmh_AllowsYes):
16057         * fvwm/ewmh.h:
16058         (ewmh_AllowsClose):
16059         (ewmh_AllowsMaximize):
16060         (ewmh_AllowsMove):
16061         (ewmh_AllowsResize):
16062         (EWMH_SetAllowedActions):
16063         (EWMH_WindowInit):
16064         * fvwm/style.c (check_window_style_change):
16065         * fvwm/update.c (apply_window_updates):
16066         * fvwm/update.h:
16067         Implemented _NET_WM_ALLOWED_ACTIONS from version 1.2 of the wm-spec
16069 2001-12-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16071         * fvwm/borders.c (RedrawTitle):
16072         * libs/defaults.h (WINDOW_TITLE_OFFSET):
16073         fixed 'stick' lines with long titles
16075 2001-12-11  olicha  <olivier.chapuis@free.fr>
16077         * NEWS:
16078         * fvwm/commands.h:
16079         * fvwm/ewmh.c (ewmh_SetWorkArea):
16080         * fvwm/ewmh.h:
16081         (ewmh_ComputeAndSetWorkArea):
16082         (ewmh_HandleDynamicWorkArea):
16083         (EWMH_GetWorkAreaIntersection):
16084         (EWMH_GetStrutIntersection):
16085         (get_intersection):
16086         * fvwm/ewmh_name.c (EWMH_SetDeskNames):
16087         * fvwm/function.c:
16088         * fvwm/function.h:
16089         * fvwm/fvwm.c (InitVariables):
16090         * fvwm/fvwm2.1:
16091         * fvwm/modconf.c (send_desktop_names):
16092         (CMD_Send_ConfigInfo):
16093         * fvwm/placement.c (get_next_x):
16094         (get_next_y):
16095         * fvwm/screen.h:
16096         * fvwm/virtual.c (CMD_DesktopName):
16097         * fvwm/virtual.h:
16098         (GetDesktopName):
16099         New command "DesktopName desk name" to define desktops names for
16100         the FvwmPager, the WindowList and ewmh compliant pagers.
16101         Desktops information (desk, desk name, working areas) is stored in a
16102         new list sub structure of Scr, DesktopsInfo. The head of the list
16103         contains generic information for desks that are not in the list.
16105         * fvwm/windowlist.c (get_desk_title):
16106         (CMD_WindowList):
16107         * fvwm/fvwm2.1:
16108         * NEWS:
16109         New window list options NoDeskNum, NoCurrentDeskTitle,
16110         TitleForAllDesks, NoNumInDeskTitle. Document these options and also
16111         the NoGeometry and NoGeometryInfo options.
16113         * fvwm/ewmh.c:
16114         * fvwm/ewmh_names.c:
16115         * fvwm/ewmh_icons.c:
16116         Added some static declarations
16118         * fvwm/ewmh_names.c (EWMH_SetVisibleName):
16119         It seems that UTF8 names should not be terminated by a 0
16121         * fvwm/ewmh.c (EWMH_SetClientListStacking):
16122         Set the stacking list in the good orders
16124 2001-12-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16126         * vms/config.h:
16127         * fvwm/functions.c:
16128         * fvwm/commands.h:
16129         * fvwm/builtins.c:
16130         * fvwm/borders.c:
16131         removed all MULTISTYLE ifdefs
16133         * fvwm/borders.c (RedrawTitle):
16134         fixed title drawing into relief
16136 2001-12-08  olicha  <olivier.chapuis@free.fr>
16138         * fvwm/style.c:
16139         * fvwm/style.h:
16140         * fvwm/fvwm.h:
16141         * fvwm/update.c:
16142         * fvwm/update.h:
16143         * fvwm/window_flags.h:
16144         * fvwm/fvwm2.1:
16145         s/extended_window_name/indexed_window_name/i
16146         s/extended_icon_name/indexed_icon_name/i
16147         s/do_update_window_name/do_update_visible_window_name/
16148         s/do_update_icon_name/do_update_visible_icon_name/
16150         * fvwm/style.c (CMD_Style):
16151         * fvwm/style.h:
16152         (parse_and_set_window_style):
16153         Split CMD_Style into CMD_Style and parse_and_set_window_style
16155 2001-12-06  olicha  <olivier.chapuis@free.fr>
16157         * fvwm/add_window.c (setup_window_name_count):
16158         (setup_icon_name_count):
16159         Better determination of the window and icon names index
16161         * fvwm/add_window.c (AddWindow):
16162         (setup_icon):
16163         * fvwm/events.c (HandlePropertyNotify):
16164         * fvwm/ewmh_names.c (EWMH_WMName):
16165         (EWMH_WMIconName):
16166         * fvwm/module_interface.c (BroadcastWindowIconNames):
16167         * fvwm/module_interface.h:
16168         (CMD_Send_WindowList):
16169         (CMD_set_mask):
16170         (CMD_set_sync_mask):
16171         (CMD_set_nograb_mask):
16172         * fvwm/update.c (apply_window_updates):
16173         * libs/Module.h:
16174         New module messages type M_VISIBLE_NAME and M_VISIBLE_ICON_NAME
16175         which are send to modules with BroadcastWindowIconNames.
16176         The set mask cmds use unsigned long mask and not int mask!
16178 2001-12-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16180         * fvwm/ewmh.h:
16181         * fvwm/ewmh.c:
16182         EWMH without iconv compile fix by Hippo
16184 2001-12-05  olicha  <olivier.chapuis@free.fr>
16186         * fvwm/add_window.c:
16187         * fvwm/ewmh.c (*):
16188         * fvwm/ewmh.h:
16189         * fvwm/ewmh_conf.c (EWMH_CMD_Styles):
16190         * fvwm/ewmh_events.c:
16191         * fvwm/fvwm.h:
16192         * fvwm/fvwm2.1:
16193         * fvwm/move_resize.c (CMD_Maximize):
16194         * fvwm/placement.c (test_fit):
16195         (PlaceWindow):
16196         * fvwm/session.c (SaveWindowStates):
16197         * fvwm/style.c (merge_styles):
16198         * fvwm/style.h:
16199         (check_window_style_change):
16200         * fvwm/update.c (apply_window_updates):
16201         * fvwm/update.h:
16202         * fvwm/window_flags.h:
16203         New ewmh styles:
16204         EWMHMaximizeIgnoreWorkingArea / EWMHMaximizeUseWorkingArea /
16205         EWMHMaximizeUseDynamicWorkingArea,
16206         EWMHPlacementIgnoreWorkingArea / EWMHPlacementUseWorkingArea
16207         EWMHPlacementUseDynamicWorkingArea,
16208         EWMHUseStackingOrderHints / EWMHIgnoreStackingOrderHints,
16209         EWMHIgnoreStateHints / EWMHUseStateHints,
16210         EWMHIgnoreStrutHints / EWMHUseStrutHints
16212         * fvwm/ConfigFvwmDefaults:
16213         Use EWMHPlacementUseDynamicWorkingArea,
16214         EWMHMaximizeUseDynamicWorkingArea as default placement styles
16216         * NEWS:
16217         * fvwm/add_window.c (setup_placement_penalty):
16218         * fvwm/add_window.h:
16219         (setup_placement_penalty):
16220         (AddWindow):
16221         * fvwm/fvwm.h:
16222         * fvwm/placement.c (get_next_x):
16223         * fvwm/placement.h:
16224         (get_next_y):
16225         (test_fit):
16226         * fvwm/style.c (CMD_Style):
16227         * fvwm/style.h:
16228         (check_window_style_change):
16229         * fvwm/update.c (apply_window_updates):
16230         * fvwm/update.h:
16231         * fvwm/window_flags.h:
16232         * libs/default.h:
16233         New styles PlacementOverlapPenalties and
16234         PlacementOverlapPercentPenalties
16236         * NEWS:
16237         * fvwm/add_window.c (setup_window_name_count):
16238         * fvwm/add_window.h:
16239         (setup_icon_name_count):
16240         (setup_visible_name):
16241         (setup_window_name):
16242         (free_window_names):
16243         (setup_icon):
16244         * fvwm/borders.c (DrawMultiPixmapTitlebar):
16245         (RedrawTitle):
16246         * fvwm/events.c (HandlePropertyNotify):
16247         * fvwm/ewmh_names.c (EWMH_*):
16248         * fvwm/fvwm.h:
16249         * fvwm/icons.c (CreateIconWindow):
16250         (DrawIconWindow):
16251         (RedoIconName):
16252         (AutoPlaceIcon):
16253         (Iconify):
16254         * fvwm/session.c (MatchWinToSM):
16255         * fvwm/style.c (CMD_Style):
16256         * fvwm/style.h:
16257         (check_window_style_change):
16258         * fvwm/update.c (apply_window_updates):
16259         * fvwm/update.h:
16260         * fvwm/window_flags.h:
16261         New styles ExtendedWindowName / SimpleWindowName and
16262         ExtendedIconName / SimpleIconName. TODO: the modules implementation
16264         * fvwm/builtins.c (ReadMultiPixmapDecor):
16265         A -Wall fix
16267         * configure.in:
16268         Fixed gcc test
16270         * session.c (get_version_string):
16271         now is 2.5-3
16273         * fvwm/stack.c (new_layer):
16274         (CMD_Layer):
16275         Fixed ewmh wm state
16277         * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
16278         Fixed creation of the ewmh icon in the case of the window is iconified
16280 2001-11-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16282         * fvwm/placement.c (PlaceWindow):
16283         fixed manual placement on Xinerama screens other than the one with the
16284         top left corner of the total screen
16286 2001-11-27  olicha  <olivier.chapuis@free.fr>
16288         * configure.in:
16289         * acinclude.m4:
16290         * acconfig.h:
16291         * fvwm/ewmh_name.c
16292         Check for the second argument of iconv
16294         * configure.in:
16295         Added -Wall to CFLAGS if cc is gcc
16297 2001-11-26  Mikhael Goikhman  <migo@homemail.com>
16299         * configure.in:
16300         * acconfig.h:
16301         s/extanded/extended/
16303 2001-11-26  olicha  <olivier.chapuis@free.fr>
16305         * fvwm/Makefile.am:
16306         Fixed (?) iconv_LIBS
16308 2001-11-26  olicha  <olivier.chapuis@free.fr>
16310         * fvwm/functions.c (expand):
16311         Fixed n, c, r expansion
16313 2001-11-25  Dan Espen  <dane@mk.telcordia.com>
16315         * fvwm/fvwm2.1: Clean up ewmh stuff.
16317 2001-11-24  olicha  <olivier.chapuis@free.fr>
16319         * fvwm/ewmh_internal.h:
16320         * fvwM/ewmh.c:
16321         Removed a non standard macro
16323 2001-11-24  olicha  <olivier.chapuis@free.fr>
16325         * fvwm/fvwm2.1:
16326         Documented the previous ewmh style in a new Style subsection
16328         * fvwm/functions.c (expand):
16329         Clean up, removed 5 tmp_win and IS_EWMH_DESKTOP
16331 2001-11-24  olicha  <olivier.chapuis@free.fr>
16333         * fvwm/add_window (setup_icon):
16334         (setup_window_structure):
16335         * fvwm/events.c (HandlePropertyNotify):
16336         * fvwm/ewmh.h:
16337         * fvwm/ewmh_conf.c (EWMH_CMD_Style):
16338         * fvwm/ewmh_icons.c (ewmh_WMIcon):
16339         (EWMH_DoUpdateWmIcon):
16340         (ewmh_SetWmIconFromPixmap):
16341         (EWMH_DeleteWmIcon):
16342         (EWMH_SetIconFromWMIcon):
16343         * fvwm/ewmh_intern.h:
16344         * fvwm/fvwm.h:
16345         * fvwm/icons.c (GetIcon):
16346         * fvwm/session.c (get_version_string):
16347         * fvwm/style.c (CMD_Style):
16348         * fvwm/style.h:
16349         (check_window_style_change)
16350         * fvwm/update.c (apply_window_updates):
16351         * fvwm/update.h:
16352         * fvwm/window_flags.h:
16353         New style EWMHMiniIconOverride / EWMHNoMiniIconOverride,
16354         EWMHDonateMiniIcon / EWMHDontDonateMiniIcon,
16355         EWMHDonateIcon / EWMHDontDonateIcon,
16356         Some ewmh icon code simplification.
16357         Ewmh icons priority: just after icon window.
16359         * fvwm/ewmh.c (EWMH_ExitStuff):
16360         * fvwm/ewmh.h:
16361         * fvwm/session.c (SaveWindowStates):
16362         (LoadWindowStates):
16363         (MatchWinToSM):
16364         * fvwm/fvwm.c (Done):
16365         Delete the ewmh icons we set ourself. Some ewmh session states do not
16366         need to be saved/restored anymore
16368 2001-11-23  olicha  <olivier.chapuis@free.fr>
16370         * fvwm/ewmh_names.c (convert_charsets):
16371         Fixed infinite loop
16373 2001-11-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16375         * fvwm/ewmh_names.c (convert_charsets):
16376         -Wall fix: 2nd parameter of iconv is char **, not const char ** as the
16377         man page states on Linux
16378         replaced goto with a loop
16380 2001-11-22  olicha  <olivier.chapuis@free.fr>
16382         * fvwm/ewmh_icons.c (EWMH_SetWmIconFromPixmap):
16383         a -Wall fix
16385         * fvwm/ewmh_events.c:
16386         Fixed some styles update
16388         * fvwm/ewmh_conf.c:
16389         * fvwm/function.c (func_config):
16390         * fvwm/function.h:
16391         * fvwm/ewmh.c:
16392         * fvwm/ewmh.h:
16393         * fvwm/ewmh_events.c:
16394         * fvwm/ewmh_intern.h:
16395         * fvwm/Makefile.am:
16396         * fvwm/fvwm2.1:
16397         New file for ewmh styles and commands. New commands EWMHBaseStrut and
16398         EWMHNumberOfDesktops. More documentation in ewmh man page section.
16400         * fvwm/add_window.c:
16401         * fvwm/bindings.c:
16402         * fvwm/events.c:
16403         * fvwm/functions.c:
16404         * fvwm/ewmh.c (EWMH_Init):
16405         * fvwm/fvwm.h:
16406         * fvwm/fvwm.c (InitVariables):
16407         * fvwm/placement.c
16408         * fvwm/sceen.h:
16409         * fvwm/session.c:
16410         * fvwm/styles.c:
16411         * fvwm/update.c:
16412         * fvwm/update.h:
16413         * fvwm/window_flags.c:
16414         * libs/Bindings.c:
16415         * libs/Picture.c:
16416         * libs/Picture.h:
16417         * libs/fvwmlib.h:
16418         * configure.in:
16419         * acconfig.h:
16420         Remove all the HAVE_EWMH ifdef but the two in virtual.c (which
16421         are maybe problematic) and those in the ewmh* files to allow
16422         to disbale the ewmh code: with --disable-ewmh all the ewmh code
16423         should be dummy. --enable-ewmh is now the default.
16425 2001-11-20  olicha  <olivier.chapuis@free.fr>
16427         * fvwm/icons.c (GetIcon):
16428         * fvwm/add_window.c (setup_icon):
16429         Fixed icons order choice and other minor bugs
16431         * fvwm/ewmh_icons.c (EWMH_SetWmIconFromPixmap):
16432         Fixed a core dump if there is no MiniIcon
16434 2001-11-18  olicha  <olivier.chapuis@free.fr>
16436         * fvwm/ewmh.c (add_kst_item):
16437         * fvwm/ewmh.h:
16438         (ewmh_AddToKdeSysTray):
16439         (EWMH_IsKdeSysTrayWindow):
16440         (EWMH_ManageKdeSysTray):
16441         (EWMH_WindowInit):
16442         fvwm/ewmh_intern.h:
16443         * fvwm/events.c (HandleDestroyNotify):
16444         (HandleMapRequest):
16445         (HandleUnmapNotify):
16446         Fixed the KDE system tray implementation
16448 2001-11-16  olicha  <olivier.chapuis@free.fr>
16450         * fvwm/ewmh.h:
16451         * fvwm/ewmh.c:
16452         fixed EWMH_WindowDestroyed and EWMH_DestroyWindow macros
16454 2001-11-15  olicha  <olivier.chapuis@free.fr>
16456         * fvwm/ewmh.c (EWMH_DestroyWindow):
16457         * fvwm/ewmh.h:
16458         (EWMH_WindowDestroyed):
16459         * fvwm/events.c (HandleReparentNotify):
16460         (HandleDestroyNotify):
16461         (HandleUnmapNotify):
16462         * fvwm/add_window.c (destroy_window):
16463         Fixed the ewmh windows lists
16465 2001-11-15  olicha  <olivier.chapuis@free.fr>
16467         * fvwm/Makefile.am:
16468         * fvwm/ewmh.c:
16469         * fvwm/ewmh.h:
16470         * fvwm/ewmh_intern.h:
16471         * fvwm/ewmh_events.c:
16472         * fvwm/ewmh_icons.c:
16473         * fvwm/ewmh_names.c:
16474         * fvwm/fvwm2.1:
16475         * NEWS:
16476         New files to achieve the extended WM hints support, off by
16477         default. This code is ifdefed a la gnome.c.
16478         This is work in progess (need to do so that every things are
16479         configurable).
16481         * configure.in:
16482         * acconfig.h (HAVE_EWMH, HAVE_ICONV, USE_LIBICONV, HAVE_CODSET):
16483         New configure option --enable-ewmh. Added tests for iconv and
16484         nl_langinfo for UTF8 conversions.
16486         * fvwm/add_window.c (AddWindow):
16487         (CaptureOneWindow):
16488         (destroy_window):
16489         (setup_window_name):
16490         (setup_icon):
16491         EWMH_SetWMState, EWMH_SetWMDesktop, EWMH_SetFrameStrut,
16492         EWMH_WindowDestroyed, EWMH_WMName, EWMH_SetVisibleName,
16493         SET_HAS_EWMH_ICON, EWMH_WMIconName
16495         * fvwm/add_window.c (setup_window_structure):
16496         * fvwm/fvwm.h (FvwmWindow):
16497         (window_flags):
16498         * fvwm/window_flags.h:
16499         * fvwm/session.c (get_version_string):
16500         (SaveWindowStates):
16501         (LoadWindowStates):
16502         Added some entries in FvwmWindow and some flags (more will be
16503         added). Some of these states need to be saved at restart and
16504         at recapture. This code is ifdefed, may be it should not: I was
16505         forced to ifdef the version string in get_version_string.
16507         * libs/Bindings.c (win_contexts):
16508         * libs/fvwmlib.h:
16509         * fvwm/events.c (GetContext):
16510         * fvwm/bindings.c (ParseBinding):
16511         (activate_binding):
16512         * fvwm/functions.c (expand_extended_var):
16513         (expand):
16514         (execute_function):
16515         (DeferExecution):
16516         * fvwm/screen.h (Scr):
16517         new context C_EWMH_DESKTOP named "D" for an ewmh desktop
16518         (kdesktop or Nautilus desktop). This context is something between
16519         C_ROOT and C_WINDOW. Added Scr.EwmhDesktop.
16521         * fvwm/bindings.c (activate_binding):
16522         Fixed immediate application of mouse/stroke bindings
16524         * fvwm/borders.h
16525         * fvwm/borders.c (RedrawDecorations):
16526         * fvwm/update.c (apply_window_updates):
16527         New function  RedrawDecorations taken from apply_window_updates
16528         and called in ewmh_icons.c and update.c
16530         * fvwm/bultins.c (CMD_WindowShade):
16531         EWMH_SetWMState
16533         * fvwm/events.c (HandleFocusIn):
16534         (HandlePropertyNotify):
16535         (HandleClientMessage):
16536         (HandleMapRequestKeepRaised):
16537         (HandleUnmapNotify):
16538         EWMH_SetActiveWindow. Test for utf8 window and icon name, set the ewmh
16539         icon state. EWMH_ProcessPropertyNotify, EWMH_ProcessClientMessage,
16540         EWMH_SetClientList
16542         * fvwm/icons.c (GetIcon):
16543         * fvwm/icons.h:
16544         (CreateIconWindow):
16545         (ChangeIconPixmap):
16546         * fvwm/events.c (HandlePropertyNotify):
16547         New function GetIcon taken from CreateIconWindow which choose
16548         the icon, there is a new case for EWMH icons. New function
16549         ChangeIconPixmap taken from events.c.
16550         The two new functions are called from ewmh_icon.c (and icons.c).
16552         * fvwm/move_resize.c (handle_stick):
16553         (CMD_Maximize):
16554         (handle_stick):
16555         EWMH_SetWMState, EWMH_GetWorkAreaIntersection, EWMH_SetWMDesktop
16557         * libs/Picture.h:
16558         * libs/Picture.c (LoadPictureFromPixmap):
16559         (CachePictureFromPixmap):
16560         New functions for loading a picture from a pixmap. Nothing is cached
16561         but this simplify the MiniIcon code.
16563         * fvwm/placement.c (PlaceWindow):
16564         EWMH_GetWorkAreaIntersection
16566         * fvwm/screen.h (Scr):
16567         Added the working area, the dynamic working area and the ewmh
16568         Desktop window.
16570         * fvwm/stack.c (restack_windows):
16571         (CMD_Layer):
16572         EWMH_SetClientListStacking, EWMH_SetWMState
16574         * fvwm/style.c (check_window_style_change):
16575         * fvwm/update.c (apply_window_updates):
16576         * fvwm/update.h:
16577         Added do_update_list_skip to the update_win flags for EWMH_SetWMState.
16578         This code is ifdefed.
16580         * fvwm/style.c (lookup_style):
16581         EWMH_GetStyle
16583         * fvwm/virctual.c (goto_desk):
16584         (CMD_GotoDeskAndPage):
16585         (do_move_window_to_desk):
16586         EWMH_SetCurrentDesk, EWMH_SetWMDesktop
16588 2001-11-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16590         * fvwm/update.c (apply_window_updates):
16591         * fvwm/gnome.c (GNOME_GetStyle):
16592         * fvwm/style.c (lookup_style):
16593         (check_window_style_change):
16594         * fvwm/add_window.c (setup_style_and_decor):
16595         fixed GnomeIgnoreHints style for some of the gnome hints
16597         * fvwm/fvwm.c (StartupStuff):
16598         Tried to fix font size problem
16600         * fvwm/placement.c (PlaceWindow):
16601         suppress an X error
16603         * fvwm/move_resize.c (moveLoop):
16604         * libs/Target.c (fvwmlib_keyboard_shortcuts):
16605         * fvwm/misc.c (Keyboard_shortcuts):
16606         modified keyboard shortcut functions so that it is possible to move
16607         windows with the keyboard even if the border is hit.  does not work
16608         very nicely with paging
16610         * libs/Target.c (fvwmlib_keyboard_shortcuts):
16611         performance enhancement
16613         * fvwm/events.c (HandleButtonPress):
16614         fixed (?) some problem with passing the raise click in ctf to the app
16616         * fvwm/add_window.c (Reborder):
16617         * fvwm/virtual.c (MoveViewport):
16618         (MapDesk):
16619         (UnmapDesk):
16620         * fvwm/session.c (SaveWindowStates):
16621         * fvwm/fvwmdebug.c (DB_WI_WINDOWS):
16622         don't access stack_next and stack_prev directly but use the access
16623         functions from stack.h
16625         * fvwm/stack.c (remove_window_from_stack_ring):
16626         (add_window_to_stack_ring_after):
16627         safety patch
16629         * fvwm/add_window.c (adjust_fvwm_internal_windows):
16630         (destroy_window):
16631         when a window becomes scheduled for destruction, remove all traces of it
16632         from the fvwm internal variable so its not accessed accidentally when
16633         its fields are no longer valid
16635 2001-11-05  Mikhael Goikhman  <migo@homemail.com>
16637         * fvwm/borders.c:
16638         fixed compilation of I18N_MB
16640 2001-10-30  Mikhael Goikhman  <migo@homemail.com>
16642         * AUTHORS:
16643         * NEWS:
16644         * acconfig.h:
16645         * configure.in:
16646         * fvwm/borders.c:
16647         * fvwm/builtins.c:
16648         * fvwm/fvwm2.1:
16649         * fvwm/screen.h:
16650         exclude the TitleStyle MultiPixmap feature (only) before forking
16651         ...
16652         and restore it after that
16654         * NEWS:
16655         * configure.in:
16656         change version string to 2.5.0
16658         * NEWS:
16659         added a missing entry for the stable release 2.4.0 (03-Jul-2001);
16660         added a link to the stable version 2.4.4 (not released yet)
16662 2001-10-30  Mikhael Goikhman  <migo@homemail.com>
16664         * NEWS:
16665         * configure.in:
16666         change version string to 2.4.4 before forking
16668         * make_fvwmdist.sh:
16669         strip end of line from date (adjust for a new length)
16671 2001-10-29  olicha  <olivier.chapuis@free.fr>
16673         * fvwm/screen.h (DecorFaceStyle):
16674         Fixed the "lenght" of face_type if FANCY_TITLEBARS is defined,
16675         so that Solid colors work again
16677 2001-10-28  olicha  <olivier.chapuis@free.fr>
16679         * fvwm/module_interface.c (skipModuleAliasToken):
16680         Allows '/' as alias character
16682         * NEWS
16683         Script news
16685 2001-10-27  Mikhael Goikhman  <migo@homemail.com>
16687         * configure.in:
16688         * acconfig.h:
16689         * NEWS:
16690         added --disable-multipixmap-titles for the Suzanne's patch,
16691         the default is enable
16693         * fvwm/fvwm2.1:
16694         some formatting fixes in TitleStyle entry
16696 2001-10-27  Suzanne Britton  <tril@igs.net>
16698         * config.h.in: Added FANCY_TITLEBARS option, off by default
16700         * fvwm/fvwm2.1:
16701         Added info on TitleStyle MultiPixmap
16703         * fvwm/screen.h:
16704         [All changes #ifdeffed FANCY_TITLEBARS]
16705         Added TITLE_PADDING define for fancy titlebar rendering
16706         Added tb_pixmap_enum
16707         Added MultiPixmap to DecorFaceType enum
16708         Added Picture **multi_pixmaps and short multi_stretch_flags
16709         to DecorFace structure
16711         * fvwm/borders.c:
16712         [All changes #ifdeffed FANCY_TITLEBARS except the fix to RedrawButtons]
16713         (DrawButton): Handle UseTitleStyle where TitleStyle is MultiPixmap
16714         (RenderIntoWindow): [new]
16715         (DrawMultiPixmapTitlebar): [new]
16716         (RedrawButtons): Pass the left1right0 parameter properly to DrawButton,
16717         instead of always sending 1
16718         (RedrawTitle):
16719         Call DrawFancyTitlebar for MultiPixmap style
16720         Skip DrawString calls for MultiPixmap style (title is drawn inside
16721         DrawMultiPixmapTitlebar)
16723         * fvwm/builtins.c:
16724         [All changes #ifdeffed FANCY_TITLEBARS]
16725         (FreeDecorFace): Free up multi_pixmaps array for a MultiPixmap decor
16726         (ReadDecorFace): Call ReadMultiPixmapDecor for a MultiPixmap TitleStyle
16727         (ReadMultiPixmapDecor): [new]
16729 2001-10-26  Dan Espen  <dane@mk.telcordia.com>
16731         * NEWS: FvwmForm: Customize pointers, support ISO_Tab key,
16732         buttons can activate on press or release, special pointer during grab,
16733         arrow key command recall.
16735 2001-10-24  Mikhael Goikhman  <migo@homemail.com>
16737         * fvwm/bindings.c (ParseBinding):
16738         * fvwm/bindings.h:
16739         * fvwm/fvwm2.1:
16740         binding commands now do not print error messages with Silent
16742         * fvwm/ConfigFvwmDefaults:
16743         * NEWS:
16744         don't use ReverseOrder in the default Alt-Tab like it was in 2.4.0;
16745         use Silent before Key Help
16747         * fvwm/add_window.c:
16748         changed the broken size hints message to notify the owner
16750         * docs/fvwm.lsm.in:
16751         small changes
16753 2001-10-19  olicha  <olivier.chapuis@free.fr>
16755         * NEWS:
16756         Some FvwmScript news
16758 2001-10-16  olicha  <olivier.chapuis@free.fr>
16760         * NEWS:
16761         Some FvwmScript news
16763 2001-10-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16765         * fvwm/bindings.c (activate_binding):
16766         * libs/Bindings.c (GrabWindowKeyOrButton):
16767         activate mouse/stroke bindings immediately
16769         * fvwm/events.c (HandleButtonPress):
16770         it is possible to bind actions to the 'ClickToFocus' click
16772 2001-10-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16774         * fvwm/virtual.c (HandlePaging):
16775         allow paging during move/resize when pressing keys
16777         * libs/XResource.c (MergeCmdLineResources):
16778         possible core dump fix
16780         * fvwm/add_window.c (setup_window_placement):
16781         fixed core dump
16783         * libs/Bindings.c (AddBinding):
16784         another attempt at cleaning up bindings with "Shift"
16786 2001-10-13  olicha  <olivier.chapuis@free.fr>
16788         * NEWS
16789         FvwmScript news
16791 2001-10-10  Mikhael Goikhman  <migo@homemail.com>
16793         * move_resize.c:
16794         * fvwm/fvwm2.1:
16795         OpaqueMoveSize now accepts "unlimited" or negative argument.
16797 2001-10-09  Mikhael Goikhman  <migo@homemail.com>
16799         * fvwm/fvwm2.1:
16800         added missing "!"
16802 2001-10-08  Dan Espen  <dane@mk.telcordia.com>
16804         * libs/Makefile.am (libfvwm_a_SOURCES): Add new file.
16806         * libs/fvwmlib.h:
16807         * libs/Cursor.c: Create new libs function fvwmCursorNameToIndex.
16809         * fvwm/cursor.c: Extract cursor validation routine to become a libs
16810         routine.
16812 2001-10-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16814         * NEWS, configure.in:
16815         changed version to 2.5.0
16817 2001-10-08  olicha  <olivier.chapuis@free.fr>
16819         * fvwm/borders.c (RedrawTitle):
16820         Fixed drawing of leftJustified stippled title and suppress warnings
16821         in RelieveRectangle w/ RightJustified stippled title
16823 2001-10-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16825         * fvwm/virtual.c (CMD_XineramaSlsSize):
16826         fixed ABR
16828 2001-10-03  olicha  <olivier.chapuis@free.fr>
16830         * fvwm/style.c (CMD_Style):
16831         * fvwm/fvwm2.1
16832         Added the possibility to add an Xinerama screen to the 4 numerics
16833         Iconbox format
16835 2001-10-03  olicha  <olivier.chapuis@free.fr>
16837         * fvwm/icons.c (AutoPlaceIcon):
16838         Fixed a core dump with @c and fixed icon placement if the icon should
16839         not be on the current page
16841 2001-10-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16843         * fvwm/icons.c (AutoPlaceIcon):
16844         * libs/FScreen.c (FScreenParseScreenBit):
16845         added 'w' screen specifier for icon boxes
16847         * fvwm/icons.c (AutoPlaceIcon):
16848         fixed placement of icons in icon boxes on different screen
16850         * fvwm/menus.c (get_menu_options):
16851         reduced code duplication
16853 2001-10-02  olicha  <olivier.chapuis@free.fr>
16855         * fvwm/menus.c (get_menu_options):
16856         fixed Xinerama placement of menu with empty but not null position hints
16858 2001-10-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16860         * fvwm/borders.c (RedrawTitle):
16861         * libs/defaults.h (WINDOW_TITLE_STICKY_GAP):
16862         suppress a warning in RelieveRectangle w/ small sticky windows
16864 2001-09-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16866         * fvwm/menus.c (get_menu_options):
16867         A 'rectangle' context rectangle for menus honours the '@screen' bit
16869         * fvwm/move_resize.c (DisplayPosition):
16870         coordinates of a window are show in relation to the screen, not the page
16872         * libs/FScreen.c (FScreenTranslateCoordinates):
16873         * fvwm/placement.c (PlaceWindow):
16874         * fvwm/add_window.c (setup_window_placement):
16875         Applied patches by Sidik Isani that adds the "fvwmscreen" X resource;
16876         rewrote the library functionality to better match the rest of the
16877         interface
16879         * fvwm/builtins.c (DestroyFvwmDecor):
16880         removed useless code
16882         * fvwm/icons.c (DrawIconWindow):
16883         fixed race condition w/ expanding/collapsing icon titles
16885         * fvwm/windowlist.c (CMD_WindowList):
16886         fixed Xinerama placement of window list when called without options
16888 2001-09-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16890         * libs/FScreen.c (FScreenSLSOnOff):
16891         fixed core dump when calling XineramaSls before XineramaSlsSize
16893         * configure.in:
16894         changed to 2.4.3
16896         * libs/FShape.h (FHaveShapeExtension):
16897         set macro to 1 when compiling w/ shape extension
16899 2001-09-17  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16901         * libs/Bindings.c (AddBinding):
16902         * fvwm/bindings.c (ParseBinding):
16903         print a warning if a key with the given name does not exist
16904         if there is an upper and a lower case version of the same key name,
16905         always bind to the lower case version; this is problematic if the upper
16906         case version is tied to a key without a modifier and the lower case
16907         version is tied to the same key, but with a modifier (or both are tied
16908         to different keys). I hope this good enough.
16910         * libs/Bindings.c (FreeBindingList):
16911         (MatchBindingExactly):
16912         (CollectBindingList):
16913         fixed some problems overriding keys
16914         reduced duplication of logic
16916 2001-09-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16918         * NEWS, configure.in:
16919         changed version to 2.5.0
16921 2001-09-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16923         * configure.in:
16924         changed version to 2.4.2
16926 2001-09-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16928         * libs/Colorset.c:
16929         (SetWindowBackground):
16930         (SetRectangleBackground):
16931         * fvwm/builtins.c (CMD_WindowShade):
16932         * fvwm/add_window.c:
16933         (setup_style_and_decor):
16934         * fvwm/icons.c:
16935         (CreateIconWindow):
16936         (GetXPMFile):
16937         (GetIconWindow):
16938         (GetIconBitmap):
16939         * fvwm/events.c:
16940         (HandleConfigureRequest):
16941         (HandleShapeNotify):
16942         (InitEventHandlerJumpTable):
16943         * fvwm/borders.c (struct):
16944         (SetupFrame):
16945         (SetShape):
16946         * fvwm/decorations.c (SelectDecor):
16947         * fvwm/fvwm.c:
16948         (main):
16949         (setVersionInfo):
16950         * fvwm/externs.h:
16951         * fvwm/fvwm.h (FvwmWindow):
16952         * libs/FShape.h:
16953         * libs/FShape.c:
16954         moved shape support to library; its no longer necessary to
16955         '#ifdef SHAPE' any code
16957         * fvwm/borders.c (RedrawButtons):
16958         (RedrawTitle):
16959         fixed top border hilight drawing of title buttons
16961         * libs/Graphics.c (do_relieve_rectangle):
16962         (RelieveRectangle):
16963         (RelieveRectangle2):
16964         allow alternate shading for title buttons
16966 2001-09-15  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
16968         **/*.1:
16969         Applied man page patch by Dmitry Yu. Bolkhovityanov:
16970         Add a formal description of how fvwm maintains module's configs
16971         Change manpages of individual modules to refer to fvwm2(1) for
16972         details about specifying configuration
16974         * fvwm/add_window.c (setup_window_placement):
16975         desk and page can now really be given as X resources a la
16976           xterm.desk: 1
16978         * libs/XResource.c (GetResourceString):
16979         resource -> lower case, class -> upper case
16980         changed signature
16982         * configure.in:
16983         changed version to 2.5.0
16985         * Makefile.am (distcheck2):
16986         build distcheck before dist2; save a few seconds if the build fails
16988         * libs/alloca.c:
16989         * libs/ClientMsg.c:
16990         * libs/envvar.c:
16991         * libs/Event.c:
16992         * libs/fvwmrect.c:
16993         * libs/gethostname.c:
16994         * libs/Grab.c:
16995         * libs/Pointer.c:
16996         * libs/safemalloc.c:
16997         * libs/strcasecmp.c:
16998         * libs/strdup.c:
16999         * libs/strerror.c:
17000         * libs/strncasecmp.c:
17001         * libs/usleep.c:
17002         * libs/wild.c:
17003         * libs/WinMagic.c:
17004         * libs/XError.c:
17005         * libs/Graphics.c:
17006         include config.h
17008         * configure.in:
17009         changed version to 2.4.1 again
17011 2001-09-14  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17013         * libs/Bindings.c (FvwmStringToKeysym):
17014         try both cases of the first letter of a key name
17016         * fvwm/ConfigFvwmDefaults:
17017         * fvwm/windowlist.c (winCompareReverse):
17018         (CMD_WindowList):
17019         new WindowList option ReverseOrder; use the new option in the default
17020         Alt-Tab binding. This makes it possible to hit Alt-Tab repeatedly to
17021         cycle through the whole window list. The old behaviour only toggled
17022         between two windows. Also, a simple Alt-Tab can be used to switch to
17023         the next window instead of Alt-Tab-Tab.
17025         * libs/FScreen.c (FScreenInit):
17026         fixed a Xinerama crash
17028         * configure.in:
17029         print a verbose error message and exit if X11 headers and libraries
17030         are not found
17032 2001-09-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17034         * fvwm/fvwm.c (main):
17035         * libs/FShape.c:
17036         * libs/FShape.h:
17037         new library for X shape encapsulation
17039         * fvwm/builtins.c (CMD_WindowShade):
17040         * fvwm/borders.c (SetupFrame):
17041         fixed shading of windows without title and border
17042         fixed shading of shaped windows; fixes bug #732
17044         * fvwm/builtins.c (CMD_SetEnv):
17045         calling SetEnv without a value is the same as UnsetEnv
17047 2001-09-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17049         * fvwm/events.c (HandleReparentNotify):
17050         fixed vanishing windows in rapid map/unmap cycles; bug #770
17052         * fvwm/add_window.c (hide_screen):
17053         fixed possible BadWindow error
17055 2001-09-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17057         * fvwm/virtual.c (MoveViewport):
17058         (goto_desk):
17059         (CMD_GotoDeskAndPage):
17060         (CMD_GotoPage):
17061         GotoDeskAndPage records its own history of last visited desk/page
17063         * libs/FScreen.c (FScreenInit):
17064         fixed a memory allocation bug pointed out by Giuseppe Della Ricca
17066 2001-09-05  olicha  <olivier.chapuis@free.fr>
17068         * fvwm/session.c (MatchWinToSM):
17069         * fvwm/add_window.c (setup_window_structure):
17070         * fvwm/move_resize.c (moveLoop):
17071         Fixed PlacedByButton3 condition
17073 2001-09-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17075         * libs/FScreen.c:
17076         * fvwm/functions.c (func_config):
17077         * fvwm/module_interface.c (broadcast_xinerama_state):
17078         * fvwm/virtual.c (CMD_Xinerama):
17079         (CMD_XineramaPrimaryScreen):
17080         (CMD_XineramaSls):
17081         (CMD_XineramaSlsSize):
17082         added sls support
17083         split Xinerama command into Xinerama, XineramaPrimaryScreen,
17084         XineramaSls and XineramaSlsSize
17085         restructured parts of the FScreen code
17087         * fvwm/functions.c (func_config):
17088         new commands XineramaPrimaryScreen, XineramaSls and XineramaSlsSize
17090         * libs/Graphics.c (RelieveRectangle):
17091         allow calling the function with w == 0 or h == 0 without a message
17093         * fvwm/window_flags.h (SET_STYLE_DELETED):
17094         * fvwm/style.c (CMD_DestroyStyle):
17095         (check_window_style_change):
17096         * fvwm/fvwm.h (window_style):
17097         update windows when a style is deleted
17099         * configure.in:
17100         fixed xpm detection problem caused by wrong library order
17102 2001-09-05  olicha  <olivier.chapuis@free.fr>
17104         * NEWS: PlacedByFvwm
17106 2001-09-04  Dan Espen  <dane@mk.telcordia.com>
17108         * fvwm/fvwm2.1 (PlacedByFvwm): Grammar.
17110 2001-09-04  olicha  <olivier.chapuis@free.fr>
17112         * fvwm/fvwm.h:
17113         * fvwm/windows_flags.h:
17114         * fvwm/placement.c (PlaceWindow):
17115         * fvwm/add_window.c (setup_window_structure):
17116         * fvwm/conditional.c (CreateConditionMask):
17117         * fvwm/session.c (get_version_string):
17118         (MatchWinToSM):
17119         * fvwm/fvwm2.1:
17120         Added a new windows_flags is_placed_by_fvwm and a new condition
17121         PlacedByFvwm
17123 2001-09-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17125         * fvwm/focus.c (focus_grab_buttons):
17126         (MoveFocus):
17127         disabled xt/double click patch for now
17129 2001-09-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17131         * libs/Graphics.c (RelieveRectangle):
17132         print a warning if one of the dimensions is <= 0
17134         * fvwm/placement.c (PlaceWindow):
17135         take care of windows that have both, PPosition and USPosition set
17136         take care of transient windows that have neither PPosition nor
17137         USPosition set
17139 2001-09-01  olicha  <olivier.chapuis@free.fr>
17141         * libs/FScreen.c (FScreenInit):
17142         Fixed the position of the xinerama emulation delimiters
17144 2001-08-31  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17146         * fvwm/fvwm2.1:
17147         Xinerama introduction
17149         * fvwm/icons.c (AutoPlaceIcon):
17150         try to place icons of screen with the window center, and if that fails
17151         on any screen
17153         * libs/FScreen.c (FScreenGetScrRect):
17154         performance improvement for non-xinerama systems
17156         * fvwm/update.c (apply_window_updates):
17157         (flush_window_updates):
17158         update icon boxes and icon position when xinerama layout changes
17160         * fvwm/icons.c (AutoPlaceIcon):
17161         limit placement of icons using no icon box to screen boundaries
17162         adapt icon boxes to xinerama layout whenever used
17164         * fvwm/placement.c (PlaceWindow):
17165         * fvwm/style.c (CMD_Style):
17166         (check_window_style_change):
17167         * fvwm/style.h (SUSE_NO_USPOSITION):
17168         (SUSE_NO_TRANSIENT_PPOSITION):
17169         (SUSE_NO_TRANSIENT_USPOSITION):
17170         * fvwm/fvwm.h (struct):
17171         implemented new styles NoUSPosition/UseUSPosition,
17172         NoTransientPPosition/UseTransientPPosition,
17173         NoTransientUSPosition/UseTransientUSPosition.
17174         These work exactly like NoPPosition/UsePPosition.
17175         Transient windows ignore the window position if neither the PPosition
17176         nor the USPosition hint is set.
17178 2001-08-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17180         * fvwm/focus.c (restore_focus_after_unmap):
17181         fixed a bug transfering the focus when a window was iconified
17183 2001-08-26  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17185         * fvwm/conditional.c (MatchesConditionMask):
17186         * fvwm/move_resize.c (position_geometry_window):
17187         * fvwm/placement.c (PlaceWindow):
17188         * fvwm/menus.c (pop_menu_up):
17189         * fvwm/move_resize.c (move_window_doit):
17190         * fvwm/icons.c (do_all_iconboxes):
17191         * fvwm/placement.c (PlaceWindow):
17192         * fvwm/menus.c (update_menu):
17193         adapted to new FScreen... signatures
17195         * libs/FScreen.c (FScreenClipToScreen):
17196         (FScreenGetScrCenterCenter):
17197         (FScreenCenterCurrent):
17198         (FScreenCenterPrimary):
17199         (FScreenGetCurrent00):
17200         (FScreenGetGlobalScrRect):
17201         (FScreenGetPrimaryScrRect):
17202         (FScreenGetScrRect):
17203         (FScreenIsRectangleOnScreen):
17204         unified all the FSCreen... functions using a common signature, removed
17205         most old functions
17207         * fvwm/style.c (CMD_Style):
17208         init icon box screen
17210         * fvwm/move_resize.c (move_window_doit):
17211         (CMD_Maximize):
17212         * libs/Makefile.am:
17213         * libs/XineramaSupport.c:
17214         * libs/XineramaSupport.h:
17215         * libs/FScreen.c:
17216         exported and renamed screen defines
17218         * libs/FScreen.h:
17219         renamed files
17221         * fvwm/virtual.c:
17222         * fvwm/style.c:
17223         * fvwm/placement.c:
17224         * fvwm/move_resize.c:
17225         * fvwm/module_interface.c:
17226         * fvwm/modconf.c:
17227         * fvwm/menus.c:
17228         * fvwm/icons.c:
17229         * fvwm/fvwm.c:
17230         * fvwm/conditional.c:
17231         * libs/XineramaSupport.c:
17232         renamed all XineramaSupport...() functions to FScreen...()
17234         * fvwm/style.c (CMD_Style):
17235         -Wall fix
17237 2001-08-25  Dan Espen  <dane@mk.telcordia.com>
17239         * fvwm/style.c (CMD_Style):
17240         * fvwm/fvwm.h (icon_boxes_struct): Add screen to iconbox struct when
17241         using geometry spec.
17243 2001-08-25  Mikhael Goikhman  <migo@homemail.com>
17245         * libs/Strings.c:
17246         * libs/Strings.h:
17247         new function QuoteString() to add and escape single quotes to strings
17249         * fvwm/menus.c (MenuInteraction):
17250         quote both missing function name and menu name for
17251         MissingSubmenuFunction
17253         * fvwm/functions.c (expand):
17254         use QuoteString()
17256 2001-08-25  Dan Espen  <dane@mk.telcordia.com>
17258         * fvwm/style.c (CMD_Style): Fix up iconboxes using negative geom specs.
17260 2001-08-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17262         * fvwm/cursor.c (CMD_CursorStyle):
17263         * fvwm/icons.c (GetXPMFile):
17264         * libs/Colorset.c (SetWindowBackground):
17265         -Wall fixes
17267         * libs/Bindings.c (AddBinding):
17268         tired to help with problem binding keys that have a keycode with no
17269         modifiers and another keycode with some modifiers pressed, e.g.
17270         kc 95 = F11, kc 67 = F1, kc 67 + shift = F11, which caused pressing
17271         F1 generating the actioon bound to F11 sometimes
17273         * fvwm/focus.c (focus_grab_buttons):
17274         -Wall fix
17276 2001-08-23  Dan Espen  <dane@mk.telcordia.com>
17278         * libs/Bindings.c (MatchBinding): Unify XDisplayKeycodes avoidance.
17280 2001-08-20  Bob Woodside  <proteus@pcnet.com>
17282         * fvwm/focus.c (MoveFocus, focus_grab_buttons): Fixed passive button
17283         grab synchronization so apps using XtTranslations to catch double-
17284         clicks don't get confused by extraneous Leave/EnterNotify events.
17285         This fixes the "xfm/moxfm don't see double-clicks" problem.
17287 2001-08-20  Dan Espen  <dane@mk.telcordia.com>
17289         * fvwm/icons.c (AutoPlaceIcon): Fix bug.
17291 2001-08-19  Dan Espen  <dane@mk.telcordia.com>
17293         * fvwm/icons.c (AutoPlaceIcon): Apply screen dimensions as icon is
17294         placed.
17296         * fvwm/style.c (CMD_Style): Don't apply screen dimensions to iconbox
17297         until later when the window is actually placed.
17299         * fvwm/fvwm.h (icon_boxes_struct):  Save  sign  for later  screen
17300         position calculation.
17302 2001-08-19  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17304         * fvwm/update.c (flush_window_updates):
17305         * fvwm/screen.h (ScreenInfo):
17306         * fvwm/virtual.c (CMD_Xinerama):
17308         * fvwm/move_resize.c (CMD_Maximize):
17309         * fvwm/placement.c (PlaceWindow):
17310         * libs/XineramaSupport.c (XineramaSupportGetNumberedScrRect):
17311         renamed function
17313         * fvwm/fvwm2.1:
17314         describe new maximize options
17316         * fvwm/move_resize.c (MaximizeWidth):
17317         (MaximizeHeight):
17318         (CMD_Maximize):
17319         applied Dmitry's Xinerama patch for Maximize command
17320         replaced "global" and "absolute" with "screen" which is more flexible
17322 2001-08-16  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17324         * libs/Parse.c (SkipQuote):
17325         fixed a bug in handling of caller specified quote pairs
17327         * fvwm/move_resize.c (CMD_Maximize):
17328         keep window on correct page when viewport does not start on a page
17329         boundary
17331         * libs/XError.c (error_name):
17332         (request_name):
17333         fixed core dump in error handling
17335 2001-08-15  Mikhael Goikhman  <migo@homemail.com>
17337         * configure.in:
17338         * acinclude.m4:
17339         * INSTALL:
17340         * INSTALL.fvwm:
17341         renamed --disable-gnome to --disable-gnome-hints;
17342         documented configure options --with-gnome*;
17343         small improvements in documentation;
17344         use underscore in version instead of dash that causes rpm problems
17346 2001-08-14  Mikhael Goikhman  <migo@homemail.com>
17348         * libs/Makefile.am:
17349         added fvwmrect.h to dist
17351 2001-08-14  Dan Espen  <dane@mk.telcordia.com>
17353         * libs/XineramaSupport.c: Disable debug printing.
17355 2001-08-13  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17357         * libs/defaults.h (DEFAULT_MENU_STYLE):
17358         reset colour sets in default menu style too
17360 2001-08-13  Mikhael Goikhman  <migo@homemail.com>
17362         * builtins.c:
17363         * events.c:
17364         completed the libstroke-0.5 compatibility fix
17366 2001-08-10  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17368         * fvwm/move_resize.c (draw_move_resize_grid):
17369         fixed drawing of resize grid when invoked from button or key press
17371         * fvwm/placement.c (PlaceWindow):
17372         rewrote a condition to improve readability
17373         fixed StartsOn... w/ SkipMapping
17375 2001-08-09  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17377         * fvwm/session.c (MatchWinToSM):
17378         (LoadWindowStates):
17379         (SaveWindowStates):
17380         * fvwm/move_resize.c (CMD_Resize):
17381         * fvwm/events.c (HandlePropertyNotify):
17382         (HandleConfigureRequest):
17383         * fvwm/move_resize.c (CMD_ResizeMove):
17384         (CMD_Maximize):
17385         (CMD_Resize):
17386         * fvwm/update.c (apply_window_updates):
17387         * fvwm/add_window.c (AddWindow):
17388         * fvwm/geometry.c (constrain_size):
17389         (gravity_constrain_size):
17390         the Resize command honors the window gravity
17391         changing the size increment of maximized windows no longer shrinks the
17392         window
17394         * fvwm/icons.c:
17395         keep expanded icon titles on screen
17397 2001-08-08  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17399         * fvwm/icons.c (do_all_iconboxes):
17400         default icon box fills the primary screen
17402         * libs/XineramaSupport.c (XineramaSupportParseScreenBit):
17403         fixed default_screen argument
17405         * fvwm/style.c (merge_styles):
17406         * fvwm/fvwm.h (window_style):
17407         * fvwm/style.h (SSET_START_SCREEN):
17408         * fvwm/add_window.c (setup_window_placement):
17409         * fvwm/placement.c (PlaceWindow):
17410         (CMD_PlaceAgain):
17411         implemented StartsOnScreen style
17413         * fvwm/placement.c (PlaceWindow):
17414         (test_fit):
17415         (get_next_x):
17416         (get_next_y):
17417         (CleverPlacement):
17418         (SmartPlacement):
17419         Place new windows on xinerama screens
17421         * libs/XineramaSupport.c (XineramaSupportParseGeometryWithScreen):
17422         fixed core dump in debug output
17424 2001-08-07  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17426         * fvwm/placement.c:
17427         removed unused variable
17429 2001-08-07  olicha  <olivier.chapuis@free.fr>
17431         * NEWS:
17432         FvwmIconBox, FvwmTaskBar and FvwmWinList support aliases
17434 2001-08-06  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17436         * fvwm/virtual.c (CMD_Xinerama):
17437         replaced XineramaEnable and ...Disable with XineramaCommand
17439         * libs/XineramaSupport.c (XineramaSupportParseScreenBit):
17440         (XineramaSupportGetScreenArgument):
17441         new functions
17443         * fvwm/functions.c (func_config):
17444         * fvwm/move_resize.c (move_window_doit):
17445         (CMD_Move):
17446         (CMD_AnimatedMove):
17447         (CMD_MoveToPage):
17448         (CMD_MoveToScreen):
17449         (handle_stick):
17450         added new command MoveToScreen
17452 2001-08-05  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17454         * libs/fvwmrect.c:
17455         * libs/fvwmrect.h:
17456         new library files
17458         * libs/XineramaSupport.c (XineramaSupportParseGeometry):
17459         fixed parsing of negative geometries
17460         (XineramaSupportParseGeometryWithScreen):
17461         made global
17462         (XineramaSupportGetNumberedScreenRect):
17463         new function
17465         * sample.fvwmrc/system.fvwm2rc:
17466         * sample.fvwmrc/new-features:
17467         * sample.fvwmrc/system.fvwm2rc-sample-95:
17468         * sample.fvwmrc/system.fvwm2rc-sample-2:
17469         * sample.fvwmrc/system.fvwm2rc-sample-1:
17470         * fvwm/fvwm2.1:
17471         updated for new condition
17473         * fvwm/conditional.c (CreateConditionMask):
17474         (MatchesConditionMask):
17475         * fvwm/fvwm.h (WindowConditionMask):
17476         implemented new condition AcceptsFocus to cope with applications like
17477         xclock that have circulatehit but don't take focus
17479 2001-08-02  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17481         * libs/XineramaSupport.c (XineramaSupportParseGeometry):
17482         handle Xinerama screens
17484         * fvwm/style.c (CMD_Style):
17485         * fvwm/menus.c (get_menu_options):
17486         cope with Xinerama like geometries with screen info
17488         * fvwm/virtual.c (CMD_XineramaEnable):
17489         XineramaEnable optionally takes the number of the primary screen as its
17490         argument
17492         * fvwm/events.c (GetContext):
17493         reindented code
17495         * fvwm/virtual.c (HandlePaging):
17496         * fvwm/events.c (HandleButtonPress):
17497         * fvwm/events.h (XEVMASK_PANFW):
17498         fixed button and key event handling over pan frames; fixes bug #752
17500         * fvwm/menus.c (get_menu_options):
17501         fixed Xinerama placement of menus without options
17503 2001-08-01  Mikhael Goikhman  <migo@homemail.com>
17505         * NEWS:
17506         * fvwm/borders.c:
17507         * fvwm/builtins.c:
17508         * fvwm/fvwm.c:
17509         * fvwm/screen.h:
17510         Color enhancements in button vectors: @2 is bg color, @3 is fg color.
17511         In addition to the existing: @0 is shadow color, @1 is hilight color.
17513         * fvwm/fvwm2.1:
17514         Added the formal description of Vector that was absent.
17516 2001-08-01  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17518         * fvwm/fvwm2.1:
17519         some man page corrections
17521 2001-07-30  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17523         * fvwm/move_resize.c (handle_stick):
17524         also redraw buttons when a window becomes sticky/slippery to make sure
17525         that MWMDecorStick buttons are updated too; fixes bug #749
17527 2001-07-30  Mikhael Goikhman  <migo@homemail.com>
17529         * NEWS:
17530         documented previous changes
17532         * configure.in:
17533         improved output spacing
17535         * fvwm/fvwm2.1:
17536         minor typo
17538 2001-07-29  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17540         * libs/XineramaSupport.c (XineramaSupportConfigureModule):
17541         * fvwm/modconf.c (send_xinerama_state):
17542         * fvwm/module_interface.c (broadcast_xinerama_state):
17543         * libs/defaults.h:
17544         revised module support for Xinerama
17546         * libs/XineramaSupport.c (XineramaSupportParseGeometryWithScreen):
17547         (XineramaSupportParseGeometry):
17548         (XineramaSupportGetGeometry):
17549         make interface compatible with XineramaSupportParseGeometry().
17550         (XineramaSupportGetPrimaryScreen):
17551         new function
17553         * fvwm/stack.c (raise_over_unmanaged):
17554         fixed restacking of windows with RaiseOverUnmanaged - windows were
17555         raised in reverse order so that the top window became the bottom
17556         window of the ones that were raised
17557         also, ignore Scr.NoFocusWin and all InputOnly windows for raising since
17558         these are invisible
17560 2001-07-28  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17562         * sample.fvwmrc/system.fvwm2rc-sample-95:
17563         fixed syntax of BugOpts command
17565         * fvwm/ConfigFvwmDefaults:
17566         resize window when clicking on the sides of the window by default
17567         instead of moving it
17569         * fvwm/events.c (HandleEnterNotify):
17570         do not delete MouseFocus when pointer moves from one particular sub
17571         window of a frame to another one.  Helps with xv/xmms vs unclutter
17572         interaction and also with MouseFocus vs. Open Look applications
17574         * fvwm/move_resize.c (DoSnapAttract):
17575         * libs/XineramaSupport.c (XineramaSupportGetResistanceRect):
17576         fixed snapping to Xinerama screen edges
17577         (XineramaSupportIsEnabled):
17578         return False is the X server provides only a single screen
17580         * fvwm/fvwm2.1:
17581         Added descriptions of conditions CurrentDesk, CurrentPage,
17582         CurrentScreen, CurrentGlobalPage, CurrentPageAnyDesk and
17583         CurrentGlobalPageAnyDesk
17585         * fvwm/fvwm.h (rectangle):
17586         (position):
17587         typedefs moved to libs/fvwmlib.h
17589         * fvwm/conditional.c (MatchesConditionMask):
17590         * fvwm/fvwm.h (WindowConditionMask):
17591         * fvwm/conditional.c:
17592         introduced new conditions CurrentGlobalPage and CurrentGlobalPageAnyDesk
17593         for Xinerama support
17595         * fvwm/modconf.c (CMD_Send_ConfigInfo):
17596         (send_xinerama_state):
17597         * fvwm/module_interface.c (broadcast_xinerama_state):
17598         * libs/XineramaSupport.c (XineramaSUpportIsEnabled):
17599         * libs/defaults.h (DEFAULT_XINERAMA_DISABLED):
17600         communicate xinerama state at module startup
17602 2001-07-27  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17604         * libs/XineramaSupport.c:
17605         next Xinerama patch
17607 2001-07-25  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17609         * fvwm/move_resize.c (moveLoop):
17610         windows were lost off screen w/ non opaque interactive move when motion
17611         was aborted with Escape on a different page that it was started
17613         * fvwm/move_resize.c (position_geometry_window):
17614         (DisplayPosition):
17615         (DisplaySize):
17616         (InteractiveMove):
17617         (CMD_Resize):
17618         (moveLoop):
17619         (CMD_Resize):
17620         (DoResize):
17621         * libs/XineramaSupport.c (GetMouseXY):
17622         (XineramaSupportCenterCurrent):
17623         (XineramaSupportGetCurrent00):
17624         (XineramaSupportGetCurrentScrRect):
17625         allow to pass in an event with the pointer position
17626         minimize number of XQueryPointer calls in interactive move/resize
17628         * libs/defaults.h:
17629         * fvwm/move_resize.c (resize_geometry_window):
17630         (DisplayPosition):
17631         (DisplaySize):
17632         border width of geometry window moved to defaults.h
17633         moved strings for size window formatting to defaults.h
17634         reworked calculations of geometry window dimensions
17636         * fvwm/move_resize.c (resize_geometry_window):
17637         (position_geometry_window):
17638         (DisplaySize):
17639         (InteractiveMove):
17640         (CMD_Resize):
17641         * fvwm/builtins.c (ApplyDefaultFontAndColors):
17642         * fvwm/fvwm.c (main):
17643         funtions ResizeSizeWindow and PositionSizeWindow renamed to
17644         resize_geometry_window and position_geometry_window
17646         * fvwm/fvwm.c (main):
17647         fixed resizing geometry window before creating it
17649         * fvwm/move_resize.c (switch_move_resize_grid):
17650         (MoveOutline):
17651         * fvwm/virtual.c (HandlePaging):
17652         renamed MoveOutline to draw_move_resize_grid and made static
17653         new function switch_move_resize_grid for external calls
17654         delete grid before moving the geometry window to get rid of arifacts of
17655         the grid
17657 2001-07-24  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17659         * libs/XineramaSupport.c (XineramaSupportInit):
17660         make the blank area in Xinerama emulation usable again
17662 2001-07-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17664         * fvwm/menus.c (update_menu):
17665         (pop_menu_up):
17666         (make_menu):
17667         (calculate_item_sizes):
17668         (size_menu_horizontally):
17669         (size_menu_vertically):
17670         menus are resized to fit their Xinerama screen every time they are
17671         popped up and the screen size has changed
17673 2001-07-23  olicha  <olivier.chapuis@free.fr>
17675         * libs/XineramaSupport.c (XineramaSupportInit):
17676         Draw the xinerama simulation screens with orr windows
17678 2001-07-23  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17680         * fvwm/windowlist.c (CMD_WindowList):
17681         fixed windowlist placement w/ Xinerama
17683 2001-07-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17685         * fvwm/menus.c (pop_menu_up):
17686         fixed calculations that force a menu on screen w/ Xinerama
17688         * fvwm/move_resize.c (DoSnapAttract):
17689         removed some code that slipped in with xinerama patch and broke
17690         vertical SnapAttraction
17692         * fvwm/virtual.c (CMD_EdgeResistance):
17693         removed debug code
17695         * libs/XineramaSupport.c (XineramaSupportClipToScreen):
17696         take reference position src_x/src_y to determine screen
17698         * fvwm/windowlist.c (CMD_WindowList):
17699         * fvwm/menus.c (get_menu_options):
17700         (get_popup_options):
17701         (MenuInteraction):
17702         (pop_menu_up):
17703         handle Xinerama screens for positioning menus w/ posthints
17705         * fvwm/menus.c (get_menu_options):
17706         renamed function
17707         fix for icon/window context rectangle when window is in wrong state
17709 2001-07-22  Mikhael Goikhman  <migo@homemail.com>
17711         * configure.in:
17712         s/XINERAMA/HAVE_XINERAMA/, now #ifdef'd xinerama code is finally ever
17713         compiled in; fixed linking by adding -lXinerama; small corrections
17715 2001-07-22  Dan Espen  <dane@mk.telcordia.com>
17717         * fvwm/fvwm2.1: Remove some test code, fix remaining .IP commands.
17719 2001-07-22  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17721         * libs/XineramaSupport.c (XineramaSupportInit):
17722         added xinerama emulation for developers
17724         * fvwm/virtual.c (CMD_XineramaEnable):
17725         (CMD_XineramaDisable):
17726         * fvwm/module_interface.c (BroadcastConfigInfoString):
17727         added function to communicate Xinerama on/off to modules
17729         * fvwm/module_interface.c:
17730         include time.h to fix warning
17731         * libs/XineramaSupport.c:
17732         * fvwm/fvwm.c (setVersionInfo):
17733         * fvwm/Makefile.am:
17734         * configure.in:
17735         * acconfig.h:
17736         cleanded up xinerama detection
17737         added shape detection
17739 2001-07-21  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17741         * fvwm/fvwm2.1:
17742         Added Xinerama introduction
17744         * fvwm/fvwm.c (setVersionInfo):
17745         print xinerama support
17747         * fvwm/conditional.c (CreateConditionMask):
17748         added CirculateHitShaded option for conditional commands that was
17749         described in the man page but not implemented
17751         * fvwm/fvwm.h (WindowConditionMask):
17752         removed unused flags
17754         * fvwm/conditional.c (MatchesConditionMask):
17755         fixed CirculateHitIcon option in conditional commands
17757         * fvwm/fvwm2.1:
17758         reformatted man page source to improve readability
17759         fixed some source formatting bugs
17761         * libs/XineramaSupport.c (GetMouseXY):
17762         don't poll the pointer if there is only one screen or if xinerama is
17763         turned off
17765         * fvwm/fvwm2.1:
17766         * fvwm/fvwm.c (main):
17767         removed -noxinerama option
17769         * fvwm/fvwm.c (main):
17770         size window is positioned and sized in move_resize.c
17772         * libs/XineramaSupport.c:
17773         reindented file
17775         * configure.in:
17776         print Xinerama support in configure summary
17778         * **/*:
17779         applied Xinerama patch by Dmitry Yu. Bolkhovityanov
17781 2001-07-17  Mikhael Goikhman  <migo@homemail.com>
17783         * acconfig.h:
17784         * acinclude.m4:
17785         * configure.in:
17786         implemented a new convenient autoconf macro mg_DEFINE_IF_NOT;
17787         define missing macros needed for old AIX keysymdef and old stroke.h
17789         * fvwm/bindings.c:
17790         * fvwm/menus.c:
17791         remove the previous compilation fixes, now handled by configure
17793 2001-07-15  Dan Espen  <dane@mk.telcordia.com>
17795         * fvwm/fvwm2.1: Remove .BI with more than 6 args.
17797 2001-07-15  Mikhael Goikhman  <migo@homemail.com>
17799         * bindings.c:
17800         use libstroke-0.5 constant names while still supporting 0.3/0.4
17802         * menus.c:
17803         compiling fix for old AIX, which does not define XK_Page_Up/Down
17805         * module_interface.c:
17806         minor compiling fix for some proprietary preprocessors
17808 2001-07-10  Mikhael Goikhman  <migo@homemail.com>
17810         * fvwm/fvwm2.1:
17811         use more compatible and structured syntax in SYNOPSIS
17813 2001-07-06  Mikhael Goikhman  <migo@homemail.com>
17815         * acinclude.m4:
17816         Replaced forgotten instances of IMLIB_CFLAGS and IMLIB_LIBS to
17817         GDK_IMLIB_*.  This fixes "make FvwmGtk" on systems with bogus
17818         imlib-config.
17820 2001-07-05  Mikhael Goikhman  <migo@homemail.com>
17822         * configure.in:
17823         changed version to 2.4.1
17825         * acinclude.m4:
17826         small fix that should solve the problem with running autoconf
17827         (autoreconf is ok) from autoconf-2.50;
17828         applied a patch that adds gtk include dirs to gnome include dirs
17830 2001-07-03  Dominik Vogt  <dominik(dot)vogt(at)gmx(dot)de>
17832         * NEWS, configure.in:
17833         changed version to 2.4.0.1
17835         * *: fvwm 2.4 has been released :-))