1 2010-08-09 Thomas Adam <thomas@xteddy.org>
4 Updated for the FVWM 2.5.31 release.
6 2010-08-09 Thomas Adam <thomas@xteddy.org>
9 Updated for the FVWM 2.5.31 release.
11 2010-08-07 Thomas Adam <thomas@xteddy.org>
12 * fvwm/builtins.c (CMD_Exec):
13 Remove extraneous whitespace.
15 2010-07-28 Thomas Adam <thomas@xteddy.org>
16 * fvwm/builtins.c (CMD_Exec):
17 Close fd if it's not opened successfully.
19 2010-07-28 Thomas Adam <thomas@xteddy.org>
20 * fvwm/update.c (apply_window_updates):
22 Copy over State settings on WindowStyle command.
24 When merging/updating style hints for recaptured windows, ensure we
25 preserve any State hints set on the window.
27 2010-05-22 Thomas Adam <thomas@xteddy.org>
28 * fvwm/windowlist.c (CMD_WindowList):
30 When reporting on a window's width and height ensure we use the
31 orig_hints XSizeHints struct for calculating resize increment
34 2010-05-09 Thomas Adam <thomas@xteddy.org>
37 Update CVS to use 2.5.31
39 2010-05-09 Thomas Adam <thomas@xteddy.org>
43 Updated for the FVWM 2.5.30 release.
45 2010-05-09 Thomas Adam <thomas@xteddy.org>
47 Cosmetic clean up for NEWS.
49 2010-04-28 Dan Espen <dane@mk.telcordia.com>
50 * fvwm/colorset.c (parse_colorset): Remove bogus error message.
52 2010-04-24 Thomas Adam <thomas@xteddy.org>
54 Define version checks for conditional macros.
56 libpng 1.4.0 has different macros for previous version of the same
57 macros in libong 1.2.0, so check for them here.
59 2010-04-18 Thomas Adam <thomas@xteddy.org>
60 * libs/charmap.c (charmap_table_to_string):
61 Don't allow incremental matching of C_ALL for contexts.
63 When printing out bindings, ensure we allow "A" for any/all
64 contexts/modifiers to be matched exactly, so that the context column for
65 bindings matches with what the user put in their config file.
67 2010-04-03 Thomas Adam <thomas@xteddy.org>
70 Updated for the FVWM 2.5.29 release.
72 2010-04-03 Thomas Adam <thomas@xteddy.org>
74 Cull unused functions when compiling against librplay.
76 When compiling with -Werror, ensure we're not trying to use unneeded
77 librplay static functions we ourselves declare.
79 2010-04-03 Thomas Adam <thomas@xteddy.org>
80 * fvwm/placement.c (__pl_minoverlap_get_pos_penalty):
81 Tweak placement calculation for over-zealous windows.
83 Don't adjust a window's position unless it's actually greater than the
84 screen's dimension (i.e., potentially placed off screen.)
86 2010-03-30 Christoph Fritz <chf.fritz@googlemail.com>
87 * fvwm/windowlist.c (CMD_WindowList):
88 Free allocated memory.
90 2010-02-28 Thomas Adam <thomas@xteddy.org>
91 * fvwm/move_resize.c (__resize_step):
92 Don't explicitly send MotionNotify event during Resize (GeometryWindow)
94 When calling DisplaySize() from a resize event performed on a window,
95 ensure we use the window's last event (which will be MotionNotify
96 anyway) otherwise this completely confuses the GeometryWindow as it has
97 to then update itself each time.
99 When using Xinerama/TwinView, the effect is that the GeometryWindow
100 flickers and/or displays itself on the opposite screen to where the
101 pointer is, because the x/y positions don't take into account the
102 location of the pointer from the original hand-crafted event, but are
103 correct from the execute context the window being resized is called in.
105 2010-02-06 Thomas Adam <thomas.adam22@gmail.com>
106 * fvwm/style.c (check_window_style_change):
107 * fvwm/update.c (apply_window_updates):
109 Propagate Layer changes via Style command on-the-fly.
111 Until there's a distinction between initially-mapped styles and runtime
112 commands, and that currently, Style commands take effect immediately,
113 ensure that for any Layer requests received via Style commands, these
114 too are applied immediately.
116 The previous assumption was that this was only applicable when mapping a
117 new window, but goes against expectations from the user.
119 2010-01-07 Thomas Adam <thomas.adam22@gmail.com>
120 * fvwm/read.c (run_command_file):
121 Restructure how we look for Read files slightly.
123 When searching for files with the Read command, check to see if the file
124 first of all has an absolute path and if so open it. If it's relative
125 then search for it in either FVWM_USERDIR or FVWM_DATADIR as before. If
126 the file still can't be found, try and open it outright. This will
131 as a valid filename -- of course this really only makes sense when
132 invoking fvwm with "-f" on the command-line, as relative paths to config
133 files in this way should be built up using "$."
135 2010-01-05 Thomas Adam <thomas.adam22@gmail.com>
136 * fvwm/menustyle.c (menustyle_copy_face):
137 Fix segfault setting MenuFace pixmap style for menus.
139 As with the tearoff bug from 2010-01-03, ensure we don't try and free a
140 non-existent pixmap from an invalid pointer.
142 2010-01-05 Thomas Adam <thomas.adam22@gmail.com>
143 * fvwm/read.c (run_command_file):
144 Fix opening of files to Read/PipeRead to accept absolute paths.
146 Don't just assume "/" is a valid identifier for opening files. "./" is
147 just as likely. Fixes use-case of:
149 fvwm -f ./some_fvwm2rc
151 2010-01-04 Thomas Adam <thomas.adam22@gmail.com>
152 * fvwm/events.c (flush_property_notify):
153 Add atom to struct so it is checked for by test_typed_window_event().
155 2010-01-04 David Fries <David@Fries.net>
156 * fvwm/events.c (test_typed_window_event):
157 * fvwm/events.c (flush_property_notify):
158 Efficiently handle flushing property events of the same type.
160 * fvwm/events.h (test_typed_window_event_args):
161 Add XAtom type to struct.
163 2010-01-04 David Fries <David@Fries.net>
164 * fvwm/virtual.c (HandlePaging):
165 Move no page detect check, it wasn't being hit.
166 * fvwm/move_resize.c (__move_loop):
167 Transform window position to pointer position and back when calling
170 2010-01-03 Thomas Adam <thomas.adam22@gmail.com>
171 * fvwm/menustyle.c (menustyle_copy_face):
172 Fix segfault when creating a tearoff menu using a Pixmap background.
174 When we copy the original menustyle to the new torn-off menu which
175 contains a background image, don't then update the menu's pixel
176 background color, as this is already free()d for us by an earlier copy
179 2009-12-31 Thomas Adam <thomas.adam22@gmail.com>
180 * fvwm/builtins.c (CMD_BugOpts):
183 2009-12-31 Thomas Adam <thomas.adam22@gmail.com>
184 * fvwm/builtins.c (CMD_BugOpts):
185 * fvwm/fvwm.c (InitVariables):
186 * fvwm/events.c (HandleClientMessage):
188 Add new BugOpts QtDragnDropWorkaround option to handle an oddity in how
189 Qt windows handle having ClientMessage events sent to them.
191 2009-12-30 Thomas Adam <thomas.adam22@gmail.com>
192 * fvwm/placement.c (__pl_minoverlap_get_pos_penalty):
193 Fix y-axis offset calculations when using MinOverlapPlacement, by
194 forcing the window on-screen when over-zealous penality calculations
195 don't take into account the size of the window borders.
197 2009-12-26 Thomas Adam <thomas.adam22@gmail.com>
198 * bin/fvwm-convert-2.6.1.in:
199 Add in BUGS section a note that converting over FvwmTheme lines is
202 2009-12-26 Thomas Adam <thomas.adam22@gmail.com>
205 * bin/fvwm-convert-2.6.in:
206 * bin/fvwm-convert-2.6.1.in:
207 First pass at a fvwm-convert-2.6 script to convert fvwm-2.4 syntax
210 2009-12-19 Thomas Adam <thomas.adam22@gmail.com>
211 * libs/Flocale.c (FlocaleEncodeString):
212 Pre-initialise "len2" to zero, to avoid GCC warning during compilation.
214 2009-12-12 Thomas Adam <thomas.adam22@gmail.com>
215 * fvwm/fvwm.c (StartupStuff):
216 Reset the state of the "Restarting" flag to False when restarting FVWM.
218 * fvwm/events.c (HandleMapRequestKeepRaised):
219 Only run InitialMapCommand when FVWM isn't restarting and all windows
220 have been recaptured. The window is already mapped by the time FVWM is
221 restarting, and running the InitialMapCommand again only serves to
222 "toggle" the window state (c.f. InitialMapCommand Iconic, etc.)
224 2009-09-20 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
228 increased version number to 2.5.29
231 updated for 2.5.28 release
233 2009-08-28 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
236 * fvwm/ewmh.c (ewmh_ChangeProperty):
237 only convert _NET_WM_ICON hint to long before storing
239 2009-08-26 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
241 * fvwm/builtins.c (CMD_BugOpts):
242 remove unused variables
245 * fvwm/ewmh.c (ewmh_ChangeProperty):
246 fix storing of CARD32 arrays on 64 bit machines
248 * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
249 prevent segmentation fault when reading a bad _NET_WM_ICON hint
251 2009-08-22 Thomas Adam <thomas.adam22@gmail.com>
252 * fvwm/geometry.c (__cs_handle_aspect_ratio):
253 Workaround gcc -O3, by declaring local vars as volatile. This fixes an
254 otherwise continual loop when resizing windows when keeping aspect
255 ratio (c.f. mplayer.)
257 2009-08-20 Christoph Fritz <chris_honschu(at)gmx.de>
259 Fix typo in AS_HELP_STRING referring to enable-htmldoc
261 2009-08-19 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
264 * fvwm/builtins.c (CMD_BugOpts):
265 Fix parsing of BugOpts options lists separated by ',', and
266 restoring to default value when the boolean option is omitted if
274 * libs/Ficonv.h (FiconvSetTransliterateUtf8):
275 * libs/Ficonv.c (FiconvSetTransliterateUtf8, translit_csname)
276 (is_translit_supported, set_default_iconv_charsets)
277 (set_iconv_charset_index, FiconvUtf8ToCharset):
278 * fvwm/builtins.c (CMD_BugOpts):
279 Add TransliterateUtf8 bug opt for working around clients
280 which don't care about the WM_NAME value.
282 2009-08-09 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
285 * fvwm/stack.c (BroadcastRestack):
286 Fix splitting or M_RESTACK packages causing weird window stacking
287 in modules when more than 83 windows are broadcast.
289 2009-08-04 Thomas Adam <thomas.adam22@gmail.com>
291 Remove dnl comments from configure.ac regarding malloc.h -- it's
292 self-explanatory anyway.
294 2009-08-03 Thomas Adam <thomas.adam22@gmail.com>
296 Most *BSD platforms are deprecating malloc.h in favout of stdlib.h
297 -- this never used to produce compiler warnings, but things are
298 starting to become more vocal, so don't use this in our
299 ./configure script if we're compiling FVWM on a *BSD system.
301 2009-07-31 Christoph Fritz <chris_honschu(at)gmx.de>
305 * fvwm/add_window.c (setup_numeric_vals):
306 add "typedef struct snap_attraction_t"
307 * fvwm/style.c (style_parse_one_style_option):
308 add new SnapAttraction options "None", "ScreenWindows",
309 "ScreenIcons" and "ScreenAll"
310 * fvwm/move_resize.c (DoSnapAttract):
311 Bugfix, option SameType/Icons/Windows did falsely not affect
312 conditions of option "Screen" and option "SameType" snapped
313 falsely icons and windows together. Implement options
314 None/ScreenWindows/ScreenIcons/ScreenAll for differentiated
315 screen edge snapping.
317 2009-07-10 Thomas Adam <thomas.adam22@gmail.com>
318 * fvwm/add_window.c (setup_window_name_count):
319 * fvwm/add_window.c (setup_icon_name_count):
320 Deprecate these in favour of setup_name_count()
322 * fvwm/add_window.c (setup_name_count):
323 Amalgamate setup_window_name_count and setup_icon_name_count to just
324 one function (very similar code between them.) Used with
325 IndexedWindowName and IndexedIconName.
327 2009-07-10 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
330 Fix the options RPlayVolume and RPlayPriority in FvwmEvent.
332 * libs/Fplay.h (Fplay_set, Fplay_get, Frptp_putline)
333 (Frptp_async_putline):
334 Fix ANSI C compatibility.
337 * fvwm/ewmh_names.c (EWMH_WMName):
338 set the HAS_EWMH_WM_NAME flag even if the window name on display
341 same for HAS_EWMH_WM_ICON_NAME
343 2009-07-08 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
346 fix for segfault with RPlatHost directive in FvwmEvent
347 * libs/Makefile.am (libfvwm_a_SOURCES):
349 add Fplay.h wrapper header for rplay.h
352 fix debian bug #438132
354 2009-07-06 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
357 * fvwm/style.c (fw_match_style_id):
358 Fix fvwmstyle resource
360 2009-07-05 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
363 * fvwm/events.c (HandleMapRequestKeepRaised):
364 Make sure that a PropertyNotify on the WM_STATE property is always
365 sent out when a window is requested to be moved to the withdrawn
366 state. (Needed by QT)
368 2009-07-01 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
370 * sample.fvwmrc/DecorMwm:
371 * sample.fvwmrc/DecorWin95:
372 * sample.fvwmrc/new-features:
373 * sample.fvwmrc/system.fvwm2rc:
374 * sample.fvwmrc/system.fvwm2rc-sample-1:
375 * sample.fvwmrc/system.fvwm2rc-sample-2:
376 * sample.fvwmrc/system.fvwm2rc-sample-95:
377 Use !-negation for styles instead of No...
382 * sample.fvwmrc/system.fvwm2rc-sample-95:
383 sed -i '/^#*\(+\|AddToMenu\) "[^%"]*%[^%"]*"/s/%\([^"]*\)/%\1%/'
384 sed -i 's/StayOnTop/StaysOnTop/'
385 According to patches by Manoj Srivastava
387 2009-03-17 Mikhael Goikhman <migo@homemail.com>
392 convert my old code to use var_name and function_name coding style
394 2009-02-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
398 increased version to 2.5.28
403 updated for 2.5.27 release
405 2009-02-23 Thomas Adam <thomas.adam22@gmail.com>
406 * fvwm/bindings.c (print_bindings):
407 Fixed compilation of not having libstroke installed by using ifdefs
410 2009-02-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
412 * fvwm/bindings.c (print_bindings):
415 * libs/charmap.c (charmap_table_to_string):
416 several memory menagement fixes.
418 2009-02-22 Thomas Adam <thomas.adam22@gmail.com>
420 * libs/charmap.c (charmap_table_to_string):
421 Reduce memory management on the stack, by making only those variables
422 to be accessed outside of the function charmap_table_to_string()
423 allocated on the heap instead.
425 * fvwm/bindings.c (print_bindings):
426 b->Action was previously checked whether it was NULL or not before
427 printing its value to STDERR -- however, this caused a segfault when
428 trying to perform strlen() operations internally -- hence don't bother
429 checking if it's NULL. This avoids segfaulting.
431 2009-02-05 Thomas Adam <thomas.adam22@gmail.com>
433 * libs/charmap.c (charmap_table_to_string):
435 Introduce charmap_to_string function which is used to build up a
436 binding string, for use with PrintInfo.
438 * fvwm/bindings.c (print_bindings):
439 Introduce print_bindings to print all bindings known to fvwm.
441 * fvwm/builtins.c (CMD_PrintInfo):
443 Add support for "binding" as an option to PrintInfo.
445 2009-02-19 Thomas Adam <thomas.adam22@gmail.com>
447 * fvwm/placement.c (__pl_position_get_pos_simple):
448 Force the window on-screen if using PositionPlacement UnderMouse.
450 2009-02-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
452 * fvwm/events.c (HandleMapRequestKeepRaised):
453 * fvwm/add_window.c (AddWindow):
455 * fvwm/style.c (style_parse_one_style_option):
456 add new style InitialMapCommand
458 2008-02-08 Thomas Adam <thomas.adam22@gmail.com>
460 * bin/fvwm-menu-desktop.in:
461 Fix the location prefix for GNOME application files.
463 2008-12-29 Alexandre Julliard <julliard@winehq.org>
465 * fvwm/ewmh_events.c (ewmh_WMStateMaxHoriz):
466 Having either _NET_WM_STATE_MAXIMIZED_HORIZ or
467 _NET_WM_STATE_MAXIMIZED_HORZ should be enough to make the window
468 horizontally maximized.
470 2008-11-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
473 * fvwm/module_list.c (do_execute_module):
474 * fvwm/fvwm.c (fvmm_deinstall_signals):
475 restore default signal handlers before execl()/execvp()
477 2008-10-05 Thomas Adam <thomas.adam22@gmail.com>
479 * fvwm/style.c (fw_match_style_id):
480 Allow for the window's visible name to be considered when matching a
481 style line. It is possible to use $[w.visiblename] as the style name.
482 Whilst the normal name and the visible name are usually the same, in
483 the case of having IndxedWindowName, if a style line matches this as a
484 visible name, apply it first of all.
486 2008-10-03 Thomas Adam <thomas.adam22@gmail.com>
489 Add $[w.visiblename] as an expansion parameter.
491 2008-08-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
493 * fvwm/placement.c (__pl_position_get_pos_simple):
494 position placement honours StartsOnPage
496 2008-08-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
498 * fvwm/session.c (MatchWinToSM):
499 fixed keeping fullscreen state of windows over a restart; the old code
500 tried to do this through session management and effectively overwrote
501 the responsible ewmh hint; eventually, fvwm thought that the window
502 was fullscreen without actually making it fullscreen
504 2008-08-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
506 * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
507 fixed compiler warning caused by a logic error in previous patch
510 applied png detection fix by Yuri Bushmelev for cross compiliation
512 * fvwm/events.c (__handle_cr_on_client):
513 fixed event merging with auto motion detection
515 2008-08-07 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
518 * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
519 * fvwm/events.h (events_handle_configure_request):
520 * fvwm/events.c (events_handle_configure_request):
521 (__handle_cr_on_client):
522 (__handle_configure_request):
523 fix handling of _NET_MOVERESIZE_WINDOW
524 (__cr_detect_icccm_move):
525 remove douplicate code
527 2008-08-06 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
530 * fvwm/add_window.c (setup_frame_window):
531 fix compilation without XRender
533 2008-05-22 Adam Goode <adam(at)spicenitz(dot)org>
539 Convert Latin-1 encodings to UTF-8
541 2008-05-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
545 increased version to 2.5.27
550 updated for 2.5.26 release
552 2008-04-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
554 * fvwm/ewmh_events.c (ewmh_WMDesktop):
556 * fvwm/ewmh.c (ewmh_AddToKdeSysTray):
557 (ewmh_HandleWindowType):
558 (ewmh_AddToKdeSysTray):
559 (ewmh_HandleWindowType):
561 64-bit fix by Alexandre Julliard
563 2008-03-30 Mikhael Goikhman <migo@homemail.com>
566 fix fribidi detection when it uses pkg-config and not fribidi-config
569 fix compilation with newer fribidi-0.19.1 (or also called fribidi2),
570 it now uses fribidi-types.h and not fribidi_types.h
572 2008-03-21 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
574 * fvwm/events.c (dispatch_event):
575 Fix handling of Shape events.
577 2008-03-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
579 * fvwm/menus.c (calc_normal_item_height):
580 (calc_more_item_height):
581 (size_menu_vertically):
582 fix calculations so the menu fit on the screen height
584 2008-03-12 Jes~s Guerrero <i92guboj(at)terra(dot)es>
586 * fvwm/menus.c (size_menu_vertically):
587 added paddings at the top and bottom of the menus
589 * fvwm/menustyle.c (parse_vertical_margins_line):
590 new function to parse the VerticalMargins new MenuStyle
593 * fvwm/menustyle.c (menustyle_get_styleopt_index):
594 added the VerticalMargins option to the list
596 * fvwm/menustyle.c (menustyle_parse_style):
597 added default values for the padding, and a case clause
598 for the specific case when you invoke the VerticalMargins
601 * fvwm/menustyle.c (menustyle_copy):
602 added two lines to copy the menu styles from origin to destiny
605 added macros for the vertical padding stuff
607 * fvwm/menustyle.h (struct MenuLook):
608 added sub-structure to hold the VerticalMargins
610 * fvwm/libs/defaults.h:
611 added one define for MAX_MENU_MARGIN
613 2008-03-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
615 * fvwm/menuitem.c (draw_highlight_background):
616 fixed drawing of background pictures in menu items
618 2008-02-29 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
620 * fvwm/add_window.c (setup_frame_window):
621 fix core dump with ARGB detection code
622 fix compilation without XRender
624 2008-02-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
628 increased version to 2.5.26
633 updated for 2.5.25 release
635 2008-02-12 Renato Caldas <seventhguardian@gmail.com>
637 * fvwm/fvwm.c (main):
638 further condense the X visual selection code
640 2008-02-10 Renato Caldas <seventhguardian@gmail.com>
642 * fvwm/fvwm.c (main):
643 condense the X visual selection code
645 2008-02-09 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
647 * fvwm/events.c (register_event_group)
648 (InitEventHandlerJumpTable, dispatch_event):
649 use separate jump tables for events defined by X-extensions
650 to eliminate the need to ovverride the LASTEvent value.
652 * fvwm/module_list.c (module_list_remove):
653 include the case where the module is first in the list in
654 the loop, fixing a segmentaion fault when the list was empty.
656 2008-02-07 Renato Caldas <seventhguardian@gmail.com>
658 * fvwm/add_window.c (setup_frame_window):
659 add CWCursor to window's valuemask (from Marc Lehmann's argb patch)
660 add preliminary support for ARGB windows in fvwm (based on
661 Marc Lehman's argb patch)
663 2008-02-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
665 * libs/PictureUtils.c (XPM_COLOR_CLOSENESS):
668 2008-02-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
670 * libs/Colorset.c (CreateOffsetBackgroundPixmap):
671 catch BadGC when updating root transparent window background
673 * libs/XError.c (do_coredump):
674 (ferror_set_temp_error_handler):
675 (ferror_reset_error_handler)
676 (ferror_call_next_error_handler):
679 * libs/XError.c (PrintXErrorAndCoredump):
680 try to dump core the hard way
682 2008-02-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
684 * fvwm/colorset.c (parse_colorset):
685 check for image != None before calling XDestroyImage
687 * fvwm/ewmh_events.c (ewmh_WMStateMaxVert):
688 (ewmh_WMStateMaxHoriz):
690 (ewmh_WMStateShaded):
691 (ewmh_WMStateStaysOnTop):
692 (ewmh_WMStateStaysOnBottom):
693 handle the STATE_ADD command of the EWMH _NET_WM_STATE message from
695 also ignore the EWMH staysontop and staysonbottom hints if the
696 EWMHIgnoreStackingOrderHints style is used
698 * fvwm/colorset.c (parse_colorset):
699 Fixed a sporadic crash when the root background set by gnome,
700 fvwm-root, esetroot etc. changes and a root transparent colour set
703 * fvwm/colorset.c (parse_colorset):
704 * libs/PictureUtils.c (alloc_color_dynamic_no_limit):
705 * libs/Colorset.c (CreateOffsetBackgroundPixmap):
706 * libs/PictureGraphics.c (PGrabXImage)
707 (PGraphicsCreateTranslucent):
708 use MyXGrabserver and MyXUngrabServer instead of doing the X calls
711 2008-01-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
713 * libs/PictureGraphics.c (PGrabXImage):
714 fixed XImage memory leak
715 (PCreateRenderPixmap):
716 (PCreateDitherPixmap):
717 Properly handle return code of FgetFImage()
719 2008-01-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
721 * fvwm/events.c (HandleConfigureRequest):
722 (events_handle_configure_request):
725 * fvwm/ewmh_events.c (ewmh_RestackWindow):
726 (ewmh_MoveResizeWindow):
727 fixed crash when moving/resizing/restacking unmanaged windows through
730 2008-01-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
732 * fvwm/events.c (HandleMapRequestKeepRaised):
733 fixed compiler warning
735 2008-01-26 Olivier <chapuis(at)lri(dot)fr>
737 * libs/FlocaleCharset.c: (FlocaleInit_X_Charset),
738 (FlocaleCharsetInit), (FlocaleCharsetGetDefaultCharset):
740 Fixed the determination of the X charset on UTF-8 system
742 2008-01-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
744 * fvwm/placement.c (__pl_minoverlap_get_next_x):
745 do not add screen offset to window position
747 * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
750 2008-01-07 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
753 Some html documentation files were not installed.
755 2008-01-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
757 * fvwm/style.c (style_parse_one_style_option):
758 fixed parsing of screen argument of the SnapAttraction Style
760 2007-12-07 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
762 * fvwm/move_resize.c (DoSnapAttract):
763 Use edge move resistance, and not delay for top edge when moving
766 2007-12-03 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
769 * fvwm/events.c (HandleMapRequestKeepRaised)
770 (test_withdraw_request):
771 Don't map windows that request to be moved back to WithdrawnState
772 by the ICCCM2 method before they have been mapped. (Fixes bug with
773 disappearing windows.)
775 2007-11-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
779 increased version to 2.5.25
783 updated for 2.5.24 release
785 2007-11-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
787 * fvwm/menus.c (__mloop_exit):
788 * fvwm/menubindings.c (parse_menu_action):
790 reindented and cleaned up some code
792 2007-11-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
794 * fvwm/update.c (apply_window_updates):
795 * fvwm/add_window.c (setup_style_and_decor):
796 (setup_numeric_vals):
800 * fvwm/events.c (HandleEnterNotify):
801 * fvwm/fvwm.c (InitVariables):
803 * fvwm/session.c (SaveGlobalState):
805 * fvwm/move_resize.c (DoSnapAttract):
808 The commands EdgeResistance, SnapGrid and SnapAttraction are obsolete
809 They have been replaced by the styles EdgeMoveResistance,
810 EdgeMoveDelay, EdgeResizeDelay, SnapGrid and SnapAttraction
812 2007-10-21 Renato Caldas <seventhguardian@gmail.com>
816 use AS_HELP_STRING to format the configure options help strings
818 2007-10-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
820 * fvwm/conditional.c:
823 2007-10-05 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
825 * fvwm/ConfigFvwmDefaults:
826 restore default action of closing menus for menu titles
828 2007-10-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
830 * libs/FScreen.c (FindScreenOfXY):
831 * fvwm/move_resize.c (GetMoveArguments):
832 fixed the "screen w" argument of the Move and other commands
834 2007-09-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
836 * fvwm/virtual.c (HandlePaging):
837 don't modify *xl and *yt unless we we really page
839 2007-09-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
841 * fvwm/module_list.h:
842 * fvwm/module_list.c:
845 2007-09-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
849 increased version to 2.5.24
853 updated for 2.5.23 release
855 * libs/Flocale.c (FlocaleEncodeString):
856 removed previous warning fix
858 2007-08-30 Thomas Adam <thomas@edulinux.homeunix.org>
862 Added new style option: StartShaded.
864 2007-08-30 Renato Caldas <seventhguardian@gmail.com>
866 * libs/Flocale.c (FlocaleEncodeString):
869 2007-08-30 Viktor Griph <griph(at)student(dot)chalmers(dot)se>
874 removed old fvwm manpage
876 2007-08-29 Renato Caldas <seventhguardian@gmail.com>
880 increased version to 2.5.23
884 fix the date for 2.5.22 release
886 2007-08-28 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
888 * fvwm/windowlist.c (CMD_WindowList):
889 fixed crash when using CurrentAtEnd and IconifiedAtEnd with only
892 2007-08-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
896 use "test ! ... = ..." instead of "test ... != ..."
898 * fvwm/builtins.c (CMD_PropertyChange):
899 fixed completely broken parsing of PropertyChange arguments
901 2007-08-28 Renato Caldas <seventhguardian@gmail.com>
905 updated for 2.5.22 release
907 * fvwm/builtins.c (CMD_PropertyChange):
908 * libs/Flocale.c (FlocaleGetFftFont):
911 (FlocaleGetFontOrFontSet):
914 fix compiler warnings
916 2007-08-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
919 fixed command table parsing
921 2007-08-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
923 * fvwm/module_list.c (module_kill):
924 (executeModuleDesperate):
925 (module_list_itr_init):
928 * fvwm/events.c (My_XNextEvent):
929 * fvwm/module_list.c (module_alloc):
931 * fvwm/module_list.h (fmodule):
934 restored *not* useless is_cmdline_module stuff
937 add constants for command group tagging
939 2007-08-19 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
944 2007-08-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
947 check for sed, perl and tbl, needed to build documentation
949 2007-08-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
951 * libs/System.c (fvwm_mkstemp):
952 use constants from libs/fvwm_sys_stat.h
954 2007-08-15 Renato Caldas <seventhguardian@gmail.com>
956 * fvwm/module_list.c (do_execute_module):
957 fixed possible crash when fork fails
959 * fvwm/module_list.c (module_list_remove):
960 now returns the removed fmodule*, or NULL if unsuccessful
961 removed error message when removing a not listed module (it's normal)
963 * fvwm/module_list.c (module_kill):
964 module is inserted in death_row only if it is successfuly removed from
965 module_list (fixes crash when module is killed more than once)
967 2007-08-08 Renato Caldas <seventhguardian@gmail.com>
969 * fvwm/events.c (My_XNextEvent):
970 fixed hang with startup modules
972 2007-08-07 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
974 * fvwm/conditional.c (FreeConditionMask):
975 fixed crash with inverted name condition
980 2007-08-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
986 * sample.fvwmrc/system.fvwm2rc-sample-95:
987 * sample.fvwmrc/system.fvwm2rc:
988 * sample.fvwmrc/system.fvwm2rc-sample-2:
989 * libs/Picture.c (PicturePrintImageCache):
991 * libs/FGettext.c (FGettextPrintLocalePath):
994 * libs/PictureUtils.c (PictureAllocColorTable)
995 (PicturePrintColorInfo):
1000 * libs/Ficonv.c (convert_charsets):
1001 (FiconvSetupConversion):
1002 * fvwm/decorations.c:
1005 * fvwm/add_window.c (setup_window_font):
1009 * fvwm/conditional.c:
1010 * fvwm/fvwm.c (SetRCDefaults):
1012 * fvwm/ewmh_events.c:
1015 * fvwm/menustyle.c (menustyle_parse_style):
1017 * fvwm/ewmh.c (EWMH_Init):
1018 * libs/Flocale.c (FlocaleParseShadow):
1019 (FlocaleGetFontSet):
1021 (FlocalePrintLocaleInfo):
1022 * fvwm/misc.c (fvwm_msg):
1025 write fvwm in lower case
1028 fixed build without GNU make
1030 2007-08-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1032 * libs/Flocale.c (FlocaleChar2bOneCharToUtf8):
1033 fixed buffer overflow
1035 2007-08-06 Renato Caldas <seventhguardian@gmail.com>
1037 * fvwm/module_list.h (fmodule_list_itr):
1038 * fvwm/module_list.c (module_list_itr_init, module_list_itr_next):
1039 replace iterator struct by typedef
1041 * fvwm/module_list.c (module_list_destroy):
1044 new function to remove dup code
1046 * fvwm/module_list.c (module_kill):
1047 changed to move the module to the deathrow list
1049 * fvwm/module_list.h (fmodule):
1050 * fvwm/module_list.c (module_alloc):
1051 (module_list_remove):
1052 (FlushMessageQueue):
1053 removed is_removed logic
1055 * fvwm/module_list.c (module_safefree):
1058 * fvwm/events.c (My_XNextEvent):
1059 remove old "#if 0" code
1061 * fvwm/module_list.c (module_kill):
1064 2007-08-06 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1066 * fvwm/module_list.h (fmodule_list_itr):
1067 * fvwm/module_list.c (module_list_itr_init, module_list_itr_next):
1068 don't store current pointer in module list iterators.
1071 2007-08-06 Renato Caldas <seventhguardian@gmail.com>
1073 * fvwm/events.c (My_XNextEvent):
1074 * fvwm/module_list.c (KillModuleByName):
1075 (FlushAllMessageQueues):
1076 * fvwm/module_interface.c (BroadcastPacket):
1077 (BroadcastNewPacket):
1079 (BroadcastFvwmPicture):
1080 (BroadcastColorset):
1081 (BroadcastProperyChange):
1082 (BroadcastConfigInfoString):
1084 * fvwm/modconf.c (ModuleConfig):
1085 * fvwm/stack.c (BroadcastRestack):
1086 replaced module_get_next by module list iterator mechanism
1088 * fvwm/module_list.h:
1089 * fvwm/module_list.c (module_get_next):
1092 2007-08-05 Renato Caldas <seventhguardian@gmail.com>
1094 * fvwm/module_list.h:
1095 * fvwm/module_list.c (fmodule):
1101 (FlushAllMessageQueues):
1103 * fvwm/module_interface.c (BroadcastPacket):
1104 (BroadcastNewPacket):
1106 (BroadcastFvwmPicture):
1107 (BroadcastColorset):
1108 (BroadcastProperyChange):
1109 (BroadcastConfigInfoString):
1111 * fvwm/event.c (My_XNextEvent):
1112 * fvwm/stack.c (BroadcastRestack):
1113 * fvwm/modconf.c (ModuleConfig):
1114 changed to work with generic list container
1116 * fvwm/module_list.c (module_insert):
1117 (module_list_insert):
1119 (module_list_remove):
1122 renamed as list handling functions
1124 * fvwm/events.c (My_XNextEvent):
1125 * fvwm/module_list.h:
1126 * fvwm/module_list.c (module_alloc):
1127 (do_execute_module):
1128 removed useless is_cmdline_module stuff
1130 * fvwm/module_list.h:
1131 * fvwm/module_list.c (module_list_insert):
1132 (module_list_remove):
1134 new fmodule_list object representing a module list.
1135 changed the module lists to the new object.
1136 changed list functions to use the list object instead of the
1137 fmodule_store pointer.
1139 * fvwm/events.c (My_XNextEvent):
1140 moved module_cleanup to after ExecuteCommandQueue to avoid segfaults
1142 * fvwm/module_list.h (fmodule_list_itr):
1143 * fvwm/module_list.c (fmodule_list_itr_init):
1144 (fmodule_list_itr_next):
1145 created a smart (safe) iterator mechanism to replace the
1146 module_get_next function
1148 2007-08-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1152 added empty functions to replace CMD_Dummy
1155 use subordinate Makefile.ams instead of iuncluding files from other
1159 removed FVWMNAMEUCASE
1164 * Makefile.am (DISTCHECK_CONFIGURE_FLAGS):
1165 force --enable-htmldoc on "make distcheck"
1167 * fvwm/events.c (HandleEnterNotify):
1168 (HandleLeaveNotify):
1169 properly generate enter_window and leave_window events for FvwmEvent
1171 2007-08-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1173 * fvwm/move_resize.c (GetOnePositionArgument):
1175 (ParsePositionArgumentSuffix):
1178 2007-07-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1180 * fvwm/move_resize.c (GetOnePositionArgument):
1181 fixed position calculation with the "w" prefix (move w-1 w-1).
1182 (GetOnePositionArgument):
1185 2007-07-26 Viktor Griph <griph@dd.chalmers.se>
1187 * fvwm/menus.c (__copy_down, __check_for_delimiter)
1189 reduce indentation level
1190 add comment to explain why suppressing the warning is right
1192 2007-07-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1194 * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
1195 fixed using uninitialized variable
1197 * fvwm/menus.c (scanForStrings):
1198 suppress compiler warning for now
1200 * fvwm/move_resize.c (resize_move_window):
1201 (AnimatedMoveAnyWindow):
1205 * fvwm/module_interface.c (__get_allowed_actions):
1206 * fvwm/menuitem.c (menuitem_paint):
1207 * fvwm/icons.c (CMD_Iconify):
1208 * fvwm/gnome.c (GNOME_SetHints):
1209 * fvwm/ewmh.c (ewmh_AllowsClose):
1211 (ewmh_AllowsFullScreen):
1212 (ewmh_AllowsMinimize)
1213 (ewmh_AllowsMaximize):
1217 * fvwm/ewmh_events.c (ewmh_CloseWindow):
1218 (ewmh_MoveResizeWindow):
1221 (ewmh_WMStateHidden):
1222 * fvwm/events.c (__handle_cr_on_client):
1223 * fvwm/decorations.c (__is_resize_allowed):
1224 (is_function_allowed):
1225 * fvwm/conditional.c (MatchesConditionMask):
1226 * fvwm/builtins.c (CMD_Delete):
1227 * fvwm/add_window.c (AddWindow):
1228 is_function allowed now differentiates between US program actions and
1229 actions initiated by interaction between fvwm and the user
1231 2007-07-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1233 * fvwm/menus.c (__scan_for_pixmap):
1234 fixed compiler warning
1236 * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
1237 (ewmh_RestackWindow):
1238 honor FixedSize/FixedPosition styles in EWMH messages too
1240 2007-07-24 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1242 * fvwm/fvwm.c (setVersionInfo):
1243 add XCursor support to version output
1245 * fvwm/menus.c (SCTX_SET_MI, SCTX_GET_MI, SCTX_SET_MR)
1246 (SCTX_GET_MR, string_context_type_t, string_context_t)
1247 (string_def_t, scanForColor, scanForPixmap, scanForStrings)
1248 (__scan_for_color, __scan_for_pixmap, AddToMenu, NewMenuRoot):
1249 reimplement pixmap and color scanning for menus to better handle
1252 2007-07-22 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1255 don't install fvwm.1
1257 * fvwm/events.c (My_XNextEvent):
1258 remove unused varaible
1260 * fvwm/events.c (My_XNextEvent):
1261 * fvwm/module_list.h:
1262 * fvwm/module_list.c (module_store, module_alloc)
1263 (module_kill_all, module_safefree, module_remove)
1264 (do_execute_module, module_kill, module_cleanup, module_get_next)
1265 (FlushMessageQueue):
1266 Don't free module stuctures during module I/O. (Fixes segfault.)
1268 2007-07-20 Simon Griph <simon(at)griph(dot)se>
1272 * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1273 Someone missed to add extra conditions when changing from
1276 2007-07-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1279 fixed liXcursor detection
1281 2007-07-16 Simon Griph <simon(at)griph(dot)se>
1285 * fvwm/menus.c (scanForPixmap):
1286 made it possible to escape '*' '%' '@' in filenames
1288 * libs/PictureImageLoader.c (PImageLoadSvg):
1289 added transposing and none uniform scaling to svg options
1291 2007-07-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1293 * libs/PictureImageLoader.c:
1295 (PImageLoadCursorFromFile):
1296 fixed compilation without xpm library
1298 fixed compiler warning without png library
1300 2007-07-16 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1303 * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1304 fix compilation without xpm library
1306 2007-07-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1311 * libs/PictureImageLoader.c:
1313 (PImageLoadCursorFromFile):
1314 fixed compilation without xpm library
1316 fixed compiler warning without png library
1318 2007-07-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1320 * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1321 * fvwm/cursor.c (CMD_CursorStyle):
1322 fixed compiler warning
1324 2007-07-15 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1326 * fvwm/cursor.c (CMD_CursorStyle):
1327 fix CursorStyle command parsing
1329 2007-06-22 Simon Griph <simon(at)griph(dot)se>
1331 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1332 * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1333 * libs/PictureImageLoader.c (PImageLoadSvg):
1335 (PImageCreatePixmapFromArgbData):
1336 moved XCreatePixmap() calls into PImageCreatePixmapFromArgbData()
1337 (PImageCreatePixmapFromFImage):
1340 2007-06-22 Simon Griph <simon(at)griph(dot)se>
1342 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1343 * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1344 * libs/PictureImageLoader.c (PImageLoadSvg):
1346 (PImageCreatePixmapFromArgbData):
1347 moved XCreatePixmap() calls into PImageCreatePixmapFromArgbData()
1348 (PImageCreatePixmapFromFImage):
1351 2007-06-22 Simon Griph <simon(at)griph(dot)se>
1358 added libXcursor detection
1360 * fvwm/Makefile.am (LDADD):
1368 * libs/Makefile.am (libfvwm_a_SOURCES):
1371 * libs/PictureImageLoader.c (PImageLoadCursorFromFile):
1372 added Xcursor support
1374 2007-06-22 Simon Griph <simon(at)griph(dot)se>
1380 added defs for FxpmInfo and FxpmFreeXpmInfo
1382 * libs/PictureBase.h (FvwmPictureAttributes):
1383 * libs/PictureImageLoader.c
1384 (PImageCreatePixmapFromArgbData):
1385 (PImageLoadPixmapFromFile):
1386 added FPAM_MONOCHROME option to FvwmPictureAttributes bitmask
1387 (PImageLoadCursorPixmapFromFile):
1388 (PImageLoadCursorFromFile):
1389 * libs/PictureImageLoader.h:
1390 removed the xpm-specific PImageLoadCursorPixmapFromFile(),
1391 replaced by the new general PImageLoadCursorFromFile()
1393 * fvwm/cursor.c (CMD_CursorStyle):
1394 handle new hot-spot arguments, use PImageLoadCursorFromFile()
1395 instead of PImageLoadCursorPixmapFromFile(), less code duplication
1397 2007-06-22 Simon Griph <simon(at)griph(dot)se>
1399 * libs/PictureImageLoader.c
1403 now returns argb data instead of pixmaps
1404 (PImageLoadPixmapFromFile):
1405 (PImageLoadArgbDataFromFile):
1406 moved first half of PImageLoadPixmapFromFile() into
1407 the new local function PImageLoadArgbDataFromFile()
1409 removed function, code moved into PImageLoadPixmapFromFile()
1411 2007-06-22 Simon Griph <simon(at)griph(dot)se>
1413 * libs/PictureImageLoader.c (PImageLoadXpm):
1414 revised to make use of PImageCreatePixmapFromArgbData()
1416 2007-06-22 Simon Griph <simon(at)griph(dot)se>
1418 * fvwm/colorset.c (parse_shape):
1419 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1420 * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1421 * libs/PictureImageLoader.c
1424 (PImageCreatePixmapFromArgbData):
1425 don't create a mask pixmap for fully opaque (all alpha == 0xff)
1426 or translucent (0 < any alpha < 0xff) images.
1428 2007-06-22 Simon Griph <simon(at)griph(dot)se>
1430 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
1431 * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData):
1432 * libs/PictureImageLoader.c (PImageLoadSvg):
1434 (PImageCreatePixmapFromArgbData):
1435 moved XCreatePixmap() calls into PImageCreatePixmapFromArgbData()
1436 (PImageCreatePixmapFromFImage):
1439 2007-07-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1441 * fvwm/functions.c (CMD_EchoFuncDefinition):
1442 * fvwm/functable.c (func_table):
1444 new command EchoFuncDefinition
1446 2007-07-07 Simon Griph <simon(at)griph(dot)se>
1449 * fvwm/conditional.c (CreateConditionMask):
1450 bugfix: Condition separation previously failed when a
1451 single comma (no whitespace padding) was used directly
1452 after a multi-worded condition.
1454 2007-06-21 Renato Caldas <seventhguardian@gmail.com>
1456 * fvwm/module_list.c (module_kill):
1457 fix possible core dump when using startup modules
1459 2007-06-10 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1462 * fvwm/builtins.c (CMD_PrintInfo):
1463 * libs/Picture.h (PicturePrintImageCache):
1464 * libs/Picture.c (PicturePrintImageCache):
1465 add ImageCache subject to PrintInfo command
1467 2007-06-07 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1470 * fvwm/events.c (My_XNextEvent):
1471 fix crash when a module closes down during input/output.
1473 2007-06-03 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1475 * fvwm/icons.c (ChangeIconPixmap):
1478 * fvwm/focus.c (warp_to_fvwm_window):
1479 * fvwm/events.c (__handle_cr_restack):
1480 (__handle_bpress_on_managed):
1481 (HandlePropertyNotify):
1483 * fvwm/stack.c (__restack_window):
1484 (__raise_lower_recursion):
1485 (__raise_or_lower_window):
1486 (raise_or_lower_window):
1487 (position_new_window_in_stack_ring):
1491 (HandleUnusualStackmodes):
1494 (CMD_RestackTransients):
1496 do raise hacks even when the internal stack is intact, unless on a
1499 2007-06-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1501 * fvwm/style.c (check_window_style_change)
1502 (style_parse_one_style_option):
1504 * fvwm/fvwm.h (window_style):
1505 * fvwm/add_window.c (setup_frame_size_limits):
1506 * fvwm/geometry.c (constrain_size):
1507 new style MinWindowSize
1509 2007-05-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1512 added missing prototypes
1514 * libs/safemalloc.c:
1521 * libs/Event.c (GetSubwindowFromEvent):
1523 * libs/ColorUtils.c:
1524 include corresponding header files
1526 * libs/PictureBase.c:
1527 * libs/FlocaleCharset.c:
1531 2007-05-27 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1533 * configure.ac (HAVE_GNU_READLINE):
1534 detect full GNU readline API (vs BSD libedit readline compatibility
1537 2007-04-27 Scott Smedley <ss(at)aao(dot)gov(dot)au>
1539 * fvwm/windowlist.c (CMD_WindowList):
1542 Deprecated "UseListSkip" & "OnlyListSkip" - replaced with
1543 "UseSkipList" & "OnlySkipList".
1545 2007-04-29 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1548 * fvwm/add_window.c (validate_transientfor):
1549 detect and disallow circular transient-for hints
1551 2007-04-27 Scott Smedley <ss(at)aao(dot)gov(dot)au>
1554 s/UseListSkip/UseSkipList/g etc.
1556 2007-04-17 Jesus Guerrero <6thpink(at)terra(dot)es>
1558 * fvwm/menus.c (size_menu_vertically):
1559 added localization of the "More&..." string
1561 2007-03-17 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1563 * libs/PictureBase.c (PictureFindImageFile):
1564 fix for segfault with svg-support enabled
1566 * INSTALL.fvwm (http):
1567 * configure.ac (png_CFLAGS):
1568 raise librsvg dependeny due to bug with 2.13.91
1570 * fvwm/cursor.c (CMD_CursorStyle):
1571 remove unused static variable nocursor
1573 2007-03-14 Scott Smedley <ss(at)aao(dot)gov(dot)au>
1578 2007-03-11 Scott Smedley <ss(at)aao(dot)gov(dot)au>
1581 bugfix: 'make dist' failed cos I moved 'scott.notes' to util/ subdir.
1582 bugfix: out-of-tree builds failed due to broken dependency.
1583 Make man page have same header as old one.
1584 Fix man page indentation.
1585 Make text of top-level man page sections all uppercase.
1586 Added --disable-mandoc option.
1587 HTML doc generation is off by default: use --enable-htmldoc.
1588 Added more info in doc/README about XML commands to use.
1590 2007-03-10 Scott Smedley <ss(at)aao(dot)gov(dot)au>
1593 * Everything in the 'doc' subdirectory.
1595 XML source to generate man page & HTML documentation.
1597 2007-02-07 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1600 * fvwm/colorset.c (parse_colorset):
1601 don't recompute sh, hi and fgsh if they were supplied in a previous
1602 colorset line. Fixes bug #3359.
1604 2007-02-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1606 * fvwm/move_resize.c (DoSnapAttract):
1607 handle SnapGrid before SnapAttraction so that non-overlapping windows
1608 do not snap edge to edge:
1615 2007-02-05 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1617 * fvwm/style.c (parse_and_set_window_style)
1618 (style_parse_one_style_option):
1619 don't warn about PositionPlacement arguments
1621 2007-02-04 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1625 enties for ChangeWindowTitle patch by Julio Teca.
1627 2007-02-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1629 * fvwm/fvwm.c (main):
1630 fixed ROOT CursorStyle context
1632 * fvwm/placement.c (__pl_manual_get_pos_simple):
1633 * fvwm/move_resize.h:
1634 * fvwm/move_resize.c (__move_loop):
1636 fixed long broken POSITION CursorStyle context
1638 2007-02-04 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1640 * fvwm/bindings.c (ParseBinding):
1641 fix buffer overrun with >78 character window names.
1643 * fvwm/fvwm.1.in (PositionPlacement):
1646 * fvwm/fvwm.1.in (BorderWidth, HandleWidth):
1647 * fvwm/style.c (style_parse_one_style_option):
1648 change BorderWidth and HandleWidth style to revert to default if no
1651 2007-02-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1653 * fvwm/fvwm.h (style_flags):
1654 * fvwm/placement.c (__pl_under_mouse_get_pos_simple):
1655 (__place_get_wm_pos):
1656 (__place_window, __explain_placement):
1657 * fvwm/style.c (style_parse_one_style_option):
1659 * libs/defaults.h (DEFAULT_PLACEMENT_POS_CENTER_STRING)
1660 (DEFAULT_PLACEMENT_POS_MOUSE_STRING)
1661 (DEFAULT_PLACEMENT_POSITION_STRING):
1664 * fvwm/move_resize.c (GetOnePositionArgument):
1665 added 'w' suffix to Move arguments
1666 allow multiple shifts from original position
1668 * fvwm/style.c (style_parse_one_style_option):
1671 * fvwm/placement.c (setup_window_placement)
1672 (__place_get_placement_flags):
1673 (__place_get_wm_pos):
1674 (__place_get_nowm_pos):
1676 (__place_handle_x_resources):
1677 (setup_window_placement):
1678 * fvwm/fvwm.h (PLACE_CENTER):
1680 replaced CenterPlacement with more flexibe PositionPlacement
1682 * fvwm/move_resize.c (GetMoveArguments):
1683 (GetResizeArguments):
1684 (GetResizeMoveArguments):
1686 * fvwm/move_resize.h:
1687 exported and enhanced function GetMoveArguments for use by placement
1690 2007-02-01 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1692 * fvwm/ConfigFvwmDefaults:
1693 reenable MenuScroll on titles
1695 * fvwm/menubindings.c (menu_shortcuts):
1696 don't scroll menus if scrolling would be in the wrong direction
1698 2007-02-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1700 * fvwm/move_resize.c (__resize_window):
1701 some resizing/gravity fixes
1702 properly handle maximized + shaded state when resizing
1705 2007-01-31 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1707 * fvwm/move_resize.c (__resize_window):
1708 resizing of shaded windows work better.
1710 2007-01-30 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1712 * fvwm/fvwm.1.in (COMMAND EXPANSION):
1713 clarified previous patch
1715 * fvwm/fvwm.1.in (COMMAND EXPANSION):
1716 documented '-' command prefix
1718 * fvwm/expand.c (__eae_parse_range):
1719 fix $[n-] and $[*] after unsigned int havoc
1721 2007-01-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1724 * fvwm/ConfigFvwmMenuDefaults:
1726 * fvwm/ConfigFvwmDefaults:
1727 * fvwm/ConfigFvwmMenuDefaults:
1728 moved all settings from ConfigFvwmMenuDefaults to ConfigFvwmDefaults
1730 2007-01-28 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1732 * fvwm/ConfigFvwmMenuDefaults:
1733 * fvwm/fvwm.c (SetRCDefaults):
1734 make default menu mouse bindings for MenuSelectItem and MenuScroll only
1735 apply to menu item context.
1737 2007-01-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1739 * fvwm/placement.c (placement_loop):
1740 (__pl_minoverlap_get_avoidance_penalty):
1741 (__pl_smart_get_first_pos):
1742 (__pl_smart_get_next_pos):
1743 (__pl_smart_test_window):
1744 (__pl_smart_get_pos_penalty):
1745 rewrote SmartPlacement as a sub-mode of MinOverlapPlacement, i.e. it's
1746 now less than ten lines of code.
1748 * fvwm/add_window.c (setup_placement_penalty):
1749 * fvwm/style.c (style_parse_one_style_option):
1750 allow to reset the placement penalties with !
1753 * fvwm/add_window.c (setup_placement_penalty):
1756 * fvwm/style.c (style_parse_one_style_option):
1757 put placement penalty array in a struct
1759 * fvwm/placement.c (__place_get_wm_pos):
1760 (__pl_clever_get_next_x):
1761 (__pl_clever_get_next_y):
1762 (__pl_clever_get_first_pos):
1763 (__pl_clever_get_next_pos):
1764 (__pl_clever_get_avoidance_penalty):
1765 (__pl_clever_get_pos_penalty):
1766 (__pl_minoverlap_get_next_x):
1767 (__pl_minoverlap_get_next_y):
1768 (__pl_minoverlap_get_first_pos):
1769 (__pl_minoverlap_get_next_pos):
1770 (__pl_minoverlap_get_avoidance_penalty):
1771 (__pl_minoverlap_get_pos_penalty):
1772 renamed ...clever... functions to ...minoverlap...
1775 * fvwm/decorations.c:
1776 * fvwm/menubindings.c:
1777 * fvwm/module_interface.c:
1778 * fvwm/module_list.c:
1780 * fvwm/module_list.h:
1782 * fvwm/module_interface.h:
1784 dont include "libs" in include path
1787 #includes from fvwm path with "..." not <...>
1790 #includes from library path with "..." not <...>
1792 2007-01-28 Simon Griph <simon(at)griph(dot)se>
1797 documented new svg support
1800 added librsvg detection
1802 * fvwm/Makefile.am (LDADD, INCLUDES):
1803 added rsvg_LIBS, rsvg_CFLAGS
1805 * fvwm/expand.c (expand_vars_extended):
1806 new extended variables
1807 $[w.iconfile.svgopts] and $[w.miniiconfile.svgopts]
1809 * fvwm/fvwm.1.in (OPTIONS):
1811 documented new svg support
1812 (COMMAND EXPANSION):
1813 documented new extended variables
1815 * fvwm/fvwm.c (setVersionInfo):
1817 added Frsvg_init() call
1822 * libs/Makefile.am (libfvwm_a_SOURCES):
1827 * libs/Picture.c (PCacheFvwmPicture):
1828 hid svgopts from isFileStampChanged()
1830 * libs/PictureBase.c (PictureFindImageFile):
1831 hid svgopts from searchPath()
1833 * libs/PictureBase.h:
1835 * libs/PictureImageLoader.c (PImageLoadFvwmPictureFromFile):
1836 hid svgopts from setFileStamp()
1838 new svg image loader
1840 * libs/fvwmlib.c (flib_init_graphics):
1841 added Frsvg_init() call
1843 2007-01-28 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1846 * fvwm/stack.c (__is_restack_needed)
1847 (is_transient_subtree_straight):
1849 fix crash when trying to restack destroyed window
1851 2007-01-27 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1853 * libs/Makefile.am (libfvwm_a_SOURCES):
1856 * fvwm/move_resize.c (AnimatedMoveAnyWindow):
1857 * fvwm/menus.c (move_any_menu)
1858 set menu backgrounds before moving. Makes transparent menus move
1861 * fvwm/menus.c (update_transparent_menu_bg, repaint_transparent_menu):
1862 * fvwm/menus.c (update_transparent_menu_bg, repaint_transparent_menu):
1863 add update_transparent_menu_bg to allow set of transparent menu
1864 background before a move, and change repaint_transparent_menu to
1865 allow for not setting the menu background.
1867 * libs/Colorset.c (SetWindowBackgroundWithOffset):
1868 create offset backgrounds with CreateOffsetBackgroundPixmap (works with
1869 transparent colorsets)
1870 (CreateOffsetBackgroundPixmap):
1871 use offset also for non transparent backgrounds.
1873 * fvwm/menubindings.c (menu_shortcuts):
1874 don't move menus on scroll if they don't move
1876 2007-01-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1881 * fvwm/decorations.c:
1883 * fvwm/ewmh_events.c:
1884 * fvwm/ewmh_icons.c:
1889 * fvwm/menubindings.c:
1894 * fvwm/module_interface.c:
1895 * fvwm/module_list.c:
1898 * fvwm/windowlist.c:
1899 * fvwm/windowshade.c:
1904 * fvwm/conditional.c:
1911 * fvwm/add_window.c:
1913 * fvwm/move_resize.c:
1922 * fvwm/execcontext.c:
1924 * libs/CombineChars.c:
1932 * libs/FlocaleCharset.c:
1936 * libs/safemalloc.c:
1942 * libs/ColorUtils.c:
1944 * libs/PictureImageLoader.c:
1945 * libs/PictureGraphics.c:
1948 * libs/PictureUtils.c:
1950 * libs/PictureBase.c:
1951 use new header files
1957 * libs/ColorUtils.h:
1958 * libs/PictureBase.h:
1965 * libs/Makefile.am (libfvwm_a_SOURCES):
1966 moved declarations from fvwmlib.h to new/appropriate header files
1971 * fvwm/menus.c (paint_side_pic):
1972 fixed previous patch
1975 2007-01-27 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1977 * fvwm/menus.c (paint_side_pic):
1980 * fvwm/menus.c (paint_side_pic):
1981 use simple expose information to redraw sidepics less.
1983 2007-01-26 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
1985 * fvwm/geometry.c (constrain_size):
1986 silence gcc 4.1.1 warning.
1988 * libs/System.c (searchPath):
1989 search in pwd if no path is given.
1990 return NULL if a file dosn't exist regardless if it's absolute path
1992 2007-01-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
1994 * fvwm/placement.c (__place_window)
1995 (__pl_under_mouse_get_pos_simple):
1996 * fvwm/style.h (SUNDERMOUSE_PLACEMENT_HONORS_STARTS_ON_PAGE):
1998 new style option UnderMousePlacementHonorsStartsOnPage
2000 * fvwm/update.c (init_style):
2001 don't forget stickyness when a window goes fullscreen (or when some
2002 other style is changed)
2004 2007-01-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2006 * fvwm/placement.c (__pl_cascade_get_pos_simple):
2007 properly handle title direction with cascade placement
2009 * libs/defaults.h (PLACEMENT_FALLBACK_CASCADE_STEP):
2012 * fvwm/placement.c (__pl_center_get_pos_simple):
2013 CenterPlacement properly handles Xinerama screens
2015 2007-01-25 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2018 always substiture datarootdir
2020 2007-01-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2022 * fvwm/add_window.c (GetWindowSizeHints):
2023 * fvwm/geometry.c (constrain_size):
2024 undefine macros after use
2026 reindented and cleaned up
2027 do not grow a window because of aspect ratio if this is not explicitly
2028 allowed by the CS_ROUND_UP flag
2030 (__cs_handle_aspect_ratio):
2031 broken into separate functions and cleaned up
2033 2007-01-20 Renato Caldas <seventhguardian@gmail.com>
2035 * fvwm/module_list.c (module_receive):
2036 (module_input_discard):
2037 allocate input data in just one call - better perfomance
2039 2007-01-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2041 * fvwm/placement.c (__place_get_wm_pos):
2042 simplified to a simple loop
2043 (__explain_placement):
2044 added explanation of new placement styles
2046 * fvwm/placement.c (__place_get_wm_pos):
2048 (__pl_center_get_pos_simple):
2049 (__pl_under_mouse_get_pos_simple):
2050 (__pl_cascade_get_pos_simple):
2051 (__pl_manual_get_pos_simple):
2052 (__place_get_wm_pos):
2053 use new placement interface for CenterPlacement, UnderMousePlacement,
2054 ManualPlacement, CascadePlacement
2056 * fvwm/placement.c (__sp_get_first_pos):
2057 (__sp_get_next_pos):
2058 (__sp_get_pos_penalty):
2059 (__place_get_wm_pos):
2060 use new placement interface for SmartPlacement
2065 don't use inline functions
2068 renamed function and generalized the placement interface to deal with
2069 any algorithm in the same way
2070 (__place_get_wm_pos):
2071 use new placement interface
2075 increased version to 2.5.22
2079 updated for 2.5.21 release
2081 2007-01-19 Dan Espen <dane@mk.telcordia.com>
2083 * fvwm/read.h: Compile syntax error fix.
2085 2007-01-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2087 * fvwm/placement.c (SmartPlacement):
2088 fixed broken SmartPlacement
2090 2007-01-19 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2092 * fvwm/expand.c (expand_vars_extended):
2093 free allocated icon path
2095 2007-01-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2103 2007-01-19 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2106 * fvwm/fvwm.1.in (Scroll):
2107 * fvwm/virtual.c (__drag_viewport, CMD_Scroll):
2108 add interactive scrolling.
2110 * fvwm/stack.c (is_transient_subtree_straight):
2111 check first above the tree root, then beneth it.
2113 2007-01-17 Renato Caldas <seventhguardian@gmail.com>
2115 * fvwm/module_interface.h
2116 * fvwm/module_interface.c (module_input_enqueue):
2117 (module_input_execute):
2118 new functions based on AddToCommandQueue and ExecuteModuleCommand
2120 * fvwm/module_list.c (CMD_ModuleSynchronous):
2122 * fvwm/events.c (My_XNextEvent):
2123 * fvwm/module_interface.c (ExecuteCommandQueue):
2124 using the above two new functions instead of AddToCommandQueue and
2125 ExecuteModuleCommand
2127 * fvwm/module_interface.c (cqueue_object_type):
2130 * fvwm/module_interface.h
2131 * fvwm/module_interface.c (AddToCommandQueue):
2132 (ExecuteModuleCommand):
2135 2007-01-16 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2137 * fvwm/fvwm.h (window_style):
2138 * fvwm/style.c (style_parse_one_style_option):
2139 icon background relief and icon title relief changed to sigend char;
2140 should fix problem with ppc and negative values for these.
2142 2007-01-16 Renato Caldas <seventhguardian@gmail.com>
2144 * fvwm/module_list.h:
2145 * fvwm/module_list.c (module_receive):
2146 (module_input_discard):
2147 (module_input_expect):
2148 new functions to deal with module input
2150 * fvwm/module_list.h:
2151 * fvwm/module_list.c (HandleModuleInput):
2152 replaced by the above three functions
2154 * fvwm/events.c (My_XNextEvent):
2155 * fvwm/module_list.c (CMD_ModuleSynchronous):
2157 adapted to use the above three functions instead of HandleModuleInput
2159 2007-01-16 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2161 * configure.ac (HAVE_PNG):
2162 don't mangle png_LIBS, use --with-png-library
2164 2007-01-15 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2167 removed news about previous change after move of version-2_5_20 tag
2168 on ChangeLog and fvwm/stack.c to the last revision and rebuilt tar
2171 * fvwm/stack.c (__restack_window):
2172 fix so new transient windows with StackTransientParent on top layer
2173 don't make all windows raise above the pan frames.
2177 increased version to 2.5.21
2181 updated for 2.5.20 release
2183 2007-01-15 Renato Caldas <seventhguardian@gmail.com>
2185 * fvwm/fvwm.c (main):
2186 remove the call to module_init_list, the list head is instead set
2187 to NULL upon declaration
2189 * fvwm/module_list.h:
2190 * fvwm/module_list.c (module_init_list):
2193 2007-01-14 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2195 * fvwm/stack.c (is_transient_subtree_straight)
2196 (is_transient_subtree_stack_straight):
2197 use <= 32 character function name
2198 (mark_transient_subtree, is_transient_subtree_straight)
2199 (__mark_transient_subtree_test):
2200 move common tests to function to avoid code duplication
2202 * fvwm/fvwm.1.in (IconifyWindowGroups):
2203 Correctly document that windows are iconified together if the are in
2204 the same window group, not if the group leader is iconified.
2206 2007-01-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2208 * fvwm/add_window.c (GetWindowSizeHints):
2209 * libs/vpacket.h (ConfigWinPacket):
2210 * fvwm/module_interface.c (CONFIGARGS):
2211 * fvwm/fvwm.h (FvwmWindow):
2212 add orig_hints_width_inc and orig_hints_height_inc values to store the
2213 original resize inc for use in FvwmIdent
2216 * fvwm/style.c (style_parse_one_style_option):
2217 deprecated some "No..." styles
2218 (style_parse_one_style_option):
2219 add a NoResizeHintOverride style
2221 * fvwm/add_window.c (GetWindowSizeHints):
2222 only ignore the min_width/min_height/max_width/max_height with the
2223 ResizeHintOverride style
2225 * fvwm/icons.c (DeIconify):
2226 corrected previous fix
2228 * fvwm/placement.c (CleverPlacement):
2230 (__place_get_wm_pos):
2231 (__place_get_nowm_pos):
2233 fixed smart placement
2234 unified placement func interface
2236 2007-01-14 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2239 * fvwm/icons.c (DeIconify):
2242 * fvwm/stack.c (is_transient_subtree_stacked_straight):
2243 fix detection of non needed lower operations
2245 BroadcastRestack to modules even if non is done. (To cancel effect of
2246 already sent M_RAISE/M_LOWER)
2247 don't do raise hacks if no restack was done.
2249 * fvwm/fvwm.h (FvwmWindow):
2250 icon_nalloc_pixels is int instead of unsined int
2252 * libs/PictureUtils.h (PictureCloseImageColorAllocator):
2253 * libs/PictureUtils.c (PictureCloseImageColorAllocator):
2254 use int instead of unsigned int.
2256 * fvwm/menugeometry.c (menu_get_geometry)
2257 (menu_get_outer_geometry):
2258 * fvwm/focus.c (CMD_WarpToWindow):
2259 * fvwm/geometry.c (get_title_button_geometry):
2260 * fvwm/session.c (SaveWindowStates):
2261 * fvwm/conditional.c (CMD_WindowId):
2262 * fvwm/placement.c (__place_get_wm_pos):
2263 * fvwm/frame.c (frame_create_move_resize_args):
2264 * fvwm/icons.c (GetIconBitmap, GetIconWindow):
2265 * fvwm/add_window.c (CaptureOneWindow, AddWindow):
2266 * fvwm/builtins.c (CMD_Destroy, CMD_Close):
2267 * fvwm/style.c (style_parse_icon_box_style):
2268 * fvwm/move_resize.c (resize_move_window, InteractiveMove)
2269 (AnimatedMoveAnyWindow, __move_window, __move_loop)
2271 * fvwm/events.c (HandlePropertyNotify)
2272 (__is_bpress_window_handled):
2273 * fvwm/menus.c (paint_menu_gradient_background, pop_menu_up)
2275 fix geometry signed pointer warnings
2277 * libs/Graphics.c (CalculateGradientDimensions):
2278 cast pointer to unsigned int*
2280 * libs/FScreen.h (FScreenGetScrRect, FScreenGetResistanceRect):
2281 * libs/FScreen.c (FScreenGetScrRect, FScreenClipToScreen)
2282 (FScreenCenterOnScreen, FScreenGetResistanceRect, FScreenGetGeometry):
2283 change unsigned int* parameter to int*. It get's info stored in an
2284 unsigned short, so it should be OK.
2288 JunkMask is unsigned
2290 * fvwm/stack.c (__mark_group_member)
2291 (is_transient_subtree_stacked_straight, __is_restack_needed)
2292 (__restack_window, mark_transient_subtree):
2293 don't raise or lower windows if they are already at the right place.
2295 2007-01-13 Renato Caldas <seventhguardian@gmail.com>
2297 * fvwm/module_interface.c (struct cqueue_object_type):
2298 * fvwm/module_list.h (struct fmodule_input):
2299 reused cqueue_object_type as a struct to store module input data
2300 renamed it to fmodule_input and moved it to module_list.h
2301 typedef'ed it to cqueue_object_type in module_interface.c
2303 2007-01-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2305 * fvwm/placement.c (__cp_get_next_x):
2307 (__cp_get_first_pos):
2308 (__cp_get_next_pos):
2309 (__cp_get_avoidance_penalty):
2312 restructured and cleaned up CleverPlacement code
2314 * fvwm/style.c (style_parse_icon_box_style):
2315 * fvwm/virtual.c (HandlePaging):
2316 * fvwm/stack.c (verify_stack_ring_consistency):
2317 (ResyncFvwmStackRing):
2319 * fvwm/read.c (cursor_control):
2320 * fvwm/placement.c (__place_get_wm_pos):
2321 * fvwm/move_resize.c (GetMoveArguments):
2322 (ParseOneResizeArgument):
2323 (GetResizeArguments):
2324 (GetResizeMoveArguments):
2325 (resize_move_window):
2326 (resize_move_window):
2337 (maximize_fvwm_window):
2341 * fvwm/menustyle.h (MenuStyle):
2342 * fvwm/menus.c (MenuSizingParameters):
2344 (paint_menu_gradient_background):
2345 (paint_menu_gradient_background):
2349 (pop_menu_down_and_repaint_parent):
2350 (__mloop_handle_action_without_mi):
2354 * fvwm/menuroot.h (MenuRootStatic):
2356 * fvwm/menuitem.h (MenuPaintItemParameters):
2357 * fvwm/menugeometry.h:
2358 * fvwm/menubindings.c (menu_shortcuts):
2359 * fvwm/icons.c (SetIconPixmapSize):
2361 (DrawIconTitleWindow):
2366 * fvwm/gnome.c (GNOME_GetHintIcons):
2367 * fvwm/functions.c (FvwmFunction):
2368 (__execute_function):
2370 (execute_complex_function):
2371 * fvwm/fvwm.c (JunkWidth):
2377 * fvwm/externs.h (JunkWidth):
2382 * fvwm/focus.c (CMD_WarpToWindow):
2383 * fvwm/expand.c (__eae_parse_range):
2384 (expand_args_extended):
2385 (expand_vars_extended):
2386 (expand_vars_extended):
2387 * fvwm/ewmh_names.c (EWMH_WMIconName):
2389 * fvwm/ewmh_intern.h:
2390 * fvwm/ewmh_icons.c (ewmh_WMIcon):
2391 (EWMH_DoUpdateWmIcon):
2392 (ewmh_SetWmIconFromPixmap):
2393 (ewmh_SetWmIconFromPixmap):
2394 (EWMH_DeleteWmIcon):
2397 (EWMH_SetIconFromWMIcon):
2398 * fvwm/ewmh_events.c (ewmh_WMDesktop):
2400 (ewmh_WMIconGeometry):
2403 * fvwm/ewmh.c (ewmh_ChangeProperty):
2404 (ewmh_ChangeProperty):
2406 (ewmh_AtomGetByName):
2407 (ewmh_AddToKdeSysTray):
2408 (EWMH_GetWorkAreaIntersection):
2409 (ewmh_HandleWindowType):
2410 (ewmh_check_wm_pid):
2411 * fvwm/geometry.c (constrain_size):
2413 * fvwm/events.c (__handle_cr_on_client):
2416 * libs/PictureImageLoader.c:
2417 * libs/PictureImageLoader.h:
2420 * libs/Graphics.c (ParseGradient):
2421 (CalculateGradientDimensions):
2422 (CreateGradientPixmap):
2423 (CreateGradientPixmapFromString):
2424 * fvwm/colorset.c (update_root_pixmap):
2425 * fvwm/builtins.c (CMD_Echo):
2427 * fvwm/add_window.c (AddWindow):
2428 * fvwm/screen.h (DecorFace):
2429 use int instead of unsigned int
2431 * libs/Flocale.c (FlocaleChar2bOneCharToUtf8):
2432 * fvwm/colormaps.c (EnterSubWindowColormap):
2433 (LeaveSubWindowColormap):
2434 (FetchWmColormapWindows):
2436 * libs/CombineChars.c (char_combclass):
2437 use short instead of short int
2438 use long instead of long int
2440 * libs/PictureBase.h (FvwmPictureAttributes):
2441 (FvwmRenderAttributes):
2442 * libs/Flocale.h (FlocaleFont):
2443 * fvwm/style.c (style_parse_icon_grid_style):
2444 * fvwm/menus.c (size_menu_horizontally):
2445 (size_menu_vertically):
2448 * fvwm/menuitem.c (menuitem_paint):
2450 * fvwm/menuitem.h (MenuItem):
2451 * fvwm/geometry.c (set_window_border_size):
2452 * fvwm/decorations.c (SelectDecor):
2453 use int instead of short
2455 * fvwm/screen.h (FvwmAcs):
2457 * fvwm/menus.c (MenuSizingParameters):
2458 (size_menu_horizontally):
2460 (paint_menu_gradient_background):
2461 * fvwm/menuroot.h (MenuRootStatic):
2462 * fvwm/menuitem.h (MenuItem):
2463 (MenuItemPartSizesT):
2464 * fvwm/menuitem.c (menuitem_get_size):
2465 * fvwm/menudim.h (MenuDimensions):
2466 use int instead of unsigned short
2468 2007-01-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2471 * libs/gravity.c (gravity_move_resize_parent_child):
2473 * fvwm/frame.c (mr_args_internal):
2474 (frame_setup_border):
2475 (frame_setup_titlebar):
2476 (frame_get_resize_decor_gravities):
2477 (frame_get_titlebar_dimensions):
2478 use rectangle instead of signed_rectangle
2480 * libs/fvwmrect.c (fvwmrect_subtract_rectangles):
2481 * libs/fvwmrect.h (signed_rectangle):
2485 widht and height are now signed values
2487 * fvwm/placement.c (get_next_x):
2495 * fvwm/placement.c (get_next_x):
2501 2007-01-13 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2504 NEWS entry for StickyIcon, StickyAcrossPagesIcon and
2505 StickyAcrossDesksIcon.
2507 2007-01-13 Serge Koksharov <gentoosiast dog yandex dot ru>
2509 * fvwm/conditional.c (CreateConditionMask):
2510 added conditions StickyIcon, StickyAcrossPagesIcon and
2511 StickyAcrossDesksIcon.
2514 documented new conditional tests.
2515 removed descriptions of styles StickyIconPage & StickyIconDesk which
2516 actually don't exists in fvwm.
2517 moved StickyIcon/SlipperyIcon descriptions immediately after
2518 Sticky/Slippery description.
2520 2007-01-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2522 * fvwm/placement.c (SmartPlacemen):
2524 cleaned up SmartPlacement code
2526 2007-01-13 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2528 * fvwm/ConfigFvwmMenuDefaults:
2529 Mouse 0 MS A MenuLeaveSubmenu instead.
2531 * fvwm/ConfigFvwmMenuDefaults:
2532 Mouse 0 MS A MenuClose to make sidepic and border behave as
2533 before menu bindings.
2536 * libs/wcontext.h (enum):
2537 * fvwm/menubindings.c (menu_binding):
2539 Add menu contexts 'I' (for items) 'S' '[', ']', '_', '-'.
2541 * fvwm/menustyle.c (menustyle_parse_old_style):
2542 add a message of deprecation.
2544 2007-01-10 Renato Caldas <seventhguardian@gmail.com>
2546 * fvwm/module_list.h:
2547 * fvwm/module_list.c:
2548 new files for module handling code.
2550 * fvwm/module_list.h:
2551 * fvwm/module_interface.h:
2552 * fvwm/module_list.c:
2553 * fvwm/module_interface.c:
2554 (struct mqueue_object_type):
2565 (do_execute_module):
2566 (executeModuleDesperate):
2568 (CMD_ModuleListenOnly):
2569 (CMD_ModuleSynchronous):
2570 (HandleModuleInput):
2576 (DeleteMessageQueueBuff):
2577 (FlushMessageQueue):
2578 (FlushAllMessageQueues):
2580 (CMD_set_sync_mask):
2581 (CMD_set_nograb_mask):
2582 (skipModuleAliasToken):
2584 (struct msg_masks_t):
2586 moved from module_interface.c/h to module_list.c/h
2588 * fvwm/module_list.h (do_execute_module):
2589 * fvwm/module_interface.h (AddToCommandQueue):
2590 (ExecuteModuleCommand):
2591 initialy static functions are exposed for now. Should be fixed soon.
2594 added module_list.h and module_list.c
2595 reorganized the c files by size
2597 * fvwm/module_list.h:
2598 * fvwm/module_list.c:
2611 renamed functions to a unified style
2613 * fvwm/module_interface.h:
2614 * fvwm/module_interface.c:
2620 * fvwm/windowshade.c:
2622 * fvwm/move_resize.c:
2623 include file cleanup
2625 * fvwm/module_list.c (do_execute_module):
2626 made absolutely sure the module's read fd is >=0 before inserting
2627 the module on the list
2629 * fvwm/events.c (My_XNextEvent):
2630 * fvwm/module_list.c (PositiveWrite):
2631 (CMD_ModuleSynchronous):
2632 assume module read fd is allways >=0 (remove the tests)
2634 * fvwm/module_list.c (module_free):
2635 no need to test if fd >=0 when closing the pipes.
2637 2007-01-10 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2639 * fvwm/menuitem.c (draw_higlight_background):
2640 fix x-origin of HGradients
2642 2007-01-10 Renato Caldas <seventhguardian@gmail.com>
2644 * fvwm/module_interface.c (FlushMessageQueues):
2645 fixed not flushing the first module on the list
2647 2007-01-10 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2649 * libs/Flocale.c (FlocaleGetFftFont):
2650 add sanity check for NULL fontname.
2654 * fvwm/menuitem.c (menuitem_paint):
2655 (draw_hilight_background):
2656 make all kinds of pixmaps work with hilight background
2658 * libs/Colorset.h (CreateOffsetBackgroundPixmap):
2659 * libs/Colorset.c (CreateOffsetBackgroundPixmap)
2660 (CreateBackgroundPixmap):
2661 added CreateOffsetBackgroundPixmap with the ability to create
2662 transparent images at an offset relative to the window.
2664 2007-01-09 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2666 * fvwm/menus.c (__mloop_exit):
2669 (__mloop_handle_event):
2670 don't warp to parent item when entering other item with mouse.
2674 * fvwm/menustyle.c (menustyle_update):
2675 make use of colorset TiledPixmap option with HiglightBack
2676 and HiglightTitleBack menu styles.
2678 2007-01-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2683 2007-01-09 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2685 * libs/FScreen.c (FScreenParseGeometry):
2686 don't look up screen info if screen is undefined
2688 2007-01-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2692 moved the NEWS of 2.2.x and 2.3.x to ONEWS
2694 * libs/fio.c (fvwm_send):
2697 * libs/defaults.h (FVWMCONSOLE_CONNECTION_TO_SECS):
2702 new utility files to wrap writing/reading standard lib functions that
2703 might be interrupted
2705 2007-01-05 Serge Koksharov <gentoosiast dog yandex dot ru>
2707 * fvwm/ewmh_intern.h:
2708 compilation fix with EWMH_DEBUG enabled: include <sys/times.h>
2709 instead of <time.h>.
2711 * fvwm/windowlist.h:
2712 removed unneeded file.
2715 removed windowlist.h from build list.
2717 * libs/PictureUtils.c:
2718 include "ftime.h" instead of <time.h>.
2719 fvwmlib.h header name should be in double quotes not in angle
2723 include "ftime.h" instead of <sys/time.h>.
2725 2007-01-05 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2728 make my email less spider-friendly
2730 * fvwm/bindings.c (binding_cmd):
2734 2007-01-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2736 * fvwm/screen.h (ScreenInfo):
2737 made MyDisplayWidth and MyDisplayHeight signed integer values to avoid
2738 casting signed values in calculations to be cast to unsigned
2740 * fvwm/focus.c (__activate_window_by_command):
2741 don't warp the viewport if the center of the window is already in view
2742 fixed a bug in window positioning
2744 2007-01-03 Serge Koksharov <gentoosiast dog yandex dot ru>
2747 FvwmIconBox IconColorset's bg wasn't updated immediately.
2749 2007-01-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2751 * fvwm/fvwm.c (main):
2752 close all open fds upon startup
2753 reopen stdin, stdout and stderr if necessary
2757 * fvwm/module_interface.c (do_execute_module):
2758 simplified error handling
2759 check maximum fd when creating modules
2761 * fvwm/events.c (My_XNextEvent):
2762 * fvwm/fvwm.c (main):
2763 replaced fd_width with fvwmlib_max_fd
2766 * libs/System.c (fvwmlib_init_max_fd):
2767 added function and fvwmlib_max_fd
2769 * fvwm/events.c (My_XNextEvent):
2770 * fvwm/module_interface.c (CMD_ModuleSynchronous):
2771 switch back to using FD_SET
2773 * fvwm/events.c (My_XNextEvent:
2774 * fvwm/module_interface.h:
2775 * fvwm/module_interface.c:
2776 hide module structure members with access macros and use them
2779 2007-01-02 Renato Caldas <seventhguardian@gmail.com>
2781 * fvwm/module_interface.c (module_add_to_fdsets):
2782 * fvwm/module_interface.h:
2783 created new function that also checks for too many open fds
2785 * fvwm/module_interface.c (CMD_ModuleSynchronous):
2786 * fvwm/events.c (My_XNextEvent):
2787 now using module_add_to_fdset to add pipes to the fdsets
2789 2007-01-01 Renato Caldas <seventhguardian@gmail.com>
2791 * libs/defaults.h (MAX_NUM_MODULES):
2792 * fvwm/module_interface.c (module_alloc):
2793 (do_execute_module):
2794 removed check for MAX_NUM_MODULES - not needed, done by the O.S.
2796 * fvwm/module_interface.c (do_execute_module):
2797 moved the allocation call to the end of the sanity checks and pipe
2798 creation - better for performance
2800 2007-01-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2802 END MODULE STRUCT PATCHES
2804 * fvwm/module_interface.c (do_execute_module):
2805 fixed another memory leak
2807 2007-01-01 Renato Caldas <seventhguardian@gmail.com>
2809 * fvwm/module_interface.h:
2810 * fvwm/module_interface.c:
2812 renamed struct module member "pipeName" and "pipeAlias" to "name"
2815 * fvwm/module_interface.c (do_execute_module):
2816 fixed possible memory leak
2818 2007-01-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2820 * fvwm/events.c (My_XNextEvent):
2821 * fvwm/module_interface.c (module_alloc):
2822 (do_execute_module):
2824 * fvwm/module_interface.h (fmodule):
2825 replaced int with a flag struct
2827 * fvwm/module_interface.h:
2828 * fvwm/events.c (My_XNextEvent):
2829 * fvwm/module_interface.c (module_alloc):
2833 add new modules at front of list again
2834 removed global variable init_fdset; use a flag in the module struct
2836 removed the now obsolete module slot count
2838 2007-01-01 Renato Caldas <seventhguardian@gmail.com>
2840 * fvwm/module_interface.c (module_remove):
2842 moved module remotion code to module_remove()
2844 2007-01-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2846 * fvwm/events.c (My_XNextEvent):
2847 fixed startup commands
2849 * fvwm/module_interface.c (module_insert):
2853 append modules at end of list
2855 * fvwm/events.c (My_XNextEvent):
2858 * fvwm/module_interface.c (ExecuteModuleCommand):
2862 (BroadcastNewPacket):
2864 (BroadcastFvwmPicture):
2865 (BroadcastColorset):
2866 (BroadcastPropertyChange):
2867 (BroadcastConfigInfoString):
2869 (FlushAllMessageQueues):
2872 (CMD_set_sync_mask):
2873 (CMD_set_nograb_mask):
2875 (skipModuleAliasToken):
2876 use MAX_MODULE_ALIAS_LEN
2878 * fvwm/module_interface.c (KillModule):
2879 (do_execute_module):
2881 added a "slot" member to the module struct to fix the init_fdset hack
2884 * libs/defaults.h (MAX_NUM_MODULES):
2885 (MAX_MODULE_ALIAS_LEN):
2888 * fvwm/module_interface.c (do_execute_module):
2889 rewrote module struct initialization
2890 (HandleModuleInput):
2891 use %p to print module address, don't cast it to int
2893 * fvwm/module_interface.c (ClosePipes):
2901 * fvwm/module_interface.c (FreeModule):
2905 * fvwm/module_interface.c (KillModule):
2907 * fvwm/events.c (My_XNextEvent):
2908 * fvwm/execcontext.h:
2909 * fvwm/modconf.c (CMD_Send_ConfigInfo):
2911 * fvwm/stack.c (BroadcastRestack):
2914 * fvwm/module_interface.c (module_get_next):
2915 * fvwm/module_interface.h:
2918 2007-01-01 Renato Caldas <seventhguardian@gmail.com>
2920 * fvwm/modconf.c (ModuleConfig):
2921 (SendConfigToModule):
2922 (send_xinerama_state):
2923 (send_desktop_names):
2924 (send_desktop_geometry):
2929 (send_move_threshold):
2930 (send_ignore_modifiers):
2931 (CMD_Send_ConfigInfo):
2932 * fvwm/functions.c (__execute_function):
2933 * fvwm/events.c (My_XNextEvent):
2934 * fvwm/module_interface.h (msg_masks_t):
2936 * fvwm/execcontext.c (__exc_change_context):
2937 (exc_create_null_context):
2938 * fvwm/execcontext.h:
2939 Initial module struct patches
2941 BEGIN MODULE STRUCT PATCHES
2943 2006-12-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2945 * fvwm/events.c (HandleFocusOut):
2946 (__refocus_stolen_focus_win):
2947 (HandleEnterNotify):
2948 less disruptive way of restoring focus to the window it was stolen from
2950 2006-12-31 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2952 * fvwm/events.c (HandleEnterNotify):
2953 restore focus to windows that had it stolen by
2954 unmanaged windows on enter of any unmanaged windows.
2956 2006-12-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2958 * fvwm/menubindings.c:
2959 don't include menus.h
2961 * fvwm/ConfigFvwmMenuDefaults:
2962 all bindings are silent
2964 2006-12-30 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
2966 * fvwm/ConfigFvwmMenuDefaults:
2967 make all numpad keys silent -- not all keyboads have a numpad
2968 add KP_Separator for MenuClose
2970 2006-12-30 Serge Koksharov <gentoosiast dog yandex dot ru>
2973 documented missing menu bindings.
2975 * fvwm/ConfigFvwmMenuDefaults:
2976 fixed wrong menu bindings.
2978 2006-12-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
2980 * fvwm/menubindings.c:
2981 * fvwm/menubindings.h:
2985 * fvwm/menugeometry.c:
2986 * fvwm/menugeometry.h:
2992 * fvwm/move_resize.c:
2993 * fvwm/move_resize.h:
2994 * fvwm/windowlist.c:
2995 simplified including header files
2997 * fvwm/menus.c (__mloop_handle_event):
2998 * fvwm/menuparameters.h:
2999 * fvwm/menubindings.c (menu_shortcuts):
3000 do not call find_entry directly but return MENU_NEWITEM_FIND instead
3002 * fvwm/menus.c (__mloop_handle_event):
3003 * fvwm/menuparameters.h:
3004 * fvwm/menubindings.c (menu_shortcuts):
3005 do not call move_any_menu directly but return MENU_NEWITEM_MOVEMENU
3008 * fvwm/menus.h (MenuParameters):
3013 (MenuRepaintTransparentParameters):
3014 * fvwm/menuparameters.h (MenuParameters):
3019 (MenuRepaintTransparentParameters):
3020 moved to menuparameters.h
3022 * fvwm/menus.h (MenuRoot):
3025 * fvwm/menutypes.h (MenuRoot):
3030 * fvwm/menus.c (menu_get_geometry):
3031 (menu_get_outer_geometry):
3032 * fvwm/menugeometry.c (menu_get_geometry):
3033 (menu_get_outer_geometry):
3034 moved to menugeometry.c
3036 * fvwm/menuparameters.h:
3038 * fvwm/menugeometry.c:
3039 * fvwm/menugeometry.h:
3043 * fvwm/menubindings.h (enum):
3044 * fvwm/menus.c (enum):
3045 moved enum menu_shortcut_action to menubindings.h
3046 (get_selectable_item_index):
3047 (get_selectable_item_from_index):
3048 (get_selectable_item_from_section):
3049 (get_selectable_item_count):
3050 (parse_menu_action):
3051 moved to menubindings.c
3053 * fvwm/menus.c (enum):
3054 (parse_menu_action):
3056 renamed enum shortcut_action to menu_shortcut_action
3058 * fvwm/fvwm.c (SetRCDefaults):
3059 read default config file after all other defaults
3061 2006-12-29 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3063 * fvwm/ConfigFvwmMenuDefaults:
3064 * fvwm/fvwm.c (SetRCDefaults):
3065 make the hard coded menu bindings load before ConfigFvwmDefaults
3066 move Mouse 0 ... to ConfigFvwmMenuDefaults
3068 2006-12-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3070 * fvwm/ConfigFvwmMenuDefaults:
3071 * fvwm/fvwm.c (SetRCDefaults):
3072 added hard coded default menu bindings
3074 2006-12-29 Serge Koksharov <gentoosiast dog yandex dot ru>
3077 documentation fixes.
3079 2006-12-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3082 * fvwm/menubindings.h:
3083 * fvwm/menubindings.c:
3087 moved new menu binding code to menubindings.c, menubindings.h
3088 split binding into a regular list and a fallback list that can not be
3091 * libs/fvwmrect.c (fvwmrect_move_into_rectangle):
3092 fixed calculation of new geometry if x or y is negative
3094 * fvwm/geometry.c (maximize_adjust_offset):
3095 fixed calculations of normal geometry when maximized
3097 2006-12-27 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3100 * fvwm/ConfigFvwmMenuDefaults:
3101 * fvwm/fvwm.c (SetRCDefaults):
3102 * fvwm/menus.c (parse_menu_action):
3104 rename menu action to menu bindings and make menu binding commands
3105 more verbose. Move "Mouse 0 M A MenuSelectItem" to SetRCDefaults to
3106 ensure basic function with ConfigFvwmMenuDefaults missing.
3108 2006-12-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3110 * fvwm/menus.c (menuShortcuts):
3111 fixed compiler warning.
3113 2006-12-27 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3116 corrected mis-spelling
3122 * fvwm/menus.c (handle_emacs_bindings):
3125 (__mloop_handle_event):
3127 * fvwm/bindings.c (ParseBinding):
3128 * fvwm/Makefile.am (config_DATA):
3129 * fvwm/ConfigFvwmDefaults:
3130 * fvwm/ConfigFvwmMenuDefaults:
3131 fully configurable mouse any key bindings for menu navigation.
3133 2006-12-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3135 * fvwm/virtual.c (HandlePaging):
3136 removed bogus comment
3138 * fvwm/move_resize.c (__move_loop):
3141 allow paging during resize with "EdgeScroll 0 0" as documented in the
3143 fixed disappearing windows with "maximize; resize - abort; unmaximize"
3145 * fvwm/fvwm.h (FvwmWindow):
3146 * fvwm/add_window.c (AddWindow):
3147 * fvwm/add_window.c (setup_frame_window):
3148 * fvwm/add_window.c (setup_parent_window)
3149 * fvwm/borders.c (border_draw_decorations):
3150 * fvwm/borders.c (border_draw_one_border_part):
3151 * fvwm/borders.c (border_get_parts_and_pos_to_draw)
3152 * fvwm/borders.c (border_get_titlebar_descr)
3153 * fvwm/builtins.c (__remove_window_decors):
3154 * fvwm/conditional.c (MatchesConditionMask):
3155 * fvwm/events.c (HandleMapNotify):
3156 * fvwm/events.c (HandleMapRequestKeepRaised)
3157 * fvwm/events.c (HandlePropertyNotify):
3158 * fvwm/events.c (HandleShapeNotify):
3159 * fvwm/events.c (__cr_detect_icccm_move)
3160 * fvwm/events.c (__cr_get_grav_position):
3161 * fvwm/events.c (__cr_get_static_position)
3162 * fvwm/events.c (__handle_configure_request)
3163 * fvwm/events.c (__handle_cr_on_client):
3164 * fvwm/ewmh.c (EWMH_fullscreen):
3165 * fvwm/focus.c (__activate_window_by_command):
3166 * fvwm/focus.c (__set_focus_to_fwin):
3167 * fvwm/focus.c (warp_to_fvwm_window):
3168 * fvwm/frame.c (__frame_setup_window):
3169 * fvwm/frame.c (frame_create_move_resize_args)
3170 * fvwm/frame.c (frame_free_move_resize_args):
3171 * fvwm/frame.c (frame_move_resize_step)
3172 * fvwm/frame.c (frame_reshape_border):
3173 * fvwm/geometry.c (constrain_size):
3174 * fvwm/geometry.c (get_icon_corner)
3175 * fvwm/geometry.c (get_page_offset):
3176 * fvwm/geometry.c (get_page_offset_check_visible):
3177 * fvwm/geometry.c (get_shaded_client_window_pos):
3178 * fvwm/geometry.c (get_title_button_geometry):
3179 * fvwm/geometry.c (get_title_geometry)
3180 * fvwm/geometry.c (get_unshaded_geometry):
3181 * fvwm/geometry.c (get_visible_window_or_icon_geometry)
3182 * fvwm/geometry.c (gravity_constrain_size):
3183 * fvwm/geometry.c (maximize_adjust_offset):
3184 * fvwm/geometry.c (update_absolute_geometry):
3185 * fvwm/geometry.c (update_relative_geometry)
3186 * fvwm/gnome.c (GNOME_SetWinArea):
3187 * fvwm/icons.c (AutoPlaceIcon):
3188 * fvwm/icons.c (DeIconify):
3189 * fvwm/icons.c (Iconify):
3190 * fvwm/module_interface.c (CONFIGARGS):
3191 * fvwm/move_resize.c (AnimatedMoveAnyWindow)
3192 * fvwm/move_resize.c (CMD_Maximize):
3193 * fvwm/move_resize.c (CMD_ResizeMaximize):
3194 * fvwm/move_resize.c (CMD_ResizeMoveMaximize):
3195 * fvwm/move_resize.c (__move_loop):
3196 * fvwm/move_resize.c (__move_window):
3197 * fvwm/move_resize.c (__resize_window):
3198 * fvwm/move_resize.c (maximize_fvwm_window):
3199 * fvwm/move_resize.c (resize_move_window):
3200 * fvwm/move_resize.c (stick_across_pages):
3201 * fvwm/move_resize.c (unmaximize_fvwm_window):
3202 * fvwm/placement.c (__explain_placement):
3203 * fvwm/placement.c (__place_get_wm_pos):
3204 * fvwm/placement.c (get_next_x):
3205 * fvwm/placement.c (get_next_y):
3206 * fvwm/placement.c (test_fit)
3207 * fvwm/session.c (MatchWinToSM):
3208 * fvwm/session.c (SaveWindowStates):
3209 * fvwm/update.c (apply_window_updates):
3210 * fvwm/virtual.c (MoveViewport):
3211 * fvwm/windowlist.c (CMD_WindowList):
3212 * fvwm/windowshade.c (CMD_WindowShade):
3213 put some of the window geometry members into a separate struct window_g
3214 with members frame, normal, max, max_defect, max_offset
3216 2006-12-21 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3220 * fvwm/window_flags.h:
3222 * fvwm/style.c (style_parse_one_style_option):
3223 * fvwm/icons.c (DrawIconTitleWindow):
3224 * fvwm/fvwm.h (common_flags_t):
3225 * fvwm/fvwm.1.in (Style):
3227 (border_draw_title_stick_lines):
3228 Applied Stippled patch by Thomas Adam with some fixes.
3230 2006-12-10 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3233 FvwmWinList button/list syncronization fixed (bug #1393)
3235 2006-12-09 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3243 updated for 2.5.19 release
3246 updated after 2.4.20 release
3249 * fvwm/focus.c (focus_get_fpol_context_flag):
3250 * fvwm/events.c (__check_click_to_focus_or_raise)
3251 (__handle_click_to_focus):
3252 Treat EWMH desktop as client window under click to focus. (#1492)
3254 2006-12-08 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3256 * libs/Module.h (MX_REPLY):
3257 (MAX_EXTENDED_MESSAGES):
3259 * fvwm/module_interface.c (CMD_Send_Reply):
3260 * fvwm/functable.c (func_table):
3262 Added Send_Reply module only command.
3264 2006-11-26 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3266 * libs/PictureUtils.c (init_static_colors_table):
3267 fix fvwm for < 8 bit depth, bug #1677
3269 2006-11-20 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3271 * fvwm/misc.c (IsRectangleOnThisPage):
3272 new fix for signedness problems.
3274 2006-10-13 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3276 * fvwm/misc.c (IsRectangleOnThisPage):
3277 fix signedness problem with test introduced by gcc4 fix below.
3279 2006-09-19 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3281 * libs/fvwmrect.h (fvwmrect_subtract_rectangles):
3285 * libs/fvwmrect.c (fvwmrect_subtract_rectangles):
3286 * libs/gravity.h (gravity_move_resize_parent_child):
3287 * libs/gravity.c (gravity_move_resize_parent_child):
3288 * fvwm/frame.h (frame_get_titlebar_dimensions)
3289 * fvwm/frame.c (frame_get_titlebar_dimensions_only)
3290 (frame_get_resize_decor_gravities):
3292 (frame_setup_border):
3293 (frame_setup_titlebar)
3294 (frame_get_resize_decor_gravities):
3295 (frame_get_titlebar_dimensions):
3296 split rectangle into a signed size and an unsigned size type.
3298 * fvwm/screen.h (ScreenInfo):
3299 * libs/FScreen.h (FScreenGetScrRect):
3300 (FScreenGetResistanceRect):
3301 * libs/FScreen.c (XineramaScreenInfo):
3302 (FScreenGetGeometry)
3303 (FScreenGetScrRect):
3304 (FScreenClipToScreen):
3305 (FScreenCenterOnScreen)
3306 (FScreenGetResistanceRect):
3307 (FScreenIsRectangleOnScreen):
3308 * fvwm/fvwm.h (FvwmWindow):
3309 * fvwm/screen.h (DecorFace):
3310 * libs/fvwmlib.h (CreateGradientPixmap):
3311 * libs/Graphics.c (CreateGradientPixmap):
3312 * libs/PictureUtils.h (PictureCloseImageColorAllocator):
3313 * libs/PictureUtils.c (PictureCloseImageColorAllocator):
3314 * libs/PictureImageLoader.h (PImageCreatePixmapFromArgbData)
3315 (PImageLoadPixmapFromFile):
3316 (PImageLoadPixmapFromXpmData):
3317 * libs/PictureImageLoader.c (FIMAGE_CMD_ARGS)
3318 (PImageCreatePixmapFromArgbData):
3319 (PImageLoadPixmapFromFile)
3320 (PImageLoadFvwmPictureFromFile):
3321 (PImageLoadPixmapFromXpmData):
3322 * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
3323 * fvwm/ewmh_icons.c (EWMH_DeleteWmIcon):
3324 (EWMH_SetIconFromWMIcon):
3325 * fvwm/ewmh.h (EWMH_GetWorkAreaIntersection):
3326 * fvwm/ewmh.c (EWMH_GetWorkAreaIntersection):
3327 * fvwm/colorset.c (parse_colorset):
3328 * fvwm/icons.c (DrawIconTitleWindow):
3331 * fvwm/menus.h (MenuRootDynamic):
3332 * fvwm/menus.c (update_menu):
3336 * fvwm/move_resize.c (GetMoveArguments):
3337 (ParseOneResizeArgument)
3338 (GetResizeArguments):
3339 (GetResizeMoveArguments):
3343 change dimensions and allocation counts to unsigned types.
3345 * libs/Flocale.h (FlocaleStringNumberOfBytes)
3346 (FlocaleStringByteToCharOffset):
3347 (FlocaleStringCharToByteOffset)
3348 (FlocaleStringCharLength)
3349 * libs/Flocale.c (FlocaleStringNumberOfBytes)
3350 (FlocaleStringByteToCharOffset):
3351 (FlocaleStringCharToByteOffset)
3352 (FlocaleStringCharLength):
3353 (FlocaleUtf8ToUnicodeStr2b)
3354 (FlocaleStringToString2b):
3355 (FlocaleEncodeString):
3356 * libs/Ficonv.c (convert_charsets):
3357 change most string types to char* from unsigned char* to match
3358 with system headers without casts.
3360 * libs/Flocale.c (FlocaleLoadFont):
3361 init shadow_dir to make gcc 4 happy.
3363 * libs/Colorset.h (CSETS_IS_TRANSPARENT_PR_TINT)
3364 (CSETS_IS_TRANSPARENT_ROOT_TRAN):
3365 (CSETS_IS_TRANSPARENT_ROOT_PURE)
3366 (CSETS_IS_TRANSPARENT_PR_PURE):
3367 (CSETS_IS_TRANSPARENT_ROOT)
3368 (CSETS_IS_TRANSPARENT):
3369 compare pointer with NULL, not >= 0.
3371 * libs/FTips.h (ftips_position_t):
3372 * fvwm/expand.c (partial_extended_vars):
3373 * fvwm/placement.c (preason_screen_t):
3374 remove comma last in enums.
3376 * fvwm/style.c (style_parse_focus_policy_style):
3377 change 0xffffffff to ~0 to silience truncation warning.
3379 * fvwm/session.h (mwtsm_state_args):
3380 make flags unsigned.
3382 * fvwm/schedule.c (sq_object_type):
3383 change // to /* ... */
3385 * libs/Fft.c (FftGetFontWidths):
3387 * libs/FScreen.c (FScreenConfigureSLSScreens):
3388 * fvwm/ewmh_names.c (EWMH_SetVisibleName):
3389 (EWMH_SetDesktopNames):
3390 * fvwm/fvwm.c (LoadDefaultLeftButton):
3391 (LoadDefaultRightButton):
3392 * fvwm/builtins.c (ReadDecorFace):
3394 silence signedness warnings by casts.
3396 * fvwm/borders.c (ROTATE_RECTANGLE):
3397 make sure tr is initialized.
3399 * fvwm/add_window.c (FetchWmProtocols):
3400 use unsigned type for l_protocols.
3402 2006-09-17 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3404 * fvwm/events.c (HandleFocusIn):
3406 * fvwm/focus.c (__set_focus_to_fwin):
3407 fix focus decoration when unmanaged are focused, unless
3408 FlickeringQtDialogsWorkaround is on. Closes bug #758.
3410 2006-09-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3412 * fvwm/geometry.c (constrain_size):
3413 repeat aspect-resizing in a loop to get a stable result that does not
3414 change the next time the frame is set up
3416 2006-09-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3420 increased version to 2.5.19
3425 updated for 2.5.18 release
3427 2006-09-04 Renato Caldas <seventhguardian@gmail.com>
3430 removed the unused test for imlib
3431 removed the Imlib.h header from gdk_imlib test programs
3433 2006-08-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3435 * fvwm/ewmh.c (atom_get):
3436 fix offset and length args for XGetWindowProperty() (to support 64bit
3439 2006-08-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3441 * fvwm/events.c (HandleUnmapNotify):
3442 immediately handle MapRequests after unmapping a window while we still
3443 have the context fvwm window; this is necessary to allow the client to
3444 re-map a window before fvwm can reparent it to the root window
3445 (HandleMapRequestKeepRaised):
3448 2006-08-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3450 * fvwm/ewmh.c (ewmh_HandleDesktop):
3451 fixed handling of ClickToFocusPassesClick with the EWMH desktop
3454 2006-08-29 Harald Dunkel <harald.dunkel@t-online.de>
3458 * fvwm/decorations.c:
3459 fix offset and length args for XGetWindowProperty() (to support 64bit
3462 2006-08-26 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3465 * fvwm/expand.c (expand_vars_extended):
3466 correctly expand break.
3467 * fvwm/conditional.c (__rc_matches_rcstring_consume):
3470 2006-08-26 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3472 * fvwm/decorations.h (is_function_allowed):
3473 * fvwm/decorations.c (__is_resize_allowed):
3474 (is_function_allowed):
3475 work on 'const FvwmWindow *'
3477 * fvwm/fvwm.h (action_flags):
3478 * fvwm/style.c (check_window_style_change):
3479 * fvwm/module_interface.c (__get_allowed_actions)
3481 * libs/vpacket.h (ConfigWinPacket):
3482 expose fvwm allowed actions to modules
3484 2006-08-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3486 * fvwm/move_resize.c (__move_icon):
3487 *do* map icon windows for pictured icons on move, but only if they end
3488 up on the current desk
3490 2006-08-09 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3492 * fvwm/move_resize.c (__move_icon):
3493 don't map icon windows for pictured icons on move
3495 2006-08-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3497 * fvwm/style.c (remove_all_of_style_from_list):
3498 (__simplify_style_list):
3503 (style_ids_are_equal):
3504 (style_id_equals_id)
3505 (styles_have_same_id):
3507 (one_fw_can_match_both_ids):
3508 (check_window_style_change):
3509 use int/0/1 instead of Bool/False/True
3511 * fvwm/move_resize.c (stick_across_pages):
3512 use False instead of FALSE
3514 * fvwm/style.c (fw_match_style_id):
3515 * fvwm/read.c (run_command_file):
3517 * fvwm/add_window.c (MappedNotOverride):
3518 * libs/wild.c (matchWildcards):
3519 use 0 and 1 instead of FALSE and TRUE
3522 removed TRUE and FALSE
3524 2006-08-07 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3527 FvwmPager !IconTitle style bugfix.
3529 2006-07-31 Scott Smedley <ss(at)aao(dot)gov(dot)au>
3532 Updated description of Wait command in man page.
3534 2006-07-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3536 * libs/Flocale.c (FlocaleFontStructDrawString)
3537 (FlocaleRotateDrawString):
3538 (FlocaleDrawString):
3539 fixed drawing of forecolor/hilightfore
3541 * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
3542 always unmaximize and resize window when leaving fullscreen state,
3543 not just if it did not start as fullscreen
3545 2006-07-17 Renato Caldas <seventhguardian@gmail.com>
3547 * fvwm/fvwm.1.in (MenuStyle):
3548 added a reference to the prefered ! style negation flag,
3549 and listed the other deprecated negative forms in one place.
3552 (AutomaticHotkeysOff):
3555 changed to the ! negation form and listed as deprecated.
3557 removed relics from the man page
3559 2006-07-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3563 increased version to 2.5.18
3568 updated for 2.5.17 release
3570 2006-07-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3572 * fvwm/move_resize.c (__move_window):
3573 allow moving a window without an icon while it's iconified based on the
3576 2006-07-17 Serge Koksharov <gentoosiast dog yandex dot ru>
3578 * fvwm/menustyle.c (menustyle_copy):
3579 Now 'TitleColorset' also copied by 'CopyMenuStyle' command.
3581 2006-07-17 Renato Caldas <seventhguardian@gmail.com>
3584 NoTitle, StippledTitleOff, NoHandles, NoButton, NoIconTitle styles
3585 changed the manpage to reflect the prefered style negation method,
3586 that is, using the !* negation sign.
3588 2006-07-16 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3590 * fvwm/fvwm.1.in (COMMAND EXPANSION):
3591 removed documentation of filters.
3594 * fvwm/expand.c (check_first_filter):
3596 (expand_args_extended):
3597 (expand_vars_extended):
3599 removed variable filter implementation and backslash-escaping.
3601 2006-07-15 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3604 News blurb for variable filters and backslash-escaping.
3606 documentation of variable filters.
3608 2006-07-14 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3610 * fvwm/expand.c (chec):
3613 (expand_args_extended):
3614 (expand_vars_extended):
3616 implemented variable filters.
3618 * fvwm/expand.c (expand_vars):
3619 made backslash work as escape character within extended variables.
3621 * libs/Strings.h (QuoteEscapeString):
3622 (QuoteEscapeStringLength):
3623 * libs/Strings.c (QuoteEscapeString):
3624 (QuoteEscapeStringLength):
3625 new functions: QuoteEscapeString and QuoteEscapeStringLength for
3628 * fvwm/expand.c (expand_args_extended):
3629 make upper limit inclusive.
3631 * fvwm/functions.c (__execute_function):
3632 Changed PeekToken to GetNextToken before expand_vars call.
3635 updated documentation regarding quoting in expand_args_extended
3637 2006-07-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3639 * fvwm/expand.c (__eae_parse_range):
3640 reject everything that does not begin with a digit
3642 * libs/Parse.c (SkipNTokens):
3643 stop skipping tokens at the end of input
3645 * fvwm/expand.c (__eae_parse_range):
3649 (__eae_parse_range):
3650 fixed parsing of $[n-]
3652 2006-07-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3654 * fvwm/expand.c (expand_args_extended):
3656 added range check for positional parameters
3657 (expand_args_extended):
3658 (__eae_parse_range):
3659 cleaned up and simplified parsing code
3660 properly unquote arguments when expanding
3661 removed the patch below
3663 2006-07-13 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3665 * fvwm/expand.c (expand_args_extended):
3666 removed range check for positional parameters
3667 make single arguments not use the 'upper' variable
3668 changed back to PeekToken for single arguemnts.
3669 improved some comments.
3671 2006-07-13 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3673 * fvwm/expand.c (expand_args_extended):
3674 Fix segfault when called with a tokenless string for single arguments.
3676 2006-07-12 Scott Smedley <ss(at)aao(dot)gov(dot)au>
3678 Usage of FvwmAuto module in FAQ 7.17 was incorrect.
3679 Reported by Serge Koksharov.
3681 2006-07-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3683 * fvwm/placement.c (__explain_placement):
3684 print initial size of window too
3686 * libs/Makefile.am (libfvwm_a_SOURCES):
3687 * libs/fvwm_sys_stat.h:
3691 added O_NOFOLLOW replacement and always include fcntl.h
3693 2006-07-12 Scott Smedley <ss(at)aao(dot)gov(dot)au>
3695 Added DV's mailing-list comments about how PeekToken & GetNextToken
3696 work as comments to the source code. (slightly modified)
3698 2006-07-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3700 * fvwm/schedule.c (CMD_Schedule):
3701 Fixed parsing of "Periodic" option.
3703 2006-07-11 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3706 Fix for tempfile vulnerabilities in FvwmCommand.
3708 Added check for lstat.
3710 2006-07-12 Scott Smedley <ss(at)aao(dot)gov(dot)au>
3715 Added "Periodic" option to Schedule command.
3717 2006-07-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3719 * fvwm/module_interface.c (KillModule):
3724 2006-07-09 Renato Caldas <seventhguardian@gmail.com>
3726 * fvwm/fvwm.c (main):
3727 changed the -blackout warning to say it will be removed in 3.0
3729 * fvwm/fvwm.1.in (-blackout):
3730 updated the manual regarding the future remotion of -blackout
3732 2006-07-08 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3736 added $EXEEXT to FvwmGtk in order to compile on Cygwin (bug #3772).
3738 2006-07-08 Renato Caldas <seventhguardian@gmail.com>
3740 *libs/alloca.c (DEBUG_I00FUNC)
3741 removed old debug code
3743 2006-07-07 Renato Caldas <seventhguardian@gmail.com>
3746 removed the old unused file
3748 * libs/Makefile.am (libfvwm_a_SOURCES):
3749 removed the reference to debug.c
3752 removed the code related to libs/debug.c
3754 * fvwm/module_interface.c (make_named_packet)
3755 removed the #if 0'ed debug code related to debug.c
3757 fvwm/focus.h (DEBUG_FOCUS)
3758 removed the #ifdef'ed to 0 debug code related to debug.c
3761 2006-07-06 Renato Caldas <seventhguardian@gmail.com>
3763 * libs/PictureUtils.c (PICTURE_DEBUG_COLORS_ALLOC_FAILURE):
3764 removed useles definition.
3766 * modules/FvwmPager/FvwmPager.c (main):
3768 removed most of the debug code.
3769 changed termination debug to use 'isTerminated' instead of
3770 'debug_term_signal'.
3771 changed termination debug to compile on FVWM_DEBUG_MSGS instead
3774 * libs/fvwmsignal.h (FVWM_DEBUG_MSGS):
3775 * libs/fvwmsignal.c (FVWM_DEBUG_MSGS):
3777 removed unused debug_term_signal.
3779 2006-07-05 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3782 Work around for Cygwin not requiering '_GNU_SOURCE' to use
3783 stdio's getline; news entry.
3785 2006-06-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3788 * fvwm/module_interface.c (CMD_ModuleListenOnly):
3789 (do_execute_module):
3793 * fvwm/commands.h (enum):
3794 * fvwm/functable.c (func_table):
3795 new command ModuleListenOnly
3797 2006-06-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3799 * fvwm/move_resize.c (__move_loop):
3800 make sure a window is snapped in __move_loop when a button is released
3801 if it was snapped before
3803 2006-06-04 Mikhael Goikhman <migo@homemail.com>
3805 * fvwm/expand.c (expand_vars_extended):
3806 convert function to have a single return point; this is good to
3807 implement doc/todo-vars filters in the future;
3808 fix $[w.name], $[w.iconname], $[w.class] and $[w.resource]
3809 to behave like deprecated $n, $c and $r, i.e. quote them
3811 2006-06-03 Mikhael Goikhman <migo@homemail.com>
3814 multiple minor tweaks: remove trailing spaces and other
3815 re-spacing and re-indenting, remove old "#if 0" code
3817 2006-06-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3819 * fvwm/move_resize.c (ParseOneResizeArgument):
3820 rewrote parsing of resize arguments
3821 new prefix 'w' for resizing
3823 2006-05-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3825 * fvwm/conditional.c (MatchesConditionMask):
3826 fixed handling of some conditions (iconifiable, fixed, ...)
3828 2005-01-28 Scott Smedley <scottie7@tpg.com.au>
3833 * fvwm/conditional.c:
3834 Output an error message if an unrecognised conditional is used
3835 with the Test or TestRc commands.
3837 2006-05-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3839 * fvwm/frame.c (frame_mrs_hide_changing_parts):
3840 do not map hide windows if their width or height is zero
3842 2006-05-09 Serge Koksharov <gentoosiast dog yandex dot ru>
3844 * fvwm/ewmh_events.c:
3847 * libs/FlocaleCharset.c:
3851 corrected typos in warning messages
3854 * libs/PictureGraphics.c:
3855 * libs/PictureGraphics.h:
3856 renamed function PGraphicsCreateTransprency to
3857 PGraphicsCreateTransparency
3859 2006-04-17 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3861 * fvwm/fvwm.1.in (COMMAND EXPANSION):
3862 * fvwm/expand.c (expand_args_extended):
3863 fixed $[n] to work exactly as $n, i.e. dequote the expansion.
3865 2006-04-16 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3868 * fvwm/fvwm.1.in (COMMAND EXPANSION):
3869 * fvwm/expand.c (expand_args_extended):
3871 added support for $[n], $[n-m], $[n-] and $[*] variable expansion.
3873 * fvwm/conditional.c (CMD_All):
3874 * fvwm/fvwm.1.in (All):
3875 changed Reverse and UseStack options to have free order.
3878 * fvwm/fvwm.1.in (WindowShade):
3879 * fvwm/windowshade.c (CMD_WindowShade):
3880 * fvwm/add_window.c (setup_window_structure):
3881 added last direction to WindowShade command.
3883 2006-04-14 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3885 * fvwm/fvwm.1.in (All):
3888 2006-04-13 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3891 * fvwm/fvwm.1.in (All):
3892 * fvwm/conditional.c (CMD_All):
3893 added reverse option to All command to do the action in opposite order
3894 added UseStack option to All command to use the stack ring instead of
3897 2006-04-07 Serge Koksharov <gentoosiast dog yandex dot ru>
3900 changed fallback editor from `emacs' to `vi' because it much
3901 more widespread on non-Linux systems
3902 fixed errors (because of incorrect syntax fallback entries were
3904 now script honors `TMPDIR' env. variable and if it's not set it
3905 fallback to `/tmp' directory when creating temporary file
3907 2006-04-06 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3910 changed description of the fvwmstyle resource usage
3911 to state that it's used in addition to the other
3913 * fvwm/style.c (fw_match_style_id):
3914 fixed a typo in style_name matching
3916 2006-04-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3918 * fvwm/style.c (fw_match_style_id):
3919 reformatted code and fixed a warning
3921 2006-04-04 Serge Koksharov <gentoosiast dog yandex dot ru>
3925 * libs/Fft.c (FftGetFont):
3929 * libs/System.c (fvwm_mkstemp):
3930 because of typo in the 'ifdef' pragma underlying OS's 'mkstemp'
3931 function was never used, even if it was considered secure by configure
3934 2006-04-05 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
3937 added some more suff to the list of what I've done.
3940 * fvwm/add_window.c (__add_window_handle_x_resources)
3943 * fvwm/fvwm.h (FvwmWindow):
3944 added fvwmstyle resource to override style name
3946 2006-03-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
3948 * fvwm/menus.c (pop_menu_up):
3949 as documented, do not warp to title for root menus with TitleWarp
3951 2006-03-21 Serge Koksharov <gentoosiast dog yandex dot ru>
3954 Removed duplicated 'NoIcon' style option description in the end
3955 of the `The Style command...' section.
3956 Removed `Recapture True' option setting in example of BusyCursor
3957 description, because `Recapture' isn't valid option of `BusyCursor'
3959 Updated ewmh specification URL (the old was 404)
3960 Added URL to ICCCM 2.0 manual
3962 * modules/FvwmAnimate/FvwmAnimate.c:
3963 corrected delay for Zoom3D animation effect
3965 * modules/FvwmConsole/FvwmConsoleC.pl.1.in:
3966 * modules/FvwmConsole/FvwmConsole.1.in:
3967 replaced all `Cntl' modificator key mentions with `Ctrl' to be
3968 consistent with rest of the documentation and because it's more
3969 conventional abbreviation.
3971 * modules/FvwmTaskBar/FvwmTaskBar.1.in:
3972 slightly clarified the `StartName' option description
3973 added the undocumented `MailDir' option description. Somebody
3974 violated section `K' of the convention list.
3977 * fvwm/ConfigFvwmSetup:
3978 * modules/FvwmForm/FvwmForm.1.in:
3979 * modules/FvwmForm/FvwmForm-Rlogin:
3980 * sample.fvwmrc/system.fvwm2rc:
3981 * sample.fvwmrc/system.fvwm2rc-sample-1:
3982 replaced all mentions of `rsh' with `ssh'. rsh is obsolete and
3983 inherently insecure. We shouldn't teach our users bad things,
3990 * bin/fvwm-config.1.in:
3991 * bin/fvwm-menu-headlines.1:
3992 * bin/fvwm-menu-headlines.in:
3993 * bin/fvwm-perllib.in:
3994 * bin/fvwm-root.1.in:
4000 * libs/PictureGraphics.c:
4002 * modules/FvwmBacker/FvwmBacker.1.in:
4003 * modules/FvwmDebug/FvwmGtkDebug.in:
4004 * modules/FvwmDebug/FvwmGtkDebug.1:
4005 * modules/FvwmEvent/FvwmEvent.1.in:
4006 * modules/FvwmForm/FvwmForm.1.in:
4007 * modules/FvwmIconMan/xmanager.c:
4008 * modules/FvwmIdent/FvwmIdent.c:
4009 * modules/FvwmIdent/FvwmIdent.1.in:
4010 * modules/FvwmPerl/FvwmPerl.in:
4011 * modules/FvwmPerl/FvwmPerl.1:
4012 * modules/FvwmScript/FvwmScript.1.in:
4013 * modules/FvwmScript/Widgets/Menu.c:
4014 * modules/FvwmTabs/ConfigFvwmTabs:
4015 * modules/FvwmTabs/FvwmTabs-DefaultSetup:
4016 * modules/FvwmTaskBar/FvwmTaskBar.1.in:
4017 * modules/FvwmTheme/FvwmTheme.1.in:
4018 * perllib/FVWM/Module/Tk.pm:
4019 * perllib/FVWM/Tracker.pm:
4020 * perllib/FVWM/Module.pm.in:
4023 2006-03-21 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4025 * fvwm/style.c (style_parse_focus_policy_style):
4026 fix ISO C90 compability with unconsumed styleoption warnings
4028 2006-03-20 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4030 * fvwm/events.c (HandlePropertyNotify):
4031 fix for bug 1557/3950 (possible free of Untilted constant or
4032 already used name (if app reset the name already given to them))
4034 2006-03-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4036 * fvwm/focus.c (__activate_window_by_command)
4037 (warp_to_fvwm_window):
4039 * fvwm/builtins.c (CMD_CursorMove):
4040 set last pointer event position after warping the pointer
4043 * libs/FEvent.c (FWarpPointerUpdateEvpos):
4046 2006-03-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4048 * acinclude.m4 (AM_PATH_GTK):
4050 (AM_PATH_GDK_IMLIB):
4054 fixed to cope with 4 digit version numbers
4056 2006-02-15 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4059 * fvwm/style.c (parse_and_set_window_style)
4060 (style_parse_one_style_option):
4061 (style_parse_icon_fill_style)
4062 (style_parse_icon_grid_style):
4063 (style_parse_icon_box_style)
4064 (style_parse_icon_size_style):
4065 (style_parse_focus_policy_style)
4066 (style_parse_button_style):
4067 warn if parts of style options are not consumed
4069 2006-02-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4071 * fvwm/menuitem.c (menuitem_paint):
4072 use the MenuColorset in all cases if TitleColorset is not given
4074 2006-02-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4076 * fvwm/style.c (style_parse_one_style_option):
4077 * fvwm/placement.c (__place_get_wm_pos):
4078 (__explain_placement):
4079 new placement style UnderMousePlacement
4081 2006-02-11 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4084 * fvwm/fvwm.1.in (EdgeScroll):
4085 * fvwm/virtual.c (CMD_EdgeScroll):
4086 fixed EdgeScroll dividing pixel sizes by 1000 if > 1000 (bug 3162)
4087 added wrap/wrapx/wrapy option to EdgeScroll
4089 2006-02-10 Mikhael Goikhman <migo@homemail.com>
4092 spell check the whole file (dozens of typos)
4094 2006-02-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4096 * fvwm/module_interface.c (do_execute_module):
4097 removed accidentally committed FVWM_MODULE_ALIAS patch
4099 2006-02-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4101 * fvwm/module_interface.c (do_execute_module):
4102 unset envvars FVWM_VISUALID and FVWM_COLORMAP if they are not needed
4104 * fvwm/menus.c (size_menu_horizontally):
4105 fix for drawing menus with sidepic on the right
4107 * libs/Flocale.c (FlocaleFontStructDrawString):
4108 (FlocaleDrawString):
4109 set the foreground colour before drawing a string
4112 * fvwm/menustyle.c (menustyle_get_styleopt_index):
4115 (menustyle_parse_style):
4117 * fvwm/menus.c (calculate_item_sizes):
4118 (size_menu_vertically):
4119 (UpdateMenuColorset):
4120 * fvwm/menuitem.c (menuitem_paint):
4121 Applied patch by David Maciver
4122 new menu styles TitleColorset, HilightTitleBack and TitleFont
4124 2006-02-09 Renato Caldas <seventhguardian@gmail.com>
4127 * libs/Module.c (ParseModuleArgs):
4128 added variable "namelen" to ModuleArgs struct
4130 2006-02-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4133 removed duplicate declaration
4135 2006-01-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4137 * fvwm/fvwm.c (main):
4138 replaced previous patch with a better one
4140 * fvwm/virtual.c (unmap_window):
4141 * fvwm/menus.c (do_menu):
4142 * fvwm/events.c (fake_map_unmap_notify):
4144 * fvwm/add_window.c (MappedNotOverride):
4145 Added XFlush after XSelectInput
4147 2006-01-28 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4150 * fvwm/fvwm.c (main):
4151 fix for fvwm not detecting non ICCCM2 wm (bug #3151)
4153 2006-01-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4157 increased version to 2.5.17
4162 updated for 2.5.16 release
4164 * acinclude.m4 (CHECK_LIBCHARSET):
4167 2006-01-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4169 * fvwm/functions.c (execute_complex_function):
4170 print a message to the console instead of ringing the bell when a
4173 2006-01-14 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4176 fixed typo (NEWS still said 2.5.15)
4178 2006-01-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4182 increased version to 2.5.16
4187 updated for 2.5.15 release
4189 2006-01-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4191 * fvwm/move_resize.c (GetOnePositionArgument):
4193 new option "screen" to Move type commands
4195 2006-01-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4197 * acinclude.m4 (smr_SWITCH):
4200 2006-01-08 Mikhael Goikhman <migo@homemail.com>
4203 restore requirement of automake-1.4; 1.8 is too new even for my system
4205 2006-01-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4209 renamed configure.in to configure.ac
4212 some updates for new autoconf/automake versions
4219 require autoconf-2.53 or later
4221 * Makefile.am (AUTOMAKE_OPTIONS):
4222 require automake-1.8 or later
4225 check for X library path before X library checks
4226 removed obsolete C++ compiler check
4227 removed duplicate type size checks
4228 replaced M4 comment ("dnl") with shell comment ("#") in many places
4231 fixed aclocal warnings
4233 2006-01-01 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4235 * fvwm/style.c (style_parse_button_style):
4236 corrected typo in error message, and made errorous buttons not apply
4237 (style_parse_one_style_option):
4238 changed NoButton to use style_parse_button_style
4240 2005-12-23 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4243 new fix for incompatible pointer type warning with gcc 3.4.
4245 2005-12-21 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4252 commited patch by Malcolm Still adding TrianglesUseFore MenuStyle
4255 2005-12-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4260 2005-11-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4262 * fvwm/frame.c (frame_free_move_resize_args):
4263 fixed drawing of transparent decorations or when using lazy shading
4266 2005-11-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4269 * libs/fvwmsignal.c:
4273 * fvwm/ewmh_names.c:
4274 * libs/CombineChars.c:
4280 * libs/PictureUtils.c:
4285 * libs/safemalloc.c:
4288 do not #include stdlib.h (comes from config.h)
4291 do not #include string.h (comes from config.h)
4294 fixed detection of string.h/strings.h
4296 2005-11-26 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4298 * libs/Fft.c (FftGetFont):
4299 fixed compiler warning with gcc 3.4.4
4301 2005-11-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4303 * fvwm/menuitem.c (menuitem_paint):
4304 properly undraw unselected item area
4306 2005-11-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4308 * fvwm/menuitem.c (menuitem_paint):
4309 * fvwm/menus.c (get_menu_paint_item_parameters)
4310 (get_menu_paint_item_parameters):
4312 fixed text offset of menu items with icons but with an item format that
4314 (size_menu_horizontally):
4315 allow sidepic to be placed in the middle of menu items; this is better
4316 than ignoring the item format completely but does not draw the items
4319 * fvwm/menus.c (__mloop_handle_event):
4321 fixed delayed menu drawing issue
4323 do not draw the selected menu item before the menu is drawn for the
4325 (repaint_transparent_menu):
4328 don't call get_menu_paint_item_parameters when the result is not used
4329 (get_menu_paint_item_parameters):
4331 2005-11-10 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4333 * fvwm/ewmh.h (EWMH_CMD_Style):
4334 * fvwm/ewmh_conf.c (EWMH_CMD_Style):
4335 * fvwm/style.c (style_parse_one_style_option):
4336 Added support for inverting boolean EWMH styles with !.
4341 * fvwm/window_flags.h:
4342 * fvwm/ewmh_conf.c (EWMH_CMD_Style):
4343 * fvwm/ewmh.c (ewmh_HandleWindowType):
4345 Added style EWMHIgnoreWindowType to make fvwm ignore window types.
4347 2005-10-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4349 * fvwm/icons.c (GetIconWindow):
4350 * fvwm/fvwm.h (FvwmWindow):
4351 * fvwm/events.c (__handle_cr_on_icon):
4352 properly handle icon border width; fixes an xterm active icon loop
4354 2005-10-27 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4356 * fvwm/borders.c (border_draw_one_border_part):
4357 fix for the TiledPixmap borderstyle fix not to affect RootTransparent
4360 2005-10-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4362 * fvwm/menustyle.c (menustyle_copy_face):
4364 (menustyle_free_face):
4366 (menustyle_parse_style):
4367 use new functions and fix a bug
4372 removed empty files colors.c and colors.h
4374 * fvwm/colors.c (CopyColor):
4376 moved to libs/ColorUtils.c and renamed to fvwmlib_free_colors and
4379 * fvwm/frame.c (frame_reshape_border):
4382 2005-10-23 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4384 * fvwm/menustyle.c (menustyle_copy_face):
4385 separated from menustyle_copy; color copies are reallocated.
4389 color copies are reallocated.
4391 * fvwm/colors.c (CopyColor):
4392 * fvwm/colors.h (CopyColor):
4395 2005-10-20 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4397 * fvwm/move_resize.c (__resize_window):
4398 fix for not being able to finish resize with mouse when resizing on
4399 click with modifiers active. (intruduced with 'removed duplicate
4400 pointer query' at sep 29)
4404 * fvwm/menustyle.c (menustyle_parse_style):
4405 made style pairs negatable with '!' prefix
4406 ActiveForeOff and HilightBackOff frees colors used.
4408 * fvwm/menustyle.c (menustyle_copy):
4409 fix for freeing color from sorce instead of destination.
4411 2005-10-19 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4413 * fvwm/functions.c (__execute_function):
4414 fixed an error in yesterdays patch to complex fuctions. the commands
4415 pressed window were not retored correctly after running move functions
4416 without it, and functions would be run twice.
4418 2005-10-18 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4421 added NoLayer to list of allowed options for WindowList command
4422 fixed grammar of test-conditions list. formatting fixes for
4423 MoveToPage command. Added CirculateSkipIcon / CirculateHitIcon to
4427 * fvwm/functions.c (__execute_function)
4428 (__run_complex_function_items):
4429 (execute_complex_function):
4430 fix for moving/resizing reference window usage with complex functions.
4432 2005-10-16 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4434 * fvwm/move_resize.c (__move_loop):
4435 reimplemented a fix for the place with keyboard setting a button as
4436 used for place bug; this time without breaking escape key.
4438 2005-10-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4440 * fvwm/move_resize.c (__move_loop):
4441 removed the previous patch as it breaks aborting window motion with the
4444 2005-10-03 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4446 * fvwm/move_resize.c (__move_loop):
4447 fixed bug where finishing movment with keyboard would set a random
4448 button as used for placement.
4450 2005-09-30 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4453 * fvwm/frame.c (frame_setup_border):
4454 reverted change for move of window parts (reset of PressedW).
4456 2005-09-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4458 * fvwm/frame.c (frame_setup_border):
4461 2005-09-29 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4464 * fvwm/move_resize.c (__resize_window):
4465 removed duplicate pointer query for enter/leave notify events.
4466 resizing of shaded windows in the shaded direction no longer
4467 results in bogus ref points.
4469 * fvwm/frame.c (frame_setup_border):
4470 reset PressedW if the part has moved. This prevents strange
4471 ref points in resize if called from some complex functions.
4473 * fvwm/frame.c (frame_create_move_resize_args):
4474 shaded windows use get_client_geometry for client geometry.
4476 2005-09-25 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4480 * fvwm/fvwm.h (window_flags):
4481 (WindowConditionMask):
4483 * fvwm/window_flags.h (IS_PLACED_BY_WB3):
4486 * fvwm/session.c (_match):
4489 * fvwm/conditional.c (MatchesConditionMask):
4490 (CreateConditionMask):
4491 * fvwm/add_window.c (setup_window_structure):
4492 * fvwm/move_resize.h (placement_binding):
4493 * fvwm/move_resize.c (__move_loop):
4494 (placement_binding):
4495 * fvwm/bindings.c (ParseBinding):
4496 * libs/wcontext.c (win_contexts):
4497 * libs/wcontext.h (enum):
4499 Added placement context for simple mouse bindings to allow
4500 specification of buttons to finish/cancel movment. Buttons >3
4501 may now be used to place windows.
4502 Replaced window flag placed_wb3 with placed_by_button
4503 FvwmWindow member. Added window condition PlacedByButton.
4505 2005-09-22 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4509 * fvwm/menustyle.h (enum):
4513 (ST_SCROLL_OFF_PAGE):
4514 (MST_SCROLL_OFF_PAGE):
4515 * fvwm/menustyle.c (menustyle_copy):
4516 (menustyle_get_styleopt_index):
4517 (menustyle_parse_style):
4519 * fvwm/menus.c (menuShortcuts):
4521 (__mloop_handle_event):
4522 (menu_get_outer_geometry):
4525 added MouseWheel and ScrollOffPage menu styles
4527 2005-09-20 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4530 * fvwm/menus.c (append_item_to_menu):
4531 fixed bug #1121: Use of pointer without checking for NULL
4533 2005-09-19 Mikhael Goikhman <migo@homemail.com>
4536 * fvwm/expand.c (expand_vars):
4537 warn on usage of obsolete one-letter variables
4539 2005-09-19 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4543 * fvwm/expand.c (expand_vars_extended):
4545 allow nesting of variables
4547 2005-09-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4549 * fvwm/ewmh.c (EWMH_SetWMDesktop):
4550 * fvwm/ewmh_events.c (ewmh_WMDesktop):
4554 2005-09-03 Mikhael Goikhman <migo@homemail.com>
4556 * fvwm/borders.c (border_draw_one_border_part)
4557 (border_draw_all_border_parts):
4558 fix the previous patch to work with title-less windows too
4560 2005-08-30 Mikhael Goikhman <migo@homemail.com>
4562 * fvwm/borders.c (border_draw_one_border_part)
4563 (border_draw_all_border_parts):
4564 improve offsets when drawing borders for "BorderStyle TiledPixmap"
4565 windows to make the borders look homogeneous (based on the patch of
4568 2005-08-26 Mikhael Goikhman <migo@homemail.com>
4574 support new spelling FRIBIDI_CHAR_SET_NOT_FOUND introduced in
4575 fribidi-0.10.5; autodetect old spelling FRIBIDI_CHARSET_NOT_FOUND
4577 2005-08-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4581 increased version to 2.5.15
4586 updated for 2.5.14 release
4588 * fvwm/ewmh_events.c (ewmh_WMStateShaded)
4589 (ewmh_WMStateSkipTaskBar):
4590 (ewmh_WMStateSkipPager):
4591 (ewmh_WMStateModal):
4592 fixed several ewmh-hints
4594 2005-08-24 Mikhael Goikhman <migo@homemail.com>
4597 fix TestRc example error, s/Any/All/
4599 2005-08-17 Jonathan Kotta <jpkotta@gmail.com>
4604 * fvwm/conditions.c (MatchesConditionMask):
4605 (CreateConditionMask):
4606 added FixedPosition condition
4608 2005-08-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4610 * fvwm/virtual.c (HandlePaging):
4611 use FQueryPointer every time to track the pointer position; this fixes
4612 fvwm hanging in HandlePaging for the given delay once the pointer
4613 touches the pan frames
4615 2005-08-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4617 * fvwm/session.c (SaveWindowStates):
4620 save and restore the default layer during a restart
4622 2005-08-13 Mikhael Goikhman <migo@homemail.com>
4624 * fvwm/conditional.c (CMD_Test):
4626 rename previously added Test conditions to EnvIsSet and EnvMatch,
4627 tweak the logic when the variable is set, but empty
4629 2005-08-13 Viktor Griph <griph(at)dd(dot)chalmers(dot)se>
4631 * fvwm/conditional.c (CMD_Test):
4633 added test conditions EdgeHasPointer and EdgeIsActive
4635 2005-08-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4637 * fvwm/virtual.c (raisePanFrames):
4638 prevent cycling of pan frame window stacking order
4640 2005-08-12 Mikhael Goikhman <migo@homemail.com>
4642 * fvwm/conditional.c (CMD_Test):
4644 add Test conditions IsEnvSet and MatchEnv
4646 2005-08-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4648 * fvwm/menus.c (pop_menu_up):
4649 * fvwm/menustyle.c (menustyle_copy):
4650 two fixes by Viktor Griph
4652 * fvwm/events.c (HandleEvents):
4653 simplify the style list if there is nothing else to do
4655 * fvwm/style.c (__simplify_style_list):
4656 (styles_have_same_id):
4657 (style_id_equals_id):
4658 (style_ids_are_equals):
4660 (remove_all_of_style_from_list):
4661 (one_fw_can_match_both_ids):
4662 pass pointers instead of the whole style structure
4663 (__simplify_style_list):
4664 fixed memory leak and tweaked the code
4666 * libs/Strings.c (CatString3):
4667 fixed a buffer overflow
4669 2005-08-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4672 detect if Window, Pixel or void * are bigger than long and refuse to
4675 * libs/vpacket.h (ConfigWinPacket):
4676 * fvwm/windowshade.c (CMD_WindowShade):
4677 * fvwm/virtual.c (MoveViewport):
4680 (CMD_GotoDeskAndPage):
4681 * fvwm/update.c (apply_window_updates):
4682 * fvwm/stack.c (BroadcastRestack):
4685 * fvwm/icons.c (DeIconify):
4687 * fvwm/geometry.c (broadcast_icon_geometry):
4688 * fvwm/events.c (HandleEnterNotify):
4690 (HandleLeaveNotify):
4692 (HandleMapRequestKeepRaised):
4693 * fvwm/add_window.c (destroy_window):
4694 * fvwm/module_interface.c (SendFvwmPicture)
4695 (BroadcastFvwmPicture):
4696 (CMD_Send_WindowList):
4697 * fvwm/modconf.c (CMD_Send_ConfigInfo):
4698 * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4701 * fvwm/virtual.c (GetDeskNumber):
4702 fixed bug #1396: applied patch by srivasta@debian.org to fix wrapping
4703 around the given desk range with a relative desk
4705 * fvwm/focus.c (focus_grab_buttons_on_layer):
4711 reindented some code and renamed some variables
4713 2005-08-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4715 * fvwm/events.c (__check_click_to_focus_or_raise):
4718 2005-08-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4720 * FvwmIconMan/xmanager.c (set_win_iconified):
4721 fixed select/focus button state lost when deiconifying a window
4723 2005-07-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4725 * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4728 * libs/Colorset.c (get_aspect_dimensions):
4729 fixed aspectpixmap size calculations
4731 2005-07-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4733 * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4736 * fvwm/ewmh_events.c (ewmh_WMDesktop):
4737 (ewmh_CurrentDesktop):
4738 (ewmh_DesktopGeometry):
4739 (ewmh_NumberOfDesktops):
4741 (ewmh_WMIconGeometry):
4742 * fvwm/gnome.c (GNOME_ProcessClientMessage):
4743 print error messages for broken gnome client messages
4745 * fvwm/ewmh_events.c (ewmh_DesktopGeometry):
4746 removed duplicate call of execute_function_override_window
4748 * fvwm/stack.c (new_layer):
4749 fixed a hang if a window sets an layer < 0 via gnome hints
4751 * fvwm/add_window.c (GetWindowSizeHints):
4752 * fvwm/misc.c (fvwm_msg_report_app):
4753 (fvwm_msg_report_app_and_workers):
4754 new utility functions
4756 2005-07-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4758 * fvwm/stack.c (dump_stack_ring):
4759 (verify_stack_ring_consistency):
4760 * fvwm/module_interface.c (HandleModuleInput):
4761 * fvwm/events.c (__cr_detect_icccm_move):
4762 * fvwm/style.c (print_styles):
4765 2005-07-19 Mikhael Goikhman <migo@homemail.com>
4767 * libs/FlocaleCharset.c:
4768 support euc-jp encodings (Yasuhiro Nakazaki)
4770 2005-07-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4772 * fvwm/ewmh_events.c (ewmh_WMIconGeometry):
4773 * fvwm/ewmh_names.c (EWMH_WMName):
4775 * fvwm/ewmh.c (EWMH_SetCurrentDesktop):
4776 (EWMH_SetNumberOfDesktops):
4777 (EWMH_SetDesktopViewPort):
4778 (EWMH_SetDesktopGeometry):
4779 (EWMH_SetWMDesktop):
4781 (EWMH_SetFrameStrut):
4783 * fvwm/gnome.c (AtomGet):
4785 (GNOME_GetHintIcons):
4786 (GNOME_GetHintLayer):
4787 (GNOME_GetHintState):
4788 (GNOME_GetExpandedSize):
4789 (GNOME_SetAreaCount):
4790 (GNOME_SetCurrentArea):
4791 (GNOME_SetDeskCount):
4792 (GNOME_SetCurrentDesk):
4793 (GNOME_SetCurrentDesk):
4796 (CMD_GnomeShowDesks):
4800 * libs/fsm.c (GetClientID):
4801 (set_session_manager):
4802 * fvwm/session.c (GetClientID):
4803 * fvwm/fvwm.h (FvwmWindow):
4804 * fvwm/colorset.c (get_root_pixmap):
4805 * fvwm/add_window.c (FetchWmProtocols):
4806 * libs/FTips.c (__initialize_window):
4807 * fvwm/icccm2.c (convertProperty)
4808 (icccm2_handle_selection_request)
4809 * fvwm/fvwm.c (SetMWM_INFO):
4812 2005-07-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4814 * fvwm/move_resize.c (GetOnePositionArgument):
4815 don't use the unportable fuction rintf()
4817 2005-07-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4821 increased version to 2.5.14
4827 updated for 2.5.13 release
4829 2005-07-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4831 * libs/Graphics.c (do_relieve_rectangle_with_rotation):
4832 fixed drawing of relief with very small rectangles, i.e. when
4833 line_width * 2 > height or width
4835 2005-07-04 Dan Espen <dane@mk.telcordia.com>
4837 * NEWS: fvwm-menu-desktop changes.
4839 2005-07-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4841 * fvwm/placement.c (get_next_x):
4842 fixed collision detection of windows on pages other than the current
4843 one during placement
4845 2005-06-17 Olivier Chapuis <olivier.chapuis@free.fr>
4847 * fvwm/move_resize.c (__resize_window):
4848 Fixed interactive resize (reduction) via the bottom border
4853 2005-06-02 Dan Espen <dane@mk.telcordia.com>
4857 Spelling fix contition -> condition
4859 2005-04-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4861 * fvwm/style.c (style_ids_are_equals):
4862 (style_id_equals_id):
4863 (styles_have_same_id):
4864 (fw_match_style_id):
4865 (one_fw_can_match_both_ids):
4866 (cleanup_style_defaults):
4867 * libs/fsm.c (fprintfhex):
4869 * libs/FGettext.c (fgettext_free_fgpath_list):
4870 * libs/Parse.c (_get_suffixed_integer_arguments):
4871 * libs/Graphics.c (AllocNonlinearGradient):
4872 * libs/PictureUtils.c (build_mapping_table):
4878 * libs/FRenderInit.c:
4879 include own header file
4881 * libs/System.c (getFileStamp):
4882 * libs/Fft.c (FftPDumyFunc):
4883 * libs/FScreen.c (FScreenSetDefaultModuleScreen):
4886 2005-03-01 Dan Espen <dane@mk.telcordia.com>
4888 * fvwm/fvwm.1.in (Example): Piperead in dynamic menu example,
4891 2005-02-25 Dan Espen <dane@mk.telcordia.com>
4893 * fvwm/fvwm.1.in (Focus): Typos in focus section.
4895 2005-02-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4897 * fvwm/conditional.c (Circulate):
4898 added tests for fw == Scr.FvwmRoot again to fix a crash
4900 2005-02-05 Dan Espen <dane@mk.telcordia.com>
4902 * AUTHORS: New author, FvwmScript patch.
4904 2005-01-28 Scott Smedley <scottie7@tpg.com.au>
4906 * fvwm/fvwm.1.in: elaborate on how window-specific bindings work.
4907 * AUTHORS: s/Hover/Active/
4909 2005-01-19 Dan Espen <dane@mk.telcordia.com>
4911 * fvwm/bindings.c (ParseBinding): Patch from Frank Gruellich,
4912 avoid dump with empty key/mouse binding command.
4913 * fvwm/conditional.c (direction_cmd): Safety check after PeekToken
4914 Checked all other uses of PeekToken in fvwm dir.
4916 2005-01-08 Olivier Chapuis <olivier.chapuis@free.fr>
4918 * fvwm/session.c (matchWin):
4920 On restarts compare window ids only. Base our matching decision on
4921 window role only if we have a client id.
4923 * fvwm/move_resize.c (GetOnePositionArgument):
4924 Fixed a one pixel bug in the Move and AnimatedMove commands by rounding
4925 float values to nearest int
4927 2005-01-06 Olivier Chapuis <olivier.chapuis@free.fr>
4930 * fvwm/move_resize.c (CMD_Maximize):
4931 Applied Arnaud Vrac patch which fixes maximize by growing vs
4934 2004-12-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4936 * fvwm/builtins.c (do_button_style):
4937 ButtonStyle Reset takes effect immediately
4939 2004-12-08 Dan Espen <dane@mk.telcordia.com>
4941 * fvwm/fvwm.1.in: lang check.
4943 2004-12-06 Olivier Chapuis <olivier.chapuis@free.fr>
4946 Really commit EWMHUseStackingOrderHints documentation update
4948 2004-12-02 Olivier Chapuis <olivier.chapuis@free.fr>
4951 Fixed bug #1480 by updating EWMHUseStackingOrderHints documentation
4954 FvwmIconMan new options
4956 * libs/FTips.c (new file):
4957 * libs/FTips.h (new file):
4960 Added a set of functions for implementing tool tips
4962 2004-11-30 Dan Espen <dane@mk.telcordia.com>
4964 * fvwm/fvwm.1.in: Fix keysym description add XKeysymDB.
4966 2004-11-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4968 * fvwm/menus.c (__mloop_get_event):
4969 * fvwm/functions.c (execute_complex_function):
4970 * fvwm/add_window.c (AddWindow):
4971 * fvwm/module_interface.c (ExecuteModuleCommand):
4972 * fvwm/move_resize.c (__move_loop):
4974 properly set the "state" member of faked motion and key events;
4975 fixes broken "nosnap" feature
4977 2004-10-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4979 * fvwm/bindings.c (ParseBinding):
4981 * libs/Bindings.c (bindingAppliesToWindow):
4982 (__compare_binding):
4983 * fvwm/module_interface.c (CMD_ModuleSynchronous):
4984 * fvwm/builtins.c (CMD_Wait):
4986 * fvwm/events.c (__handle_bpress_on_root):
4987 (HandleButtonRelease):
4988 fixed crash in window specific binding code
4989 fixed handling of root window in window specific binding code
4990 renamed some functions
4992 2004-10-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
4994 * fvwm/focus.c (__update_windowlist):
4995 replaced while loop by for loop
4997 * fvwm/style.c (style_destroy_style):
4998 * fvwm/conditional.c (Circulate):
4999 removed useless check whether fw == &Scr.FvwmRoot
5001 * fvwm/icons.c (DeIconify):
5002 defused possible endless loop when a window iconified by the
5003 transientfor window loses the "transient" relationship
5005 2004-10-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5007 * fvwm/move_resize.c (__move_loop):
5009 fixed overwriting the initial button_mask during move/resize
5011 * fvwm/menus.c (__mloop_handle_action_with_mi):
5012 do not "post" a submenu menu item it the submenu does not exist
5014 2004-10-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5016 * fvwm/events.c (__handle_bpress_on_managed):
5017 do not draw the decorations pressed in if executing a function is
5020 * libs/Parse.c (CopyToken):
5021 fixed parsing of delimiters
5023 2004-10-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5025 * fvwm/virtual.c (GetDeskNumber):
5026 fixed MoveToDesk without argument
5028 2004-10-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5031 re-formatted and some spelling corrections
5033 * fvwm/colorset.c (CMD_CleanupColorsets):
5035 * fvwm/builtins.c (CMD_Colorset):
5036 (CMD_CleanupColorsets):
5037 moved functions to colorset.c
5039 2004-10-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5041 * libs/Parse.c (CopyToken):
5042 skip any whitespace before a delimiter; this allows to have spaces
5043 before the commas in an option list
5045 2004-10-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5047 * fvwm/frame.c (frame_reshape_border):
5048 re-shaping shaded windows no longer unshades them
5049 re-shaping unshaded windows on pages other than 0 0 no longer moves
5050 them out of the current page
5052 2004-10-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5054 * fvwm/events.c (__cr_detect_icccm_move):
5055 * fvwm/screen.h (ScreenInfo):
5056 * fvwm/builtins.c (CMD_BugOpts):
5057 new BugOpts option DebugCRMotionMethod for ConfigureRequest debugging
5059 * fvwm/move_resize.c (__move_loop):
5061 query the pointer position in the move loop when an
5062 EnterNotify/LeaveNotify event arrives; same change in resize loop.
5066 increased version to 2.5.13
5072 updated for 2.5.12 release
5074 * fvwm/frame.c (frame_create_move_resize_args):
5075 fixed xemacs growing or shrinking when title height changed; this was
5076 caused by calculating the old client window geometry using the new
5077 title dimensions; query the window size instead
5079 2004-10-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5081 * fvwm/events.c (test_map_request):
5082 (test_button_event):
5083 (test_typed_window_event):
5084 (test_resizing_event):
5085 (__predicate_button_click):
5086 (__merge_cr_moveresize):
5087 (HandleUnmapNotify):
5088 (flush_property_notify):
5089 (is_resizing_event_pending):
5090 (__test_for_motion):
5091 use type XPointer for last argument of predicate procedures for
5092 XCheckPeekIfEvent and XCheckIfEvent, not char *
5093 (HandleUnmapNotify):
5096 2004-10-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5098 * fvwm/window_flags.h:
5099 removed useless and broken SETM_ macros
5101 * fvwm/update.c (init_style):
5102 fixed resetting user states
5104 2004-10-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5106 * libs/envvar.c (add_to_envlist):
5109 2004-09-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5111 * fvwm/builtins.c (CMD_UnsetEnv):
5114 * libs/envvar.c (flib_unsetenv):
5118 split in ftwo functions
5121 check for unsetenv function
5123 * fvwm/builtins.c (CMD_SetEnv):
5124 assume an empty value if no value is given
5126 2004-09-30 Rafal Bisingier <ravbc@man.poznan.pl>
5135 * perllib/FVWM/Commands.pm:
5136 new command EdgeLeaveCommand
5138 2004-09-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5145 increased version to 2.5.12
5150 updated for 2.5.11 release
5152 2004-09-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5154 * fvwm/geometry.c (get_page_offset):
5155 (get_page_offset_rectangle):
5156 (get_absolute_geometry):
5159 * fvwm/virtual.c (CMD_GotoPage):
5160 * fvwm/move_resize.c (__move_window):
5161 * fvwm/virtual.c (CMD_GotoPage):
5162 (get_page_arguments):
5163 new options wrapx, wrapy, nodesklimitx, nodesklimity to MoveToPage
5166 2004-09-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5168 * libs/Flocale.c (FlocaleGetNameProperty):
5169 fixed freeing uninitialized pointer
5171 2004-09-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5173 * fvwm/conditional.c (select_cmd):
5177 fixed conditional return code in Pick, PointerWindow, ThisWindow, All,
5178 WindowId and Direction commands; fixes break from these commands
5180 * fvwm/geometry.c (get_shaded_geometry):
5181 shading geometry fix for windows without decoration
5183 * libs/FScreen.c (XineramaQueryExtension):
5184 fixed xinerama crash
5186 2004-09-04 Scott Smedley <scottie7@tpg.com.au>
5189 Parse man pages with config.status so man pages have correct date.
5190 Man pages also specify FVWM version that they relate to.
5193 * bin/fvwm-config.1:
5194 * bin/fvwm-convert-2.2.1:
5195 * bin/fvwm-convert-2.4.1:
5196 * bin/fvwm-convert-2.6.1:
5197 * bin/fvwm-menu-desktop.1:
5199 * modules/FvwmAnimate/FvwmAnimate.1:
5200 * modules/FvwmAuto/FvwmAuto.1:
5201 * modules/FvwmBacker/FvwmBacker.1:
5202 * modules/FvwmBanner/FvwmBanner.1:
5203 * modules/FvwmButtons/FvwmButtons.1:
5204 * modules/FvwmCommand/FvwmCommand.1:
5205 * modules/FvwmConsole/FvwmConsole.1:
5206 * modules/FvwmConsole/FvwmConsoleC.pl.1:
5207 * modules/FvwmCpp/FvwmCpp.1:
5208 * modules/FvwmDragWell/FvwmDragWell.1:
5209 * modules/FvwmEvent/FvwmEvent.1:
5210 * modules/FvwmForm/FvwmForm.1:
5211 * modules/FvwmGtk/FvwmGtk.1:
5212 * modules/FvwmIconBox/FvwmIconBox.1:
5213 * modules/FvwmIconMan/FvwmIconMan.1:
5214 * modules/FvwmIdent/FvwmIdent.1:
5215 * modules/FvwmM4/FvwmM4.1:
5216 * modules/FvwmPager/FvwmPager.1:
5217 * modules/FvwmProxy/FvwmProxy.1:
5218 * modules/FvwmRearrange/FvwmRearrange.1:
5219 * modules/FvwmSave/FvwmSave.1:
5220 * modules/FvwmSaveDesk/FvwmSaveDesk.1:
5221 * modules/FvwmScript/FvwmScript.1:
5222 * modules/FvwmScroll/FvwmScroll.1:
5223 * modules/FvwmTaskBar/FvwmTaskBar.1:
5224 * modules/FvwmTheme/FvwmTheme.1:
5225 * modules/FvwmWharf/FvwmWharf.1:
5226 * modules/FvwmWinList/FvwmWinList.1:
5227 These man pages were renamed to have a .in suffix.
5228 ie. bin/fvwm-bug.1 renamed to bin/fvwm-bug.1.in
5230 2004-09-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5232 * fvwm/placement.c (__place_window):
5233 fixed starting desk output with bugopts explainwindowplacement
5235 2004-09-03 Olivier Chapuis <olivier.chapuis@free.fr>
5237 * fvwm/eventhandler.h:
5238 * fvwm/events.c (InitEventHandlerJumpTable):
5242 Fixed window specific bindings "patch" by sending key release event
5245 2004-09-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5249 * fvwm/move_resize.c:
5253 * fvwm/decorations.c:
5257 * fvwm/add_window.c:
5260 renamed NUMBER_OF_BUTTONS to NUMBER_OF_TITLE_BUTTONS to avoid confusing
5261 it with NUMBER_OF_MOUSE_BUTTONS
5263 * fvwm/style.c (style_parse_focus_policy_style):
5264 * fvwm/focus_policy.h:
5265 * libs/Bindings.c (GrabWindowButton):
5266 * fvwm/bindings.c (bind_get_bound_button_contexts):
5268 * fvwm/events.c (WaitForButtonsUp):
5269 * fvwm/style.c (style_parse_focus_policy_style):
5270 * fvwm/builtins.c (__fake_event):
5271 fixed use of NUMBER_OF_MOUSE_BUTTONS vs.
5272 NUMBER_OF_EXTENDED_MOUSE_BUTTONS
5274 2004-08-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5277 put -Wall -Wno-implicit-int before user specified flags
5280 Applied below patch again. It didn't make it to CVS (?)
5282 2004-08-26 Dan Espen <dane@mk.telcordia.com>
5284 * libs/FScreen.c: Fixed case error. Patch from Chris Ross.
5286 2004-08-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5289 cleaned up ifdef hell
5292 fixed solaris xinerama test
5294 2004-08-25 Dan Espen <dane@mk.telcordia.com>
5298 * libs/FScreen.c (solaris_XineramaQueryScreens):
5299 Solaris Xinerama support.
5302 Patch by Chris Ross.
5304 2004-08-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5306 * fvwm/events.c (__handle_cr_on_client):
5307 don't reevaluate window geometry when a ConfigureRequest has no size or
5310 2004-08-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5312 * fvwm/menus.c (get_menu_options):
5314 new menu option TearOffImmediately
5316 2004-08-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5318 * fvwm/placement.c (__place_get_wm_pos):
5319 cascade placemnt fix by Paul Vojta
5321 2004-08-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5323 * fvwm/geometry.c (constrain_size):
5324 Don't touch the aspect ratio if modifying the width/height does not
5325 improve the situation
5327 * fvwm/frame.c (frame_free_move_resize_args):
5328 (__frame_setup_window):
5329 (frame_update_hidden_window_pos):
5330 (frame_mrs_resize_move_windows):
5331 (frame_create_move_resize_args):
5332 * fvwm/move_resize.c (__resize_window):
5333 some event handling fixes
5335 * fvwm/geometry.c (constrain_size):
5336 look up the latest size hints if necessary
5338 2004-08-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5340 * fvwm/geometry.c (constrain_size):
5341 * fvwm/ewmh.c (EWMH_fullscreen):
5342 * fvwm/window_flags.h (DO_DISABLE_CONSTRAIN_SIZE_FULLSCREEN):
5343 (SET_DISABLE_CONSTRAIN_SIZE_FULLSCREEN):
5344 (SETM_DISABLE_CONSTRAIN_SIZE_FULLSCREEN):
5345 * fvwm/fvwm.h (window_flags_t):
5346 allow windows to override their size hints when going fullscreen:
5347 minimum and maximum size, size inc, aspect ratio, etc.
5349 2004-08-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5351 * fvwm/decorations.c (struct):
5352 MWM hints on 64 bit machines fix
5354 2004-07-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5356 * fvwm/fvwm.1.in (Note):
5357 * fvwm/read.c (CMD_Read):
5359 the Read and PipeRead commands have a return code
5361 * fvwm/read.c (run_command_stream):
5366 2004-07-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5368 * fvwm/move_resize.c (GetResizeArguments):
5370 fixed parsing of the frame option to the resize command and the pointer
5371 option to the move command
5373 * fvwm/conditional.c (CMD_None):
5374 Fixed CMD_None return code
5376 2004-07-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5378 * fvwm/stack.c (is_above_unmanaged):
5379 windows on other Desks are always considered on top
5381 * fvwm/conditional.c (CreateConditionMask):
5382 (MatchesConditionMask):
5383 * fvwm/fvwm.h (WindowConditionMask):
5384 new condition Overlapped
5387 inproved strings.h / sring.h iclusion logic
5389 * libs/PictureUtils.c (finish_ct_init):
5390 (PictureInitColors):
5391 use flib_putenv instead of putenv
5393 2004-07-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5396 * libs/gravity.h (enum):
5397 * libs/wcontext.h (enum):
5400 * fvwm/fvwm.c (StartupStuff):
5401 do not ungrab the pointer while the startup functions execute
5403 ungrab the pointer only after executing the RestartFunction or
5404 ExitFunciton. Otherwise these functions may not be executed if some
5405 other application grabs the pointer.
5408 * fvwm/conditional.c (CreateConditionMask):
5409 renamed CurrentGlobbalPageAnyDesk to CurrentGlobalPageAnyDesk
5410 new condition AnyScreen
5413 * fvwm/builtins.c (__fake_event):
5414 * fvwm/bindings.c (ParseBinding):
5415 removed C++ comments
5417 2004-07-15 Scott Smedley <scottie7@tpg.com.au>
5420 New options for FvwmButtons module.
5422 2004-07-12 Mikhael Goikhman <migo@homemail.com>
5425 use commas between conditions
5427 2004-07-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5429 * fvwm/builtins.c (CMD_Wait):
5430 ignore MapNotify reported to any window except the root window
5432 * fvwm/module_interface.c (CONFIGARGS):
5433 correct number of CONFIGARGS arguments
5435 * libs/vpacket.h (ConfigWinPacket):
5436 frame_x and frame_y are signed
5438 2004-07-11 Scott Smedley <scottie7@tpg.com.au>
5440 * fvwm/conditional.c:
5444 Committed patch by Norman Yarvin (with a few minor mods) to extend
5445 conditionals to handle multiple window names.
5447 2004-07-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5449 * fvwm/module_interface.c (CONFIGARGS):
5450 * libs/vpacket.h (ConfigWinPacket):
5451 put window_flags at end of structure
5453 2004-07-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5455 * fvwm/module_interface.c (CONFIGARGS):
5460 removed old module interface
5463 * libs/vpacket.h (ConfigWinPacket):
5466 2004-07-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5468 * fvwm/execcontext.c (__exc_change_context):
5469 fixed handling of etrigger event, fixing a problem with PropertyNotify
5470 events during resizing and possibly other problems too
5472 * fvwm/add_window.c (RestoreWithdrawnLocation):
5473 fixed travelling windows if application changed gravity hint before
5476 * fvwm/frame.c (combine_decor_gravities):
5477 (combine_gravities):
5479 (frame_restore_client_gravities):
5480 fixed window gravity after resize
5482 * libs/FEvent.c (FPeekEvent):
5484 (FCheckPeekIfEvent):
5485 fixed some event handling bugs
5487 * fvwm/conditional.c (CMD_Test):
5489 corrected use of Bool types
5491 simplified, fixed compilation
5493 use int as return type
5495 * libs/Ficonv.c (convert_charsets):
5498 * libs/Ficonv.c (convert_charsets):
5499 * acinclude.m4 (ICONV_SECOND_ARG):
5500 rewrote iconf configure test to save an ifdef
5502 2004-07-07 Scott Smedley <scottie7@tpg.com.au>
5508 Allow user to specify window-specific bindings that should NOT be
5509 intercepted by FVWM. This is accomplished with an '--' binding action.
5511 2004-07-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5513 * fvwm/move_resize.c (__resize_window):
5514 Fixed event handling
5516 * fvwm/virtual.c (HandlePaging):
5517 removed check for leave events on pan frames; better query the pointer
5520 2004-07-06 Scott Smedley <scottie7@tpg.com.au>
5523 * fvwm/conditional.c:
5524 Extend "Test (Version >= x.y.z)" syntax to allow version comparison.
5526 2004-07-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5528 * fvwm/move_resize.c (GetResizeArguments):
5529 (GetResizeMoveArguments):
5532 (__resize_get_refpos):
5533 (__resize_get_dir_proximity):
5534 (__resize_get_dir_from_window):
5535 implemented fluxbox-like Alt-Button3 resizing
5537 * fvwm/virtual.c (HandlePaging):
5538 * fvwm/events.c (__merge_cr_moveresize):
5539 (__test_for_motion):
5540 (flush_property_notify):
5541 do not use XPutBackEvent as it shuffles events on the queue
5542 (test_button_event):
5543 (test_typed_window_event):
5546 * libs/FEvent.c (fev_get_evpos_or_query):
5547 take pointer position from EnterNotify and LeaveNotify events
5549 * fvwm/move_resize.c (__move_loop):
5550 fixed multiple paging with certain SnapGrid / Move interactions
5553 * fvwm/virtual.c (HandlePaging):
5554 Workaround for buggy XFree not delivering some Pointer events
5557 * fvwm/virtual.c (MoveViewport):
5558 don't eat MotionNotify events
5560 * libs/FEvent.c (fev_get_last_event):
5569 (FCheckWindowEvent):
5570 (FCheckTypedWindowEvent):
5574 keep a copy of the previous event in case FPutBackEvent is called
5576 2004-06-30 Scott Smedley <scottie7@tpg.com.au>
5579 Indicate optional window argument in section headings for
5580 Key, Mouse, PointerKey & Stroke commands.
5581 Remove strange "-Key" option listed for PointerKey.
5583 2004-06-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5585 * libs/Fft.c (FftDrawString):
5586 * fvwm/session.c (get_version_string):
5587 * fvwm/module_interface.c (FlushMessageQueue):
5588 * fvwm/fvwm.c (SaveDesktopState):
5590 * fvwm/colorset.c (cleanup_colorsets):
5591 * libs/PictureUtils.c (struct):
5592 fixed compilation with -Wall -Wstrict-prototypes -Wpointer-arith
5594 2004-06-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5596 * fvwm/events.c (__cr_detect_icccm_move):
5597 windows with ewmh hints are assumed to use icccm2 compliant movement
5599 * fvwm/ewmh_events.c (ewmh_WMStateMaxVert):
5600 (ewmh_WMStateMaxHoriz):
5601 fixed restart/maximized problem
5603 * libs/fvwmsignal.c (fvwmReapChildren):
5604 * fvwm/fvwm.c (ReapChildren):
5605 moved function to lib
5607 2004-06-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5609 * fvwm/modconf.c (send_desktop_geometry):
5612 (send_move_threshold):
5613 (send_ignore_modifiers):
5614 increased static buffer size
5616 2004-06-13 Marcus Lundblad <ml@update.uu.se>
5618 * libs/CombineChars.c (convert_to_ucs2):
5619 Replace illegal UTF-8 character sequences in input
5621 2004-06-11 Scott Smedley <scottie7@tpg.com.au>
5624 bugfix: wrong stroke action being invoked.
5626 2004-06-10 Scott Smedley <scottie7@tpg.com.au>
5631 Active _last_ matching binding. (ie. same behaviour as before
5632 win-specific bindings patch.)
5633 bugfix: segfault when looking up stroke bindings in root context.
5635 2004-06-07 Scott Smedley <scottie7@tpg.com.au>
5641 * fvwm/module_interface.c:
5644 * modules/FvwmScript/FvwmScript.c:
5645 * modules/FvwmScript/Instructions.c:
5646 Implemented window-specific key/mouse bindings.
5648 * modules/FvwmIconBox/FvwmIconBox.h:
5652 Make args to matchWildcards() const.
5654 2004-06-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5656 * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
5658 * fvwm/ewmh.c (EWMH_fullscreen):
5661 * fvwm/add_window.c (AddWindow):
5662 implemented MAXVERT, MAXHORIZ and FULLSCREEN initial EWMH states
5664 * fvwm/ewmh_events.c (ewmh_WMStateMaxHoriz):
5665 (ewmh_WMStateMaxVert):
5666 (ewmh_WMStateShaded):
5667 (ewmh_WMStateSticky):
5668 (ewmh_WMStateStaysOnBottom):
5671 don't try to maximize window when looking up the style
5673 (ewmh_WMStateFullScreen):
5674 (ewmh_WMStateHidden):
5675 (ewmh_WMStateMaxVert):
5676 (ewmh_WMStateModal):
5677 (ewmh_WMStateShaded):
5678 (ewmh_WMStateSkipPager):
5679 (ewmh_WMStateSticky):
5680 (ewmh_WMStateStaysOnBottom):
5681 fixed ignoring ewmh hints
5683 * fvwm/expand.c (expand_vars_extended):
5684 include full path in iconfile and miniiconfile variables
5686 2004-06-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5688 * fvwm/functions.c (execute_complex_function):
5690 fixed double click patch
5692 2004-06-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5694 * fvwm/ewmh.c (EWMH_SetWMDesktop):
5695 use 0xFFFFFFFF instead of 0xFFFFFFFE for "sticky across all desks"
5697 2004-05-31 Dan Espen <dane@mk.telcordia.com>
5699 * fvwm/fvwm.1.in (COLORSETS): Moved FvwmTheme description of colorsets
5702 2004-05-29 Norbert Buchmuller <norbi@nix.hu>
5704 * libs/FImage.c (FShmSafeCreateImage):
5705 Yet another fix to SHM remote client problem
5707 2004-05-26 Francis Litterio <franl@world.std.com>
5711 * fvwm/placement.c (__place_get_wm_pos)
5712 * fvwm/style.c (style_parse_one_style_option)
5713 Added support for new CenterPlacement style (cf. macro PLACE_CENTER).
5715 2004-05-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5717 * fvwm/events.c (HandleEnterNotify):
5718 fixed endless loop of edge commands when doing something that grabs
5721 * fvwm/functions.c (CheckActionType):
5722 (execute_complex_function):
5723 double clicks no longer work when pressing different buttons
5725 2004-05-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5727 * fvwm/placement.c (__place_get_wm_pos):
5728 fixed placement in top left corner when pressing escape during manual
5731 2004-05-23 Mikhael Goikhman <migo@homemail.com>
5735 added Chinese translations
5737 2004-05-18 Olivier Chapuis <olivier.chapuis@free.fr>
5739 * fvwm/ewmh.c (EWMH_SetFrameStrut):
5742 2004-05-09 Mikhael Goikhman <migo@homemail.com>
5744 * fvwm/conditional.c:
5746 clean up Test code and documentation, add new False condition,
5747 unrecognized conditions produce Error return code now
5749 2004-05-06 Dan Espen <dane@mk.telcordia.com>
5751 * fvwm/style.c: Remove extra char.
5753 2004-05-01 Olivier Chapuis <olivier.chapuis@free.fr>
5755 * fvwm/ewmh.c (ewmh_atom_client_win):
5756 * fvwm/ewmh_intern.h:
5757 * fvwm/ewmh_events.c (EWMH_ProcessClientMessage):
5758 (ewmh_MoveResizeWindow):
5759 Added _NET_RESTACK_WINDOW as it is similar than _NET_MOVERESIZE_WINDOW
5761 * fvwm/events.c (__handle_cr_on_client):
5762 (__handle_configure_request):
5763 (events_handle_configure_request):
5764 Some renaming for consistency, force restacking if the event come from
5767 * fvwm/ewmh_events.c (ewmh_MoveResize):
5768 Fixed _NET_WM_MOVERESIZE
5770 * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
5773 * fvwm/ewmh.c (ewmh_atom_fvwm_win):
5774 (EWMH_SetFrameStrut):
5775 Added _NET_FRAME_EXTENTS as it is just _KDE_NET_WM_FRAME_STRUT
5777 2004-04-29 Olivier Chapuis <olivier.chapuis@free.fr>
5779 * libs/FImage.c (FShmSafeCreateImage):
5780 Finished to fix SHM remote client problem
5782 2004-04-29 Olivier Chapuis <olivier.chapuis@free.fr>
5784 * libs/FImage.c (FShmSafeCreateImage):
5785 Fixed when we are a remote client
5787 2004-04-21 Mikhael Goikhman <migo@homemail.com>
5798 new default ~/.fvwm/config file is now recommended instead of
5799 still supported ~/.fvwm/.fvwm2rc
5801 2004-04-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5803 * fvwm/menus.c (NewMenuRoot):
5804 do not strip whitespace from menu names when creating a new menu
5806 2004-04-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5808 * fvwm/menuitem.c (menuitem_get_size):
5810 renamed remaining "mips" to mipst
5812 2004-04-09 Olivier Chapuis <olivier.chapuis@free.fr>
5814 * fvwm/events.c (HandleMapRequestKeepRaised):
5815 * fvwm/ewmh_events.c (ewmh_DesktopGeometry):
5816 Fixed EWMH DesktopGeometry and Stacking list
5818 2004-04-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5820 * fvwm/virtual.c (GetDeskNumber):
5823 fixed MoveToDesk with one argument
5825 2004-04-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5827 * fvwm/style.c (style_parse_one_style_option):
5829 * fvwm/conditional.c (MatchesConditionMask):
5831 * fvwm/window_flags.h:
5834 2004-03-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5839 2004-03-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5841 * fvwm/move_resize.c (unmaximize_fvwm_window):
5842 fixed redrawing of maximize button when unmaximizing but when the size
5843 and position does not change
5845 2004-03-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5847 * fvwm/expand.c (expand_vars_extended):
5848 new extended variable $[w.layer]
5850 * fvwm/move_resize.c (MaximizeHeight):
5853 applied modified layer patch for maximize by Rafal Bisingier
5855 2004-03-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5857 * fvwm/add_window.c (setup_frame_attributes):
5858 Hopefully fixed BackingStore code and removed now useless backing store
5861 * fvwm/expand.c (expand_vars_extended):
5862 new extended variable $[w.desk]
5864 2004-03-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5868 increased version to 2.5.11
5873 updated for 2.5.10 release
5875 * libs/Graphics.c (do_relieve_rectangle_with_rotation):
5876 improved rotation code
5878 * libs/gravity.c (gravity_add_rotations):
5881 2004-03-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5883 * fvwm/placement.c (__explain_placement):
5886 * libs/FScreen.c (FScreenIsRectangleOnScreen):
5889 * fvwm/builtins.c (CMD_BugOpts):
5890 * fvwm/screen.h (ScreenInfo):
5891 new BugOpts option ExplainWindowPlacement
5892 renamed some members of Screen
5894 2004-03-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5896 * fvwm/placement.c (__place_get_wm_pos):
5897 (__place_get_nowm_pos):
5898 (__place_get_placement_flags):
5900 (__place_handle_x_resources):
5901 (setup_window_placement):
5902 split into multiple functions
5905 2004-03-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5907 * fvwm/add_window.c (setup_window_placement):
5908 * fvwm/placement.c (setup_window_placement):
5909 moved function to placement.c
5910 fixed using PLACE_AGAIN placement mode
5915 2004-03-15 Chris Ross <cross+fvwm@distal.com>
5917 * libs/Graphics.c (do_relieve_rectangle_with_rotation)
5918 allow a negative line_width to invert the relief
5920 2004-03-06 Marcus Lundblad <ml@update.uu.se>
5922 * libs/Flocale.c (FlocaleDrawString)
5923 (FlocaleDrawUnderline)
5925 reduced redundant calls to iconv
5927 2004-03-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5929 * fvwm/move_resize.c (CMD_XorValue):
5930 fixed a very small outline drawing problem caused by using 0 line width
5935 increased version to 2.5.10
5939 updated for 2.5.9 release
5941 * fvwm/functions.c (execute_function_override_window):
5942 * fvwm/module_interface.c (ExecuteModuleCommand):
5943 * fvwm/conditional.c (circulate_cmd):
5944 sometimes, DeferExecution was called although a window was already
5945 selected, for example with the "Current" commend; fixed
5947 2004-02-28 Olivier Chapuis <olivier.chapuis@free.fr>
5949 * libs/FImage.c (FShmSafeCreateImage):
5950 Fixed some safety tests
5952 2004-02-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5954 * fvwm/events.c (__handle_cr_on_client):
5955 fixed a bug in the Jave configure request workaround
5957 2004-02-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5959 * fvwm/events.c (__cr_detect_icccm_move):
5960 improved motion method detection for fullscreen requests
5962 2004-02-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5964 * fvwm/add_window.c (AddWindow):
5965 * fvwm/screen.h (ScreenInfo):
5966 * fvwm/builtins.c (CMD_BugOpts):
5967 new BugOpts option DisplayNewWindowNames intended for debugging
5969 2004-02-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5971 * libs/Bindings.c (FvwmStringToKeysym):
5972 small performance enhancement
5974 * fvwm/move_resize.c (AnimatedMoveAnyWindow):
5976 fixed the FlickeringMoveWorkaround option which did nothing before
5978 2004-02-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5980 * fvwm/style.c (style_parse_one_style_option):
5982 * fvwm/style.h (SIS_UNMANAGED):
5983 * fvwm/add_window.c (AddWindow):
5986 * fvwm/expand.c (expand_vars_extended):
5987 new variables $[w.iconfile] and $[w.miniiconfile]
5989 * libs/Graphics.c (do_relieve_rectangle_with_rotation):
5990 made left side of a relief one pixel longer at the bottom
5992 2004-02-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
5994 * libs/defaults.h (DEF_FP_SORT_WINDOWLIST_BY):
5995 * fvwm/style.c (style_set_old_focus_policy):
5996 fixed default window list order with ClickToFocus
5998 2004-02-04 Marcus Lundblad <ml@update.uu.se>
6000 * fvwm/libs/Flocale.h:
6001 * fvwm/libs/Flocale.c (FlocaleStringNumberOfBytes)
6002 (FlocaleStringByteToCharOffset)
6003 (FlocaleStringCharToByteOffset)
6004 (FlocaleStringCharLength):
6005 Made utility functions available outside of Flocale
6007 2004-01-31 Olivier Chapuis <olivier.chapuis@free.fr>
6009 * fvwm/events.c (__test_for_motion):
6010 Fixed a lockup, see the long comment in the code
6012 2004-01-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6014 * fvwm/schedule.c (execute_obj_func):
6015 fixed using uninitialised return code
6017 2004-01-25 Olivier Chapuis <olivier.chapuis@free.fr>
6019 * fvwm/builtins.c (do_title_style):
6020 Fixed MinHeight, it must reset the Height
6022 2004-01-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6024 * fvwm/menus.c (menuShortcuts):
6025 applied menu navigation patch by Anton Kazennikov
6027 2003-12-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6029 * libs/gravity.c (gravity_dir_to_string):
6030 (gravity_parse_dir_argument):
6031 use a constant for the dir table
6033 2003-12-16 Marcus Lundblad <ml@update.uu.se>
6035 * fvwm/Flocale.c (FlocaleEncodeString)
6036 (FlocaleDrawUnderline):
6037 Fixed crash when there's no Iconv support
6039 2003-12-16 olicha <olivier.chapuis@free.fr>
6042 Used the FUNC_FLAGS_TYPE in find_func_t declaration
6044 * sample.fvwmrc/system.fvwm2rc-sample-95:
6045 Added some Xft fonts
6047 2003-12-12 olicha <olivier.chapuis@free.fr>
6049 * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6050 Fixed ewmh FullScreen when an application start fullscreen and
6051 desactivate this state
6053 2003-12-04 olicha <olivier.chapuis@free.fr>
6055 * fvwm/placement.c (test_fit):
6057 * fvwm/ewmh.c (ewmh_GetStrutIntersection):
6058 (EWMH_GetBaseStrutIntersection):
6059 (EWMH_GetStrutIntersection):
6060 Fixed placement vs the base struts
6062 2003-11-29 Mikhael Goikhman <migo@homemail.com>
6064 * sample.fvwmrc/system.fvwm2rc-sample-95:
6065 improved Debian specific menu
6067 2003-11-15 Mikhael Goikhman <migo@homemail.com>
6069 * sample.fvwmrc/system.fvwm2rc-sample-95:
6070 several updates; added Debian menu if found
6072 2003-11-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6075 new configure option --en/disable-iconv
6077 2003-11-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6079 * fvwm/menus.c (__mloop_handle_event):
6080 * fvwm/menustyle.c (menustyle_parse_style):
6082 new MenuStyle options PopupIgnore and PopupClose
6084 2003-11-02 Dan Espen <dane@mk.telcordia.com>
6086 * fvwm/menus.c (menu_binding): Remove debug code.
6087 * fvwm/bindings.c (ParseBinding): Hand off menu bindings to menu code.
6088 * fvwm/menus.h: Add menu_binding function.
6089 * fvwm/fvwm.1.in: Document the menu context in the mouse command for
6091 * fvwm/menus.c (__mloop_handle_event): Really crude ability to disable
6093 * libs/wcontext.h (enum): Add MENU context.
6094 * libs/wcontext.c (win_contexts): More common binding contexts first in
6096 * libs/charmap.c (charmap_string_to_mask): Space before char in error
6099 2003-11-01 Mikhael Goikhman <migo@homemail.com>
6103 increase version to 2.5.9
6105 2003-10-31 Mikhael Goikhman <migo@homemail.com>
6112 updated for 2.5.8 release
6114 2003-10-29 Mikhael Goikhman <migo@homemail.com>
6118 initially added files for deb package auto-creating procedure
6120 2003-10-26 Mikhael Goikhman <migo@homemail.com>
6124 added Swedish translations by Johan Svedberg
6129 2003-10-25 Mikhael Goikhman <migo@homemail.com>
6131 * fvwm/add_window.c (GetWindowSizeHints):
6132 reindented broken hint messages
6134 2003-10-23 Mikhael Goikhman <migo@homemail.com>
6137 improved Perl detection messages,
6138 restored FvwmGtkDebug independence from gtk libs
6140 2003-10-15 Mikhael Goikhman <migo@homemail.com>
6144 added German translations by Andrei Mitrofanow
6149 2003-10-11 Mikhael Goikhman <migo@homemail.com>
6154 2003-09-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6157 * fvwm/conditional.c (CreateConditionMask):
6158 (MatchesConditionMask):
6159 (CreateConditionMask):
6160 * fvwm/fvwm.h (WindowConditionMask):
6161 !CurrentPage, !CurrentDesk, !Layer ... now work as they should
6163 2003-09-23 olicha <olivier.chapuis@free.fr>
6165 * libs/FImage.c (FShmInit):
6168 2003-09-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6170 * fvwm/focus.c (warp_to_fvwm_window):
6171 don't unnecessarily call MoveViewport
6173 2003-09-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6175 * fvwm/decorations.c (__is_resize_allowed):
6178 2003-09-06 malu <ml@update.uu.se>
6180 * libs/FBidi.c (FBidiConvert):
6181 * libs/CombineChars.c (CombineChars):
6182 Fixed drawing combining characters on correct positions in
6183 right-to-left context
6185 2003-09-05 malu <ml@update.uu.se>
6187 * libs/Flocale.c (FlocaleDrawString):
6189 Fixed drawing of combining characters with font shadow
6190 (character offsets were miscalculated, since FlocaleTextWidth
6193 2003-09-05 malu <ml@update.uu.se>
6195 * libs/Flocale.c (FlocaleDrawUnderline):
6196 Fixed bug with text width when a string contains only
6197 "orphaned" combining characters (compensation for font shadowd
6200 2003-09-04 olicha <olivier.chapuis@free.fr>
6203 Added E.18, added comments on C.9 and C.15
6205 2003-09-03 olicha <olivier.chapuis@free.fr>
6207 * libs/Flocale.c (FlocaleTextWidth):
6208 Fixed a comb_char core dump
6211 Fixed compilation if either iconv, libpng or Xrender headers are
6212 not at a standard place
6214 2003-09-03 Mikhael Goikhman <migo@homemail.com>
6217 fixed error message for incorrect --with-SOMETHING-library argument
6219 2003-09-03 olicha <olivier.chapuis@free.fr>
6222 Closed C.2 as Dominik fix it on 2003-03-13. Move B.5 to C.27
6224 2003-09-02 olicha <olivier.chapuis@free.fr>
6229 2003-09-01 olicha <olivier.chapuis@free.fr>
6231 * libs/gravity.c (gravity_dir_to_string):
6232 A new interface function to transform a direction_t to a string
6234 2003-08-31 S. Anderson <sa@xmission.com>
6236 * libs/defaults.h (FLOCALE_MB_FALLBACK_FONT):
6237 Fixed missing font charsets
6239 2003-08-28 olicha <olivier.chapuis@free.fr>
6241 * fvwm/move_resize.c (__move_loop):
6242 (AnimatedMoveAnyWindow):
6243 Updated bg of transparent tear off menu when moved
6245 * fvwm/events.c (HandlePropertyNotify):
6246 Updated ParentRelative tear off menu on bg change
6248 * fvwm/menus.c (UpdateMenuColorset):
6249 Updated colorsets of tear off menu when they change, this handle the
6250 case of root background change for RootTransparent
6253 * fvwm/menus.c (menu_redraw_pr_tear_off_menu):
6254 An utility function for redrawing transparent tear off menu. Maybe
6257 * fvwm/add_window.c (validate_transientfor):
6258 Fixed transient for an ewmh desktop
6260 2003-08-27 olicha <olivier.chapuis@free.fr>
6262 * libs/FRender.c (FRenderRender):
6263 * libs/PictureGraphics.c (PGraphicsCreateTranslucent):
6264 Removed and fixed some unused code
6266 2003-08-25 olicha <olivier.chapuis@free.fr>
6268 * fvwm/misc.c (GrabEm):
6269 Fixed fvwm freeze if GRAB_FREEZE_CURSOR fail repeatedly
6271 * fvwm/modconf.c (send_color_limit):
6272 ifndefed color limit config info message which is not used anymore
6274 * fvwm/colorset.c (parse_colorset):
6275 Added a note on average bg
6277 2003-08-23 olicha <olivier.chapuis@free.fr>
6279 * fvwm/style.c (print_styles):
6280 More info on memory used
6282 * fvwm/style.c (__simplify_style_list):
6283 Fixed upward simplication
6285 2003-08-14 olicha <olivier.chapuis@free.fr>
6287 * fvwm/ewmh.c (ewmh_HandleMenu):
6288 Fixed the MENU window type, they are tear off menus
6291 * fvwm/update.c (apply_window_updates):
6292 * fvwm/stack.c (new_layer):
6293 * fvwm/ewmh.c (EWMH_GetStyle):
6294 Fixed EWMHUseStackingHints update
6296 * fvwm/window_flags.h:
6298 * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6299 (ewmh_WMStateMaxHoriz):
6300 (ewmh_WMStateMaxVert):
6301 * fvwm/move_resize.c (unmaximize_fvwm_window):
6302 Fixed _NET_WM_STATE_FULLSCREEN: set the correct _NET_WM_STATE,
6303 uniconify and unshade when putting a window fullscreen
6305 * fvwm/ewmh_intern.h:
6306 * fvwm/ewmh.c (ewmh_AllowsFullScreen):
6307 Added _NET_WM_ACTION_FULLSCREEN as we have _NET_WM_STATE_FULLSCREEN
6309 * fvwm/move_resize.c (unmaximize_fvwm_window):
6312 * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6313 * fvwm/decorations.c (SelectDecor):
6314 * fvwm/windowshade.c (CMD_WindowShade):
6315 Removed the decor for EWMH fullscreen windows, forbid shading and
6316 allows Resize and MoveResize without unsetting the fullscreen/maximized
6319 * fvwm/move_resize.c (CMD_ResizeMoveMaximize):
6320 (CMD_ResizeMaximize):
6321 Fixed ewmh state which was not set after these cmds
6323 2003-08-09 olicha <olivier.chapuis@free.fr>
6328 2003-08-08 olicha <olivier.chapuis@free.fr>
6330 * fvwm/borders.c (border_draw_vector_to_pixmap):
6331 Fixed inversion of fg and bg in vector buttons
6333 * fvwm/style.c (__simplify_style_list):
6336 * libs/System.c (fvwm_mkstemp):
6339 2003-08-07 olicha <olivier.chapuis@free.fr>
6342 * acinclude.m4 (AM_SAFETY_CHECK_MKSTEMP):
6344 * libs/System.c (fvwm_mkstemp):
6346 Added fvwm_mkstemp for replacing tempnam. configure check if mkstemp
6347 exists and work correctly, if not a replacement function is used
6348 (written by Michael Han in 2001-02 and inspired by the glibc mkstemp
6351 * libs/fsm.c (unique_filename):
6352 (SetAuthentication):
6353 * fvwm/session.c (getUniqueStateFilename):
6354 Replaced tempnam by fvwm_mkstemp
6356 2003-08-07 olicha <olivier.chapuis@free.fr>
6359 * libs/FSMlib.h (new file):
6360 * fvwm/session.c (*):
6362 fvwmize SMlib and ICElib
6364 * fvwm/session.c (matchWin):
6365 Fixed window matching for windows with no SM_CLIENT_ID and a
6368 * libs/fsm.c (new file):
6369 * libs/fsm.h (new file):
6370 * fvwm/ConfigFvwmDefaults
6371 A set of functions for implementing a dummy session manager
6374 GNOME 1 hints and EWHM support is not a configure time option
6377 2003-08-06 Robert Wittek <r.wittek@gmx.net>
6379 * fvwm/add_window.c (AddWindow):
6380 fixed stickyness across desks over a restart
6382 2003-08-06 olicha <olivier.chapuis@free.fr>
6384 * fvwm/ewmh.c (EWMH_WindowInit):
6385 (EWMH_SetFrameStrut):
6386 Fixed position of kde tray windows in kicker
6388 2003-07-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6390 * fvwm/module_interface.c (FlushMessageQueue):
6391 retry writing pipe if write returns EINTR
6393 2003-07-28 olicha <olivier.chapuis@free.fr>
6395 * fvwm/events.c (events_handle_configure_request):
6396 (HandleConfigureRequest):
6397 (__handle_configure_request):
6398 (__handle_cr_on_client):
6399 * fvwm/ewmh.c (ewmh_atom_client_win):
6400 * fvwm/ewmh_intern.h:
6401 * fvwm/ewmh_events.c (ewmh_MoveResizeWindow):
6402 (EWMH_ProcessClientMessage):
6403 Implemented _NET_MOVERESIZE_WINDOW
6405 * fvwm/fvwm.c (main):
6408 2003-07-25 olicha <olivier.chapuis@free.fr>
6410 * fvwm/ewmh.c (ewmh_HandleWindowType):
6411 Fixed handling of the _NET_WINDOW_TYPE prop when there are more
6412 that one type and we do not support the first one.
6414 * fvwm/expand.c (expand_vars_extended):
6415 Fixed conflict between extended variables name (desk.name and
6418 * fvwm/session.c (callback_save_yourself):
6419 Respect the SmSaveGlobal save type. This should fix some session
6420 locking in the sm protocol
6422 * fvwm/session.c (setSmProperties):
6424 Set some sm properties when fvwm start for fixing a problem with
6425 the restart style hint after a restart.
6427 * fvwm/fvwm.c (get_display_name):
6430 * fvwm/session.c (setSmProperties):
6432 Added a possible positive or null arg to --single-screen which
6433 forces fvwm to start on the "current" display and the given
6434 screen. Use this to fix fvwm starting under a session manager:
6435 specify only the screen and not the display.screen for the
6438 * fvwm/fvwm.c (main):
6439 Fixed possible memory corruption if a display has more than
6442 * fvwm/session.c (*):
6445 2003-07-24 Mikhael Goikhman <migo@homemail.com>
6448 fixed xft/fontconfig detection with pkg-config
6451 corrections in some long option names
6453 2003-07-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6455 * fvwm/add_window.c (setup_style_and_decor):
6456 * fvwm/geometry.c (set_window_border_size):
6457 * fvwm/fvwm.h (FvwmWindow):
6458 * fvwm/events.c (HandleShapeNotify):
6459 * fvwm/frame.c (frame_free_move_resize_args):
6460 (frame_setup_shape):
6461 (frame_reshape_border):
6462 fixed resizing of window borders if a window shape was added or deleted
6463 after the initial window setup
6465 * fvwm/update.c (apply_window_updates):
6468 * fvwm/events.c (__cr_detect_icccm_move):
6469 disable motion method detection for shaped windows
6471 2003-07-21 olicha <olivier.chapuis@free.fr>
6473 * fvwm/add_window.c (setup_window_structure):
6474 * fvwm/session.c (MatchWinToSM):
6475 Preserve is_name_changed window_flags within restart, session loading
6478 2003-07-20 olicha <olivier.chapuis@free.fr>
6480 * fvwm/ewmh.c (EWMH_Init):
6481 fixed _NET_WM_NAME for our ewmh WM_CHECK window
6483 * fvwm/fvwm.c (InternUsefulAtoms):
6485 * fvwm/session.c (GetWindowRole):
6486 Some applications use WINDOW_ROLE and not WM_WINDOW_ROLE
6488 * fvwm/session.c (GetClientID):
6489 Better determination of the CLIENT_LEADER
6491 * fvwm/session.c (setSmProperties):
6492 Set the CloneCommand for gnome-session editor (the sm spec says this
6493 properties is required). Removed the commented XSM ifdef.
6495 * fvwm/session.c (matchWin):
6497 Consider client only if it has a client id or a wm command.
6498 Removed the "two entries" session previous commit
6500 2003-07-16 olicha <olivier.chapuis@free.fr>
6502 * fvwm/session.c (MatchWinToSM):
6503 Fixed restoring session state, if two window session entries have the
6504 same identifier ignore these entries
6506 2003-07-16 olicha <olivier.chapuis@free.fr>
6509 * fvwm/style.h (SID_GET_NAME):
6511 (SID_GET_WINDOW_ID):
6512 (SID_SET_WINDOW_ID):
6515 (SID_SET_HAS_WINDOW_ID):
6516 (SID_GET_HAS_WINDOW_ID):
6522 (SSET_ID_HAS_WINDOW_ID):
6523 (SGET_ID_HAS_WINDOW_ID):
6524 * fvwm/style.c (style_ids_are_equals):
6525 (style_id_equals_id):
6526 (styles_have_same_id):
6527 (fw_match_style_id):
6528 (one_fw_can_match_both_ids):
6529 (remove_all_of_style_from_list):
6530 (__simplify_style_list):
6531 (style_parse_one_style_option):
6533 (style_destroy_style):
6539 (CMD_DestroyWindowStyle):
6540 * fvwm/fvwm.h (style_id_t):
6542 * fvwm/functable.c (func_table):
6543 * fvwm/add_window.c (destroy_window):
6546 New WindowStyle and DestroyWindowStyle command for setting styles
6549 2003-07-14 Marcus Lundblad <ml@update.uu.se>
6551 * libs/Flocale.c (FlocaleDrawString):
6552 * libs/FBidi.c (FBidiConvert):
6553 fixed drawing of combining characters in the case where a string
6554 consists of only combining characters
6556 2003-07-13 Marcus Lundblad <ml@update.uu.se>
6558 * libs/CombineChars.c (CombineChars):
6559 bugfix: array mapping visual to logical position was allocated
6560 to small (factor 2) in decoposing code
6562 2003-07-11 Marcus Lundblad <ml@update.uu.se>
6564 * libs/Flocale.c (FlocaleEncodeWinString):
6567 * libs/Flocale.c (FlocaleDrawString):
6568 (FlocaleRotatedDrawString):
6569 removed some code duplication
6571 2003-07-09 Marcus Lundblad <ml@update.uu.se>
6573 * libs/CombineChars.c (combclass_table):
6575 fixed supporting drawing marks superimposed that are in a combining
6578 2003-07-09 Marcus Lundblad <ml@update.uu.se>
6580 * libs/Flocale.c (FlocaleRotateDrawString):
6582 fixed core dump when composing characters can't be converted to
6585 2003-07-09 Marcus Lundblad <ml@update.uu.se>
6590 2003-07-09 Marcus Lundblad <ml@update.uu.se>
6595 2003-07-09 Marcus Lundblad <ml@update.uu.se>
6598 updated with reagrds to combing characters
6600 2003-07-09 Marcus Lundblad <ml@update.uu.se>
6605 2003-07-09 Marcus Lundblad <ml@update.uu.se>
6607 * libs/Flocale.c (FlocaleEncodeString):
6608 (FlocaleEncodeWinString):
6609 (FlocaleRotateDrawString):
6610 (FlocaleDrawString):
6611 (FlocaleDrawUnderline):
6612 fixed rendering combining characters using Unicode font in a
6615 2003-07-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6618 renamed MoveWindowByProgramMethod to MoveByProgramMethod
6620 2003-07-08 Marcus Lundblad <ml@update.uu.se>
6623 fixed FBidi.h macro to work with no FriBIDI
6625 2003-07-08 Marcus Lundblad <ml@update.uu.se>
6627 * libs/CombineChars.h (CombineChars):
6628 * libs/CombineChars.c (CombineChars):
6629 * libs/FBidi.h (FBidiConvert):
6630 * libs/FBidi.c (FBidiConvert):
6631 * libs/Flocale.c (FlocaleEncodeString):
6632 (FlocaleEncodeWinString):
6633 (FlocaleDrawUnderline):
6635 fixed drawing of underlines on characters to work in with BIDI
6636 and combining characters
6638 2003-07-08 Mikhael Goikhman <migo@homemail.com>
6641 closed D.1 with "no consensus" resolution
6643 2003-07-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6646 documented tear off menus
6648 * fvwm/placement.c (PlaceWindow):
6649 StartsOnPage + SkipMapping overrides PPosition
6651 2003-07-07 Mikhael Goikhman <migo@homemail.com>
6654 solved a problem with CMD_Dummy and exact command spelling
6656 * libs/CombineChars.c:
6657 * libs/CombineChars.h:
6659 minor reformattings (use TABs not 8 spaces and a space after keywords
6660 like for, if or while)
6662 2003-07-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6664 * fvwm/update.c (apply_window_updates):
6666 * fvwm/add_window.c (setup_style_and_decor):
6668 * fvwm/style.c (style_parse_one_style_option):
6669 (check_window_style_change):
6670 new style MoveWindowByProgramMethod
6672 * libs/PictureImageLoader.c (PImageLoadXpm):
6673 use RETSIGTYPE and SIGNAL_RETURN for all signal handlers
6675 * fvwm/ewmh_events.c (ewmh_WMStateFullScreen):
6676 implemented _NET_WM_STATE_FULLSCREEN handling
6678 * fvwm/move_resize.c (GetOnePositionArgument):
6679 fixed parsing of "+-x +-y" Move arguments
6681 use get_page_offset_check_visible
6683 * fvwm/geometry.c (get_page_offset_check_visible):
6684 new convenience function
6686 * fvwm/events.c (__handle_cr_on_client):
6687 fixed handling of gravities other than NW or Static
6688 (__cr_detect_icccm_move):
6691 2003-07-06 Marcus Lundblad <ml@update.uu.se>
6697 * libs/CombineChars.c:
6698 * libs/CombineChars.h:
6699 * libs/Flocale.c (FlocaleEncodeString):
6703 Removed "F" prefix on FBidiJoin.c, FBidiJoin.h, FCombineChars.c and
6706 2003-07-06 olicha <olivier.chapuis@free.fr>
6708 * libs/FRender.c (FRenderRender):
6711 2003-07-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6713 * fvwm/ewmh.c (ewmh_check_wm_pid):
6715 detect whether a window has _NET_WM_PID set; use that to detect ICCCM
6716 compliant ConfigureNotify handling
6718 2003-07-05 Marcus Lundblad <ml@update.uu.se>
6720 * libs/Flocale.c (FlocaleDrawUnderline):
6721 Commented out some non-working new code
6723 2003-07-05 Marcus Lundblad <ml@update.uu.se>
6725 * libs/Flocale.c (FlocaleDrawString):
6726 fixed drawing superimposed characters with a fontset
6728 2003-07-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6730 * fvwm/events.c (__cr_detect_icccm_move):
6731 (__handle_cr_on_client):
6732 (__cr_get_grav_position):
6733 (__cr_get_static_position):
6734 * fvwm/window_flags.h:
6736 try to autodetect whether application uses the icccm way of moving
6737 windows of the traditional way always using static gravity
6740 moved SIGNAL_RETURN macro definition to acconfig.h
6742 * fvwm/module_interface.c (DeadPipe):
6743 * fvwm/fvwm.c (SigDone):
6746 use SIGNAL_RETURN macro
6748 * fvwm/events.c (__handle_cr_on_client):
6749 (__merge_cr_moveresize):
6750 (__cr_detect_icccm_move):
6752 * fvwm/events.c (__handle_cr_on_unmanaged):
6753 (__handle_cr_on_icon):
6754 (__handle_cr_on_shaped):
6755 (__handle_cr_restack):
6756 (__handle_cr_on_client):
6757 (HandleConfigureRequest):
6758 split the ConfigureRequest code into multiple functions
6760 * fvwm/update.c (apply_window_updates):
6761 fixed drawing of window decorations when "Style * Neverfocus" is used
6763 * fvwm/events.c (HandleKeyPress):
6764 fixed a bug with key binding contexts
6766 * fvwm/functions.c (__execute_function):
6767 * fvwm/expand.c (expand_vars):
6768 (expand_vars_extended):
6769 new extended variable $[func.context]
6773 moved some code to the new files
6784 fixed a problem with uninitialised global variable
6786 2003-07-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6788 * libs/Bindings.c (key_modifiers):
6789 moved to new file wcontext.c
6791 * libs/gravity.c (gravity_parse_dir_argument):
6792 added aliases for compass directions:
6803 2003-07-02 Marcus Lundblad <ml@update.uu.se>
6806 * libs/Flocale.c (FlocaleDrawString):
6807 (FlocaleRotateDrawString):
6808 Fixes to work without Fribidi
6810 2003-07-01 Marcus Lundblad <ml@update.uu.se>
6815 2003-07-01 Marcus Lundblad <ml@update.uu.se>
6817 * libs/FbidiJoin.c (get_shaped_combined_char):
6819 Removed unused (get_shaped_combined_char) and commented out code
6820 Combining ligatures done in FCombineChars
6822 2003-07-01 Marcus Lundblad <ml@update.uu.se>
6824 * libs/Flocale.c (FlocaleDrawString):
6825 (FlocaleRotateDrawString):
6828 * libs/FBidi.c (FBidiConvert):
6830 * libs/FCombineChars.h:
6831 * libs/FCombineChars.c (FCombineChars):
6832 Added support for drawing superimposed combining characters
6834 2003-07-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6837 * fvwm/functable.c (func_table):
6838 * fvwm/functions.c (CMD_TearMenuOff):
6843 merged all dummy commands into one: CMD_Dummy
6845 2003-07-01 olicha <olivier.chapuis@free.fr>
6847 * fvwm/menus.c (DestroyMenu):
6851 2003-07-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6853 * fvwm/menustyle.c (menustyle_copy):
6857 2003-06-30 Marcus Lundblad <ml@update.uu.se>
6862 2003-06-30 olicha <olivier.chapuis@free.fr>
6864 * fvwm/menus.c (do_menu):
6866 (do_menu_close_tear_off_menu):
6867 (menu_close_tear_off_menu):
6868 Allowed to destroy tear off menu!
6870 * fvwm/menus.c (menu_tear_off):
6871 (menu_close_tear_off_menu):
6872 (do_menu_close_tear_off_menu):
6873 (clone_menu_root_static):
6879 Fixed client leaks (only create new client for menu if it is a tear off
6880 menu). Created a dedicated menu style for each tear off menu.
6882 * fvwm/menustyle.c (CMD_CopyMenuStyle):
6885 Split CMD_CopyMenuStyle into CMD_CopyMenuStyle and copy_menu_style
6887 2003-06-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6889 * fvwm/virtual.c (do_move_window_to_desk):
6891 fixed "Visible" condition on non current desks
6893 2003-06-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
6897 shortened some comments
6898 removed GPL from .h files
6899 added GPL to all .c files
6900 include config.h in all .c files
6901 added "/* -*-c-*- */" where missing
6902 some reformatting and reindenting
6904 * fvwm/module_interface.c:
6905 * fvwm/module_interface.h:
6913 * fvwm/windowshade.c:
6915 * fvwm/conditional.c:
6927 * fvwm/add_window.c:
6931 * fvwm/eventhandler.h:
6933 * fvwm/add_window.h:
6939 renamed types func_type, repeat_t, initial_window_options_t,
6940 frame_title_layout_type, rotation_t, direction_t, fvwm_msg_t,
6941 last_added_item_type, common_flags_type, multi_direction_type,
6942 msg_masks_type to ..._t
6944 * fvwm/functions.c (__execute_function):
6945 (execute_complex_function):
6946 * fvwm/condrc.c (condrc_init):
6947 new function in new file to encapsulate all cond_rc_t handling
6950 * fvwm/fvwm.h (cond_rc_t):
6952 moved typed to new file
6956 * fvwm/functable.c (func_table):
6957 * fvwm/functions.c (__run_complex_function_items):
6958 (__execute_function):
6960 * fvwm/conditional.c (CMD_Break):
6961 (__rc_matches_rcstring_consume):
6962 Break takes the number of function levels to break out of as an
6965 * fvwm/expand.c (expand_vars_extended):
6966 * fvwm/conditional.c (circulate_cmd):
6969 (__rc_matches_rcstring_consume):
6978 (__run_complex_function_items):
6979 (execute_complex_function):
6983 * fvwm/conditional.c:
6984 renamed fvwm_cond_func_rc by cond_rc_t
6985 made a type a struct
6986 added a member to indicate the number of function levels to break out
6989 * fvwm/functable.c (func_table):
6990 * fvwm/conditional.c (CMD_TestRc):
6991 replaced conditional commands:
6993 CondCase -> KeepRc TestRc
6995 (__rc_matches_rcstring_consume):
6998 * fvwm/conditional.c (CMD_CondCase):
6999 fixed the CondCase command
7001 2003-06-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7004 new configure option --deisable-gtk to disable detection of gtk library
7007 cleaned up documentation of conditional commands
7008 general man page cleanup
7010 2003-06-17 Dan Espen <dane@mk.telcordia.com>
7012 * fvwm/builtins.c (ReadDecorFace): Off by one patch from
7015 2003-06-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7018 cleaned up of CirculateHit... conditions
7020 2003-06-15 olicha <olivier.chapuis@free.fr>
7022 * fvwm/style.c (__simplify_style_list):
7023 Fixed is_merged_allowed: rest it to True when cur change
7024 Added "upward" simplification
7026 2003-06-14 olicha <olivier.chapuis@free.fr>
7028 * fvwm/style.c (__simplify_style_list):
7031 Fixed blockand which always returned True. Added blocksintersect which
7032 returns the same value as blockand but faster.
7034 2003-06-13 olicha <olivier.chapuis@free.fr>
7038 Fixed fontconfig and xft2 for version without *-config binnary. Used
7039 pkg-config for this: new macro AM_CHECK_PKG_CONFIG. Really reject
7040 fontconfig and xft2 if the version is < the required version
7041 (even if --disable-*test).
7043 2003-06-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7046 define M_PI and M_PI_2 if they are not defined by math.h
7048 2003-06-10 Mikhael Goikhman <migo@homemail.com>
7050 * libs/Colorset.c (LoadColorset):
7051 added a note to update Colorsets.pm too when the format is changed
7053 2003-06-09 Mikhael Goikhman <migo@homemail.com>
7055 * WindowStyle_proposal.txt:
7056 s/WindowId/ThisWindow/ and other minor changes
7058 2003-06-06 olicha <olivier.chapuis@free.fr>
7060 * libs/PictureImageLoader.c (PImageLoadPng):
7061 Fixed loading of png images if the caller want no alpha
7063 2003-06-04 olicha <olivier.chapuis@free.fr>
7065 * libs/Flocale.c (FlocaleEncodeString):
7068 2003-06-03 Mikhael Goikhman <migo@homemail.com>
7071 only FCombineChars.c was distributed not FCombineChars.h
7073 2003-06-03 Marcus Lundblad <ml@update.uu.se>
7075 * libs/FCombineChars.c (convert_to_utf8)
7076 fixed a bug when converting back to UTF-8 and a bug giving
7077 garbage at end of string in some cases
7079 * libs/Flocale.c (FlocaleEncodeString)
7080 fixed problem regarding combining-characters when BIDI is used
7082 2003-05-31 Marcus Lundblad <ml@update.uu.se>
7085 * libs/Flocale.c (FlocaleEncodeString):
7086 * libs/FCombineChars.c:
7087 * libs/FCombineChars.h:
7088 implemeted support for combining characters
7090 2003-05-31 Mikhael Goikhman <migo@homemail.com>
7093 set the version 2.5.8
7095 2003-05-30 Mikhael Goikhman <migo@homemail.com>
7099 SetEnv with only one parameter is ignored now
7101 2003-05-30 Dan Espen <dane@mk.telcordia.com>
7103 * NEWS: Add 2.4.16 news.
7105 2003-05-29 Mikhael Goikhman <migo@homemail.com>
7107 * fvwm/functions.c (expand_extended_var):
7109 fixed expanding variables that are empty, for example $[w.resource]
7110 or $[gt.a] or $[version.info] or $[EMPTY_STRING]
7115 2003-05-29 olicha <olivier.chapuis@free.fr>
7117 * fvwm/ewmh.c (ewmh_atom_wm_state):
7118 Do not claim that we support _NET_WM_STATE_FULLSCREEN
7120 2003-05-28 olicha <olivier.chapuis@free.fr>
7125 2003-05-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7127 * fvwm/focus.c (__update_windowlist):
7128 don't fiddle with the window list for windows that are going to be
7131 * fvwm/add_window.c (delete_client_context):
7132 (destroy_auxiliary_windows):
7134 fixed empty frame windows when X reused the window id for a new window
7135 while the old one was scheduled to be destroyed
7137 2003-05-26 olicha <olivier.chapuis@free.fr>
7139 * fvwm/icons.c (GetIconBitmap):
7140 (set_icon_pixmap_background):
7142 (DrawIconPixmapWindow):
7144 Fixed loading of application supplied pixmap on 8/24 depth screen
7146 2003-05-25 Dan Espen <dane@mk.telcordia.com>
7148 * fvwm/builtins.c (CMD_Exec): Another attempt to fix problem with
7151 * fvwm/decorations.c: Sync up motif hints structure to aix,hp,
7154 2003-05-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7156 * fvwm/misc.c (GrabEm):
7157 do not confine the pointer to the root window when grabbed; this can
7158 cause the pointer to be warped to another screen
7159 * fvwm/menus.c (get_menu_options):
7160 fixed placement of menus on Xinerama screens
7161 * libs/FScreen.c (FScreenGetResistanceRect):
7162 fixed function to do something useful
7163 * libs/Flocale.c (FlocaleDrawString):
7164 support font shadowing without colorsets
7165 * libs/ColorUtils.c:
7167 * fvwm/menuitem.c (menuitem_paint):
7168 do not use colorsets in menus if they are not defined
7169 * fvwm/menustyle.c (menustyle_parse_style):
7170 fixed initialisation of MenuStyle colorsets when mwm/fvwm menu style is
7173 2003-05-23 olicha <olivier.chapuis@free.fr>
7175 * fvwm/bindings.c (ParseBinding):
7176 (bind_get_bound_button_contexts):
7177 * libs/Bindings.c (GrabWindowButton):
7178 Fixed window button grabbing
7180 2003-05-22 olicha <olivier.chapuis@free.fr>
7182 * fvwm/colorset.c (parse_colorset):
7185 * fvwm/borders.c (border_fill_pixmap_background):
7186 Fixed problem with depth 1 pixmap
7188 * fvwm/conditional.c (CMD_On):
7191 * fvwm/conditional.c (CreateConditionMask):
7192 Fixed memory leaks for layer and state
7194 2003-05-22 Mikhael Goikhman <migo@homemail.com>
7197 added perllib/FVWM/Tracker/Makefile
7199 2003-05-22 olicha <olivier.chapuis@free.fr>
7203 * fvwm/style.c (print_styles):
7204 * fvwm/builtins.c (CMD_PrintInfo):
7205 New style subject to PrintInfo
7207 2003-05-20 olicha <olivier.chapuis@free.fr>
7209 * libs/Flocale.c (FlocaleGetFontOrFontSet):
7210 Allowed empty xft font name
7213 * libs/flist.c (new file):
7214 * libs/flist.h (new file):
7215 Added a flist structure and some basic function for handling such
7218 * libs/FGettext.c (*):
7219 Use the new flist struct and functions interface
7221 * fvwm/screen.h (ScreenInfo):
7222 * fvwm/update.c (destroy_scheduled_windows):
7223 * fvwm/add_window.c (destroy_window):
7224 Added a list for the windows which are scheduled for destroy
7225 Remove a fw at once from the fw list when we destroy_window
7227 2003-05-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7229 * fvwm/style.c (CMD_DestroyStyle):
7230 do not update windows if no style was deleted
7231 (check_window_style_change):
7232 fixed update of window styles w/ DestroyStyle
7234 2003-05-18 olicha <olivier.chapuis@free.fr>
7236 * fvwm/conditional.c (CMD_On):
7237 Added x,r,w,f and i file condition to the On command
7239 * fvwm/add_window.c (destroy_window):
7240 Fixed a memory leak (a FvwmWindow !) when a window is not destroyed
7241 but scheduled for destroy. Not sure that the fix is good.
7243 * fvwm/functions.c (__execute_function):
7245 Limited the depth of function to MAX_FUNCTION_DEPTH (=512).
7246 This fixes some cores dumps with "recursives" functions
7248 * fvwm/borders.c (border_create_root_transparent_pixmap):
7249 (border_draw_decor_to_pixmap):
7250 Fixed a core dump with a root transparent rotated title
7251 Fixed X errors 56 with RootTransparent titlebar and no E pixmap
7253 * libs/FGettext.c (fgettext_add_one_path):
7255 (FGettextSetLocalePath):
7256 Fixed memory leak and chainning
7258 * fvwm/builtins.c (CMD_PrintInfo):
7259 Fixed a parsing leak
7261 * fvwm/conditional.c (Circulate):
7262 Fixed a mask memory leaks
7265 * libs/Flocale.c (FlocaleGetFont):
7266 (FlocaleGetFontSet):
7267 (FlocaleGetFftFont):
7268 Fixed a core dump when a 0 font is given with an encoding hints.
7269 Added a default FFT font
7271 * fvwm/builtins.c (CMD_DefaultFont):
7272 Fixed a core dump when the default font change and a redraw
7273 (icon or window) is proceeded before flush_window_updates is called
7275 * fvwm/menustyle.c (CMD_CopyMenuStyle):
7276 Fixed gradients copy
7278 * fvwm/menustyle.c (menustyle_parse_style):
7279 Fixed UMR's related to colorset
7281 * fvwm/builtins.c (ReadDecorFace):
7282 Removed inconsistent #if 0 code and comments about leak and MiniIcon
7286 * fvwm/menustyle.c (menustyle_free):
7287 Fixed a fore stipple gc leak
7289 * fvwm/windowlist.c (CMD_WindowList):
7290 Fixed a sor_keyname memory leak
7292 * fvwm/fvwm.c (ResetAllButtons):
7293 Fixed the default buttons memory leak
7295 2003-05-08 olicha <olivier.chapuis@free.fr>
7297 * fvwm/windowlist.c (CMD_WindowList):
7298 Fixed a memory leak if MaxLabelWidth is used
7300 2003-05-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7302 * fvwm/functions.c (__context_has_window):
7303 (__execute_function):
7305 fixed excution of functions requiring a window without a window when
7306 called with "silent" from a complex function
7308 2003-05-07 olicha <olivier.chapuis@free.fr>
7310 * libs/System.c (searchPath):
7313 2003-05-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7315 * fvwm/move_resize.c (__move_loop):
7319 2003-05-03 olicha <olivier.chapuis@free.fr>
7324 2003-05-01 Bob Woodside <dumbledore@woodsway.com>
7327 Minor typo corrections.
7329 2003-04-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7331 * fvwm/move_resize.c (__move_loop):
7337 2003-04-28 olicha <olivier.chapuis@free.fr>
7339 * fvwm/ewmh.c (ewmh_atom_wm_state):
7341 * fvwm/ewmh_events.c (ewmh_WMStateStaysOnTop):
7342 (ewmh_WMStateStaysOnBottom):
7343 Fixed EwmhUseStackingHints and EwmhIgnoreStackingHints style update
7345 2003-04-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7347 * fvwm/module_interface.c (do_execute_module):
7348 * fvwm/fvwm.c (main):
7349 * libs/envvar.c (flib_putenv):
7350 * fvwm/builtins.c (add_to_env_list):
7353 fixed putenv memory leaks
7355 * libs/envvar.c (strIns):
7359 replacement for putenv without memory leaks
7364 * fvwm/fvwm.c (StartupStuff):
7366 * fvwm/add_window.c (free_window_names):
7368 * fvwm/events.c (HandlePropertyNotify):
7370 * fvwm/menus.c (do_menu):
7372 (__mloop_exit_selected):
7374 * fvwm/menucmd.c (menu_func):
7377 * fvwm/builtins.c (CMD_Destroy):
7379 call destroy_window right after XKillClient; do not wait for the window
7382 * fvwm/menucmd.c (menu_func):
7383 * fvwm/windowlist.c (CMD_WindowList):
7386 2003-04-26 Mikhael Goikhman <migo@homemail.com>
7389 several updates (FvwmGtk, gettext)
7391 2003-04-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7393 * fvwm/menucmd.c (menu_func):
7394 * fvwm/windowlist.c (CMD_WindowList):
7396 * fvwm/menus.c (is_double_click):
7399 (pop_menu_down_and_repaint_parent):
7400 (__mloop_get_event_timeout_loop):
7401 (__mloop_get_event):
7402 (__mloop_handle_event):
7403 (__mloop_select_item):
7404 (__mloop_make_popup):
7405 (__mloop_get_mi_actions):
7408 (__mloop_handle_action_with_mi):
7409 (__mloop_handle_action_without_mi):
7411 (menu_enter_tear_off_menu):
7412 (menu_close_tear_off_menu):
7414 replaced the pfw and pcontext members of the MenuParameters structure
7415 with an execution context pointer
7416 (_menu_execute_function):
7417 wrapper function to simplyfy command execution from within menus
7419 fixed warping pointer to first menu item when invoked with the mouse
7421 * fvwm/execcontext.c:
7424 2003-04-26 Mikhael Goikhman <migo@homemail.com>
7431 replaced "Mouse 0 R N Menu MenuFvwmRoot" binding with "Mouse 1 R A"
7433 2003-04-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7435 * fvwm/menus.c (do_menu):
7436 the NoWarp position hint option works with root menus too
7438 * fvwm/ConfigFvwmDefaults:
7439 removed GrabFocusOff and GrabFocusTransient since they nullify the
7440 default with the plain focus policies
7442 2003-04-24 olicha <olivier.chapuis@free.fr>
7444 * fvwm/ewmh_events.c (ewmh_WMStateStaysOnBottom):
7445 Fixed a miss print in my previous commit
7447 * fvwm/ewmh_events.c (ewmh_WMStateStaysOnBottom):
7449 (ewmh_WMStateStaysOnBottom):
7450 * fvwm/ewmh.c (ewmh_AllowsMinimize):
7451 * fvwm/ewmh_intern.h:
7452 Added comment on the implementation at the top of ewmh.c.
7453 Fixed _NET_WM_MOVERESIZE. Added _NET_WM_ACTION_MINIMIZE in
7454 _NET_WM_ALLOWED_ACTIONS (almost nothing todo). Added
7455 _NET_WM_STATE_ABOVE (just an alias of _NET_WM_STATE_STAYS_ON_TOP)
7456 and _NET_WM_STATE_BELOW.
7459 Added David Fries. Updated my entries.
7464 2003-04-23 olicha <olivier.chapuis@free.fr>
7466 * fvwm/module_interface.c (CMD_KillModule):
7467 Fixed a leak when we have an alias
7469 * libs/Picture.c (PFreeFvwmPictureData):
7471 New interface function for just freeing the allocated data (not
7474 2003-04-22 olicha <olivier.chapuis@free.fr>
7476 * fvwm/colorset.c (get_root_pixmap):
7477 Fixed a minor memory leak
7479 * fvwm/functions.c (execute_complex_function):
7480 Fixed uninitialized d.type
7482 * libs/Ficonv.c (FiconvSetupConversion):
7483 (FiconvUtf8ToCharset):
7484 (FiconvCharsetToUtf8):
7487 * fvwm/ewmh_names.c (EWMH_SetVisibleName):
7490 Fixed a core dump and safety check related to not loaded font
7492 2003-04-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7497 2003-04-16 olicha <olivier.chapuis@free.fr>
7499 * fvwm/ewmh_events.c (ewmh_CloseWindow):
7502 (ewmh_WMStateHidden):
7503 Check if functions are allowed
7505 * fvwm/ewmh.c (ewmh_HandleDesktop):
7507 Set Desktop and Dock uniconifiable and unmaximazable
7509 * fvwm/menuitem.c (menuitem_paint):
7511 Fixed greyed action with EWMH desktop
7513 2003-04-16 Mikhael Goikhman <migo@homemail.com>
7516 documented FvwmEvent behaviour of executing window related event
7517 handlers within a window context
7520 updated WindowId entry
7522 2003-04-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7524 * fvwm/schedule.c (deschedule):
7527 * fvwm/module_interface.c (DeleteMessageQueueBuff):
7528 (ExecuteCommandQueue):
7529 * libs/queue.c (fqueue_init):
7530 (fqueue_remove_or_operate_from_front):
7531 (fqueue_remove_or_operate_from_end):
7532 (fqueue_remove_or_operate_all):
7534 (fqueue_unlock_queue):
7535 (fqueue_lock_queue):
7536 (fqueue_add_at_front):
7537 (fqueue_add_inside):
7541 * libs/queue.c (fqueue_remove_or_operate_all):
7542 (fqueue_remove_or_operate_from_end):
7543 (fqueue_remove_or_operate_from_front):
7544 * fvwm/module_interface.c (DeleteMessageQueueBuff):
7545 (ExecuteCommandQueue):
7546 * fvwm/schedule.c (deschedule):
7547 (check_deschedule_obj_func):
7548 (deschedule_obj_func):
7550 (check_execute_obj_func):
7555 2003-04-15 Mikhael Goikhman <migo@homemail.com>
7557 * fvwm/ConfigFvwmDefaults:
7559 * fvwm/windowlist.c:
7560 * sample.fvwmrc/system.fvwm2rc-sample-95:
7562 WindowListFunc is executed now within a window context,
7563 so "WindowId $0" is not needed anymore in its definition
7565 2003-04-14 olicha <olivier.chapuis@free.fr>
7569 Documented LocalePath and $[gt.str]. FvwmScript news.
7571 * fvwm/expand.c (expand_vars_extended):
7572 Fixed $[gt.str] expansion
7575 New gettext domain FvwmScript
7577 * libs/FGettext.c (FGettextCopy):
7579 New interface function which copies the string
7581 2003-04-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7583 * fvwm/conditional.c (CMD_Cond):
7584 allow to negate the condition code with '!' prefix
7586 * fvwm/schedule.c (CMD_Schedule):
7588 support hexadecimal ids
7590 * libs/Parse.c (GetIntegerArguments):
7591 (_get_suffixed_integer_arguments):
7592 (GetSuffixedIntegerArguments):
7593 (GetIntegerArgumentsAnyBase):
7594 new utitily function to allow hexadecimal integer arguments
7596 2003-04-10 olicha <olivier.chapuis@free.fr>
7598 * libs/Flocale.c (FlocaleGetFullNameOfFontStruct):
7599 (FlocaleGetCharsetOfFontStruct):
7600 (FlocaleGetCharsetFromName):
7601 (FlocaleFixNameForFontSet):
7602 (FlocaleGetFontSet):
7603 (FlocalePrintLocaleInfo):
7604 * libs/FlocaleCharset.h:
7605 * libs/FlocaleCharset.c (FlocaleCharsetIsCharsetXLocale):
7606 (FlocaleCharsetPrintXOMInfo):
7607 Load a FontSet only when this is reasonable. Finished PrintInfo locale 2
7609 2003-04-08 olicha <olivier.chapuis@free.fr>
7611 * libs/defaults.h (FLOCALE_MB_FALLBACK_FONT):
7612 fixed the default font name
7614 2003-04-07 Mikhael Goikhman <migo@homemail.com>
7616 * fvwm/events.c (HandlePropertyNotify):
7617 * fvwm/ewmh_names.c (EWMH_WMName, EWMH_WMIconName):
7618 completely ignore application requests to set exactly the same
7619 window name or icon name (xmms sets it every second),
7620 this avoids some redundant module messages and redraws
7622 2003-04-05 Mikhael Goikhman <migo@homemail.com>
7627 2003-04-04 olicha <olivier.chapuis@free.fr>
7630 Fixed a miss print in fribidi config check
7632 2003-04-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7634 * fvwm/focus.c (__restore_focus_after_unmap):
7635 iconified windows without an icon do not receive focus
7637 2003-03-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7639 * fvwm/virtual (CMD_GotoDeskAndPage):
7640 different "GotoDeskAndPage prev" fix that works with any viewports, not
7641 just multiples of the screen size
7643 2003-03-29 Mikhael Goikhman <migo@homemail.com>
7645 * fvwm/virtual (CMD_GotoDeskAndPage):
7646 fixed "GotoDeskAndPage prev" with desks larger than 2x2
7648 2003-03-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7653 * fvwm/menucmd.c (menu_func):
7654 fixed double key presses to choose default menu action
7656 * fvwm/focus.c (__update_windowlist):
7657 fixed order of window list with SloopyFocus when using the Focus
7660 2003-03-22 Mikhael Goikhman <migo@homemail.com>
7663 clarified some things, typo fixed
7665 2003-03-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7667 * libs/Colorset.c (CreateBackgroundPixmap):
7668 (GetWindowBackgroundPixmapSize):
7669 (get_aspect_dimensions):
7670 fixed size calculation of aspect pixmaps
7672 2003-03-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7674 * fvwm/icons.c (clear_icon):
7678 * fvwm/geometry.c (get_icon_geometry):
7679 (modify_icon_position):
7680 set a valid icon picture position if there is neither a picture nor a
7683 2003-03-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7687 reformatted to fit better on the web page
7689 2003-03-15 Mikhael Goikhman <migo@homemail.com>
7692 added items from "My TODO" message on 2003-01-02
7695 actually remove duplicate Iconify entry, use $[w.id] not $w, more fixes
7697 2003-03-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7700 removed debug output
7702 2003-03-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7704 * libs/FScreen.c (FScreenMangleScreenIntoUSPosHints):
7705 (FScreenFetchMangledScreenFromUSPosHints):
7706 two functions to allow USPosition hints from modules and StartsOnScreen
7707 work at the same time
7709 * fvwm/conditional.c (direction_cmd):
7710 Some fixes, reformatting and improvements.
7712 2003-03-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7714 * fvwm/icons.c (Iconify):
7715 initialise icon position to +0+0 if there is neiter a picture nor a
7718 * fvwm/functions.c (DeferExecution):
7724 * fvwm/update.c (apply_window_updates):
7725 fixed drawing of sticky icon titles when the stickyicon style is being
7728 2003-03-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7730 * fvwm/placement.c (CMD_PlaceAgain):
7731 * fvwm/add_window.c (setup_window_placement):
7732 * fvwm/virtual.c (MapDesk):
7733 update the GNOME hints desk when changing desks; fixes placeagain with
7735 some placeagain fixes
7737 * fvwm/fvwm.1.in (Example):
7738 removed duplicate Iconify section
7743 * fvwm/functable.c (func_table):
7744 * fvwm/functions.h (func_type):
7745 * fvwm/functions.c (__execute_function):
7746 (execute_complex_function):
7748 fixed a new and and old window selection bug
7750 2003-03-09 Dan Espen <dane@mk.telcordia.com>
7752 * todo-2.6 (todo): Close C.13 (861): cant reproduce, no problems
7753 detected with Purify.
7755 2003-03-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7757 * libs/Colorset.c (SetWindowBackgroundWithOffset):
7758 use None, not 0 for Window structures
7760 * fvwm/events.c (InitEventHandlerJumpTable):
7762 (__handle_key_event):
7763 * fvwm/bindings.c (ParseBinding):
7767 removed key release binding because they can not work reliably
7769 2003-03-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7771 * fvwm/functable.c (func_table):
7772 trigger on ButtonPress for many of the functions
7774 * fvwm/functions.c (__execute_function):
7775 (__execute_function):
7776 fixed conditional commands a la "Current" triggered on root window
7778 2003-03-01 Dan Espen <dane@mk.telcordia.com>
7780 * todo-2.6: Closed B.2, C.21.
7782 2003-02-28 olicha <olivier.chapuis@free.fr>
7785 * fvwm/events.c (HandleConfigureRequest):
7786 Added a workaround for application with broken max/min size hints
7787 vs a size configure request. This "fixes" floating java JToolBar.
7789 * fvwm/add_window.c (GetWindowSizeHints):
7790 Check that the max size hint is not broken relatively to the the base
7793 2003-02-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7797 released 2.5.6, set version to 2.5.7
7803 2003-02-26 Tony Finch <dot@dotat.at>
7805 * fvwm/borders.c (border_draw_one_border_part):
7806 Don't draw the handle relief marks when the border is flat.
7808 2003-02-27 Mikhael Goikhman <migo@homemail.com>
7811 s/fribdi_in_path/fribidi_in_path/
7814 spell checking and some reformatting
7816 2003-02-26 olicha <olivier.chapuis@free.fr>
7818 * fvwm/borders.c (border_setup_bar_pixmaps):
7819 Fixed a miss-print which can cause a core dump
7822 Added a 2.6 TODO file
7824 2003-02-25 Dan Espen <dane@mk.telcordia.com>
7826 * fvwm/focus.c (focus_grab_buttons): Fix compile problems Forte7,
7827 void functioin cannot return a value.
7829 2003-02-25 olicha <olivier.chapuis@free.fr>
7832 Fixed compilation warning if fribidi is in path
7834 2003-02-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7836 * fvwm/windowlist.c (CMD_WindowList):
7837 removed unused instruction
7839 2003-02-22 Dan Espen <dane@mk.telcordia.com>
7841 * configure.in: Remove nested function from -Werror check.
7842 Lets configure work without gcc.
7845 * fvwm/read.c (run_command_stream): Make Break work from PipeRead.
7847 2003-02-21 Dan Espen <dane@mk.telcordia.com>
7849 * fvwm/functions.c (__run_complex_function_items): Make Break start
7852 2003-02-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7854 * fvwm/move_resize.c (get_outline_rects):
7855 (draw_move_resize_grid):
7856 initial drawing and final undrawing of wire frame no longer toggles the
7857 pixel in the top left corner of the screen
7859 * fvwm/expand.c (expand_vars):
7860 disabled warnings about one letter variables
7862 2003-02-17 Dan Espen <dane@mk.telcordia.com>
7864 * README: Update to reflect release 2.5.x.
7865 * NEWS: Update news for FvwmPager drag fix.
7867 2003-02-15 olicha <olivier.chapuis@free.fr>
7872 2003-02-13 olicha <olivier.chapuis@free.fr>
7874 * fvwm/gnome.c (GNOME_SetClientList):
7875 Applied David Fries patch which fixes a possible crash with more
7877 (GNOME_SetClientList):
7878 malloc -> safemalloc
7880 2003-02-09 Dan Espen <dane@mk.telcordia.com>
7882 * fvwm/fvwm.1.in (Note): Update %space/%tab description in menu.
7883 Give the XorValue range.
7885 2003-02-08 Dan Espen <dane@mk.telcordia.com>
7887 * fvwm/fvwm.1.in: Fully document the emulate command.
7889 2003-02-06 olicha <olivier.chapuis@free.fr>
7891 * fvwm/borders.c (get_common_decorations):
7892 (border_get_border_background):
7894 2003-02-05 Dan Espen <dane@mk.telcordia.com>
7896 * fvwm/builtins.c (CMD_Exec): Use STDIN_FILENO instead of a zero.
7898 2003-02-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7901 * fvwm/menuitem.c (menuitem_get_size):
7902 * fvwm/menus.c (calculate_item_sizes):
7903 renamed "mips" to mipst
7905 * fvwm/menuitem.c (menuitem_get_item_size):
7906 * fvwm/menus.c (_calculate_item_sizes):
7907 backed out patch from 30-Jan-2003
7909 2003-01-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7912 * fvwm/menuitem.c (menuitem_get_item_size):
7913 * fvwm/menus.c (_calculate_item_sizes):
7914 functions renamed due to global name space collision with IRIX 6.5
7916 2003-01-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7919 added tests/hints/Makefile.am
7921 2003-01-24 Dan Espen <dane@mk.telcordia.com>
7923 * fvwm/fvwm.1.in: Fixed next->previous in Prev command.
7925 2003-01-20 Dan Espen <dane@mk.telcordia.com>
7927 * sample.fvwmrc/DecorWin95:
7928 * sample.fvwmrc/DecorMwm: Remove bad mouse binding, that I meant to
7929 Replace a long time ago.
7931 2003-01-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
7933 * fvwm/stack.c (new_layer):
7934 (collect_transients_recursive):
7938 * fvwm/events.c (HandleConfigureRequest):
7939 fixed placement of icons
7940 fixed size calculations of icons
7942 2003-01-18 Mikhael Goikhman <migo@homemail.com>
7945 fixed $[desk.name<n>] that was masked by $[desk.n],
7946 added $[desk.pagesx] and $[desk.pagesy]
7948 2003-01-16 Dan Espen <dane@mk.telcordia.com>
7950 * NEWS: Update news. Spelling fixes 2.5.x news.
7951 * fvwm/builtins.c (CMD_Exec): Close stdin so the exec'd process knows
7952 its not interactive.
7954 2003-01-12 Mikhael Goikhman <migo@homemail.com>
7957 added a short description together with the commands
7959 2003-01-12 Marcus Lundblad <ml@update.uu.se>
7962 Added conditionals Closable,Iconifiable,Maximizable,FixedSize and
7965 2003-01-11 Mikhael Goikhman <migo@homemail.com>
7969 deprecate all single letter variables, new variables are supported now
7970 $[w.id], $[w.name], $[w.iconname], $[w.class], $[w.resource],
7971 $[desk.n], $[version.num], $[version.info], $[version.line].
7973 2003-01-07 Marcus Lundblad <ml@update.uu.se>
7975 * fvwm/style.c (style_parse_one_style_option):
7977 Removed duplicate styles Unclosable,Unmaximizable,Uniconifiable and
7978 DisallowMaximizeFixedSize
7980 2003-01-06 Dan Espen <dane@mk.telcordia.com>
7982 * fvwm/fvwm.1.in: Lang check.
7984 2003-01-03 olicha <olivier.chapuis@free.fr>
7989 * fvwm/ewmh_intern.h:
7990 * fvwm/ewmh_names.c:
7991 * fvwm/ewmh_icons.c:
7992 * fvwm/ewmh_events.c:
7997 * fvwm/functable.c (func_table):
7998 * fvwm/fvwm.c (setVersionInfo):
8001 Removed GNOME and HAVE_EWMH ifdef
8004 Documented UseTitleDecorRotation
8006 2003-01-03 Mikhael Goikhman <migo@homemail.com>
8008 * fvwm/module_interface.c (MoveViewport):
8009 * fvwm/virtual.c (CMD_DesktopSize, CMD_Send_WindowList):
8010 M_NEW_PAGE now has 7 arguments
8012 2003-01-02 olicha <olivier.chapuis@free.fr>
8015 Documented the new icon style options
8019 * fvwm/icons.c (DrawIconTitleWindow):
8020 (DrawIconPixmapWindow):
8021 (setup_icon_title_size):
8022 * fvwm/style.c (style_parse_one_style_option):
8023 Fixed IconTitleRelief and IconBackgroundRelief arguments
8025 * fvwm/icons.c (GetIconPicture):
8026 (SetIconPixmapSize):
8027 Fixed IconSize style for non shaped depth > 1 pixmaps
8029 2003-01-02 Mikhael Goikhman <migo@homemail.com>
8033 * fvwm/conditional.c (CMD_On):
8036 new conditional command On for non-window related conditions
8038 * fvwm/execcontext.h:
8039 * fvwm/fvwm.c (Done, SetRCDefaults, StartupStuff):
8040 two new exec contexts for restarting
8042 2003-01-02 olicha <olivier.chapuis@free.fr>
8044 * fvwm/builtins.c (ReadMultiPixmapDecor):
8045 StretchedPixmap -> AdjustedPixmap
8048 Documented Colorset in BorderStyle, TitleStyle and ButonsStyle
8049 Documented the new MultiPixmap syntax
8051 2002-12-31 Mikhael Goikhman <migo@homemail.com>
8055 * fvwm/builtins.c (ReadTitleButton):
8057 new button state shortcuts AllActiveUp, AllActiveDown,
8058 AllInactiveUp, AllInactiveDown
8060 2002-12-31 olicha <olivier.chapuis@free.fr>
8062 * libs/PictureGraphics.c (PCopyArea):
8063 Fixed rendering of depth 1 pixmap with a mask
8065 * fvwm/update.c (apply_window_updates):
8066 Fixed icon bg cset update
8068 * fvwm/events.c (HandlePropertyNotify):
8069 * fvwm/geometry.c (move_icon_to_position):
8070 Fixed non shaped icons with a bg padding but without cs bg
8073 * fvwm/style.c (style_parse_icon_size_style):
8075 * fvwm/fvwm.h (window_style):
8076 * fvwm/add_window.c (setup_icon_size_limits):
8077 * fvwm/icons.c (SetIconPixmapSize):
8079 New option to IconSize style: Adjusted, Streched, Shrunk
8081 * fvwm/icons.c (SetIconPixmapSize):
8083 Always center the icon with IconSize if the icon has a background
8085 2002-12-30 Mikhael Goikhman <migo@homemail.com>
8088 FvwmWindowMenu renaming; compact long diagnostics into half of line
8091 documeted and corrected new features
8094 removed a "deprecated" tag from TitleStyle/ButtonStyle/BorderStyle
8095 since these are the only way currently to create themes
8100 2002-12-30 olicha <olivier.chapuis@free.fr>
8103 * fvwm/icons.c (setup_icon_title_size):
8104 (set_icon_pixmap_background):
8106 (DrawIconTitleWindow):
8107 (DrawIconPixmapWindow):
8111 * fvwm/events.c (HandleEnterNotify):
8113 (HandleLeaveNotify):
8114 (HandlePropertyNotify):
8115 * fvwm/borders.c (border_draw_decorations):
8118 * fvwm/add_window.c (setup_icon_background_parameters):
8119 (setup_icon_title_parameters):
8120 (setup_style_and_decor):
8122 * fvwm/geometry.c (move_icon_to_position):
8124 * fvwm/style.c (check_window_style_change):
8125 (update_style_colorset):
8126 (update_icon_title_cs_style):
8127 (update_icon_title_cs_hi_style):
8128 (update_icon_background_cs_style):
8131 * fvwm/update.c (apply_window_updates):
8132 New style options IconBackgroundColorset, IconTitleColorset,
8133 HilightIconTitleColorset, IconTitleRelief, IconBackgroundRelief
8134 and IconBackgroundPadding
8136 2002-12-28 Mikhael Goikhman <migo@homemail.com>
8139 fixed compilation without XShm
8141 * fvwm/borders.c (border_rotate_titlebar_descr):
8142 fixed warning: deprecated use of label at end of compound statement
8144 2002-12-27 olicha <olivier.chapuis@free.fr>
8146 * fvwm/ConfigFvwmDefaults:
8147 UseTitleDecorRotation is a default
8149 * libs/Graphics.c (do_relieve_rectangle_with_rotation):
8150 (do_relieve_rectangle):
8152 * fvwm/borders.c (border_draw_title_stick_lines):
8153 (border_create_root_transparent_pixmap):
8154 (border_mp_render_into_pixmap):
8155 (border_draw_decor_to_pixmap):
8156 (border_mp_render_into_pixmap):
8157 (border_mp_get_titlebar_descr):
8158 (border_mp_draw_mp_titlebar):
8159 (border_draw_decor_to_pixmap):
8160 (border_set_button_pixmap):
8161 (border_get_titlebar_draw_descr):
8162 (border_set_title_pixmap):
8163 (border_rotate_titlebar_descr):
8164 (border_get_titlebar_descr):
8165 Completed UseTitleDecorRotation
8167 2002-12-26 olicha <olivier.chapuis@free.fr>
8169 * fvwm/update.c (apply_window_updates):
8170 * fvwm/frame.c (frame_get_titlebar_dimensions):
8171 (frame_set_decor_gravities):
8172 * fvwm/borders.c (border_set_button_pixmap):
8173 (border_get_titlebar_descr):
8174 (border_draw_one_button):
8175 Buttons order follows the title text rotations.
8176 More UseTitleDecorRotation preparation
8178 * fvwm/borders.c (border_draw_decor_to_pixmap):
8181 2002-12-24 olicha <olivier.chapuis@free.fr>
8183 * fvwm/borders.c (border_mp_render_into_pixmap):
8184 (border_fill_pixmap_background):
8185 Some borders drawing fixes
8187 * libs/Graphics.c (CreateRotatedPixmap):
8188 * fvwm/geometry.c (get_title_font_size_and_offset):
8189 * fvwm/update.c (apply_window_updates):
8190 * fvwm/borders.c (border_set_button_pixmap):
8191 (border_get_titlebar_draw_descr):
8192 (border_draw_title):
8193 (border_rotate_titlebar_descr):
8194 (border_get_titlebar_descr):
8195 More UseTitleDecorRotation preparation
8197 2002-12-22 Dan Espen <dane@mk.telcordia.com>
8199 * fvwm/add_window.c (GetWindowSizeHints): Change hint warning message
8200 so we won't get so many application bugs report to fvwm-workers.
8202 * fvwm/fvwm.1.in: Grammar: allows to -> allows for.
8204 2002-12-21 Marcus Lundblad <ml@update.uu.se>
8206 * fvwm/style.c (style_parse_one_style_option):
8209 * fvwm/window_flags:
8210 * fvwm/decorations.c (is_function_allowed,
8211 __is_resize_allowed):
8212 Added styles Closable, Iconifiable, Maximizable and
8213 AllowMaximizeFixedSize
8214 * fvwm/conditional.c (MatchesConditionMask,
8215 CreateConditionMask):
8216 Added conditionals Closable,Iconifiable and Maximizable
8218 Documented styles Closable, Iconifiable, Maximizable and
8219 AllowMaximizeFixedSize and conditionals
8220 Closable,Iconifiable and Maximizable
8222 2002-12-20 olicha <olivier.chapuis@free.fr>
8224 * fvwm/window_flags.h:
8226 * fvwm/update.c (apply_window_updates):
8228 * fvwm/style.c (style_parse_one_style_option):
8230 UseTitleDecorRotation style preparation
8232 * fvwm/fvwm.c (main):
8233 Use best TrueColor visual
8235 * fvwm/borders.c (border_get_border_gcs):
8236 Create the transparent_gc with the Scr.NoFocusWin and not the FW_W_FRAME
8237 window which may have a depth != Pdepth
8239 * fvwm/menus.c (paint_side_pic):
8240 * fvwm/menuitem.c (menuitem_paint):
8241 * fvwm/icons.c (DrawIconPixmapWindow):
8242 * fvwm/colorset.c (parse_colorset):
8243 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
8246 2002-12-19 olicha <olivier.chapuis@free.fr>
8248 * libs/Graphics.c (CreateRotatedPixmap):
8250 New interface function CreateRotatedPixmap
8252 * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
8254 * libs/PictureGraphics.c (PCreateRenderPixmap):
8255 (PCreateDitherPixmap):
8256 * libs/Graphics.c (CreateGradientPixmap):
8257 (CreateRotatedPixmap):
8260 * libs/FShm.h (new file):
8261 * libs/FImage.h (new file):
8262 * libs/FImage.c (new file):
8264 * fvwm/fvwm.c (setVersionInfo):
8265 Added MIT Shared Memory Extension for XImage
8271 * fvwm/builtins.c (ReadDecorFace):
8273 * fvwm/borders.c (border_draw_decor_to_pixmap):
8274 (border_fill_pixmap_background):
8275 AdjustedPixmap, StretchedPixmap and ShrunkPixmap
8277 2002-12-17 Mikhael Goikhman <migo@homemail.com>
8280 shape-and-join fixes from Nadim Shaikli (slightly modified)
8282 2002-12-16 olicha <olivier.chapuis@free.fr>
8284 * libs/PictureGraphics.h:
8285 * libs/PictureGraphics.c (PTileRectangle):
8286 (PGraphicsCreateTiledPicture):
8287 * libs/Graphics.c (CreateTiledPixmap):
8288 New interface function: PGraphicsCreateTiledPicture
8291 * fvwm/fvwm.c (CreateGCs):
8292 Added a global (Scr) alpha GC
8296 * fvwm/builtins.c (ReadMultiPixmapDecor):
8297 (update_decorface_colorset):
8299 * fvwm/borders.c (border_get_tb_parts_to_draw):
8300 (border_fill_pixmap_background):
8301 (border_setup_bar_pixmaps):
8302 (border_get_bar_pixmaps):
8303 (border_free_bar_pixmaps):
8304 (border_mp_render_into_pixmap):
8305 (border_mp_get_length):
8306 (border_mp_get_titlebar_descr):
8307 (border_mp_get_geometry):
8308 (border_mp_get_use_title_style_parts_and_geometry):
8309 (border_mp_draw_mp_titlebar):
8310 (border_draw_decor_to_pixmap):
8311 (border_draw_title_deep):
8312 (border_get_titlebar_draw_descr):
8313 (border_setup_use_title_style):
8314 (border_get_titlebar_descr_state):
8315 (border_get_titlebar_descr):
8316 (border_get_transparent_decorations_part):
8317 (border_draw_title_stick_lines):
8318 MultiPixmap can use Colorset and Solid color. Various others minor
8319 improvement in MultiPixmap. "Merge" the MultiPixmap code into the
8320 "main" drawing code and remove the #ifdef.
8321 New option to ButtonStyle and TitleStyle: StretchedPixmap.
8322 Use the new Scr.AlphaGC.
8324 2002-12-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8326 * fvwm/add_window.c (validate_transientfor):
8327 do not ignore transientfor hint for iconified windows
8329 2002-12-12 Jason Weber <baboon@imonk.com>
8332 * fvwm/conditional.c (CMD_ScanForWindow):
8335 rename ScanWindow to ScanForWindow
8337 2002-12-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8339 * fvwm/menuitem.c (menuitem_paint):
8340 * fvwm/colorset.c (parse_colorset):
8341 * fvwm/icons.c (DrawIconPixmapWindow):
8342 * fvwm/focus.c (_SetFocusWindow):
8343 (_ReturnFocusWindow):
8345 (_ForceDeleteFocus):
8346 (__activate_window_by_command):
8347 patches to prevent UMR messages in memory debuggers
8349 2002-12-11 Jason Weber <baboon@imonk.com>
8351 * fvwm/fvwm.1.in: Added ScanWindow
8353 * fvwm/conditional.c (CMD_Direction, CMD_ScanWindow, direction_cmd):
8356 Generalized CMD_Direction into direction_cmd.
8357 Pipe CMD_Direction and CMD_ScanWindow into direction_cmd.
8358 Replace Cycle prefix with secondary direction argument.
8360 2002-12-10 Dan Espen <dane@mk.telcordia.com>
8362 * fvwm/fvwm.1.in: Applied Mikhael's quote fix.
8364 2002-12-05 Marcus Lundblad <ml@update.uu.se>
8365 * fvwm/conditional.c (CreateConditionMask):
8366 Implemented conditional "FixedSize" and "HasHandles"
8368 Documented conditional options "FixedSize" and "HasHandles".
8370 2002-12-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8372 * fvwm/placement.c (PlaceWindow):
8373 fixed StickyAcrossDesks w/ StartsOnPage
8377 * fvwm/ewmh_conf.c (set_state_workaround):
8378 * fvwm/update.c (apply_window_updates):
8379 * fvwm/windowlist.c (CMD_WindowList):
8380 * fvwm/ewmh_events.c (ewmh_WMDesktop):
8381 (ewmh_WMStateSticky):
8382 * fvwm/conditional.c (CreateConditionMask):
8383 * fvwm/gnome.c (GNOME_SetHints):
8385 (GNOME_HandlePropRequest):
8386 * fvwm/placement.c (SmartPlacement):
8391 * fvwm/session.c (SaveWindowStates):
8394 * fvwm/ewmh.c (check_desk):
8395 (EWMH_SetWMDesktop):
8396 (ewmh_ComputeAndSetWorkArea):
8397 (ewmh_HandleDynamicWorkArea):
8398 (ewmh_HandleDesktop):
8401 (ewmh_HandleToolBar):
8402 * fvwm/virtual.c (UnmapDesk):
8405 (do_move_window_to_desk):
8406 * fvwm/icons.c (setup_icon_title_size):
8407 (DrawIconTitleWindow):
8410 * fvwm/borders.c (is_button_toggled):
8411 (get_common_decorations):
8412 (border_draw_title_stick_lines):
8413 * fvwm/add_window.c (AddWindow):
8414 * fvwm/move_resize.c (__move_window):
8416 (is_window_sticky_across_pages):
8417 (is_window_sticky_across_desks):
8423 (CMD_StickAcrossPages):
8424 (CMD_StickAcrossDesks):
8425 (stick_across_pages):
8426 (stick_across_desks):
8427 (handle_stick_across_desks):
8428 (handle_stick_across_pages):
8430 * fvwm/fvwm.h (struct):
8431 * fvwm/style.c (style_parse_one_style_option):
8432 (check_window_style_change):
8434 * fvwm/window_flags.h:
8435 renamed StickDesk to StickAcrossDesks, StickyDesk to StickyAcrossDesks,
8436 StickPage to StickAcrossPages and StickyPage to StickyAcrossPages
8439 * fvwm/focus.c (CMD_Focus):
8441 (__activate_window_by_command):
8442 (__update_windowlist):
8443 (__set_focus_to_fwin):
8445 (_ReturnFocusWindow):
8447 (_ForceDeleteFocus):
8448 fixed window list order with FlipFocus command
8450 2002-12-08 Mikhael Goikhman <migo@homemail.com>
8454 document bidi entry undocumented in 2.5.5
8456 2002-12-06 olicha <olivier.chapuis@free.fr>
8459 Fixed the "detection" of the LINGUAS variable
8462 Added ar to ALL_LINGUAS
8465 2002-12-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8467 * fvwm/move_resize.c (__resize_window):
8468 fixed handling of MontionNotify and PropertyNotify events
8470 2002-12-03 olicha <olivier.chapuis@free.fr>
8472 * fvwm/borders.c (border_draw_decor_to_pixmap):
8473 (border_get_border_background):
8474 (get_common_decorations):
8477 * fvwm/builtins.c (CMD_PrintInfo):
8478 New subject nls to PrintInfo
8480 * libs/FGettext.c (*):
8481 New command FlocalePath
8483 2002-12-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8487 changed version to 2.5.6
8493 2002-12-02 olicha <olivier.chapuis@free.fr>
8495 * libs/FRenderInit.c (FRenderInit):
8496 Fixed alpha depth if !XRenderSupport
8498 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
8499 * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
8501 * libs/PictureImageLoader.h:
8502 Fixed image loading on bigedian machine
8504 2002-12-01 Mikhael Goikhman <migo@homemail.com>
8506 * libs/FBidi.c (FBidiConvert):
8507 several small changes
8508 * libs/FBidiJoin.c (shape_n_join):
8509 enabled a new bidi shaping code
8511 2002-11-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8513 * fvwm/frame.c (frame_restore_client_gravities):
8514 (frame_free_move_resize_args):
8515 fixed a redrawing problem after shading a window
8517 2002-11-29 olicha <olivier.chapuis@free.fr>
8520 Defined AM_PATH_PROG_WITH_TEST and re-enable it
8524 Fixed two missprints
8526 2002-11-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8528 * fvwm/bindings.c (ParseBinding):
8529 fix for stroke-less compile
8531 2002-11-29 olicha <olivier.chapuis@free.fr>
8533 * fvwm/commands.h (enum):
8534 * fvwm/functable.c (func_table):
8535 * fvwm/builtins.c (CMD_LocalePath):
8536 * libs/FGettext.c (FGettextSetLocalePath):
8538 Preparation for LocalePath command
8540 * fvwm/screen.h (ScreenInfo):
8541 * fvwm/fvwm.c (CreateGCs):
8542 Rename Scr.TileGC to Scr.BordersGC
8545 A libintl autoconf fix
8547 * libs/Colorset.c (CreateBackgroundPixmap):
8548 Do not grab the server when we dump the E setroot pixmap
8550 2002-11-29 olicha <olivier.chapuis@free.fr>
8557 Added NLS support with gnu gettext
8559 * fvwm/fvwm.c (main):
8562 * fvwm/expand.c (expand_vars_extended):
8563 New extanded variable $[gt.any_string]
8565 * fvwm/virtual.c (CMD_DesktopName):
8566 * fvwm/windowlist.c (get_desk_title):
8567 * fvwm/expand.c (expand_vars_extended):
8568 * fvwm/fvwm.c (SetRCDefaults):
8569 * fvwm/ConfigFvwmSetup:
8570 Mark some strings to be translated
8572 * libs/FGettext.c (new file):
8573 * libs/FGettext.c (new file):
8575 gnu gettext libintl warper
8577 2002-11-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8579 * fvwm/add_window.c (RestoreWithdrawnLocation):
8580 rixed rxvts with S/E gravity travelling off screen upon recapture after
8583 * fvwm/events.c (__handle_key_event):
8584 * fvwm/bindings.c (activate_binding):
8585 (__rebind_global_key):
8586 fixed unbinding pointerkey bindings removing the grab for this key
8589 * fvwm/events.c (__is_bpress_window_handled):
8590 fixed click on override redirect windows being handled by the root
8593 * fvwm/misc.c (GrabEm):
8594 confine the pointer to the root window when grabbed
8596 * fvwm/events.c (HandleUnmapNotify):
8597 fixed reparenting problem with restarts from desks != 0
8599 2002-11-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8602 removed experimental code
8604 2002-11-28 olicha <olivier.chapuis@free.fr>
8606 * fvwm/borders.c (border_get_border_background):
8607 (border_draw_decor_to_pixmap):
8608 (border_fill_pixmap_background):
8609 Scr.TitleGC/Scr.TileGC cleanup. I will rename TileGC to BorderGC
8612 2002-11-26 Mikhael Goikhman <migo@homemail.com>
8614 * fvwm/fvwm.c (InitVariables):
8615 fixed DEFAULT_EDGE_SCROLL being interpretted as 100 pixels instead
8617 * fvwm/virtual.c (CMD_EdgeScroll):
8620 * fvwm/ConfigFvwmDefaults:
8621 do not include empty ConfigFvwmProxyDefaults, added one binding
8623 2002-11-26 olicha <olivier.chapuis@free.fr>
8625 * libs/Colorset.c (CreateBackgroundPixmap):
8626 * fvwm/colorset.c (parse_colorset):
8627 Be more safe with the E root pixmap
8629 2002-11-25 olicha <olivier.chapuis@free.fr>
8631 * fvwm/move_resize.c (__move_loop):
8632 Redraw the transparent decoration parts when a move is abored
8634 * fvwm/colorset.c (parse_colorset):
8635 Fixed the fgsh Colorset colors when the Image change but not the bg
8637 2002-11-24 Jason Weber <baboon@imonk.com>
8639 * fvwm/conditional.c (CMD_Direction):
8640 Extended Direction to allow CycleWest, CycleEast, etc that guarantees
8641 eventual traversal of all windows over repeated calls. It also cycles
8642 back to the opposite extent when it hits the limit in the given
8645 2002-11-22 olicha <olivier.chapuis@free.fr>
8648 * fvwm/borders.c (get_common_decorations):
8649 (border_get_parts_and_pos_to_draw):
8650 (border_get_changed_border_parts):
8651 (border_get_frame_pixmap, new):
8652 (border_get_border_background):
8653 (border_draw_one_border_part):
8654 (border_draw_decorations):
8655 (border_get_tb_parts_to_draw):
8656 (border_fill_pixmap_background):
8657 (border_get_titlebar_descr_state, new):
8658 (border_draw_titlebar):
8659 (border_setup_bar_pixmaps, new):
8660 (border_get_bar_pixmaps, new):
8661 (border_free_bar_pixmaps, new):
8662 (border_setup_use_title_style, new):
8663 (border_set_button_pixmap):
8664 (border_set_title_pixmap):
8665 (border_draw_one_button):
8666 (border_set_button_pixmap):
8667 (border_draw_title_deep):
8668 (border_get_transparent_decorations_part, new):
8669 Title, Border and Buttons Style Colorset Option: Drawing
8671 * fvwm/move_resize.c (AnimatedMoveAnyWindow):
8674 * fvwm/frame.c (__frame_setup_window):
8675 (frame_has_handles_and_tiled_border):
8676 (frame_create_move_resize_args):
8677 (frame_free_move_resize_args):
8678 Title, Border and Buttons Style Colorset Option: External drawing
8679 stuff. Basically additional redrawing for RootTransparent
8681 * fvwm/builtins.c (update_decorface_colorset, new):
8682 (update_titlebutton_colorset, new):
8683 (update_decors_colorset, new):
8684 (update_fvwm_colorset):
8685 Title, Border and Buttons Style Colorset Option: Dynamic updating
8688 * fvwm/builtins.c (ReadDecorFace):
8689 Title, Border and Buttons Style Colorset Option: Configuration
8691 * libs/Colorset.c (GetWindowBackgroundPixmapSize, new):
8693 Title, Border and Buttons Style Colorset Option: Convinent macros and
8696 2002-11-18 Dan Espen <dane@mk.telcordia.com>
8698 * libs/Makefile.am: Add missing Bindings.h.
8700 2002-11-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8702 * fvwm/move_resize.c (__move_loop):
8703 send M_CONFIGURE_WINDOW only when the window actually moves
8705 2002-11-16 Mikhael Goikhman <migo@homemail.com>
8712 incorporated a shape-and-join bidi functionality from Nadim Shaikli
8713 with minor improvements; it is disabled for now (#if 0) since
8714 some Arabic chars cause core dump
8716 2002-11-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8718 * fvwm/fvwm.1.in (Examples):
8719 added documentation of Icon option for PlaceAgain command
8721 * fvwm/events.c (__handle_key_event):
8722 fixed global key binding problem
8724 2002-11-15 olicha <olivier.chapuis@free.fr>
8726 * libs/Bindings.c (MatchBindingExactly):
8727 (__compare_binding):
8728 compile fixes w/o stroke lib
8731 * fvwm/geometry.c (get_title_font_size_and_offset):
8732 * fvwm/builtins.c (do_title_style):
8733 New MinHeight option to TitleStyle
8735 2002-11-15 olicha <olivier.chapuis@free.fr>
8737 * fvwm/builtins.c (update_fvwm_colorset):
8742 * fvwm/colorset.c (update_root_transparent_colorset):
8743 Fixed update of the RootTransparent colorset in fvwm
8745 2002-11-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8747 * libs/Bindings.c (__compare_binding):
8748 (MatchBindingExactly):
8749 compoile fixes w/o stroke lib
8751 2002-11-14 olicha <olivier.chapuis@free.fr>
8756 Removed any reference on "xft and flickering"
8758 2002-11-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8760 * fvwm/eventmask.h (XEVMASK_ICONW):
8761 * fvwm/events.c (HandleKeyRelease):
8763 (__handle_key_event):
8764 * fvwm/bindings.c (ParseBinding):
8766 * libs/Bindings.h (enum):
8767 implemented key release bindings; prefix the key name with a '-';
8768 does not work well with some applications
8770 2002-11-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8775 * fvwm/bindings.c (ParseBinding):
8778 (bind_get_bound_button_contexts):
8784 (RemoveMatchingBinding):
8789 (GrabAllWindowKeysAndButtons):
8790 * fvwm/module_interface.c (CMD_ModuleSynchronous):
8791 * fvwm/events.c (__handle_bpress_on_root):
8792 (__handle_bpress_on_managed):
8793 (HandleButtonRelease):
8794 * fvwm/builtins.c (CMD_Wait):
8796 * libs/fvwmlib.h (enum):
8797 fixed Key vs. PointerKey with "A"ny context
8799 2002-11-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8801 * fvwm/icons.c (Iconify):
8802 icon placement safety patch
8804 fixed initial position of application provided icon windows
8806 * fvwm/session.c (LoadWindowStates):
8807 fixed parsing of strings beginning with whitespace in session file
8809 * fvwm/fvwm.1.in (Note):
8810 * fvwm/style.c (style_set_old_focus_policy):
8811 * libs/defaults.h (DEF_FP_MODIFIERS):
8812 set default modifiers for raising/focusing to N again
8814 2002-11-11 olicha <olivier.chapuis@free.fr>
8817 * fvwm/fvwm.c (main):
8819 named-palette -> visual-palette, -N -> -P
8821 2002-11-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8823 * fvwm/ConfigFvwmDefaults:
8824 include ConfigFvwmProxyDefaults
8826 * fvwm/fvwm.c (usage):
8827 polished usage message
8829 2002-11-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8831 * fvwm/fvwm.c (usage):
8833 cleaned up usage and error messages
8834 use short option names in usage message an man page synopsis
8835 all options are case sensitive
8836 do not mention the "-" style long options in the man page; instead use
8839 * fvwm/add_window.c (setup_frame_window):
8840 * fvwm/events.c (HandleMapNotify):
8841 * fvwm/eventmask.h (XEVMASK_FRAMEW_RECAPTURE):
8842 fixed empty decorations after recapture
8844 * fvwm/geometry.c (get_icon_geometry):
8845 * fvwm/icons.c (clear_icon):
8846 fixed icon jumping to 0 0 when the icon layout changes after the icon
8847 has been moved manually
8849 * fvwm/move_resize.c (__move_icon):
8850 fixed MoveToPage with icons
8852 2002-11-09 olicha <olivier.chapuis@free.fr>
8854 * libs/Fft.c (FftGetRotatedFont):
8857 Check the return result of FftPatternGetMatrix
8860 * libs/PictureBase.h:
8863 2002-11-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8865 * fvwm/ewmh_conf.c (set_state_workaround):
8866 * fvwm/functable.c (func_table):
8867 * fvwm/update.c (apply_window_updates):
8868 * fvwm/windowlist.c (CMD_WindowList):
8869 * fvwm/ewmh_events.c (ewmh_WMDesktop):
8870 (ewmh_WMStateSticky):
8871 * fvwm/conditional.c (CreateConditionMask):
8872 (CreateConditionMask):
8873 * fvwm/gnome.c (GNOME_SetHints):
8875 (GNOME_HandlePropRequest):
8876 * fvwm/placement.c (SmartPlacement):
8881 * fvwm/session.c (SaveWindowStates):
8883 * fvwm/ewmh.c (check_desk):
8884 (EWMH_SetWMDesktop):
8885 (ewmh_ComputeAndSetWorkArea):
8886 (ewmh_HandleDynamicWorkArea):
8887 (ewmh_HandleDesktop):
8890 (ewmh_HandleToolBar):
8891 * fvwm/virtual.c (UnmapDesk):
8895 (do_move_window_to_desk):
8896 * fvwm/icons.c (setup_icon_title_size):
8897 (DrawIconTitleWindow):
8900 * fvwm/borders.c (is_button_toggled):
8901 (get_common_decorations):
8902 (border_draw_title_stick_lines):
8903 * fvwm/add_window.c (AddWindow):
8904 * fvwm/move_resize.c (__move_window):
8905 (is_window_sticky_on_page):
8906 (is_window_sticky_on_desk):
8912 (handle_stick_page):
8913 (handle_stick_desk):
8914 (__handle_stick_exit):
8917 * fvwm/style.c (style_parse_one_style_option):
8918 (check_window_style_change):
8921 New Style options stickypage and stickydesk
8922 New WindowList options NoStickyPage, NoStickyDesk, StickyPage,
8923 StickyDesk, OnlyStickyPage, OnlyStickyDesk
8924 New conditions StickyPage and StickyDesk
8925 New commands StickPage and StickDesk
8927 * fvwm/move_resize.c (__move_window):
8928 do not unstick a window when using MoveToScreen
8934 * fvwm/functable.c (func_table):
8935 * fvwm/ewmh_conf.c (CMD_EwmhBaseStruts):
8936 renamed EWMHBaseStrut to EwmhBaseStruts
8938 * fvwm/style.c (style_set_old_focus_policy):
8939 SloppyFocus and MouseFocus use "FPFocusClickModifiers N" by default
8940 (style_parse_one_style_option):
8941 renamed "Border" style to "Borders"
8942 removed "NoBorder" style; use !Borders instead
8943 renamed PlacmentOverlapPenalties to MinOverlapPlacementPenalties
8944 renamed PlacmentOverlapPercentPenalties to
8945 MinOverlapPercentPlacementPenalties
8952 Fixed compiler warnings
8954 2002-11-09 Mikhael Goikhman <migo@homemail.com>
8957 autogenerate FvwmWindowLister files
8960 mention fvwm-menu-directory and fvwm-menu-desktop as examples
8961 of MissingSubmenuFunction and DynamicPopupAction
8963 2002-11-08 olicha <olivier.chapuis@free.fr>
8965 * libs/PictureUtils.c (alloc_color_proportion):
8966 (alloc_color_proportion_dither):
8967 (alloc_color_proportion_grey):
8969 (free_colors_in_table):
8971 (init_static_colors_table):
8972 (PictureFreeColors):
8973 (PictureInitColors):
8974 (PicturePrintColorInfo):
8975 Fixed StaticColor visual. Rename some of the color allocators. Clean up
8978 2002-11-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
8980 * fvwm/move_resize.c (__move_window):
8981 ignore MoveToPage with sticky windows
8983 * fvwm/conditional.c (Circulate):
8985 Next and Prev commands begin looking at the context window, if any
8987 * fvwm/focus.c (__focus_grab_buttons):
8988 fixed initial button grabbing on client window
8990 * fvwm/stack.c (BroadcastRestack):
8991 split long packets, fixed a bug and cleaned up
8993 * libs/Module.c (ReadFvwmPacket):
8994 ignore packets that are too long
8997 document PopupDelay and PopdownDelay defaults
8999 2002-11-06 olicha <olivier.chapuis@free.fr>
9001 * libs/Fft.c (FftGetFont):
9002 (FftGetRotatedFont):
9003 Use a more perfectioned method for loading font with Xft/Fc. This
9004 method allows sanity check. Preserve the matrix when rotating
9007 * libs/Flocale.c (FlocaleGetMinOffset):
9008 (FlocaleRotateDrawString):
9009 (FlocaleGetFontSet):
9011 * libs/Fft.c (FftDrawString):
9013 * libs/FftInterface.h:
9014 * fvwm/geometry.c (get_title_font_size_and_offset):
9015 Move the computation of the good "y" for drawing text into Flocale.
9016 Use the max ascent, descent and height for font metric (in the place
9019 * libs/Flocale.c (FlocalePrintLocaleInfo):
9021 * libs/Fft.c (FftPrintPatternInfo):
9023 * fvwm/builtins.c (CMD_PrintInfo):
9026 New option "Locale" to PrintInfo Command
9028 2002-11-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9030 * fvwm/events.c (HandleExpose):
9033 2002-11-04 Dan Espen <dane@mk.telcordia.com>
9035 * fvwm/fvwm.1.in: colour -> color
9038 2002-11-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9041 * fvwm/fvwm.c (usage):
9045 2002-11-04 olicha <olivier.chapuis@free.fr>
9048 Added -lXrender in Xft 1 tests (Ethan Blanton <eblanton@cs.ohiou.edu>)
9050 * libs/PictureUtils.c (alloc_color_dynamic_no_limit):
9052 (PictureFreeColors):
9053 (PicturePrintColorInfo):
9054 Trace colours allocation out of the pallet in depth <= 8. Better
9055 information on coulours
9057 * libs/Fft.c (FftGetRotatedFont):
9059 Fixed rotated font when the original font has a matrix
9061 * libs/PictureBase.c (PictureInitCMapRoot):
9062 * libs/PictureUtils.h:
9063 * libs/PictureUtils.c (PictureInitColors):
9064 (PictureAllocColorTable):
9065 * libs/PictureBase.h (PictureColorLimitOption):
9066 * fvwm/fvwm.c (main):
9068 New options -strict-color-limit, -allocate-pallet, -static-pallet,
9069 -named-pallet. -color-limit now take only integer argument.
9072 2002-11-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9074 * libs/Module.h (struct):
9075 new type FvwmWinPacketBodyHeader to access the standard fields in a
9076 packet with a window
9078 2002-11-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9083 * fvwm/functable.c (func_table):
9085 * fvwm/style.c (style_parse_one_style_option):
9086 (parse_and_set_window_style):
9090 added a new command FocusStyle as a shorthand for
9091 "Style * FP..., FP..."
9093 * fvwm/builtins.c (__parse_vector_line_one_coord):
9094 (__parse_vector_line):
9096 split vector line parsing into sub functions
9098 fixed core dump in vector button offset patch
9100 2002-11-01 Marcus Lundblad <ml@update.uu.se>
9102 * fvwm/screen.h (vector_coords):
9103 added fields for offsets
9104 * fvwm/builtins.c (ReadDecorFace):
9105 rewrote parser for vector definitions to accept optional offsets
9106 * fvwm/fvwm.c (LoadDefaultLeftButton):
9107 (LoadDefaultRightButton)
9108 set default values for offsets
9109 * fvwm/borders.c (border_draw_vector_to_pixmap):
9110 updated XDrawLine call to take offsets into account
9112 documented new options for vector offsets
9114 2002-11-01 olicha <olivier.chapuis@free.fr>
9116 * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
9117 Fixed icon tint pixel, it was set to icon tint percent during some
9120 2002-10-31 olicha <olivier.chapuis@free.fr>
9122 * libs/PictureUtils.c (PictureAllocColorImage):
9123 (PictureOpenImageColorAllocator):
9124 (PictureCloseImageColorAllocator):
9125 * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
9128 (PImageCreatePixmapFromArgbData):
9129 (PImageLoadPixmapFromFile):
9130 * libs/PictureBase.h (FvwmPictureThing):
9131 (PictureImageColorAllocator):
9133 * libs/Picture.c (PDestroyFvwmPicture):
9134 (PLoadFvwmPictureFromPixmap):
9135 * libs/Graphics.c (CreateGradientPixmap):
9137 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
9138 Added a new way to allocate colors for image and gradient. This method
9139 allows, in particular, to save (in a "fast" way) the allocated pixels
9140 with a minimal memory usage.
9141 Fixed color leaks for png, ewmh and dithered xpm images.
9143 * fvwm/add_window.c (destroy_icon):
9144 * fvwm/fvwm.h (FvwmWindow):
9145 * fvwm/icons.c (GetIconFromFile):
9148 2002-10-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9152 * fvwm/stack.c (enum):
9153 (position_new_window_in_stack_ring):
9155 (must_move_transients):
9158 (__raise_lower_recursion):
9159 (__raise_or_lower_window):
9160 (raise_or_lower_window):
9161 (collect_transients_recursive):
9162 (__is_restack_transients_needed):
9164 (CMD_RestackTransients):
9165 new command RestackTransients which works like Raise and Lower but does
9166 not restack windows that are not transient
9167 renamed some functions
9171 corrected cursor movement key bindings
9173 * fvwm/bindings.c (activate_binding):
9174 fixed problem w/ bindings being overridden by applications OpenOffice
9177 2002-10-29 Mikhael Goikhman <migo@homemail.com>
9184 include FvwmProxy to build
9186 2002-10-29 Mikhael Goikhman <migo@homemail.com>
9189 exclude FvwmProxy from build
9195 2002-10-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9198 added FvwmProxy module
9200 2002-10-29 Mikhael Goikhman <migo@homemail.com>
9203 * fvwm/windowlist.c (CMD_WindowList):
9204 renamed SortClassName to SortByClass
9206 2002-10-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9208 * fvwm/menustyle.c (menustyle_update):
9209 (menustyle_parse_style):
9210 (menustyle_get_styleopt_index):
9211 (menustyle_parse_style):
9212 (CMD_CopyMenuStyle):
9214 removed HilightRelief MenuStyle and hard coded it
9216 2002-10-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9218 * fvwm/menus.c (make_menu_window):
9219 fixed updating menu background with "Menustyle * Background"
9221 * fvwm/stack.c (__get_stacking_sibling):
9223 fixed another stacking problem
9225 2002-10-28 Mikhael Goikhman <migo@homemail.com>
9229 corrected and lined up several help lines
9232 added --enable-xinerama-emulation description
9234 2002-10-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9236 * fvwm/stack.c (restack_windows):
9237 (__get_stacking_sibling):
9238 fixed another stacking problem
9240 2002-10-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9242 * fvwm/add_window.c (AddWindow):
9243 braodcast M_RESTACK_WINDOW after M_ADD_WINDOW to fix problem with
9244 windows starting lowered or on other layers in FvwmPager
9246 * fvwm/stack.c (restack_windows):
9247 (__get_visible_window):
9248 fixed a stacking problem with layers
9250 2002-10-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9252 * fvwm/functable.c (func_table):
9255 2002-10-24 Mikhael Goikhman <migo@homemail.com>
9259 * fvwm/windowlist.c:
9260 new WindowList option SortByResource
9262 * fvwm/style.c (check_window_style_change):
9263 * libs/FlocaleCharset.c:
9267 place recent authors to the top, not bottom
9270 corrected typo in error message
9272 2002-10-23 Dan Espen <dane@mk.telcordia.com>
9274 * fvwm/fvwm.1.in: Lang check done.
9276 2002-10-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9279 work on new menu loop code
9285 * fvwm/menus.c (__mloop_handle_event):
9286 (__mloop_get_event):
9287 (__mloop_handle_action_with_mi):
9288 * fvwm/menus.h (MenuReturn):
9289 renamed MenuReturn member menu to target_menu
9291 * fvwm/menus.c (__mloop_handle_event):
9292 * fvwm/menus.h (MenuReturn):
9293 removed a "write only" member of MenuReturn
9295 * fvwm/conditional.c (circulate_cmd):
9296 fixed the "Any" command
9298 2002-10-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9300 * fvwm/stack.c (mark_transient_subtree):
9301 fixed stack ring corruption with iconified transients
9303 fixed a problem with lowering windows below the icons of their
9306 2002-10-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9312 * libs/PictureBase.h:
9316 renamed colorset_struct to colorset_t
9318 2002-10-22 olicha <olivier.chapuis@free.fr>
9320 * libs/PictureUtils.c:
9321 Minor fixes and add #if O experimental code
9323 2002-10-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9325 * fvwm/icons.c (DrawIconPixmapWindow):
9327 * fvwm/events.c (HandlePropertyNotify):
9328 * libs/Fft.c (FftDrawString):
9329 * libs/Colorset.c (DumpColorset):
9331 * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
9332 use renamed colorset_struct members
9334 * libs/Colorset.h (colorset_struct):
9335 renamed and re-sorted members and cut down bit field lengths for
9338 * fvwm/menustyle.c (menustyle_update):
9341 * fvwm/stack.c (restack_windows):
9342 fixed flickering when raising transients; can't prevent flickering when
9343 lowering a window completely
9345 fixed unnecessary error message
9347 * fvwm/fvwm.c (main):
9350 * fvwm/stack.c (__restack_window):
9351 fixed a stacking problem with icons
9353 * fvwm/add_window.c (destroy_icon):
9356 2002-10-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9358 * fvwm/menuitem.c (menuitem_paint):
9359 * fvwm/menustyle.c (menustyle_parse_style):
9360 * fvwm/menus.c (paint_side_pic):
9363 (repaint_transparent_menu):
9364 * fvwm/menustyle.h (MenuLook):
9365 cleaned up menu drawing code, fixed last patch
9367 * fvwm/menuitem.c (menuitem_paint):
9368 * fvwm/menustyle.c (menustyle_parse_style):
9369 fixed HilightBack default
9371 * fvwm/bindings.c (binding_cmd):
9372 (bind_get_bound_button_contexts):
9374 * fvwm/screen.h (ScreenInfo):
9375 fixed mouse bindings with buttons > 5
9377 * fvwm/menuitem.c (menuitem_paint):
9378 * fvwm/menustyle.c (menustyle_parse_style):
9379 (menustyle_parse_style):
9380 (CMD_CopyMenuStyle):
9383 * fvwm/menus.c (repaint_transparent_menu):
9385 HilightBack and ActiveFore are now independent
9387 2002-10-18 olicha <olivier.chapuis@free.fr>
9389 * libs/PictureUtils.c (get_color_index):
9390 (create_mapping_table):
9391 (PictureAllocColorTable):
9392 Use a new distance and method for color approximation. Use 68 colors
9393 for the default under depth 8. I am happy with this, should use a
9394 similar distance method for dithering
9396 * libs/PictureUtils.c (alloc_color_dynamic_no_limit):
9397 (PictureAllocColorTable):
9398 (PictureDitherByDefault):
9401 (PicturePrintColorInfo):
9402 * libs/PictureUtils.h:
9403 Allows -color-limit to work with any visual and depth for testing
9404 propose. Should replace (Pdepht < 2) test by (PictureUseBWOnly())
9407 Replaced (Pdepht < 2) test by (PictureUseBWOnly())
9409 2002-10-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9411 * fvwm/add_window.c (get_default_window_attributes):
9414 * fvwm/builtins.c (CMD_ChangeDecor):
9415 removed some duplicate redrawing
9417 * fvwm/update.c (apply_decor_change):
9418 suppress duplicate window update upon ChangeDecor
9419 (apply_window_updates):
9420 do not delete the focus window
9422 2002-10-17 olicha <olivier.chapuis@free.fr>
9427 * libs/Colorset.c (CreateBackgroundPixmap):
9428 Use a 1x1 pixmap and not a widthxheight pixmap for Plain color
9430 * fvwm/builtins.c (CMD_Colorset):
9431 Do not BroadcastColorset in CMD_Colorset, parse_colorset do that!
9433 2002-10-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9435 * fvwm/add_window.c (AddWindow):
9436 * fvwm/update.c (apply_window_updates):
9437 * fvwm/move_resize.c (handle_stick):
9439 suppress drawing of sticky decorations initially
9440 reduce module communication overhead when (un)sticking windows
9442 * fvwm/borders.c (border_draw_decorations):
9443 * fvwm/window_flags.h:
9445 * fvwm/frame.c (frame_create_move_resize_args):
9446 (get_resize_decor_gravities_one_axis):
9447 (frame_mrs_setup_draw_decorations):
9449 initialize window decorations with a "None" pixmap;
9450 delay drawing window decorations initially to prevent drawing multiple
9452 => windows grabbing the focus upon startup are drawn focused
9455 * fvwm/frame.c (frame_free_move_resize_args):
9456 reparent the frame hide windows to NoFocusWin instead of Root to
9457 suppress unnecessary ReparentNotify events
9459 2002-10-16 olicha <olivier.chapuis@free.fr>
9461 * fvwm/fvwm.c (main):
9465 Fixed compilation with X cvs
9467 * libs/Colorset.c (CreateBackgroundPixmap):
9470 * fvwm/events.c (HandlePropertyNotify):
9471 * fvwm/colorset.c (update_root_pixmap):
9472 Use _XROOTPMAP_ID and not ESETROOT_PMAP_ID neither XSETROOT_ID
9473 to found a root pixmap
9475 2002-10-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9477 * fvwm/bindings.c (bind_get_bound_button_contexts):
9478 another mouse binding fix
9480 * fvwm/conditional.c (CreateConditionMask):
9482 all conditions have a negation with '!' prepended
9486 Current, All, Pick, ThisWindow and PointerWindow imply the
9487 CirculateHitShaded condition.
9489 * fvwm/focus.c (__focus_grab_buttons):
9490 * libs/defaults.h (NUMBER_OF_EXTENDED_MOUSE_BUTTONS):
9491 fixed bindings using mouse buttons >= 6
9493 2002-10-15 olicha <olivier.chapuis@free.fr>
9495 * libs/PictureUtils.c (PicturePrintColorInfo):
9498 * fvwm/functable.c (func_table):
9499 * fvwm/builtins.c (CMD_PrintInfo):
9501 New cmd PrintInfo. Only one arg at present time: "Colors"
9503 * fvwm/fvwm.c (main):
9504 Auto detect card with 2 hardware colormaps and choose the best
9507 * libs/PictureUtils.c (PictureInitColors):
9509 * libs/PictureUtils.h:
9510 * fvwm/fvwm.c (main):
9511 * libs/PictureBase.c (PictureInitCMapRoot):
9513 * libs/PictureBase.h:
9514 Try to support DirectColor visual in a good way, I do not think
9515 this is really useful.
9516 Added a flexible interface function PictureInitColors for
9517 colors allocation initialization.
9518 Some cleanup in color allocation and some preparation for a new
9519 method for saving and freeing colors allocated by images and gradients.
9520 Removed some ifdefed to 0 debug code.
9522 * libs/Picture.c (*):
9524 * libs/PictureImageLoader.c (*):
9525 * libs/PictureImageLoader.h:
9528 2002-10-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9530 * fvwm/add_window.c (setup_key_and_button_grabs):
9531 * fvwm/bindings.c (ParseBinding):
9533 * fvwm/add_window.c (setup_key_and_button_grabs):
9534 don't grab window context specific bindings anymore; instead, set
9535 Scr.buttons2grab accordingly
9537 * fvwm/bindings.c (activate_binding):
9538 fixed stroke bindings on window context being ignored if no other
9539 action was bound to that context
9541 * fvwm/add_window.c (destroy_icon):
9542 fixed duplicate icon pixmap when switching from NoIconOverride to
9545 2002-10-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9548 re-indented some code
9550 fixed random position of icon title for icons with a position hint
9553 corrected default of Use/NoIconPosition style
9555 2002-10-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9557 * fvwm/windowlist.c (CMD_WindowList):
9558 fixed random string for iconified windows in the WindowList
9560 2002-10-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9565 2002-10-08 olicha <olivier.chapuis@free.fr>
9567 * libs/PictureBase.c (*):
9568 (PictureInitCMapRoot)
9569 (PictureSetupWhiteAndBlack):
9570 (PictureWhitePixel):
9571 (PictureBlackPixel):
9573 New interface function PictureWhitePixel, PictureBlackPixel. Analogue
9574 of the Xlib WhitePixel and BlackPixel functions but in the Pvisaul.
9575 New interface function PictureInitCMapRoot analogue to PictureInitCMap,
9576 but always use the root visual and allows to set or not a private
9578 New interface PictureDefaultGC, analogue of Xlib DefaultGC function
9579 but which respects the Pvisual
9581 * libs/PictureGraphics.c (*):
9582 * libs/FScreen.c (FScreenInit):
9583 * libs/FRender.c (FRenderRender):
9584 * libs/Fft.c (FftDrawString):
9585 * fvwm/icons.c (CreateIconWindow):
9586 * fvwm/colorset.c (parse_colorset):
9587 * fvwm/move_resize.c (CMD_XorValue):
9588 * fvwm/colorset.c (alloc_colorset):
9589 * fvwm/fvwm.c (main):
9590 Use the new interface functions and some fix if the fvwm depth !=
9593 * libs/PictureUtils.c (PictureAllocColorTable):
9594 Change the default color table to a 4x4x4 cc + 4 grey
9596 2002-10-07 Dan Espen <dane@mk.telcordia.com>
9598 * fvwm/fvwm.1.in: Use built-in, not builtin.
9600 2002-10-06 Mikhael Goikhman <migo@homemail.com>
9603 s/FvwmNewDebug/FvwmDebug/
9606 * fvwm/conditional.c (CMD_NoWindow):
9609 new command NoWindow to remove window context
9612 use "fvwm" spelling, at least in the middle of sentences
9614 2002-10-06 Dan Espen <dane@mk.telcordia.com>
9616 * fvwm/fvwm.1.in: Dont refer to fvwm commands as
9617 builtin commands. Use "builtin", not "built in" or "built-in".
9620 2002-10-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9622 * libs/Graphics.c (do_relieve_rectangle):
9623 removed debug message
9625 * fvwm/focus.c (__update_windowlist):
9626 (__set_focus_to_fwin):
9627 fixed reversal of __update_windowlist arguments causing FlipFocus to
9628 break [and maybe other things]
9630 2002-10-05 olicha <olivier.chapuis@free.fr>
9632 * libs/PictureUtils.c (alloc_color_cube):
9633 It si possible to enable "gamma correction" for colors cubes (disabled,
9634 define USE_GAMMA_CORRECTION to 1 and set COLOR_GAMMA and GREY_GAMMA)
9636 * libs/PictureUtils.c (get_color_index):
9637 (create_mapping_table):
9638 Use a more exact approximation of colors for pur cc without the big
9641 * libs/PictureUtils.c (PictureFreeColors):
9644 * libs/Graphics.c (CreateGradientPixmap):
9645 (CreateGradientPixmapFromString):
9648 2002-10-04 olicha <olivier.chapuis@free.fr>
9650 * libs/PictureUtils.c (*):
9651 Used a better color approximation for color cube when we do not dither.
9652 Added some new colors tables: color cube with some grey colors.
9653 Change the default to a 4x4x3 cc with 6 grey (54 colors).
9656 * fvwm/fvwm.c (main):
9657 Fixed the visual option
9659 2002-10-03 Mikhael Goikhman <migo@homemail.com>
9662 generate FvwmNewDebug and FvwmGtkDebug
9664 2002-10-02 olicha <olivier.chapuis@free.fr>
9666 * libs/PictureUtils.c (USED_DIST):
9667 Used the euclidian distance for colors distance
9669 * libs/Fft.c (FftGetFont):
9670 Disable Xft if the Xserver does not support XRender
9672 2002-10-01 olicha <olivier.chapuis@free.fr>
9674 * libs/Fft.c (FftGetFont):
9675 Disable Xft if the Xserver does not support XRender
9677 * libs/FRender.c (FRenderRender):
9678 * libs/PictureGraphics.c (PGraphicsTintRectangle):
9681 * libs/Colorset.c (SetRectangleBackground):
9682 (SetClippedRectangleBackground):
9684 New interface function for drawing a subset of a colorset rectangle
9686 2002-09-26 olicha <olivier.chapuis@free.fr>
9688 * fvwm/update.c (apply_window_updates):
9689 Fixed icons colorset update
9691 * libs/FRender.c (FRenderRender):
9692 Fixed bitmap rendering
9694 * fvwm/update.c (apply_window_updates):
9695 * fvwm/geometry.c (move_icon_to_position):
9696 * fvwm/events.c (HandleEnterNotify):
9698 (HandleLeaveNotify):
9699 (HandlePropertyNotify):
9700 * fvwm/add_window.c (setup_icon_font):
9701 * fvwm/icons.c (DrawIconWindow):
9702 (DrawIconTitleWindow):
9703 (DrawIconPixmapWindow):
9706 Fixed focus/unfocus flickering
9708 2002-09-25 olicha <olivier.chapuis@free.fr>
9710 * fvwm/icons.c (DrawIconTitleWindow):
9711 One more drawing fix
9713 2002-09-24 olicha <olivier.chapuis@free.fr>
9715 * fvwm/icons.c (DrawIconTitleWindow):
9716 An other drawing fix
9718 2002-09-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9720 * fvwm/move_resize.c (__move_loop):
9721 fixed uninitialised variable
9723 fixed starting move at random position
9725 2002-09-24 olicha <olivier.chapuis@free.fr>
9727 * fvwm/update.c (apply_window_updates):
9728 * fvwm/geometry.c (move_icon_to_position):
9729 * fvwm/events.c (HandleEnterNotify):
9731 (HandleLeaveNotify):
9732 (HandlePropertyNotify):
9733 * fvwm/add_window.c (setup_icon_font):
9734 * fvwm/icons.c (DrawIconWindow):
9735 (DrawIconTitleWindow):
9736 (DrawIconPixmapWindow):
9739 Fixed icon drawing. Split icon window drawing.
9741 * libs/FRender.c (*):
9742 Fixed compilation and small clean up
9744 2002-09-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9746 * fvwm/conditional.c (CreateFlagString):
9747 fixed quoting in conditional command conditions
9749 * fvwm/menus.c (__mloop_handle_event):
9750 removed unnecessary querying of pointer position on button release in
9755 * fvwm/bindings.c (ParseBinding):
9756 increased maximum allowed key symbol name length to 200 characters
9758 * fvwm/execcontext.h (enum):
9759 * fvwm/fvwm.c (Done):
9765 * fvwm/execcontext.h (enum):
9766 added EXCT_INIT ['I'] and EXCT_EXIT ['X'] contexts
9768 * fvwm/menus.c (pop_menu_up):
9769 fixed accidental menu animation with certain menu position hints
9771 2002-09-23 olicha <olivier.chapuis@free.fr>
9773 * libs/FRender.c (*):
9774 Fixed(?) XRender rendering with some Xserver
9776 * fvwm/update.c (apply_window_updates):
9777 * fvwm/geometry.c (move_icon_to_position):
9778 * fvwm/events.c (HandleEnterNotify):
9780 (HandleLeaveNotify):
9781 (HandlePropertyNotify):
9782 * fvwm/add_window.c (setup_icon_font):
9783 * fvwm/icons.c (DrawIconWindow):
9786 Clip text and icon drawing for the icons
9788 2002-09-21 Mikhael Goikhman <migo@homemail.com>
9792 Path commands now support form: "path1;ext1:path2:path3;ext3"
9793 where ext1 (for example, ".png") means all files in path1 should
9794 be forced to have extention ".png" even if the requested icon
9795 has ".xpm" ("calculator.xpm" or has no extention at all ("calculator")
9797 * fvwm/execcontext.h:
9798 small changes in latters used for EXCT_* constants
9800 * fvwm/module_interface.c:
9802 * libs/PictureBase.c:
9804 some spacing reindentation
9806 2002-09-21 olicha <olivier.chapuis@free.fr>
9808 * libs/FRender.c (FRenderCompositeAndCheck):
9809 Temporally take GraphicsExposure in account
9811 2002-09-20 Mikhael Goikhman <migo@homemail.com>
9814 fixed incorrect MiniIconPacket definition: s/char *name/char name[1]/
9816 2002-09-20 olicha <olivier.chapuis@free.fr>
9818 * fvwm/icons.c (GetIconPicture):
9819 * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
9820 Fixed the alpha channel
9822 2002-09-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9827 2002-09-20 olicha <olivier.chapuis@free.fr>
9829 * libs/FRender.c (FRenderTintPicture):
9830 (FRenderTintRectangle):
9832 * libs/FRenderInterface.h:
9833 * libs/PictureGraphics.c (PGraphicsTintRectangle):
9834 Make FRender code more modular. Add a 24+8 tinting method and enable it
9835 in the place of the 32 tinting method (which can be enabled by defining
9836 USE_ABSOLUTE_FORMATE)
9838 2002-09-19 olicha <olivier.chapuis@free.fr>
9840 * fvwm/menus.c (get_menu_repaint_transparent_parameters):
9841 (animated_move_back):
9843 (repaint_transparent_menu):
9844 * fvwm/move_resize.c (AnimatedMoveOfWindow):
9845 (AnimatedMoveAnyWindow):
9846 * fvwm/move_resize.h:
9847 Support the new colorset transparent options and fix greyed item
9848 of transparent animated menus
9850 * fvwm/menus.c (pop_menu_up):
9851 (animated_move_back):
9853 * libs/Rectangles.c:
9854 * libs/Rectangles.h:
9856 New libs files for rectangles, segments, regions ..etc
9858 * fvwm/menus.c (clear_expose_menu_area):
9859 (get_menu_paint_item_parameters):
9862 (ParentalMenuRePaint):
9863 (ParentalMenuRePaint):
9864 * fvwm/menuitem.c (clear_menu_item_background):
9866 * fvwm/menuitem.h (MenuPaintItemParameters):
9867 Clip the item icons and text drawing
9869 * fvwm/menus.c (__mloop_exit):
9870 Fixed an indirect uninitialized variable bug
9872 * fvwm/menus.c (__mloop_handle_event): *
9873 (__mloop_handle_action_with_mi): *
9874 Update some comments
9876 * libs/FRender.c (FRenderVisualInit):
9878 * fvwm/colorset.c (parse_colorset):
9881 2002-09-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9883 * fvwm/menus.c (__menu_loop):
9884 (__mloop_handle_action_with_mi):
9885 fixed parent menu redrawing
9887 * fvwm/style.c (check_window_style_change):
9888 * fvwm/update.c (apply_window_updates):
9889 * fvwm/add_window.c (setup_icon_size_limits):
9890 honour changes in IconSize style without recapture
9892 * fvwm/focus.c (focus_query_open_grab_focus):
9893 * fvwm/events.c (HandlePropertyNotify):
9894 * fvwm/add_window.c (setup_transientfor):
9895 take care of various funny initial transientfor settings
9897 * fvwm/stack.c (__raise_lower_recursion):
9899 fixed stacking core dump
9901 2002-09-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9907 added a program that tests for -Werror option and similar; bug out of
9908 configure if the test program doesn't compile
9910 2002-09-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9914 add a "do not edit" warning at the beginning of the man page
9917 enable the original CFLAGS and CPPFLAGS before generating the Makefiles
9919 * libs/FScreen.c (XineramaQueryScreens):
9920 fixed linking problem when compiling without Xinerama
9922 * fvwm/cursor.c (CMD_CursorStyle):
9923 fixed cursorstyle command being applied to windows without handles
9925 * fvwm/ewmh.h (EWMH_ProcessClientMessage):
9926 (EWMH_ProcessPropertyNotify):
9927 * fvwm/gnome.h (GNOME_ProcessClientMessage):
9928 (GNOME_HandlePropRequest):
9929 fixed dummy macros when compiling without gnome/ewmh support
9931 2002-09-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9933 * libs/queue.c (fqueue_add_inside):
9934 add a new command with the same execution time as a previous one behind
9938 override CFLAGS and CPPFLAGS with empty strings instead of generating an
9941 * fvwm/functions.c (__execute_function):
9942 * fvwm/execcontext.h (exec_context_type_t):
9943 replace enum values with letters for readability
9945 * fvwm/functions.c (__execute_function):
9946 improved command log output
9948 * fvwm/schedule.c (execute_obj_func):
9949 fixed schedule queue timing
9952 refuse to run configure if CFLAGS is not empty
9954 2002-09-16 Mikhael Goikhman <migo@homemail.com>
9957 fixed compilation with --enable-command-log; simplified fvwm_msg()
9960 reformatted; don't send end-of-line with SET_*MASK
9962 2002-09-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9964 * fvwm/borders.c (border_draw_multi_pixmap_titlebar):
9965 fixed multipixmap title drawing
9967 * fvwm/frame.h (struct):
9968 * fvwm/frame.c (frame_get_titlebar_dimensions):
9971 * fvwm/events.c (HandlePropertyNotify):
9972 applied FlocaleGetNameProperty core dump fix by Suzanne Skinner
9974 * libs/Fft.c (FftDrawString):
9975 -Wall fix when compiling w/o Xft
9977 2002-09-15 olicha <olivier.chapuis@free.fr>
9979 * libs/Colorset.c (CreateBackgroundPixmap):
9980 Fixed a dpy problem with FvwmBacker
9981 * libs/Colorset.c (CreateBackgroundPixmap):
9982 Fixed creation a root transparent pixmap for small root pixmap
9984 2002-09-14 olicha <olivier.chapuis@free.fr>
9986 * libs/Fft.c (FftDrawString):
9987 Fixed clip region with shadow font
9989 * libs/PictureGraphics.c (PGraphicsCreateTranslucent):
9990 Added a function to create translucent pixmaps
9991 * libs/Colorset.c (CreateBackgroundPixmap):
9993 * libs/FRender.c (FRenderRender):
9994 Allows to use the root window as src pixmap
9996 2002-09-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
9999 Fixed open double quotes in ButtonState section
10001 2002-09-13 Dan Espen <dane@mk.telcordia.com>
10003 * fvwm/fvwm.1.in: Add -cmd module timeout information.
10005 2002-09-13 olicha <olivier.chapuis@free.fr>
10007 * libs/Colorset.c (CreateBackgroundPixmap):
10008 (UpdateBackgroundTransparency):
10009 (SetRectangleBackground):
10011 * fvwm/colorset.c (*):
10013 * fvwm/events.c (HandlePropertyNotify):
10014 Starting implementation of RootTransparent colorset. Worked on
10015 tinted Transparent colorset. Various colorset parsing fixes.
10017 * libs/Fft.c (FftDrawString):
10019 Added the possibility to draw with a clipping region.
10021 * libs/FRender.c (FRenderRender):
10022 * libs/PictureGraphics.c (PGraphicsRenderPixmaps):
10023 (PCreateRenderPixmap):
10024 (PGraphicsCreateTransprency):
10025 (PGraphicsTintRectangle):
10026 Improve current rendering functions to be able to tint the
10027 ParentalRelative pixmap or the background of a window.
10028 Re-enabled XRender rendering.
10031 remove a #if 0 debug "render" code
10033 2002-09-13 Mikhael Goikhman <migo@homemail.com>
10035 * fvwm/builtins.c (ReadTitleButton):
10037 new button state shortcuts AllNormal, AllToggled,
10038 AllActive, AllInactive, AllUp, AllDown
10040 * fvwm/module_interface.c:
10044 possibly fixed compilation with non gcc
10046 2002-09-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10048 * fvwm/focus.c (_focus_grab_buttons):
10049 (__focus_grab_buttons):
10051 (__focus_grab_one_button):
10052 grab all modifier combinations on client windows by default if
10053 necessary; this saves a lot of traffic but may grab unnecessary
10054 modifiers with mouse bindings on the client window
10057 * libs/defaults.h (DEF_FP_MODIFIERS):
10058 * fvwm/events.c (__handle_focus_raise_click):
10059 * fvwm/style.c (style_parse_focus_policy_style):
10060 * fvwm/focus_policy.h (FPOL_ANY_MODIFIER_MASK):
10061 default is now to use any modifiers for clicktofocus/raise purposes
10063 * fvwm/menus.c (__mloop_get_event):
10066 fixed tear off menus
10068 * libs/FEvent.c (FCheckIfEvent):
10070 (FCheckTypedEvent):
10071 (FCheckTypedWindowEvent):
10072 (FCheckWindowEvent):
10073 fixed FCheck...Event functions thus fixing Menu command behaving like
10076 * fvwm/move_resize.c (InteractiveMove):
10077 fixed offset between pointer and window when dragging
10079 * fvwm/virtual.c (HandlePaging):
10080 * fvwm/icons.c (CMD_Iconify):
10081 * fvwm/move_resize.c (InteractiveMove):
10082 * fvwm/menus.c (get_menu_options):
10083 (get_menu_options):
10084 * libs/FScreen.c (GetMouseXY):
10085 use new function fev_get_evpos_or_query()
10087 * libs/Makefile.am:
10091 (GetLocationFromEventOrQuery):
10092 moved to FEvent.c and renamed to fev_get_evpos_or_query()
10093 * libs/FEvent.c (fev_set_evpos):
10096 * fvwm/functions.c (__execute_function):
10097 (execute_complex_function):
10098 fixed complex action clicking logic
10100 * fvwm/add_window.c (CaptureOneWindow):
10101 fixed RecaptureWindow
10102 (CaptureAllWindows):
10105 * fvwm/functable.c (func_table):
10106 fixed running RecaptureWindow without a context window
10108 * fvwm/conditional.c (circulate_cmd):
10109 fixed action to run
10111 * fvwm/events.c (HandleVisibilityNotify):
10112 fixed VisibilityNotify handling
10114 * fvwm/functions.c (execute_complex_function):
10115 fixed memory corruption
10116 (__execute_function):
10117 fixed using wrong context
10118 (__execute_function):
10119 removed conditional that was always true now
10123 * fvwm/module_interface.c (ExecuteModuleCommand):
10124 initialise module number
10126 2002-09-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10128 * fvwm/add_window.c (CaptureOneWindow):
10129 fixed memory corruption
10131 * fvwm/icons.c (Iconify):
10133 fixed bug introduced with transient stacking patch
10135 * fvwm/functions.c (DeferExecution):
10136 (__execute_function):
10137 (execute_complex_function):
10138 cleaned up and optimized exec_context handling
10143 * fvwm/windowlist.c:
10144 * fvwm/conditional.c:
10146 * fvwm/functions.c:
10147 * fvwm/placement.c:
10151 * fvwm/module_interface.c:
10154 * fvwm/add_window.c:
10155 * fvwm/move_resize.c:
10156 * fvwm/fvwm.h (F_CMD_ARGS):
10158 completely removed the builtin command arguments fw, w, and context
10160 * fvwm/functions.c (DeferExecution):
10163 * fvwm/stack.c (BroadcastRestack):
10164 removed global lastTimestamp
10166 * fvwm/ewmh_events.c (EWMH_ProcessClientMessage):
10167 (EWMH_ProcessPropertyNotify):
10168 (ewmh_WMStateShaded):
10169 (ewmh_WMStateSticky):
10170 (ewmh_WMStateHidden):
10174 (ewmh_CloseWindow):
10175 (ewmh_DesktopGeometry):
10176 (ewmh_ActiveWindow):
10177 use new function interface
10179 * fvwm/menus.c (do_menu):
10180 * fvwm/menucmd.c (menu_func):
10181 * fvwm/windowlist.c (CMD_WindowList):
10182 use new function interface
10183 replaced "(XEvent *)1" hack with a regular flag
10185 2002-09-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10187 * fvwm/add_window.c (destroy_window):
10188 * fvwm/update.c (destroy_scheduled_windows):
10189 * fvwm/screen.h (ScreenInfo):
10190 new member is_executing_menu_function
10192 * fvwm/windowlist.c (CMD_WindowList):
10193 * fvwm/menucmd.c (menu_func):
10194 * fvwm/gnome.c (CMD_GnomeButton):
10195 (GNOME_ProcessClientMessage):
10196 (GNOME_HandlePropRequest):
10197 * fvwm/modconf.c (CMD_Send_ConfigInfo):
10198 * fvwm/update.c (apply_window_updates):
10199 * fvwm/repeat.c (CMD_Repeat):
10200 * fvwm/conditional.c (circulate_cmd):
10212 * fvwm/focus.c (warp_to_fvwm_window):
10213 (CMD_WarpToWindow):
10214 * fvwm/read.c (run_command_stream):
10215 (run_command_file):
10218 * fvwm/fvwm.c (Done):
10222 use new function interface
10224 fixed running startup script under random module number
10226 * fvwm/functions.c (execute_function_override_window):
10227 * fvwm/functions.c (execute_function_override_wcontext):
10228 new convenience functions
10235 * fvwm/module_interface.c (CMD_Send_WindowList):
10237 (CMD_set_sync_mask):
10238 (CMD_set_nograb_mask):
10240 don't use "Module" argument anymore
10241 (ExecuteModuleCommand):
10243 use new function interface
10245 * fvwm/add_window.c (CaptureOneWindow):
10247 (CaptureAllWindows):
10248 * fvwm/events.c (HandleMapRequestKeepRaised):
10249 * fvwm/add_window.c (AddWindow):
10250 AddWindow takes executiuon context as its argument instead of the
10251 window; changed caller
10252 don't use "Event" anymore
10254 * fvwm/fvwm.c (StartupStuff):
10255 generate an execution context for startup
10257 * fvwm/move_resize.c (DoResize):
10261 renamed and used new function interface in args
10263 * fvwm/geometry.c (constrain_size):
10264 added XEvent *e argument to remove use of global "Event"; changed all
10267 2002-09-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10269 * fvwm/stack.c (get_next_window_in_stack_ring):
10270 (get_prev_window_in_stack_ring):
10271 (get_transientfor_fvwmwindow):
10272 * fvwm/icons.c (SetMapStateProp):
10273 * fvwm/events.c (fake_map_unmap_notify):
10274 * fvwm/misc.c (IsRectangleOnThisPage):
10275 * fvwm/menus.c (menu_enter_tear_off_menu):
10276 (menu_close_tear_off_menu):
10277 * fvwm/icons.c (DrawIconWindow):
10279 * fvwm/colormaps.c (InstallWindowColormaps):
10280 made FvwmWindow * arguments const in many functions
10282 * fvwm/menus.c (pop_menu_up):
10285 (__mloop_do_popup):
10287 (menu_enter_tear_off_menu):
10288 (__mloop_get_event):
10289 (__mloop_get_event_timeout_loop):
10291 (__mloop_get_mi_actions):
10293 * fvwm/events.c (HandleEnterNotify):
10294 * fvwm/move_resize.c (AnimatedMoveAnyWindow):
10299 * fvwm/functions.c (DeferExecution):
10300 (__execute_function):
10301 * fvwm/windowlist.c (CMD_WindowList):
10302 * fvwm/colormaps.c (colormap_handle_colormap_notify):
10303 * fvwm/module_interface.c (CMD_ModuleSynchronous):
10304 (ExecuteModuleCommand):
10305 * fvwm/builtins.c (CMD_Wait):
10306 * fvwm/events.c (WaitForButtonsUp):
10307 (HandleShapeNotify):
10308 (HandleVisibilityNotify):
10309 (HandleUnmapNotify):
10310 (HandleSelectionRequest):
10311 (HandleReparentNotify):
10312 (HandlePropertyNotify):
10313 (HandleMotionNotify):
10314 (HandleMapRequestKeepRaised):
10315 (HandleMapRequest):
10316 (HandleMappingNotify):
10318 (HandleLeaveNotify):
10323 (HandleEnterNotify):
10324 (HandleDestroyNotify):
10325 (HandleColormapNotify):
10326 (HandleClientMessage):
10327 (HandleButtonRelease):
10328 (HandleButtonPress):
10329 (__handle_bpress_on_root):
10330 (__handle_bpress_action):
10331 (__handle_click_to_raise):
10332 (__handle_click_to_focus):
10333 (__is_bpress_window_handled):
10334 (__handle_focus_raise_click):
10335 don't use "Event", "Fw" and old_execute_function() anymore
10337 * fvwm/events.c (dispatch_event):
10338 removed preserve_tmpwin argument; changed all callers
10340 * fvwm/events.c (CoerceEnterNotifyOnCurrentWindow):
10341 fixed random focus member of faked event
10343 * fvwm/gnome.c (GNOME_ProcessClientMessage):
10344 * fvwm/ewmh_events.c (EWMH_ProcessClientMessage):
10345 (EWMH_ProcessPropertyNotify):
10346 * fvwm/move_resize.c (DisplaySize):
10348 (position_geometry_window):
10349 * fvwm/geometry.c (get_window_borders):
10350 (get_window_borders_no_title):
10353 * fvwm/events.c (dispatch_event):
10354 create event execution context
10355 (HandleClientMessage):
10356 removed useless local "button"
10358 don't fiddle with global Fw anymore; added argument to return context
10359 window; changed all callers
10361 * fvwm/events.c (CoerceEnterNotifyOnCurrentWindow):
10362 * fvwm/move_resize.c (__resize_window):
10363 use new event handle interface
10366 * fvwm/eventhandler.h:
10367 new event handler interface
10369 * fvwm/functions.c (CMD_Plus):
10370 * fvwm/builtins.c (AddToDecor):
10372 (CMD_DestroyDecor):
10373 use F_CMD_ARGS in AddToDecor
10375 removed useless check for realloc return value
10376 use new function interface
10377 fixed another memory leak
10379 * fvwm/builtins.c (__remove_window_decors):
10380 replace old_execute_function with execute_function
10382 * fvwm/add_window.c (setup_window_placement):
10383 * fvwm/placement.c (PlaceWindow):
10384 * fvwm/schedule.c (execute_obj_func):
10385 * fvwm/colorset.c (add_to_junk):
10386 use new function call interface
10388 * fvwm/fvwm.h (F_EXEC_ARGS):
10389 (F_PASS_EXEC_ARGS):
10390 removed now unused macros
10392 * fvwm/functions.c (CheckActionType):
10395 (__execute_function):
10396 (__run_complex_function_items):
10397 (execute_complex_function):
10398 rewrote function call interface
10400 * fvwm/functions.c (__run_complex_function_items):
10401 new function split off from execute_complex_function
10405 removed "Event" global
10407 2002-09-08 Dan Espen <dane@mk.telcordia.com>
10409 * fvwm/fvwm.1.in: Language check.
10411 2002-09-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10413 * fvwm/functions.c (old_execute_function):
10416 * fvwm/module_interface.c (do_execute_module):
10417 don't write module argument anymore; code claimed that writing 0 into
10418 *Module prevented WaitForButtonsUp from being called, but that was
10419 either a lie or a relic of the past
10421 * fvwm/fvwm.h (exec_func_args_type):
10425 removed *Module argument
10427 * fvwm/functions.c (__execute_function):
10430 * fvwm/functions.h (enum):
10431 added more function execution falgs
10434 add exec_context_t *exc to builtin arguments
10436 * libs/FEvent.c (fev_copy_last_event):
10439 * fvwm/execcontext.h:
10440 * fvwm/execcontext.c:
10441 new files introducing the "exec_context_t" structure that shall replace
10442 the builtin command interface
10444 * fvwm/stack.c (__RaiseOrLowerWindow):
10445 (RaiseOrLowerWindow):
10446 (__restack_window):
10447 (mark_transient_subtree):
10448 (__sort_transient_ring):
10449 properly handle restacking of windows with more than one transient and
10450 multiple levels of transients at the same time
10451 (__RaiseOrLowerWindow):
10452 (RaiseOrLowerWindow):
10453 renamed function and added wrapper
10455 * fvwm/fvwm.h (FvwmWindow):
10456 added new scratch registers
10458 2002-09-06 Mikhael Goikhman <migo@homemail.com>
10462 minor improvements in the new release procedure
10464 2002-09-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10466 * fvwm/stack.c (RaiseOrLowerWindow):
10467 (__restack_window):
10468 (mark_transient_subtree):
10469 (must_move_transients):
10470 (is_on_top_of_layer_ignore_rom):
10471 handle restacking trees of transient windows; still does not work too
10472 well if a window has multiple transients at the same time
10474 2002-09-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10478 restored versions from before 9th of September
10479 (RaiseOrLowerWindow):
10480 fixed StackTransientParent style without RaiseTransient or
10481 LowerTransient on transient_for window
10482 StackTransientParent works only on window in the same layer
10483 (mark_transient_subtree):
10484 fixed handling of window group hint w/ iconify
10486 (RaiseOrLowerWindow):
10488 fixed flickering when overlapping transients aree lowered
10490 * fvwm/move_resize.c (__resize_window):
10491 * fvwm/colorset.c (add_to_junk):
10492 cleaned up event handling
10494 * fvwm/move_resize.c (__resize_window):
10495 renamed function and changed callers
10497 * fvwm/fvwm.h (F_PASS_ARGS):
10499 removed eventp command argument
10501 * fvwm/events.c (DispatchEvent):
10503 renamed function, added event argument and changed all callers
10505 * libs/FEvent.c (fev_fake_event):
10506 * libs/FEvent.c (fev_get_evtype__remove_me):
10509 * fvwm/menus.c (menuShortcuts):
10516 (__mloop_get_event_timeout_loop):
10517 (__mloop_get_event):
10518 (__mloop_do_popup):
10519 (__mloop_do_popup):
10521 * fvwm/builtins.c (CMD_FakeClick):
10522 * fvwm/functions.c (CheckActionType):
10524 * fvwm/focus.c (__try_program_focus):
10525 (__try_program_focus):
10526 * fvwm/icccm2.c (SetupICCCM2):
10527 * fvwm/virtual.c (HandlePaging):
10528 * fvwm/module_interface.c (make_vpacket):
10529 (make_new_vpacket):
10530 * fvwm/schedule.c (squeue_get_next_ms):
10531 (squeue_get_next_ms):
10533 * fvwm/stack.c (BroadcastRestack):
10534 * fvwm/move_resize.c (resize_window):
10536 * libs/FEvent.c (fev_get_evtime):
10537 removed global lastTimestamp; use fev_get_evtime() from FEvent.c instead
10539 * fvwm/events.c (HandleEnterNotify):
10543 (discard_window_events):
10544 * fvwm/move_resize.c (AnimatedMoveAnyWindow):
10547 * fvwm/menus.c (__mloop_get_event):
10548 * fvwm/virtual.c (HandlePaging):
10550 * fvwm/functions.c (DeferExecution):
10552 * fvwm/misc.c (get_server_time):
10553 * fvwm/builtins.c (CMD_StrokeFunc):
10554 * fvwm/menus.c (pop_menu_up):
10557 * libs/FEvent.c (fev_update_last_timestamp):
10558 removed StashEventTime function; handle this directly in FEvent.c
10560 * fvwm/module_interface.c (ExecuteModuleCommand):
10561 * fvwm/misc.c (Keyboard_shortcuts):
10562 * fvwm/colormaps.c (colormap_handle_colormap_notify):
10563 * fvwm/events.c (handle_all_expose):
10567 don't use Event global anymore
10569 * fvwm/bindings.c (activate_binding):
10570 fixed key bindings on window corners
10572 * libs/fvwmlib.h (C_DECOR):
10573 context including all parts of the decorations
10575 2002-09-04 Mikhael Goikhman <migo@homemail.com>
10578 fixed compilation warning in #endif comment
10581 removed debug fprintf
10587 another solution for reporting the cvs status
10589 2002-09-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10591 * configure.in (LIBOBJS):
10592 * acinclude.m4 (smr_SWITCH):
10593 fix for autoconf 2.53
10596 removed unnecessary includes
10598 * fvwm/Makefile.am (fvwm_SOURCES):
10600 * fvwm/eventmasks.h:
10601 * fvwm/eventhandlers.h:
10602 new files split from events.h
10604 * fvwm/icccm2.c (HandleSelectionRequest):
10605 (HandleSelectionClear):
10606 * fvwm/colormaps.c (HandleColormapNotify):
10607 * fvwm/menus.c (menu_tear_off):
10608 * fvwm/move_resize.c (resize_window):
10611 new argument avh_args_t to the event handler functions; still unused
10612 moved all event handlers to events.c
10613 remove now unnecessary includes in some files
10615 * fvwm/icccm2.c (HandleSelectionRequest):
10619 use replacements for X event functions everywhere
10621 2002-09-03 Mikhael Goikhman <migo@homemail.com>
10625 * fvwm/borders.c (border_flags_to_button_state):
10627 * fvwm/builtins.c (ReadTitleButton):
10628 * fvwm.1.in (ButtonStyle, TitleStyle, ButtonState):
10629 * fvwm/fvwm.c (InitVariables):
10630 Imlemented new title and button states InactiveUp and InactiveDown,
10631 new state shortcuts Active, Inactive, ToggledActive, ToggledInactive.
10632 So now there are 4+4 states and 2+2 aliases instead of 3+3 states.
10633 Updated all ButtonStyle, TitleStyle and ButtonState commands.
10636 reformat license info in -version to be 3 lines and one empty line
10637 instead of 5 non-empty lines, for readability
10639 2002-09-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10643 * libs/Makefile.am:
10646 * fvwm/stack.c (__raise_or_lower_recursion):
10647 (RaiseOrLowerWindow):
10648 split into two functions
10649 renamed to __raise_or_lower_window
10650 (mark_transient_subtree):
10651 new flag MARK_CLEAR
10652 (position_new_window_in_stack_ring):
10655 cleaned up stacking code
10657 * fvwm/menus.c (paint_menu):
10658 fixed a minor drawing problem with menu item reliefs
10660 2002-09-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10662 * fvwm/move_resize.c (InteractiveMove):
10663 removed eventp from interface
10664 changed all callers
10666 * fvwm/menucmd.c (menu_func):
10667 * fvwm/gnome.c (GNOME_ProxyButtonEvent):
10668 * fvwm/windowlist.c (CMD_WindowList):
10669 * fvwm/read.c (run_command_file):
10670 (run_command_stream):
10671 * fvwm/focus.c (warp_to_fvwm_window):
10672 * libs/Event.c (GetSubwindowFromEvent):
10673 * fvwm/events.c (GetContext):
10674 * libs/Pointer.c (GetLocationFromEventOrQuery):
10675 * fvwm/builtins.c (CMD_StrokeFunc):
10677 * fvwm/events.c (StashEventTime):
10678 * fvwm/move_resize.c (InteractiveMove):
10679 * fvwm/functions.c (DeferExecution):
10680 (old_execute_function):
10681 * fvwm/fvwm.h (F_CMD_ARGS):
10683 make eventp argument const to ease clean up work
10685 * fvwm/windowlist.c (CMD_WindowList):
10686 * fvwm/move_resize.c (InteractiveMove):
10687 * fvwm/menucmd.c (menu_func):
10688 * fvwm/icons.c (CMD_Iconify):
10689 always query pointer position in case a script modified the position
10692 * fvwm/focus.c (SetPointerEventPosition):
10693 removed function since it modifies the global event variable
10695 * fvwm/functable.c (func_table):
10696 added cursor and event type members fo DeferExecution call
10697 * fvwm/functions.c (DeferExecution):
10698 made static, call from inside functions.c only
10699 removed calls everywhere
10701 * fvwm/builtins.c (CMD_StrokeFunc):
10704 * fvwm/virtual.c (HandlePaging):
10706 don't use global "Event" anymore
10708 pass in event structure through arguments
10709 changed all callers
10711 2002-09-02 olicha <olivier.chapuis@free.fr>
10713 * libs/Colorset.c (*):
10715 * libs/colorset.c (parse_colorset):
10716 * libs/PictureGraphics.c (PGrabXImage):
10717 (PCreateRenderPixmap):sx
10718 (PGraphicsCreateTransprency):
10719 * libs/PictureGraphics.h:
10720 An experimental implementation of ParentalRelative tinted background
10722 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
10723 * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
10725 * libs/PictureGraphics.c (PGraphicsCreateStretchPicture):
10726 * libs/FRenderInit.c (FRenderInit):
10727 (FRenderGetAlphaDepth):
10728 * libs/FRenderInit.h:
10729 Fixed alpha blending for xserver without depth 8 pixmap
10735 2002-09-01 olicha <olivier.chapuis@free.fr>
10738 Colorset and alpha blending news
10740 2002-08-31 olicha <olivier.chapuis@free.fr>
10742 * libs/Ficonv.c (convert_charsets):
10743 Fixed compilation on systems that do not have EILSEQ
10745 2002-08-30 olicha <olivier.chapuis@free.fr>
10747 * libs/PictureGraphics.c (PGraphicsCreateStretchPicture):
10748 Fixed compilation of certain modules
10750 * fvwm/borders.c (border_render_into_pixmap):
10751 * libs/PictureGraphics.c (PGraphicsCreateStretchPicture):
10752 * libs/PictureGraphics.h:
10753 * libs/Graphics.c (CreateStretchPixmap):
10754 (CreateStretchYPixmap):
10755 (CreateStretchXPixmap):
10756 Progress with masks in multipixmap title
10758 * libs/PictureGraphics.c (PCopyArea):
10760 (PCreateRenderPixmap):
10761 * fvwm/borders.c (border_fill_pixmap_background):
10764 * fvwm/icons.c (DrawIconWindow):
10765 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
10766 Fixed the shape mask of ewmh icons and icons with some alpha
10768 2002-08-30 olicha <olivier.chapuis@free.fr>
10770 * libs/PictureGraphics.c (PCreateRenderPixmap):
10771 (PGrabImageErrorHandler):
10772 (PGraphicsCopyPixmaps):
10773 (PGraphicsCopyFvwmPicture):
10774 (PGraphicsTileRectangle):
10775 (PGraphicsRenderPixmaps):
10776 (PGraphicsRenderPicture):
10777 * libs/PictureGraphics.h:
10778 * libs/PictureBase.h:
10779 Replaced PGraphicsTileRectangle with a more powerful function,
10780 PCreateRenderPixmap, which performs *full* XRender simulation.
10781 So alpha blending is now supported even without Xrender support.
10782 New interface function PGraphicsRenderPixmaps and PGraphicsRenderPicture
10783 for direct rendering with tint and alpha channel.
10785 * libs/FRender.c (FRenderVisualInit):
10787 (FRenderTintRectangle):
10789 * libs/FRenderInterface.h:
10790 Replaced FRenderCopyArea and FRenderTintRectangle with a more general
10791 and more powerfull function FRenderRender
10793 * libs/PictureImageLoader.c (PImageCreatePixmapFromArgbData):
10795 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
10796 Load the alpha even without Xrender support
10799 * fvwm/colorset.c (parse_pixmap_tint):
10802 Implemented IconTint, IconAlpha, bgTint. Tint (~ PixmapTint or ImageTint
10803 or obsolete TintMask) also tints gradients and the tint is applied
10804 only to the pixmap not the bg color. The average bg is computed from
10805 the "original" pixmap and not the tinted one, bgTint should be used
10806 to get a real average bg in the case the pixmap is tinted
10808 * fvwm/icons.c (DrawIconWindow):
10809 (CreateIconWindow):
10810 * fvwm/menuitem.c (menuitem_paint):
10811 * fvwm/menus.c (paint_side_pic):
10812 * fvwm/borders.c (border_get_border_background):
10813 (border_draw_decor_to_pixmap):
10814 (border_fill_pixmap_background):
10815 * fvwm/events.c (HandlePropertyNotify):
10816 Picture rendering use the new PGraphicsRenderPixmaps and
10817 PGraphicsRenderPicture libs functions. Respect new colorset options
10819 * fvwm/colorset.c (parse_colorset):
10821 (CMD_ReadWriteColors):
10823 Removed the read write colorset codes
10825 * libs/Graphics.c (CalculateGradientDimensions):
10826 Fixed the size of dithered H and V gradients
10828 * libs/PictureUtils.c (*):
10829 * libs/PictureUtils.h:
10832 2002-08-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10834 * fvwm/menus.c (paint_menu_gradient_background):
10835 fixed drawing of SidePic menu background when not using SideColor
10838 * FvwmIconBox/icons.c:
10841 2002-08-26 Mikhael Goikhman <migo@homemail.com>
10843 * NEWS: mention new FvwmButtons additions and TitleStyle MultiPixmap
10845 2002-08-26 Mikhael Goikhman <migo@homemail.com>
10848 fixed --disable-ewmh
10852 added const to some prototypes
10854 2002-08-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10856 * fvwm/menus.c (MenuInteraction):
10858 renamed MenuInteraction to __menu_loop
10860 * fvwm/menus.c (pop_menu_up):
10863 removed pdo_warp_to_title argument of pop_menu_up and changed all
10864 callers; logic is now in last_saved_position_hints
10865 (__menu_get_next_event_timeout_loop):
10866 began to split MenuInteraction into several sub functions
10867 go away, evil "goto"!
10869 * fvwm/style.c (style_parse_one_style_option):
10870 all boolean styles - and *only* boolean styles, can be prefixed with a
10871 '!' to invert their meaning
10872 (style_parse_button_style):
10873 moved Button and NoButton styles to separate function
10877 updated for 2.5.4-devel
10886 * fvwm/menuitem.h (struct):
10887 * fvwm/menus.c (paint_menu_gradient_background):
10888 (paint_menu_pixmap_background):
10890 (clear_expose_menu_area):
10891 fixed TiledPixmap menu background drawing bug
10892 sorted function in file and removed forward declarations
10894 2002-08-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10896 * fvwm/Makefile.am (LDADD):
10897 put -lfvwm at front of library list
10899 * fvwm/windowlist.c (CMD_WindowList):
10900 print window's page instead of current page in windowlist
10902 2002-08-24 Bob Woodside <dumbledore@woodsway.com>
10904 * fvwm/events.c (HandleButtonPress, HandleEnterNotify):
10905 Fix for Experimental RaiseOverUnmanaged Handling.
10907 2002-08-22 Bob Woodside <dumbledore@woodsway.com>
10911 New defs for Experimental RaiseOverUnmanaged Handling.
10913 * fvwm/events.c (HandleEnterNotify):
10915 (set_focus_to_fwin)
10916 (focus_query_grab_buttons)
10917 (_focus_grab_buttons)
10918 (focus_grab_buttons)
10919 (focus_grab_buttons_client_entered)
10921 (__activate_window_by_command)
10922 (_ReturnFocusWindow)
10924 (_ForceDeleteFocus)
10926 (raise_over_unmanaged)
10927 (is_above_unmanaged)
10928 (_is_on_top_of_layer)
10929 (is_on_top_of_layer)
10930 (is_on_top_of_layer_and_above_unmanaged)
10931 Experimental RaiseOverUnmanaged Handling - an attempt to fix the
10932 interaction of RaiseOverUnmanaged with various focus policies,
10933 particularly mouse focus + client click raises; issue mouse
10934 button grabs when and only when they are actually needed; and
10935 fix the old "xfm + MouseFocusClickRaises" bug once and for all.
10936 (Thanks to the GFPR, this is much more straightforward to do!)
10938 2002-08-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10941 added a paragraph about scripting and complex functions.
10943 * fvwm/style.c (style_parse_one_style_option):
10944 fixed flag_mask and change_mask of TitleAt... styles that broke left
10947 2002-08-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10950 describe new focus policy styles
10952 2002-08-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
10954 * fvwm/style.c (merge_styles):
10955 fixed applying style updates immediately
10957 * fvwm/geometry.c (constrain_size):
10958 fixed font resizing of maximized windows
10960 * fvwm/window_flags.h:
10961 * fvwm/fvwm.h (has_new_wm_normal_hints):
10964 * fvwm/events.c (HandleEnterNotify):
10965 fixed UngrabNotify returning focus to just unfocused window
10969 * fvwm/style.c (merge_styles):
10971 (__simplify_style_list):
10972 fixed default style calculations
10974 * fvwm/events.c (HandleConfigureRequest):
10975 disabled debug output
10977 * fvwm/style.c (merge_styles):
10978 * fvwm/fvwm.h (window_style):
10979 new style member default_mask to allow two levels of defaults;
10980 fixes focus policy defaults
10982 rewrote many of the macros; changed all callers
10984 * fvwm/borders.c (RenderIntoPixmap):
10985 (DrawMultiPixmapTitlebar):
10986 (border_render_into_pixmap):
10987 (border_draw_multi_pixmap_titlebar):
10988 applied Suzanne Skinner's multi pixmap titles fix
10989 renamed functions and changed all callers
10991 * libs/FScreen.c (FScreenGetScrRect):
10994 new utility functions
10996 * fvwm/windowlist.c (CMD_WindowList):
10997 new option MaxLabelWidth for the WIndowList command based on patch by
10999 new options NoLayer, ShowPage, ShowPageX, ShowPageY and ShowScreen to
11000 WindowList command.
11002 * fvwm/events.c (HandleConfigureRequest):
11003 removed debug code now that the EXPERIMENTAL_ANTI_RACE_CONDITION_CODE
11004 seems to work without problems
11006 2002-08-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11008 * fvwm/style.c (merge_styles):
11009 fixed style defaults getting stuck to on once set
11012 fixed a number of non portable uses of the "test" command and unified
11013 the used syntax of all calls to reduce chance of copy-and-paste
11016 2002-08-17 Mikhael Goikhman <migo@homemail.com>
11020 minor typos and improvements;
11021 better string quotings and detection of fribidi for autoconf-2.53
11023 * fvwm/Makefile.am:
11024 don't include *.in in EXTRA_DIST, they are auto-included
11026 2002-08-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11028 * fvwm/events.c (HandleConfigureRequest):
11029 (HandlePropertyNotify):
11030 (is_resizing_event_pending):
11031 fixed uninitialised return code of test_resizing_event
11033 2002-08-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11035 * fvwm/decorations.c (SelectDecor):
11037 * fvwm/window_flags.h:
11039 moved common.s.has_no_border window flag to common.has_no_border to
11040 fix windows getting stuck without a border once the HandleWidth or
11041 BorderWidth was set to 0 and then increased again
11044 removed reference to BUGS and TODO
11047 moved a lot of constant definitions to configure.in; the fvwm.lsm and
11048 fvwm.1 files don't have to be updated for a release anymore; the release
11049 number and date are set by configure
11051 * fvwm/fvwm.c (setVersionInfo):
11052 fixed output of "fvwm -version"
11054 2002-08-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11056 * fvwm/style.c (style_parse_one_style_option):
11057 Old focus styles override less of the behaviour specified with the
11058 FP... styles; use defaults instead without setting the mask
11059 (style_parse_one_style_option):
11060 removed the styles MouseFocusClickIgnoreMotion and
11061 MouseFocusClickIgnoreMotionOff, use the corresponfing FP... styles
11063 (style_parse_one_style_option):
11064 ClickToFocusRaises now works only on the client window, not on the
11066 (style_parse_one_style_option):
11067 fixed FocusFollowsMouse style
11068 (style_set_old_focus_policy):
11069 moved old default focus settings to a separate function, simplified code
11071 2002-08-14 Dan Espen <dane@mk.telcordia.com>
11073 * fvwm/fvwm.1: Add hot-spot is an offset information,
11074 fix spelling, "hot-spot", not "hotspot" (too bad its wrong in
11077 2002-08-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11079 * fvwm/style.c (style_parse_focus_policy_style):
11080 fixed parsing of FPFocusClickButtons and FocusClickModifiers
11082 * libs/Makefile.am:
11083 added missing files
11085 * fvwm/events.c (HandleConfigureRequest):
11086 fixed ConfigureRequest race condition
11088 2002-08-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11091 quote environment variables
11093 2002-08-13 olicha <olivier.chapuis@free.fr>
11096 Color limit and dithering news
11099 Added a minimal doc for the -color-limit option
11101 * fvwm/builtins.c (CMD_ColorLimit):
11102 ColorLimit is obsolete
11104 * fvwm/builtins.c (ReadDecorFace):
11105 * libs/PictureUtils.c (my_dither_depth_15_16_init):
11106 (PictureAllocColorAllProp):
11107 Implemented dithering for depth 16 and 15. This is off by default
11108 in colorset (use the dither colorset option) and on by default
11109 for window title gradient. Gradient are visibly more smooth.
11111 * libs/PictureUtils.c (*):
11114 2002-08-13 Mikhael Goikhman <migo@homemail.com>
11117 corrected the pixmap cursor description, added an example
11119 2002-08-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11121 * fvwm/menus.c (select_menu_item):
11122 (paint_menu_gradient_background):
11123 fixed a redrawing problem with H/Vgradient menu faces
11125 fixed a minor problem w/ entering submenus via keyboard
11127 2002-08-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11129 * fvwm/move_resize.c (CMD_ResizeMove):
11132 (CMD_ResizeMaximize):
11133 (CMD_ResizeMoveMaximize):
11134 commands can be used on iconified windows again
11138 moved pre-2.2 NEWS to ONEWS
11141 * libs/safemalloc.c:
11147 * fvwm/menustyle.c:
11154 let config.h include strinh.h or strings.h
11156 * fvwm/style.c (style_parse_one_style_option):
11157 (style_parse_one_style_option):
11158 fixed icon box crash
11160 * fvwm/bindings.c (update_nr_buttons):
11161 fixed extra buttons on window decorations
11163 * fvwm/style.c (style_parse_one_style_option):
11164 fixed parsing of the FP... and !FP... styles
11166 2002-08-12 Bob Woodside <dumbledore@woodsway.com>
11168 * fvwm/style.c (style_parse_one_style_option):
11169 Fixed a typo so that ClickToFocusRaisesOff actually turns
11170 the option off instead of on.
11172 2002-08-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11174 * fvwm/focus.c (focus_grab_buttons):
11175 only grab necessary buttons on the client window
11177 2002-08-11 olicha <olivier.chapuis@free.fr>
11179 * libs/PictureUtils.c (PICTURE_DEBUG_COLORS_ALLOC_FAILURE):
11180 Removed some debug code
11182 * fvwm/fvwm.c (main):
11184 Added -color-limit to fvwm usage
11186 2002-08-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11188 * fvwm/style.c (style_parse_one_style_option):
11189 (style_parse_focus_policy_style):
11190 added style options "FP..." to control focus policy
11191 removed OverrideGrabFocus and AllowGrabFocus styles
11193 * fvwm/style.c (merge_styles):
11194 fixed style defaults != 0
11196 * fvwm/focus.c (__restore_focus_after_unmap):
11197 fixed a bug w/ reverting the focus from transients to the parent
11199 * fvwm/ewmh.c (ewmh_HandleDesktop):
11200 * fvwm/style.c (style_parse_one_style_option):
11201 fixed defaults for various focus styles
11206 * fvwm/frame.c (frame_mrs_resize_move_windows):
11207 backed out anti-flicker patch that slowed down command processing
11209 * fvwm/bindings.c (update_nr_buttons):
11211 fixed sluggish processing of mouse bindings
11213 * fvwm/events.c (__handle_bpress_action):
11214 fixed drawing of pressed decorations w/o bindings
11216 * fvwm/frame.c (frame_move_resize):
11217 removed debug code that broke focus handling
11219 * fvwm/style.c (style_parse_one_style_option):
11220 fixed passing the focus click to the app by default
11222 * fvwm/events.c (__handle_click_to_focus):
11223 * fvwm/focus.c (set_focus_to_fwin):
11224 (__set_focus_to_fwin):
11225 removed drawing code that broke as many places as it fixed; plus it
11226 cause unnecessary redraws
11228 * fvwm/events.c (HandleConfigureRequest):
11229 send a synthetical ConfigureNotify if an application is not granted its
11230 wishes from a ConfigureRequest; this is necessary for FixedPPosition
11231 and FixedPSize to work properly; also to be ICCCM compliant
11232 always force border_width 0 in these events
11233 in the experimental cr merging code, send a number of cn events equal
11234 to the number of merged events
11240 * fvwm/style.c (style_parse_focus_policy_style):
11241 (style_parse_icon_size_style):
11242 (style_parse_icon_box_style):
11243 (style_parse_icon_grid_style):
11244 (style_parse_icon_fill_style):
11245 (style_parse_one_style_option):
11246 (parse_and_set_window_style):
11247 split into separate functions
11248 (style_parse_one_style_option):
11249 simplified and cleaned up
11252 * fvwm/decorations.c:
11255 * fvwm/conditional.h:
11256 * fvwm/conditional.c:
11260 * fvwm/colormaps.c:
11263 reformatted and cleaned up
11265 2002-08-11 olicha <olivier.chapuis@free.fr>
11267 * libs/PictureUtils.c (*):
11268 * libs/PictureUtils.h:
11269 * libs/PictureDitherMatrice.h (new file):
11270 * libs/PictureImageLoader.c (*):
11271 * libs/PictureImageLoader.h:
11272 * libs/PictureGraphics.c (PGraphicsCreateDitherPixmap):
11273 (PCreateDitherPixmap):
11274 (PCreateTintedPixmap):
11275 * libs/PictureGraphics.h:
11276 * libs/PictureBase.c (PictureInitCMap):
11277 * libs/PictureBase.h:
11278 * libs/Picture.c (*):
11281 * libs/Colorset.c (DumpColorset):
11284 * libs/Graphics.c (all gradient functions):
11287 * fvwm/move_resize.c (CMD_XorPixmap):
11288 * fvwm/colors.c (FreeColors):
11289 * fvwm/builtins.c (CMD_DefaultColors):
11290 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
11291 * fvwm/builtins.c (FreeDecorFace):
11293 * fvwm/menus.c (pop_menu_down):
11294 (paint_menu_gradient_background):
11297 * fvwm/menustyle.c (menustyle_free_face):
11298 (menustyle_parse_face):
11300 (menustyle_update):
11301 (menustyle_parse_style):
11302 (CMD_CopyMenuStyle):
11303 * fvwm/menustyle.h:
11304 * fvwm/icons.c (GetIconFromFile):
11305 * fvwm/builtins.c (ReadMultiPixmapDecor):
11307 * fvwm/borders.c (border_draw_decor_to_pixmap):
11308 * fvwm/add_window.c (setup_mini_icon):
11309 * fvwm/fvwm.c (main):
11310 * fvwm/colorset.c (free_colorset_background):
11314 New color limit method and implement dithering in depth <= 8.
11315 Added a "fvwm picture attributes" structure for loading image.
11316 Some colors leaks fix. Add some (weak) color leaks. New option
11317 -color-limit for fvwm. 257 fix. Some prepartion for tint and
11320 2002-08-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11322 * libs/Flocale.c (FlocaleRotateDrawString):
11325 2002-08-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11327 * fvwm/style.c (parse_and_set_window_style):
11328 fixed the default for passing the click-to-raise click for mousey
11331 * fvwm/events.c (__handle_click_to_focus):
11332 removed redundant code
11333 (WaitForButtonsUp):
11334 fixed sluggish motion event handling when waiting for buttons to be
11337 * fvwm/focus.c (__set_focus_to_fwin):
11338 (set_focus_to_fwin):
11339 fixed redrawing the border w/ mousey focus when the window was entered,
11340 then the border was clicked before the FocusIn event arrived
11342 * fvwm/events.c (__handle_bpress_on_managed):
11343 * fvwm/style.c (parse_and_set_window_style):
11344 fixed some small focus problems
11347 reformatted and cleaned up
11352 * fvwm/focus.c (focus_query_click_to_raise):
11353 (focus_query_click_to_focus):
11354 * fvwm/style.c (parse_and_set_window_style):
11355 * fvwm/events.c (__test_for_motion):
11356 (__check_click_to_focus_or_raise):
11357 (__handle_focus_raise_click):
11358 (__is_bpress_window_handled):
11359 (__handle_click_to_focus):
11360 (__handle_click_to_raise):
11361 (__handle_bpress_stroke):
11362 (__handle_bpress_action):
11363 (__handle_bpress_on_root):
11364 (__handle_bpress_on_unmanaged):
11365 (__handle_bpress_on_managed):
11366 (HandleButtonPress):
11367 GFPR: completely rewrote ButtonPress handler, thus finishing the core
11368 of the new focus code; only the parsing for the new styles is missing
11370 * fvwm/virtual.c (is_pan_frame):
11373 2002-08-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11375 * fvwm/add_window.c (AddWindow):
11376 fixed compile error
11378 * fvwm/events.c (__handle_focus_raise_click):
11379 (HandleButtonPress):
11382 * fvwm/events.c (__handle_focus_raise_click):
11383 * fvwm/fvwm.h (struct):
11384 * fvwm/style.c (check_window_style_change):
11385 (parse_and_set_window_style):
11386 * fvwm/session.c (MatchWinToSM):
11387 * fvwm/window_flags.h:
11388 eliminated parts of the old focus code
11390 * fvwm/focus.c (__set_focus_to_fwin):
11391 (set_focus_to_fwin):
11392 * fvwm/fvwm.c (InitVariables):
11393 * fvwm/add_window.c (destroy_window):
11394 * fvwm/events.c (__handle_focus_raise_click):
11395 * fvwm/screen.h (ScreenInfo):
11396 eliminated Scr.Ungrabbed global
11398 * fvwm/update.c (apply_window_updates):
11399 (flush_window_updates):
11400 * fvwm/icons.c (DeIconify):
11402 * fvwm/move_resize.c (CMD_Maximize):
11405 * fvwm/frame.c (frame_free_move_resize_args):
11406 (__frame_setup_window):
11407 * fvwm/virtual.c (do_move_window_to_desk):
11408 (CMD_GotoDeskAndPage):
11411 * fvwm/stack.c (LowerWindow):
11412 * fvwm/events.c (HandleMapNotify):
11413 (HandleVisibilityNotify):
11416 (__handle_focus_raise_click):
11417 (HandleEnterNotify):
11418 (HandleMapRequestKeepRaised):
11419 * fvwm/add_window.c (setup_key_and_button_grabs):
11420 (setup_focus_policy):
11422 * fvwm/focus.c (__try_other_screen_focus):
11423 (__set_focus_to_fwin):
11424 (set_focus_to_fwin):
11425 (focus_grab_buttons_on_pointer_window):
11426 (focus_grab_buttons_on_layer):
11427 (focus_grab_buttons_new):
11428 cleaned up focus grab handling.
11430 * fvwm/focus.c (focus_grab_buttons_on_pointer_window):
11433 2002-08-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11435 * fvwm/add_window.c (setup_window_structure):
11437 discarded unused return code
11439 * fvwm/focus.c (focus_grab_buttons):
11440 split into two fucntions and fixed a bug with ungrabbing buttons
11442 * fvwm/focus_policy.c (fpol_query_allow_set_focus):
11443 * fvwm/style.c (parse_and_set_window_style):
11444 * fvwm/icons.c (DeIconify):
11446 * fvwm/events.c (HandleButtonPress):
11447 (HandleEnterNotify):
11448 (HandleLeaveNotify):
11450 (HandleMapRequestKeepRaised):
11451 * fvwm/add_window.c (CaptureAllWindows):
11452 * fvwm/virtual.c (UnmapDesk):
11454 (do_move_window_to_desk):
11455 * fvwm/update.c (flush_window_updates):
11456 * fvwm/focus.c (set_focus_model):
11458 (__restore_focus_after_unmap):
11459 much more GFPR work; these patches may break lots of things
11461 * fvwm/focus.c (set_focus_to_fwin):
11462 (__activate_window_by_command):
11464 (ReturnFocusWindow):
11466 (ForceDeleteFocus):
11467 renamed MoveFocus to set_focus_to_fwin
11469 2002-08-07 Mikhael Goikhman <migo@homemail.com>
11471 * libs/Fft.c (FftDrawString):
11472 removed redudant and buggy code that called DrawStringFunc before
11473 this pointer gets initialized
11475 * fvwm/focus.c (focus_query_click_to_raise):
11476 fixed possibly-uninitialized variable warning
11478 * fvwm/Makefile.am:
11479 specify stroke includes before Xft includes, may improve some cases
11481 2002-08-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11484 fixed sys/time.h detection
11486 * fvwm/events.c (HandleMappingNotify):
11487 * libs/Bindings.c (AddBinding):
11488 added MappingNotify event handler
11490 * fvwm/events.c (HandleMapRequest):
11493 * fvwm/events.c (InitEventHandlerJumpTable):
11494 another attempt at handling "unknown" modifiers in key bindings
11496 2002-08-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11498 * fvwm/stack.c (is_on_top_of_layer_ignore_rom):
11499 * fvwm/add_window.c (destroy_window):
11500 * fvwm/focus.c (focus_grab_buttons):
11503 2002-08-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11505 * fvwm/focus.c (focus_force_refresh_focus):
11506 * fvwm/events.c (HandleEnterNotify):
11507 (HandlePropertyNotify):
11508 (HandleButtonPress):
11509 * fvwm/icons.c (DeIconify):
11510 * fvwm/virtual.c (MapDesk):
11511 * fvwm/focus_policy.c (fpol_query_allow_user_focus):
11512 * fvwm/update.c (apply_window_updates):
11513 * fvwm/module_interface.c:
11514 * fvwm/conditional.c (MatchesConditionMask):
11517 * fvwm/icons.c (Iconify):
11518 removed "#if 0"ed code
11520 * fvwm/module_interface.c:
11521 disabled the old ConfigureWindow module interface
11524 * libs/fvwmsignal.h:
11526 * fvwm/ewmh_intern.h:
11528 * fvwm/module_interface.c:
11533 new file to encapsulate time.h and sys/time.h inclusion
11537 (mark_transient_subtree):
11538 (__mark_group_member):
11539 cleaned up and split into two functions
11541 * fvwm/focus.c (CMD_Focus):
11543 * fvwm/icons.c (DeIconify):
11546 (__activate_window_by_command):
11549 * fvwm/focus_policy.c (fpol_query_allow_set_focus):
11550 * fvwm/focus_policy.h (fpol_set_focus_by_t):
11551 * fvwm/style.c (parse_and_set_window_style):
11552 (parse_and_set_window_style):
11553 began implementing new focus control styles
11555 * fvwm/focus.c (DoSetFocus):
11556 (__restore_focus_after_unmap):
11561 (__set_focus_to_fwin):
11564 * fvwm/conditional.c (MatchesConditionMask):
11565 * fvwm/focus.c (focus_query_open_grab_focus):
11566 (focus_query_close_restore_focus):
11567 (focus_does_accept_input_focus):
11569 * fvwm/events.c (HandleUnmapNotify):
11570 (HandleEnterNotify):
11572 (HandleMapRequestKeepRaised):
11573 renamed some functions
11576 * fvwm/focus_policy.c:
11577 * fvwm/focus_policy.h:
11578 prepared some future focus policy flags
11581 enable error message when png or xpm test compilation fails
11584 * fvwm/window_flags.h:
11585 * fvwm/ewmh.c (ewmh_HandleDesktop):
11586 * fvwm/style.c (parse_and_set_window_style):
11587 (check_window_style_change):
11588 * fvwm/events.c (HandleButtonPress):
11589 (HandleVisibilityNotify):
11590 began GFPR migration of *raises* focus policy flags
11592 * fvwm/focus.c (focus_is_focusd):
11595 * libs/Bindings.c (AddBinding):
11596 fixed handling of "unknown" modifiers in key bindings
11598 * fvwm/focus.c (focus_grab_buttons):
11599 (focus_query_grab_buttons):
11600 moved focus policy code into separate function
11602 2002-08-02 Mikhael Goikhman <migo@homemail.com>
11607 2002-08-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11609 * fvwm/style.c (parse_and_set_window_style):
11610 * fvwm/focus.c (focus_query_grab_focus):
11611 * fvwm/events.c (HandleMapNotify):
11612 (HandlePropertyNotify):
11613 * fvwm/focus_policy.c (fpol_init_default_fp):
11615 new styles OverrideGrabFocus and AllowGrabFocus
11616 cleaned up focus grabbing code and moved to focus.c
11618 2002-07-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11620 * fvwm/focus.c (CMD_WarpToWindow):
11621 fixed negative arguments for unmanaged windows
11623 * fvwm/conditional.c (CMD_Direction):
11624 use PeekToken instead of GetNextToken
11626 new direction "center"
11628 2002-07-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11630 * fvwm/events.c (addkbsubinstoarray):
11631 disabled experimental pointer warping code
11634 removed menu crash debug code
11636 2002-07-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11639 added tons of crash debug code
11641 * fvwm/add_window.c:
11642 made a lot of internal functions static
11644 * fvwm/add_window.c (setup_button_windows):
11645 (destroy_title_window):
11646 (destroy_button_windows):
11647 (destroy_resize_handle_windows):
11648 (destroy_auxiliary_windows):
11651 * fvwm/icons.c (CreateIconWindow):
11652 safety patches w/ XDeleteContext
11654 * fvwm/menus.c (DestroyMenu):
11655 fixed a crash w/ accessing already deleted menus
11657 2002-07-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11659 * fvwm/menus.c (get_menu_options):
11660 fixed menu context rectangle "icon" if the icon was not just a pixmap
11662 2002-07-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11664 * fvwm/events.c (HandleMapNotify):
11665 (HandleMapRequestKeepRaised):
11666 (HandleUnmapNotify):
11667 * fvwm/ewmh_events.c (ewmh_WMStateModal):
11668 * fvwm/ewmh.c (ewmh_HandleDesktop):
11669 * fvwm/style.c (parse_and_set_window_style):
11670 removed old do_grab_focus_when_created and *_when_transient_* flags
11672 2002-07-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11674 * fvwm/conditional.c (MatchesConditionMask):
11675 * fvwm/focus.c (DoSetFocus):
11676 * fvwm/session.c (MatchWinToSM):
11677 * fvwm/module_interface.c (SETOLDFLAGS):
11678 removed old is_lenient flag
11681 * fvwm/style.c (__simplify_style_list):
11682 (simplify_style_list):
11685 * fvwm/window_flags.h:
11687 access macros for focus policy flags structures
11690 * fvwm/focus_policy.c:
11691 * fvwm/focus_policy.h:
11692 new files, begin great focus policy rewrite aka GFPR
11694 2002-07-22 Bob Woodside <dumbledore@woodsway.com>
11696 * fvwm/placement.c (PlaceWindow):
11697 Fixed interaction between CascadePlacement and StartsOnPage
11699 2002-07-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11701 * libs/fvwmsignal.c (fvwmSelect):
11702 call alloca(0) in fvwmSelect to make sure the memory is not leaked in
11705 2002-07-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11707 * fvwm/add_window.c (CaptureOneWindow):
11708 fixed a core dump w/ windows being destroyed during a recapture
11710 removed duplicate check if new windows still exist
11712 * fvwm/placement.c (CMD_PlaceAgain):
11713 * fvwm/move_resize.c (move_window_doit):
11715 * fvwm/virtual.c (MapDesk):
11717 (do_move_window_to_desk):
11718 * fvwm/icons.c (AutoPlaceIcon):
11719 (ChangeIconPixmap):
11721 some cleanup in movement code
11722 new option "Icon" to PlaceAgain command
11723 adapted documentation accordingly
11725 * fvwm/move_resize.c (move_window_doit):
11729 2002-07-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11731 * libs/Flocale.c (FlocaleRotateDrawString):
11732 create gcs only once
11735 removed some references to Recapture
11736 UseDecor, UseStyle, AddToDecor, ChangeDecor, DestroyDecor, UpdateDecor,
11737 ButtonStyle, BorderStyle and TitleStyle are planned to be removed in 3.0
11739 * libs/gravity.c (gravity_parse_multi_dir_argument):
11740 fixed "all" multidir selecting "center" too
11742 * libs/Fft.c (FftDrawString):
11743 * libs/Flocale.c (FlocaleRotateDrawString):
11744 (FlocaleFontStructDrawString):
11745 (FlocaleDrawString):
11746 fixed some text placement bugs w/ shadow text
11747 (FlocaleGetShadowTextPosition):
11748 implemented "center" shadows
11750 2002-07-20 olicha <olivier.chapuis@free.fr>
11752 * libs/Flocale.c (FlocaleRotateDrawString):
11753 Removed some static declarations
11755 2002-07-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11757 * libs/gravity.c (gravity_multi_dir_to_dir):
11758 * libs/gravity.h (enum):
11759 new function, cleaned up
11761 * fvwm/fvwm.h (FvwmWindow):
11765 moved text_rotation_type to gravity.h and renamed to rotation_type
11768 fixed several bugs in the access macros
11771 removed unused static FlocaleSeted
11772 (FlocaleFontStructDrawString):
11773 simplified function
11775 * fvwm/virtual.c (CMD_EdgeCommand):
11776 * fvwm/windowshade.c (CMD_WindowShade):
11777 * fvwm/conditional.c (CMD_Direction):
11778 adapted to changes in ParseDirectionArgument
11781 * libs/gravity.c (ParseDirectionArgument):
11782 new direction "Center"
11784 * fvwm/virtual.c (CMD_EdgeCommand):
11787 2002-07-18 olicha <olivier.chapuis@free.fr>
11789 * libs/PictureUtils.c (PictureRGBtoPixel):
11791 Fixed(??) color allocation for some visuals
11793 2002-07-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11795 * libs/Flocale.c (FlocaleFontStructDrawString):
11796 a little code cleanup
11798 * fvwm/events.c (HandleEnterNotify):
11800 anothe click+drag fix
11802 * libs/Pointer.c (GetLocationFromEventOrQuery):
11803 * fvwm/focus.c (SetPointerEventPosition):
11804 * fvwm/functions.c (CheckActionType):
11805 * fvwm/builtins.c (CMD_StrokeFunc):
11806 * fvwm/move_resize.c (moveLoop):
11808 fixed some bugs w/ pointer on wrong screen
11810 2002-07-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11812 * fvwm/events.c (HandleLeaveNotify):
11813 fixed problem w/ click+drag and mousey focus
11815 * fvwm/menus.c (size_menu_horizontally):
11816 fixed menu style SubmenusLeft w/ icons in menu items
11818 2002-07-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11820 * fvwm/menuitem.c (menuitem_paint):
11822 * fvwm/menus.c (paint_menu_gradient_background):
11823 (get_menu_paint_item_parameters):
11824 removed circular dependency of menus.c and menuitem.c by using callback
11827 2002-07-17 olicha <olivier.chapuis@free.fr>
11832 * fvwm/fvwm.c (InitVariables):
11834 * fvwm/colorset.c (parse_colorset):
11836 (CMD_ReadWriteColors):
11837 * fvwm/builtins.c (CMD_ColorLimit):
11838 * libs/PictureUtils.h:
11839 * libs/PictureUtils.c (PictureReduceColor):
11840 (PictureReduceRGBColor):
11841 (PictureRGBtoPixel):
11842 (PictureAllocColor):
11843 (PictureFreeColors):
11844 (PictureGetNextColor):
11845 (colors_alloc_fail):
11849 (PictureAllocColorTable):
11850 * libs/PictureImageLoader.c (PImageXpmAllocColor):
11851 (PImageXpmFreeColor):
11853 * libs/PictureBase.c (PictureInitCMap):
11854 * libs/Graphics.c (AllocLinearGradient):
11855 * libs/ColorUtils.c (GetShadow):
11861 (fvwmlib_clone_color):
11862 * libs/PictureGraphics.c (PGraphicsTintRectangle):
11863 Implemented a new color limit method
11865 2002-07-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11867 * fvwm/move_resize.c (moveLoop):
11868 fixed problem moving the pointer off screen while moving a window
11869 (AnimatedMoveAnyWindow):
11870 fixed pointer warping w/ multiple screens and animated window motion
11872 2002-07-12 olicha <olivier.chapuis@free.fr>
11874 * fvwm/menus.c (get_menu_paint_item_parameters):
11875 (paint_menu_gradient_background):
11876 * fvwm/menuitem.c (menuitem_paint):
11879 Fixed B/DGradient with Xft fonts
11882 * libs/ColorUtils.c (GetTintedColor):
11884 * fvwm/colorset.c (parse_simple_tint):
11887 Implemented fgTint colorset option
11889 * libs/PictureImageLoader.c:
11890 * libs/PictureUtils.c:
11891 * libs/PictureUtils.h:
11892 * libs/Makefile.am:
11893 Moved color limitation and some rgb to pixel functions from
11894 PictureImageLoader to new files PictureUtils.c, PictureUtils.h
11896 * fvwm/colorset.c (parse_colorset):
11897 * libs/PictureGraphics.c (PCreateTintedPixmap):
11898 (PGraphicsTintRectangle):
11899 Implemented tinting for X server without Xrender support and
11900 did color limitation when tinting
11903 2002-07-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11905 * fvwm/events.c (WaitForButtonsUp):
11906 fixed handling of button release events
11908 2002-07-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11910 * fvwm/menus.c (MenuInteraction):
11911 fixed core dump w/ dynamic popdown action destroying a menu
11912 (paint_menu_gradient_background):
11913 fixed hang and/or incorrect drawing of b and d gradients in menus
11915 * fvwm/events.c (HandleEnterNotify):
11916 (HandleLeaveNotify):
11917 improved LEAVE_WINDOW/ENTER_WINDOW handling
11919 2002-07-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11921 * libs/Colorset.c (SetWindowBackground):
11922 (SetWindowBackgroundWithOffset):
11924 implemented new functions to allow pixmap backgrounds with an offset
11926 2002-07-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11928 * fvwm/events.c (HandleMapRequestKeepRaised):
11929 send Map/UnmapNotify before iconyfying, not after
11931 2002-07-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11933 * fvwm/events.c (HandleMapRequestKeepRaised):
11934 fake a MapNotify and then an UnmapNotify when a window is created iconic
11936 * fvwm/add_window.c (AddWindow):
11937 workaround for buggy TK menu positioning
11939 * fvwm/module_interface.c (FlushMessageQueue):
11942 tried to fix module communication deadlock w/ sync mask and a full write
11949 2002-07-06 olicha <olivier.chapuis@free.fr>
11951 * libs/Flocale.c (FlocaleGetFontSet):
11952 Removed some unwanted code
11954 2002-07-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11956 * fvwm/events.c (HandleLeaveNotify):
11957 (HandleEnterNotify):
11958 reduced the number of MX_LEAVE/ENTER_WINDOW messages
11960 * fvwm/events.c (CMD_XSync):
11961 very experimental patch to cycle through subwindows accepting keyboard
11962 input; call Xsync command repeatedly to test; crashes fvwm if more than
11963 1000 subwindows are used;
11965 * fvwm/focus.c (CMD_WarpToWindow):
11966 fixed a bug in warpttowindow command with subwindows of unmanaged
11969 2002-07-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11971 * fvwm/events.c (HandlePropertyNotify):
11973 handle changes in the size_inc and base_size hints during opaque
11976 * fvwm/events.c (HandleButtonPress):
11977 ClickToFocus + ClickToFocusPassesClickOff now blocks event handling
11978 until the button is released again; this restores the old behaviour
11979 from 2.3.23 and before with click+drag and rxvt/aterm
11981 2002-06-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11983 * fvwm/update.c (apply_window_updates):
11984 fixed applying neverfocus to currently focused window; decorations
11985 partially drawn hilighted
11987 2002-07-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
11989 * fvwm/menucmd.c (menu_func):
11990 another module/menu/context window fix
11991 do not use global Fw anymore
11993 2002-07-05 olicha <olivier.chapuis@free.fr>
11995 * libs/Flocale.c (FlocaleStringToString2b):
11996 Fixed crash with big5-0 FontStruct
11998 2002-07-04 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12000 * fvwm/menucmd.c (menu_func):
12001 fixed context window of menus invoked by a module
12003 fixed context menus on windows
12005 * libs/vpacket.h (ConfigWinPacket):
12006 * fvwm/module_interface.c (CONFIGARGSNEW):
12007 * fvwm/fvwm.h (FvwmWindow):
12008 fixed bugs in type conversions for transmitting certain information to
12011 * fvwm/functions.c (CheckActionType):
12012 fixed window selection problem w/ menus invoked from modules
12014 2002-07-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12016 * fvwm/gnome.c (GNOME_HandlePropRequest):
12019 * fvwm/module_interface.c (ExecuteCommandQueue):
12020 fixed compile bug w/ --enable-debug-msgs
12022 2002-06-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12024 * fvwm/events.c (HandleButtonPress):
12026 * fvwm/menus.c (MenuInteraction):
12028 * fvwm/windowlist.c (CMD_WindowList):
12029 * fvwm/menucmd.c (menu_func):
12030 * fvwm/module_interface.c (ExecuteModuleCommand):
12031 * fvwm/add_window.c (adjust_fvwm_internal_windows):
12032 go away, evil globals! [removed the useless global variable
12035 * fvwm/events.c (HandleUnmapNotify):
12037 * fvwm/icons.c (Iconify):
12038 * fvwm/window_flags.h (IS_ICONIFY_PENDING):
12039 * fvwm/fvwm.h (struct):
12040 renamed is_deiconify_pending to is_iconify_pending
12043 2002-06-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12045 * fvwm/menus.c (MenuInteraction):
12047 (menu_enter_tear_off_menu):
12049 * fvwm/events.c (HandleButtonPress):
12050 (HandleButtonRelease):
12053 * fvwm/menucmd.c (menu_func):
12055 * fvwm/module_interface.c (ExecuteModuleCommand):
12056 go away, evil globals! [removed the useless global variable "Context"]
12057 removed is_menu_from_frame_or_window_or_titlebar flag
12059 * fvwm/module_interface.c:
12060 * fvwm/windowlist.c:
12063 2002-06-28 Mikhael Goikhman <migo@homemail.com>
12065 * fvwm/menuitem.c (menuitem_paint):
12066 fixed fg color of the inactive disabled menu item
12071 removed a mention of RedHat (I don't think it is correct),
12072 reworded a mention of fvwm95
12074 2002-06-26 Mikhael Goikhman <migo@homemail.com>
12077 tabify only the leading spaces, untabify the middle of line
12079 2002-06-25 David Fries <dfries@mail.win.org>
12082 * fvwm/windowlist.c:
12083 Added code to sort based on the class name of a window for
12084 the WindowList function.
12086 2002-06-25 olicha <olivier.chapuis@free.fr>
12091 2002-06-25 Mikhael Goikhman <migo@homemail.com>
12094 add Anders Andersson (spelling fixes in all man pages) and Steve Talley
12096 2002-06-24 Steve Talley <stephen.talley@sun.com>
12098 * fvwm/add_window.c:
12099 * fvwm/add_window.h:
12107 New Style option IconSize
12109 2002-06-24 Mikhael Goikhman <migo@homemail.com>
12111 * NEWS, configure.in:
12112 changed version to 2.5.3
12114 2002-06-24 Mikhael Goikhman <migo@homemail.com>
12117 removed C++ section
12120 * libs/FlocaleCharset.c:
12123 2002-06-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12125 * fvwm/events.c (WaitForButtonsUp):
12126 use the wait cursot only after the 20th pass through the loop
12128 2002-06-21 Dan Espen <dane@mk.telcordia.com>
12130 * fvwm/fvwm.1 (Examples): Language check.
12131 PipeRead as synchronous Exec.
12132 Better example for PipeRead.
12134 2002-06-21 olicha <olivier.chapuis@free.fr>
12138 Documented StringEncoding= in font name
12141 Removed --disable-compound-text doc
12143 2002-06-20 olicha <olivier.chapuis@free.fr>
12145 * libs/FBidi.h (FBidiConvert):
12146 Fixed compile if !HAVE_BIDI
12148 2002-06-19 olicha <olivier.chapuis@free.fr>
12150 * fvwm/fvwm.c (InitVariables):
12152 Allocate colorset 0 in InitVariable in the place of StartupStuff.
12153 This fix a "null expression" at init in menustyle.c (menustyle_update)
12155 2002-06-19 Mikhael Goikhman <migo@homemail.com>
12158 reworded supported feature listing, fixed the default xft detection
12160 added the "Supported Features" section
12162 2002-06-19 olicha <olivier.chapuis@free.fr>
12165 Removed not useful #define/#undef FVWM_COLORSET_PRIVATE
12168 Removed --enable-mulibyte and --disable-compound-text config option
12169 documentation. s/enable-xft/disable-xft/ and document --disable-xrender
12172 Xft is on by default no
12174 * libs/FlocaleCharset.c (*):
12175 * libs/FlocaleCharset.h:
12176 * libs/Ficonv.c (*):
12178 * libs/Flocale.c (*):
12181 * libs/FftInterface.h:
12184 * fvwm/ewmh_names.c ():
12185 Some cleanup. Implemented StringEncoding= in font names. Fixed
12186 string encoding for xft fonts. Try to be more cleaver about defaults
12187 charsets. Improvement in the locale charset table.
12190 Some documentation cleanup regarding Xft
12192 2002-06-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12194 * fvwm/functions.c (find_func_type):
12195 fixed bug i introduced w/ last commit
12197 * fvwm/fvwm.c (Done):
12199 * fvwm/functions.c (functions_is_complex_function):
12200 * fvwm/builtins.c (CMD_DestroyFunc):
12203 moved functions to functions.c
12206 * fvwm/functable.c:
12207 * fvwm/functable.h:
12208 * fvwm/functions.h:
12210 * fvwm/functions.c:
12211 moved some types and functions to other/new files
12213 * fvwm/functions.c:
12214 * fvwm/expand.c (expand_vars_extended):
12216 functions moved to new file
12218 * fvwm/functions.c:
12221 2002-06-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12223 * fvwm/events.c (CoerceEnterNotifyOnCurrentWindow):
12224 fixed colourmap focus problem
12227 tabified all files and removed all trailing spaces
12229 * fvwm/move_resize.c (move_window_doit):
12230 * fvwm/virtual.c (CMD_MoveToDesk):
12231 MoveToPage and MoveToDesk no longer unstick windows
12233 2002-06-17 Mikhael Goikhman <migo@homemail.com>
12239 reworded some names of supported features
12241 2002-06-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12243 * fvwm/update.c (apply_window_updates):
12244 * fvwm/session.c (MatchWinToSM):
12245 * fvwm/add_window.c (setup_window_structure):
12246 * fvwm/windowshade.c (CMD_WindowShade):
12247 * fvwm/window_flags.h:
12248 fixed a problem w/ shaded windows changind the title direction
12250 * fvwm/geometry.c (get_shaded_geometry):
12251 fixed shading window to 0 width or height
12253 * fvwm/add_window.c (AddWindow):
12254 fixed a memory leak and an initial window placement bug
12256 2002-06-15 Mikhael Goikhman <migo@homemail.com>
12259 minor improvements in output, added bin/fvwm-perllib
12261 2002-06-12 Mikhael Goikhman <migo@homemail.com>
12263 * fvwm/menustyle.c (CMD_CopyMenuStyle):
12264 fixed copying PopupOffset values in CopyMenuStyle
12269 2002-06-10 Mikhael Goikhman <migo@homemail.com>
12273 added CopyStringWithQuotes, not perfect, but works for now
12275 2002-06-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12277 * fvwm/functions.h:
12279 * fvwm/functions.c (func_config):
12280 * libs/FScreen.c (FScreenConfigureSLSScreens):
12281 (FScreenConfigureModule):
12282 * fvwm/virtual.c (CMD_XineramaSlsScreens):
12283 new command XineramaSLSScreens
12286 cleaned up Xinerama ifdefs
12288 2002-06-07 Dan Espen <dane@mk.telcordia.com>
12291 * fvwm/fvwm.1 (FONT SHADOW EFFECTS): Reword.
12293 2002-06-07 olicha <olivier.chapuis@free.fr>
12296 * libs/Flocale.c (FlocaleGetShadowTextPosition):
12297 Some shadow text position fixes
12299 2002-06-06 olicha <olivier.chapuis@free.fr>
12301 * fvwm/update.c (apply_window_updates):
12302 Fixed the position of shaded windows after certain style update
12305 Fixed some options names
12307 2002-06-06 Mikhael Goikhman <migo@homemail.com>
12309 * fvwm/module_interface.c (CMD_SendToModule):
12310 fixed SendToModule when the first parameter contains quotes
12312 2002-06-06 olicha <olivier.chapuis@free.fr>
12314 * fvwm/fvwm.c (main):
12315 * fvwm/ewmh.c (EWMH_Init):
12316 Init the EWMH before reading the config. Always setup the working
12319 2002-06-05 olicha <olivier.chapuis@free.fr>
12321 * fvwm/update.c (apply_window_updates):
12322 Fixed the position of a shaded window during a style update
12325 * libs/Flocale.c (FlocaleRotateDrawString):
12326 (FlocaleGetShadowTextPosition):
12327 Fixed side title text position if the font has no shadow
12330 * libs/Ficonv.c (FiconvInit):
12331 * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
12332 * libs/Flocale.c (FlocaleInit):
12333 (FlocaleRotateDrawString):
12334 (FlocaleGetFontSet):
12335 (FlocaleGetFontOrFontSet):
12337 (FlocaleDrawString):
12338 (FlocaleTextWidth):
12339 (FlocaleFreeNameProperty):
12340 (FlocaleGetNameProperty):
12341 (FlocaleTextListToTextProperty):
12342 Finish to remove the multibyte patch. This gives a more clean code
12343 and can only prevent bugs
12345 2002-06-05 Mikhael Goikhman <migo@homemail.com>
12347 * fvwm/placement.c (PlaceWindow):
12348 fixed CascadePlacement with huge windows (xterm -g 240x100),
12349 that were aligned to bottom-right instead of top-left;
12350 small adjustments (removed border_width from calculations,
12351 don't place normal windows at 0, commented out some strange code)
12353 2002-06-04 Mikhael Goikhman <migo@homemail.com>
12356 document CascadePlacement and FvwmIconMan improvements
12361 2002-06-03 Mikhael Goikhman <migo@homemail.com>
12363 * fvwm/add_window.c (adjust_fvwm_internal_windows):
12364 * fvwm/fvwm.c (InitVariables):
12365 * fvwm/placement.c (PlaceWindow):
12366 * fvwm/screen.h (struct ScreenInfo):
12367 improved *CascadePlacement, if the last placed window does not exist
12368 any more, reuse the last used position instead of adding a new cascade
12370 2002-06-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12372 * fvwm/events.c (HandleEnterNotify):
12373 * fvwm/fvwm.c (InitVariables):
12375 Fixed colormap handling over decorative parts of a window
12377 2002-06-03 olicha <olivier.chapuis@free.fr>
12379 * fvwm/module_interface.c (make_named_packet):
12380 Fixed an write out of memory bug. This complete Mikhail Kruk patch
12381 related to named module packet
12383 2002-06-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12385 * fvwm/focus.c (focus_grab_buttons):
12386 * fvwm/events.c (HandleButtonPress):
12387 fixed a problem w/ ClickToFocus + ClickToFocusRaisesOff
12389 2002-06-03 Mikhael Goikhman <migo@homemail.com>
12391 * fvwm/bindings.c (ParseBinding):
12392 replaced an error "Illegal mouse button" with a descriptive warning
12393 when a button number is greater than NUMBER_OF_MOUSE_BUTTONS
12395 2002-05-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12397 * fvwm/events.c (GetContext):
12398 fixed key bindings on decorations
12401 removed XEVMASK_DECORW
12403 2002-05-31 olicha <olivier.chapuis@free.fr>
12407 Documented shadow effect in a new section FONT EFFECTS
12409 2002-05-31 olicha <olivier.chapuis@free.fr>
12411 * libs/Fft.c (FftDrawString):
12412 * libs/Colorset.c (DumpColorset):
12415 * fvwm/colorset.c (parse_colorset):
12416 New colorset option fg_alpha which defines an alpha for rendering
12419 2002-05-29 olicha <olivier.chapuis@free.fr>
12421 * libs/Fft.c (FftSetupEncoding):
12428 Added detection for fontconfig and Xft2. Added FT2 CFLAGS and LIBS
12429 to Xft FLAGS and LIBS
12431 * fvwm/Makefile.am:
12432 * libs/Makefile.am:
12433 Put $(Xft_CFLAGS) before $(X_CFLAGS) to be able to use an independent
12434 Xft2 library. Removed FT2 CFLAGS and LIBS
12436 2002-05-27 olicha <olivier.chapuis@free.fr>
12441 Some Xft2 and fontconfig preparation
12444 * libs/Flocale.c (FlocaleParseShadow):
12446 (FlocaleGetShadowTextPosition):
12447 Added offset to shadow text
12450 Fixed the position of ne shadow text and remove some unused #define
12452 2002-05-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12454 * fvwm/colorset.c (parse_colorset):
12455 fixed integer overflow in average colour calculation
12457 2002-05-27 olicha <olivier.chapuis@free.fr>
12459 * libs/gravity.c (GetNextMultiDirection):
12460 (ParseMultiDirectionArgument):
12462 Added a multi direction type which is a "<<" version of direction
12463 type. Added a parse and a next functions
12466 * libs/Flocale.c (FlocaleParseShadow):
12467 (FlocaleGetNextShadowDirection):
12468 (FlocaleGetShadowTextPosition):
12469 Used gravity multi direction type and functions. Removed
12470 FlocaleGetNextShadowDirection
12472 2002-05-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12474 * fvwm/focus.c (restore_focus_after_unmap):
12475 fixed a problem w/ colormap transition when transient window died
12477 * fvwm/add_window.c (AddWindow):
12480 * fvwm/session.c (getUniqueStateFilename):
12481 applied security patch by Jan Echternach
12483 * fvwm/fvwm.c (InitVariables):
12484 Properly initialise Scr.flags.is_pointer_on_this_screen
12486 * libs/fvwmlib.h (FvwmFont):
12487 * fvwm/fvwm.c (setVersionInfo):
12490 * acconfig.h (MULTIBYTE):
12491 removed MULTIBYTE option (unconditionally on)
12493 2002-05-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12495 * libs/gravity.c (ParseDirectionArgument):
12496 allow "t", "u", ... shortcuts as direction arguments
12498 * fvwm/style.c (check_window_style_change):
12499 (parse_and_set_window_style):
12500 * fvwm/frame.c (frame_setup_border):
12501 (frame_get_shading_laziness):
12502 (frame_get_sidebar_geometry):
12503 * fvwm/decorations.c (SelectDecor):
12504 * fvwm/add_window.c (setup_style_and_decor):
12505 (setup_resize_handle_cursors):
12506 (setup_resize_handle_windows):
12507 (change_resize_handle_windows):
12508 (destroy_auxiliary_windows):
12509 * fvwm/borders.c (border_get_border_gcs):
12510 (border_draw_border_parts):
12511 * fvwm/style.h (SCSET_HAS_BORDER):
12512 * fvwm/fvwm.h (FvwmWindow):
12513 * fvwm/window_flags.h (SET_HAS_BORDER):
12514 new styles NoBorder/Border
12516 2002-05-26 olicha <olivier.chapuis@free.fr>
12519 * libs/Flocale.c (FlocaleParseShadow):
12520 (FlocaleGetNextShadowDirection):
12521 (FlocaleGetShadowTextPosition):
12523 Implemented multidirectional shadow text rendering
12527 (FlocaleFontStructDrawString):
12528 (FlocaleRotateDrawString):
12530 (FlocaleDrawString):
12531 (FlocaleTextWidth):
12532 * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
12533 * libs/Fft.c (FftDrawString):
12534 Cleanup the FlocaleFont structure by addings some flags
12536 2002-05-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12538 * fvwm/events.c (HandleFocusIn):
12539 * fvwm/add_window.c (adjust_fvwm_internal_windows):
12540 * fvwm/screen.h (ScreenInfo):
12541 * fvwm/focus.c (FocusOn):
12542 ignore EnterNotify events while a window is waiting to receive focus
12543 from the Focus or FlipFocus commands; should prevent plenty of race
12544 contidions caused by executing complex functions by a key press, button
12545 press or from a menu; fixes Alt-Tab problem
12547 * fvwm/events.c (HandleMapNotify):
12548 immediately draw window decorations when window is mapped; the new frame
12549 drawing code takes care of suppressing unnecessary redraws
12550 (HandleLeaveNotify):
12551 fixed a bug w/ LeaveNotify event with NotifyGrab
12553 2002-05-22 olicha <olivier.chapuis@free.fr>
12556 * libs/Fft.c (FftDrawString):
12557 * libs/Flocale.c (FlocaleFontStructDrawString):
12558 (FlocaleRotateDrawString):
12560 (FlocaleGetShadowTextPosition):
12561 (FlocaleDrawString):
12562 (FlocaleDrawUnderline):
12563 (FlocaleTextWidth):
12564 Implemented negative shadow text
12566 2002-05-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12568 * fvwm/menucmd.c (CMD_AddToMenu):
12569 * fvwm/windowlist.c (CMD_WindowList):
12572 changed signature of AddToMenu
12574 * fvwm/menus.c (clone_menu_root_static):
12575 fixed problem w/ menu style usage count and tear off menus
12576 fixed core dump w/ not copying the missing sub menu function in tear
12578 (clone_menu_item_list):
12580 (add_another_menu_item):
12581 (size_menu_vertically):
12582 fixed additional "More..." items in sub menus of torn off menus
12584 2002-05-22 Mikhael Goikhman <migo@homemail.com>
12587 fixed #endif warning
12588 * fvwm/ConfigFvwmDefaults:
12589 added CirculateSkip to tear off menus
12591 fixed ShadeAgain quoting
12593 2002-05-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12595 * fvwm/events.c (HandleButtonPress):
12596 allow to pass the focus click to applications and have a function bound
12597 to it at the same time
12601 fixed compilation problem
12603 2002-05-20 olicha <olivier.chapuis@free.fr>
12605 * libs/PictureImageLoader.c (PImageRGBtoPixel):
12606 Fixed blue colour in png image and ewmh icons
12608 * libs/Flocale.c (FlocaleLoadFont):
12609 Removed some debug code
12611 * fvwm/colorset.c (parse_colorset):
12613 * libs/ColorUtils.c (GetForeShadowColor):
12614 Added Mikhael algo to compute the default fgsh
12616 2002-05-18 Mikhael Goikhman <migo@homemail.com>
12618 * fvwm/functions.c (expand_extended_var):
12619 expand $[fgsh.csN], use constants instead of numbers
12621 2002-05-17 olicha <olivier.chapuis@free.fr>
12623 * libs/Flocale.c (FlocaleDrawString):
12624 (FlocaleDrawUnderline):
12626 Removed some unused and debug code
12628 2002-05-17 olicha <olivier.chapuis@free.fr>
12630 * fvwm/menuitem.c (draw_underline):
12632 * libs/Flocale.c (FlocaleDrawUnderline):
12633 Move draw_underline into Flocale.c and fix underline position with
12636 2002-05-17 olicha <olivier.chapuis@free.fr>
12638 * fvwm/style.c (update_window_color_style):
12639 (update_window_color_hi_style):
12640 * fvwm/move_resize.c (DisplayPosition):
12642 * fvwm/menuitem.c (menuitem_paint):
12643 * fvwm/borders.c (get_common_decorations):
12644 (border_get_titlebar_draw_descr):
12646 * fvwm/icons.c (DrawIconWindow):
12647 Pass the colorset to text drawing via the FlocaleWinString structure
12650 * libs/ColorUtils.c (GetForeShadowColor):
12652 * fvwm/colorset.c (parse_colorset):
12654 * libs/Colorset.c (DumpColorset):
12656 Added fgsh colorset and two new functions GetForeShadowColor and
12657 GetForeShadow which should be modified
12659 * libs/Makefile.am:
12661 * libs/FftInterface.h (new file):
12662 * libs/Fft.c (FftDrawString):
12664 * libs/Flocale.c (FlocaleFontStructDrawString):
12665 (FlocaleRotateDrawString):
12666 (FlocaleDrawString):
12667 (FlocaleTextWidth):
12669 Implemented text shadow rendering
12671 2002-05-11 olicha <olivier.chapuis@free.fr>
12674 * fvwm/builtins.c (refresh_window):
12675 * fvwm/update.c (apply_window_updates):
12677 * fvwm/style.c (check_window_style_change):
12678 ParentalRelativity style is now dynamic
12680 2002-05-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12682 * fvwm/menuitem.c (menuitem_paint):
12683 fixed menu item hilight area
12685 2002-05-09 olicha <olivier.chapuis@free.fr>
12687 * libs/Makefile.am:
12688 * libs/XError.c (request_name):
12689 * libs/PictureImageLoader.c (PImageLoadPng):
12690 (PImageCreatePixmapFromArgbData):
12691 * libs/PictureGraphics.c (PGraphicsTintRectangle):
12692 (PGraphicsTileRectangle):
12693 (PGraphicsCopyFvwmPicture):
12694 * libs/FRenderInit.c (new file):
12695 * libs/FRenderInit.h (new file):
12696 * libs/FRenderInterface.h:
12697 * libs/FRender.c (*):
12698 * fvwm/colorset.c (parse_tint):
12700 * fvwm/fvwm.c (main):
12701 * fvwm/events.c (HandlePropertyNotify):
12702 Change the design of the previous commit. Now a module should call
12703 FRenderInit when it wants to use a function which depends on XRender.
12705 2002-05-09 olicha <olivier.chapuis@free.fr>
12713 Include Fft.h include FRender.h as Xft.h include Xrender.h
12715 * libs/FRenderInterface.h:
12717 * libs/FRender.c (FRenderInit):
12718 (FRenderGetErrorCodeBase):
12719 (FRenderGetMajorOpCode):
12720 (FRenderGetExtensionSupported):
12721 (FRenderGetErrorText):
12722 Improve XRender initialization, check if the XRender extension is
12723 enabled and get the error code base and the major op code.
12724 Add error functions for the X error handler.
12726 * libs/XError.c (PrintXErrorAndCoredump):
12728 Really enable USE_GET_ERROR_TEXT and take in account XRender error code
12731 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
12732 * fvwm/events.c (HandlePropertyNotify):
12733 * fvwm/colorset.c (parse_tint):
12735 * libs/PictureImageLoader.c (PImageLoadPng):
12736 (PImageCreatePixmapFromArgbData):
12737 * libs/PictureGraphics.c (PGraphicsCopyPixmaps):
12738 (PGraphicsCopyFvwmPicture):
12739 (PGraphicsTileRectangle):
12740 * libs/FRender.c (FRenderCopyArea):
12741 (FRenderTintRectangle):
12742 Check if the XRender extension is enabled on the display before
12743 performing XRender operations
12745 2002-05-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12747 * fvwm/menuitem.c (menuitem_paint):
12748 fixed item hilighting problems
12750 2002-05-07 olicha <olivier.chapuis@free.fr>
12752 * fvwm/colorset.c (parse_colorset):
12755 2002-05-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12757 * fvwm/events.c (HandlePropertyNotify):
12758 workaround for xterm resize problem
12760 * fvwm/colorset.c (parse_colorset):
12761 (free_colorset_background):
12764 fixed various bugs and core dumps w/ the cs->picture structure;
12765 note: it's a pointer, so compare with NULL, not with None
12767 * fvwm/frame.c (frame_setup_window):
12768 (frame_setup_window_app_request):
12769 (frame_force_setup_window):
12770 (frame_setup_window_internal):
12771 (frame_create_move_resize_args):
12772 (frame_free_move_resize_args):
12773 * fvwm/add_window.c (setup_window_attr):
12774 * fvwm/events.c (HandleConfigureRequest):
12775 (HandlePropertyNotify):
12776 fixed [?] bit_gravity/resize problem
12778 * fvwm/events.c (HandleEnterNotify):
12779 reformatted EdgeCommand code
12781 2002-05-06 olicha <olivier.chapuis@free.fr>
12783 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
12784 Resize an ewmh icon to the wanted size if it is to big
12786 * fvwm/ewmh.c (EWMH_WindowDestroyed):
12787 Set also the stacking list when a window is destroyed
12789 2002-05-03 Dan Espen <dane@mk.telcordia.com>
12791 * fvwm/fvwm.1: Finish language check.
12792 Fix typo in Mouse section, context should be on new line.
12794 2002-05-02 Dan Espen <dane@mk.telcordia.com>
12796 * fvwm/fvwm.1 (file): Restore icons and images text with some
12798 Started on lang check, not done yet.
12800 2002-05-02 Mikhail Kruk <meshko@cs.brandeis.edu>
12802 * fvwm/module_interface.c (make_named_packet):
12803 Applied Mikhail Kruk patch
12805 2002-05-02 olicha <olivier.chapuis@free.fr>
12807 * libs/FlocaleCharset.h:
12808 * libs/Ficonv.c (FiconvSetupConversion):
12809 * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
12811 * libs/Flocale.c (FlocaleGetFftFont):
12812 (FlocaleGetFontSet):
12815 (FlocaleUnloadFont):
12817 Implemented charset/iconv hints in font name
12819 2002-04-29 Stian Sletner <stian@sletner.com>
12821 * fvwm/windowlist.c (CMD_WindowList):
12822 Added new Windowlist option IconifiedAtEnd
12824 2002-04-30 Mikhael Goikhman <migo@homemail.com>
12826 * fvwm/module_interface.c:
12829 moved two constant strings to Module.h, so they may be used by perllib
12831 2002-04-29 olicha <olivier.chapuis@free.fr>
12833 * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
12834 Fixed a core dump if the charset is not found
12836 * libs/Flocale.c (FlocaleStringToString2b):
12837 Removed some debug code
12839 2002-04-29 olicha <olivier.chapuis@free.fr>
12841 * libs/Fft.c (FftGetFontWidths):
12842 (FftGetFontWidths):
12845 * libs/Flocale.c (FlocaleGetFont):
12846 (FlocaleGetFontSet):
12847 (FlocaleGetFftFont):
12848 Removed min_char_offset member of the FlocaleFont as it is not use
12849 since we rotate string for side title
12851 * libs/Ficonv.c (FiconvSetupConversion):
12852 * libs/FlocaleCharset.c (FlocaleGetBidiCharset):
12853 (FlocaleCharsetSetFlocaleCharset):
12855 * libs/Flocale.c (FlocaleTextWidth):
12856 (FlocaleDrawString):
12857 (FlocaleUtf8ToUnicodeStr2b):
12859 (FlocaleStringToString2b):
12860 (FlocaleRotateDrawString):
12861 (FlocaleFontStructDrawString):
12862 Added support for drawing string with 10646-1 fonts without an utf8
12863 locale. Also, drawing strings with a multibyte font now work not so
12864 bad even if the locale have nothing to do with the font.
12866 * libs/Fft.c (FftUtf8ToFftString16):
12869 Added utf8 rendering with iso10646-1 fonts on system without
12872 * fvwm/colorset.c (reset_cs_pixmap):
12877 Colorset now accept bitmaps. Split a bit parse_colorset for readability
12879 2002-04-28 Mikhael Goikhman <migo@homemail.com>
12882 fixed core dump on default Alt-Tab (Alt released when mouse is outside)
12884 2002-04-27 Mikhael Goikhman <migo@homemail.com>
12886 * fvwm/move_resize.c:
12887 don't start Move with snap disabled if Alt is initially pressed
12889 2002-04-26 Mikhael Goikhman <migo@homemail.com>
12891 * NEWS, configure.in:
12892 changed version to 2.5.2
12894 2002-04-25 Mikhael Goikhman <migo@homemail.com>
12897 improved main headers, added new COLORSETS section;
12898 documented State condition
12901 documented Tint in colorsets and utility renaming
12904 corrected several error reporting problems
12906 2002-04-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12909 fixed leaving tear off menus
12911 2002-04-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12913 * fvwm/borders.c (border_draw_part_relief):
12914 (border_set_button_pixmap):
12915 (border_draw_title_stick_lines):
12916 (border_draw_title_mono):
12917 (border_draw_title_relief):
12918 * libs/fvwmlib.h (RelieveRectangle2):
12919 (RelieveRectangle):
12920 replaced functions by macros
12922 * libs/Graphics.c (do_relieve_rectangle):
12923 applied performance patch by Dave Trollope
12925 2002-04-24 Mikhael Goikhman <migo@homemail.com>
12931 * libs/FlocaleCharset.c:
12932 FBidi is now independent from Flocale* again;
12933 iso8859-6.8x fonts recognized now as bidi-enabled
12935 2002-04-23 Mikhael Goikhman <migo@homemail.com>
12938 fixed --disable-multibyte
12940 2002-04-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
12942 * fvwm/borders.c (border_draw_title_deep):
12943 (border_set_title_pixmap):
12944 (border_set_button_pixmap):
12945 fixed SolidButton title and button style
12947 2002-04-23 Mikhael Goikhman <migo@homemail.com>
12952 added new entry about CurrentAtEnd
12955 minor reformatting and spell checking
12957 2002-04-23 Jochen Klenner <jochen.klenner@gmx.net>
12959 * fvwm/windowlist.c (CMD_WindowList):
12960 Added new Windowlist option CurrentAtEnd
12962 2002-04-22 olicha <olivier.chapuis@free.fr>
12964 * fvwm/colorset.c (parse_colorset):
12966 Fixed an enormous core dump which comes from a cvs merging problem
12968 * fvwm/Makefile.am:
12971 Added Xrender detection and link fvwm if needed
12973 * libs/PictureGraphics.c:
12974 * libs/PictureGraphics.h:
12977 * libs/FRenderInterface.h:
12978 * libs/PictureGrpahics.c (*):
12979 * libs/PictureGrpahics.h:
12980 New libs files to acheive alpha-blend rendering and better XBM
12981 support. PictureGraphics contains elaborated version and also
12982 simplified version of XFillRectangle, XCopyPlan and XCopyArea
12986 * fvwm/icons.c (clear_icon):
12990 * fvwm/events.c (HandlePropertyNotify):
12991 * fvwm/borders.c (border_fill_pixmap_background):
12992 (border_get_border_background):
12993 (border_draw_decor_to_pixmap):
12994 * fvwm/menuitem.c (menuitem_paint):
12995 * fvwm/add_window.c (destroy_icon):
12996 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
12997 * fvwm/geometry.c (move_icon_to_position):
12998 * fvwm/colorset.c (free_colorset_background):
13001 Implemented alpha-blend rendering with the new libs function
13003 * fvwm/colorset.c (free_colorset_background):
13006 Implemented tinting of a Pixmap background colorset
13008 * fvwm/colorset.c (parse_colorset):
13009 Use the Scr.NoFocusWin as main window in the place of the
13010 Scr.SizeWindow, this fix a lot of X errors in my machine.
13012 * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
13013 Donated our alpha channel
13016 * fvwm/module_interface.h:
13017 * fvwm/module_interface.c (SendFvwmPicture):
13018 (BroadcastMiniIcon):
13020 (BroadcastFvwmPicture):
13021 (CMD_Send_WindowList):
13022 * fvwm/add_window.c (change_mini_icon):
13023 (broadcast_mini_icon):
13024 * fvwm/ewmh_icons.c:
13025 Replace BroadcastMiniIcon and SendMiniIcon by BroadcastFvwmPicture and
13026 SendFvwmPicture which send the alpha. Add a MiniIconPacket structure
13028 * libs/Makefile.am:
13029 * libs/PictureBase.c (*):
13030 * libs/PictureBase.h:
13031 * libs/Picture.c (*):
13033 * libs/PictureImageLoader.c (*):
13034 * libs/PictureImageLoader.h:
13036 Rename some libs file InitPicture -> PictureBase, FImageLoader ->
13037 PictureImageLoader.
13038 Rename some libs function: InitPictureCMap -> PictureInitCMap,
13039 UseDefaultVisual -> PictureUseDefaultVisual, UseFvwmVisual ->
13040 PictureUseFvwmVisual, PictureSaveFvwmVisual -> SaveFvwmVisual,
13041 SetImagePath -> PictureSetImagePath, findImageFile ->
13042 PictureFindImageFile, PictureList -> FvwmPictureList,
13043 LoadFvwmPicture removed now PImageLoadFvwmPictureFromFile replace it,
13044 GetPicture -> PGetFvwmPicture, CachePicture -> PCacheFvwmPicture,
13045 DestroyPicture -> PDestroyFvwmPicture, LoadPictureFromPixmap ->
13046 PLoadFvwmPictureFromPixmap, CachePictureFromPixmap ->
13047 PCacheFvwmPictureFromPixmap, fvwm_clone_picture -> PCloneFvwmPicture.
13048 Also renamed more recent functions in PictureImageLoader.
13050 * fvwm/borders.c (border_draw_one_border_part):
13051 (border_draw_decor_to_pixmap):
13052 Fixed drawing of a TiledPixmap borded and fixed position of buttons
13055 * fvwm/menus.c (pop_menu_up):
13056 (animated_move_back):
13057 (ParentalMenuRePaint):
13058 * fvwm/move_resize.h (resize_geometry_window):
13059 * fvwm/move_resize.c (move_window_doit):
13060 (AnimatedMoveAnyWindow):
13061 (AnimatedMoveOfWindow):
13062 (AnimatedMoveFvwmWindow):
13063 Fixed transparent animated menu
13065 2002-04-21 Mikhael Goikhman <migo@homemail.com>
13074 fixed running out of colors on 8bpp with ReadWriteColors;
13075 simulate colorsets on monochrome displays using three 1-bit pixmaps
13077 2002-04-19 Mikhael Goikhman <migo@homemail.com>
13080 fixed $PERL detection again
13085 added -Wno-implicit-int to -Wall in case of gcc
13089 fixed ReadWriteColors on a PseudoColor display
13091 2002-04-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13093 * fvwm/move_resize.c (move_window_doit):
13094 set the is_icon_moved too flag if the icon was moved non-interactively
13100 Moved FvwmTheme functionality into fvwm.
13101 Added new commands Colorset, ReadWriteColors, CleanupColorsets.
13103 2002-04-17 Mikhael Goikhman <migo@homemail.com>
13106 fixed $PERL detection
13109 * fvwm/ConfigFvwmDefaults:
13110 several fixes and spelling
13112 2002-04-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13114 * libs/Bindings.c (CheckBinding):
13117 (GrabWindowButton):
13118 (MatchBindingExactly):
13119 patch by yeti@physics.muni.cz to help with a weird problem w/ czech
13122 2002-04-12 Mikhael Goikhman <migo@homemail.com>
13125 configure now uses $PERL if set
13128 all programs installed into ${bindir} have now fvwm- prefix;
13129 documentation updated
13131 2002-04-11 Mikhael Goikhman <migo@homemail.com>
13134 renamed fvwm2 executable to fvwm, fvwm2 man page to fvwm;
13135 documentation updated
13137 2002-04-11 Mikhael Goikhman <migo@homemail.com>
13140 added 2.4.7 entries
13142 2002-04-10 Dan Espen <dane@mk.telcordia.com>
13144 * AUTHORS: New author.
13146 * NEWS: Edge Command.
13148 2002-04-09 Uwe Pross <uwe.pross@gmx.net>
13151 Added EdgeCommand paragraph.
13153 * fvwm/events.c (HandleEnterNotify):
13154 Added execution of Scr.PanFrame*.command if set
13156 * fvwm/fvwm.c (InitVariables):
13157 Added init strings for pan frame commands.
13162 Avoid hiding of pan frames if pan frame command is set.
13164 Implementation of the buildin command EdgeCommand. First
13165 implementation of this function.
13167 * fvwm/screen.h (struct):
13168 added char * command in structure Panframe to store the pan frame
13171 * fvwm/functions.c:
13172 added declaration of CMD_ENTRY("edgecommand")
13174 * fvwm/functions.h:
13175 added definition of Flag F_EDGE_COMMAND
13178 added definition of CMD_EdgeCommand(F_CMD_ARGS)
13180 2002-04-10 Mikhael Goikhman <migo@homemail.com>
13183 added "BI-DIRECTIONAL TEXTS" section
13186 added #include <sys/select.h> to fix endless loop on QNX
13188 2002-04-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13191 changed description of focus models
13193 2002-04-09 olicha <olivier.chapuis@free.fr>
13196 Check for libpng libpng 1.0.4a or better
13198 2002-04-08 Mikhael Goikhman <migo@homemail.com>
13200 * fvwm/add_window.c (setup_title_geometry):
13203 * fvwm/geometry.c (get_title_font_size_and_offset):
13205 * fvwm/style.c (parse_and_set_window_style, check_window_style_change):
13207 * fvwm/window_flags.h:
13208 * libs/Fft.c (FftGetRotatedFont, FftGetFont, FftDrawString):
13210 * libs/Flocale.c (FlocaleRotateDrawString, FlocaleDrawString):
13212 new Style options TopTitleRotated / TopTitleNotRotated,
13213 BottomTitleRotated / BottomTitleNotRotated
13215 2002-04-08 olicha <olivier.chapuis@free.fr>
13217 * libs/Makefile.am:
13218 Fixed make dist again
13220 2002-04-07 Dan Espen <dane@mk.telcordia.com>
13222 * fvwm/fvwm2.1 (ICONS AND IMAGES): Language fix, then rewrite.
13224 2002-04-07 Mikhael Goikhman <migo@homemail.com>
13227 minor wording fixes
13230 mention a new FvwmIconMan syntax
13232 * sample.fvwmrc/new-features:
13233 * sample.fvwmrc/system.fvwm2rc:
13234 * sample.fvwmrc/system.fvwm2rc-sample-95:
13235 use a new module syntax
13237 2002-04-06 olicha <olivier.chapuis@free.fr>
13241 Forget to save some file
13243 * libs/FImageLoader.c (c100_init_base_table):
13244 Allows init even if !XPM
13246 * libs/Makefile.am:
13250 Fixed png detection
13252 * libs/FImageLoader.c (FImageCreatePixmapFromArgbData):
13253 Fixed a GC memory leaks.
13255 * fvwm/fvwm.c (setVersionInfo):
13257 Updated -version for png, bidi and xft
13260 Modified the ICONS section. Rename it ICONS AND IMAGES and
13261 document PNG file format. Replace "xpm or bitmap file" by
13262 "image file" in a few place.
13266 PNG news and documented libpng in the "Optional libraries used by FVWM"
13269 2002-04-05 olicha <olivier.chapuis@free.fr>
13271 * libs/FImageLoader.c (c100_init_base_table):
13272 (FImageReduceRGBColor):
13273 (FImageCreatePixmapFromArgbData):
13274 Speed up color limitation for png image and ewmh icons
13275 Respect color limit even with DirectColor and TrueColor
13278 * acconfig.h (HAVE_PNG):
13279 Added test for libpng. Enable FvwmBanner, FvwmScript and xpmroot
13280 even without XPM support
13283 * libs/InitPicture.c (new file):
13284 * libs/InitPicture.h (new file):
13287 * libs/FImageLoader.c (new file):
13288 * libs/FImageLoader.h (new file):
13289 * libs/Fxpm.h (new file):
13290 * libs/Fpng.h (new file):
13291 Images are loaded in FImageLoader. PNG image can be loaded, the loader
13292 come from Imlib2 and the argb loader from fvwm/ewmh_icons.c.
13293 ColorLimit stuff is applied to PNG image.
13294 Split Picture.c, Picture.h into InitPicture.c, InitPicture.h,
13295 Picture.c and Picture.h.
13296 InitPicture contains the Picture structure, initialize the visual,
13297 depth and color map and contains image path stuff as Picture contains
13298 Picture manipulations.
13300 * libs/ColorUtils.c:
13302 Moved the Picture color utils func to ColorUtils
13304 * fvwm/Makefile.am:
13305 links against libpng
13307 * fvwm/icons.c (GetIconPicture):
13311 Replace GetXPMFile and GetBitmapFile by GetIconFromFile which use
13312 the libs image loader
13314 * fvwm/cursor.c (CMD_CursorStyle):
13315 Use FImageLoadCursorPixmapFromFile (no PNG support here)
13317 * fvwm/ewmh_icons.c (create_pixmap_from_ewmh_icon):
13318 (EWMH_SetIconFromWMIcon):
13319 Use the argb loader of the libs. ColorLimit are now applied to ewmh
13323 Send the ColorLimit to module in any case
13330 * fvwm/add_window.c:
13334 * fvwm/menustyle.c:
13335 * fvwm/move_resize.c:
13338 2002-04-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13340 * fvwm/events.c (test_map_request):
13341 (test_resizing_event):
13342 fixed endless loop in HandleConfigureRequest
13344 2002-03-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13346 * fvwm/add_window.c (setup_style_and_decor):
13347 fixed borderless transients
13349 * fvwm/events.c (test_resizing_event):
13350 (HandleConfigureRequest):
13351 * fvwm/frame.c (frame_create_move_resize_args):
13352 * fvwm/add_window.c (AddWindow):
13354 * fvwm/window_flags.h:
13355 tried to improve ConfigureRequest handling
13357 * fvwm/events.c (HandlePropertyNotify):
13358 recalculate window size when the base_width or base_height hint
13359 changes; fixes some problems with xemacs
13361 * fvwm/virtual.c (map_window):
13364 * fvwm/borders.c (border_draw_decorations):
13365 don't redraw windows on a different desk
13366 keep track of Scr.Hilite
13368 2002-03-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13370 * fvwm/virtual.c (unmap_window):
13371 * fvwm/move_resize.c (resize_window):
13372 * fvwm/icons.c (Iconify):
13373 * fvwm/add_window.c (CaptureOneWindow):
13374 * fvwm/borders.c (border_undraw_decorations):
13375 mark window decorations as not drawn whenever the frame is unmapped
13377 2002-03-30 Dan Espen <dane@mk.telcordia.com>
13379 * fvwm/fvwm2.1: Fixup IconBox geometry examples.
13381 2002-03-29 Mikhael Goikhman <migo@homemail.com>
13384 use safemalloc and alloca instead of malloc
13386 2002-03-29 olicha <olivier.chapuis@free.fr>
13388 * libs/FlocaleCharset.c (FlocaleCharsetSetFlocaleCharset):
13389 Set the X locale charset on system without XOpenOM
13391 2002-03-27 Mikhael Goikhman <migo@homemail.com>
13394 fixed multibyte support reporting
13396 2002-03-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13401 moved gcc extension __attribute__ handling to config.h
13403 * fvwm/fvwm.c (main):
13404 * fvwm/stack.c (add_window_to_stack_ring_after):
13405 * fvwm/icons.c (GetIconWindow):
13407 * fvwm/add_window.c:
13408 fixed core dumps and other bugs in debug messages
13410 2002-03-27 olicha <olivier.chapuis@free.fr>
13412 * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
13413 (FlocaleCharsetSetFlocaleCharset):
13415 * configure.in (problem_multibyte):
13416 Fixed compilation for system without XOpenOM in Xlib.h
13418 * libs/FlocaleCharset.c (FlocaleInit_X_Charset):
13419 * libs/Ficonv.c (FiconvInit):
13423 include only libs/Flocale.h
13425 2002-03-26 Mikhael Goikhman <migo@homemail.com>
13428 fixed detection of fribidi-0.9.0, it is incompatible (not good for us)
13433 * libs/FlocaleCharset.c:
13434 minor modifications, like removed #include;
13435 fixed core dump with bidi and utf-8
13437 2002-03-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13439 * fvwm/frame.c (frame_update_hidden_window_pos):
13440 fixed shade/maximize/unshade
13442 * fvwm/builtins.c (FreeDecorFace):
13445 * fvwm/borders.c (get_common_decorations):
13446 (border_get_border_style):
13447 * fvwm/style.c (parse_and_set_window_style):
13449 * fvwm/window_flags.h:
13450 * fvwm/fvwm.h (struct):
13451 * fvwm/frame.c (frame_mrs_setup_draw_decorations):
13452 (frame_create_move_resize_args):
13453 (frame_move_resize_step):
13454 (frame_next_move_resize_args):
13455 new styles WindowShadeLazy [default], WindowShadeBusy and
13456 WindowShadeAlwaysLazy
13458 * fvwm/frame.c (frame_set_decor_gravities):
13459 fixed window bit gravities
13460 split into smaller functions
13461 (frame_move_resize_step):
13462 fixed a bug w/ the parent gravity
13463 (frame_hide_changing_window_parts):
13464 fixed flickering in one of the corners during shade animation
13465 (frame_mrs_hide_changing_parts):
13467 (frame_mrs_prepare_vars):
13468 (frame_mrs_hide_unhide_parent):
13469 (frame_mrs_setup_draw_decorations):
13470 (frame_mrs_resize_move_windows):
13473 2002-03-25 olicha <olivier.chapuis@free.fr>
13475 * libs/Fft.c (FftSetupEncoding):
13478 * libs/Flocale.c (FlocaleDrawString):
13479 * libs/FBidi.c (FBidiConvert):
13481 Pass the font to FBidiConvert
13483 * acconfig.h (HAVE_LIBCHARSET):
13484 * acinclude.m4 (CHECK_LIBCHARSET):
13486 If libiconv is used check for libcharset
13488 * libs/Makefile.am:
13489 * libs/FlocaleCharset.h:
13490 * libs/FlocaleCharset.c:
13492 * libs/Flocale.c (*):
13493 * libs/Fft.c (FftSetupEncoding):
13495 New structure FlocaleCharset to handle font, iconv and fribidi charsets.
13496 FlocaleFont has such a member which is set when charset info are needed.
13497 FlocaleCharset.c contains a big table which associates to an X charset
13498 various possible locale charsets and the fribidi charset.
13499 If libiconv is used, libcharset is used to compute the locale charset.
13500 Various Flocale clean up.
13502 * fvwm/fvwm.c (main):
13503 Removed the call to FlocaleInitCharset, it is now done automatically
13506 * libs/Makefile.am:
13509 * fvwm/ewmh.c (ewmh_atom_property_notify[]):
13511 * fvwm/ewmh_names.c (EWMH_SetVisibleName):
13514 (EWMH_SetDesktopNames):
13515 Moved iconv conversions into the library. Try to found the good iconv
13516 charset with the help of the font and of the FlocaleCharset table.
13518 2002-03-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13520 * libs/Module.c (SendFvwmPipe):
13521 * libs/Graphics.c (do_relieve_rectangle):
13522 * fvwm/menustyle.c (menustyle_parse_old_style):
13523 * fvwm/add_window.c (setup_window_structure):
13524 memory management patches by Dave Trollope
13526 * fvwm/frame.c (frame_get_sidebar_geometry):
13527 hide the handles when using the NoHandles style
13529 * fvwm/borders.c (border_redraw_decorations):
13530 change in title rotation is applied immediately, don't use the value "2"
13533 * fvwm/style.c (parse_and_set_window_style):
13534 removed "TitleLeft" and "TitleRight" styles; only the "TitleAt..."
13536 documented the new title directions
13537 (parse_and_set_window_style):
13538 removed the ...TitleRotated[Counter]ClockWise use ...CW and ...CCW
13540 documented these styles
13542 * fvwm/add_window.c (CaptureOneWindow):
13543 (CaptureAllWindows):
13547 * fvwm/icons.c (DeIconify):
13548 fiexd fucoused window not hilighting after deiconification
13550 2002-03-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13552 * fvwm/update.c (apply_window_updates):
13553 windows are not unshaded when the decoration layout changes
13555 * fvwm/frame.c (frame_create_move_resize_args):
13556 fixed excessive redrawing
13557 (frame_get_hidden_pos):
13558 fixed parent geometry when window is hidden
13560 * fvwm/add_window.c (setup_frame_stacking):
13561 fixed stacking of right buttons
13563 * fvwm/frame.c (frame_set_decor_gravities):
13564 fixed title and button bit gravities
13566 * fvwm/add_window.c (setup_frame_stacking):
13567 (change_auxiliary_windows):
13568 fixed "button" style
13570 * fvwm/geometry.c (get_title_button_geometry):
13571 * fvwm/menus.c (pop_menu_up):
13572 fixed menu placement relative to window titles
13574 * libs/Flocale.c (FlocaleDrawString):
13575 fixed compiler warning w/o fribidi
13577 * fvwm/virtual.c (MoveViewport):
13579 (do_move_window_to_desk):
13580 * fvwm/update.c (apply_window_updates):
13581 * fvwm/icons.c (Iconify):
13583 * fvwm/module_interface.c (SETOLDFLAGS):
13584 * fvwm/ewmh_events.c (ewmh_WMStateHidden):
13585 * fvwm/style.c (parse_and_set_window_style):
13586 * fvwm/window_flags.h:
13587 * fvwm/session.c (MatchWinToSM):
13588 * fvwm/placement.c (PlaceWindow):
13589 * fvwm/add_window.c (CaptureAllWindows):
13590 (setup_window_placement):
13591 (CaptureOneWindow):
13594 * fvwm/menus.c (menu_tear_off):
13595 * fvwm/events.c (HandleMapRequestKeepRaised):
13598 removed some of those pesky globals: PPosOverride, isIconicState and
13599 isIconifiedByParent; pass round a structure instead
13600 removed the do_start_iconic window flag
13601 removed do_delete_icon_moved flag
13603 2002-03-24 Mikhael Goikhman <migo@homemail.com>
13607 renamed HAVE_FRIBIDI to HAVE_BIDI
13611 added more comments
13613 * fvwm/Makefile.am:
13615 * libs/Makefile.am:
13616 added a dummy call to FBidi to test linking against bidi libs
13618 2002-03-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13620 * fvwm/windowshade.c (CMD_WindowShade):
13621 changed syntax of windowshade with direction
13623 update button state after unshading
13625 * fvwm/add_window.c (AddWindow):
13626 fixed mini icon update
13628 * fvwm/events.c (HandleEnterNotify):
13629 fixed icon picture redrawing
13630 icon titles are no longer raised and expanded if the icon has only a
13633 * fvwm/move_resize.c (resize_window):
13636 * libs/gravity.c (gravity_move_resize_parent_child):
13637 * fvwm/frame.c (frame_get_titlebar_dimensions):
13638 (frame_prepare_animation_shape):
13639 (frame_move_resize_step):
13640 (frame_get_titlebar_dimensions_only):
13641 (frame_get_hidden_pos):
13642 (frame_update_hidden_window_pos):
13643 (frame_free_move_resize_args):
13644 (frame_create_move_resize_args):
13645 fixed shading of shaped windows
13650 * fvwm/fvwm.c (main):
13651 * fvwm/misc.c (GrabEm):
13652 fixed a problem with the cursor shape during window shading
13654 * fvwm/update.c (apply_window_updates):
13655 fixed drawing of hilighted window after a decoration change
13657 * fvwm/update.c (apply_window_updates):
13658 * fvwm/ewmh_icons.c (EWMH_SetIconFromWMIcon):
13659 * fvwm/borders.c (RedrawDecorations):
13660 renamed RedrawDecorations()
13662 * fvwm/move_resize.c (move_window_doit):
13664 * fvwm/misc.c (move_into_rectangle):
13665 (intersect_xrectangles):
13666 functions renamed and moved to fvwmrect.c
13668 * fvwm/borders.c (border_get_changed_border_parts):
13669 (frame_get_changed_border_parts):
13670 reduced border redrawing
13671 moved fucntion to borders.c
13673 * fvwm/events.c (HandleButtonPress):
13675 suppress button events on frame windows
13677 * fvwm/frame.c (frame_setup_border):
13678 fixed a problem with the border setup
13680 * fvwm/borders.c (border_draw_decorations):
13681 * fvwm/events.c (HandleEnterNotify):
13682 fixed icon title drawing
13684 * fvwm/misc.c (GrabEm):
13685 fixed a pointer grab hang with xmag?
13687 * fvwm/move_resize.c (resize_window):
13688 use frame_move_resize function to improve performance
13690 * fvwm/add_window.c (AddWindow):
13691 fixed recaturing shaded windows
13694 suppress unnecessary title redraws
13697 window shading works again; there are still some problems with
13698 recapture, restart, border drawing and shaped windows
13700 2002-03-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13702 * fvwm/geometry.c (get_shaded_geometry_with_dir):
13705 * fvwm/frame.c (frame_get_title_bar_dimensions):
13706 fixed minor button layout bug
13707 (frame_update_hidden_window_pos):
13709 * fvwm/ewmh_names.c (EWMH_WMName):
13710 * fvwm/gnome.c (GNOME_HandlePropRequest):
13711 * fvwm/focus.c (DoSetFocus):
13712 * fvwm/stack.c (new_layer):
13713 * fvwm/icons.c (DeIconify):
13715 * fvwm/events.c (HandleFocusIn):
13716 (HandlePropertyNotify):
13719 (HandleButtonPress):
13720 (HandleLeaveNotify):
13721 * fvwm/builtins.c (CMD_ChangeDecor):
13723 * fvwm/move_resize.c (resize_move_window):
13726 (maximize_fvwm_window):
13728 * fvwm/borders.c (DrawDecorations):
13729 (RedrawDecorations):
13730 removed function DrawDecorations()
13731 (border_draw_decorations):
13732 renamed draw_decorations_with_geom() to border_draw_decorations()
13734 * fvwm/events.c (HandleExpose):
13735 fixed drawing icon titles
13737 * fvwm/add_window.c (adjust_fvwm_internal_windows):
13738 * fvwm/events.c (HandleFocusIn):
13740 * fvwm/screen.h (ScreenInfo):
13741 return the focus to the window that had the focus before an or window
13742 stole it and then died.
13744 * fvwm/menus.c (scanForColor):
13745 removed duplicate call of strlen
13746 use alloca instead of safemalloc
13748 * fvwm/menustyle.c (menustyle_parse_style):
13749 don't call memset right before memcpy
13751 * fvwm/module_interface.c (AddToMessageQueue):
13752 (DeleteMessageQueueBuff):
13753 removed one safemalloc and inline'd the function
13754 merged AddToMessageQueue into PositiveWrite
13756 * fvwm/borders.c (border_draw_decor_to_pixmap):
13757 fixed pixmap and mini icon buttons
13758 (border_fill_pixmap_background):
13760 (border_get_tb_parts_to_draw):
13761 buttons and title background using the border style is updated when the
13764 * fvwm/events.c (WaitForButtonsUp):
13765 don't grab the whole server but merely the pointer to allow applications
13766 redrawing themselves
13769 finished writing title drawing code
13771 * fvwm/move_resize.c (resize_window):
13772 (resize_move_window):
13773 (unmaximize_fvwm_window):
13774 removed now unnecessary calls to DrawDecorations()
13776 * fvwm/frame.c (frame_hide_changing_window_parts):
13777 fixed hiding bottom/right titles
13779 * fvwm/add_window.c (AddWindow):
13780 fixed recapturing shaded windows
13782 * fvwm/misc.c (GrabEm):
13783 fixed the cursor over the title window while resizing
13785 2002-03-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13787 * libs/Graphics.c (CreateTiledPixmap):
13788 improved efficience: let the X server tile a pixmap via the GC settings
13790 * fvwm/fvwm.c (CreateGCs):
13791 * fvwm/screen.h (ScreenInfo):
13792 added new global GC Scr.TileGC
13794 * fvwm/borders.c (border_fill_pixmap_background):
13795 * fvwm/ewmh_icons.c (create_pixmap_from_ewmh_icon):
13796 use already created gcs
13798 * fvwm/ewmh_icons.c (create_pixmap_from_ewmh_icon):
13799 * fvwm/menus.c (paint_menu_gradient_background):
13800 fixed using a randow members in gcs
13802 2002-03-22 Mikhael Goikhman <migo@homemail.com>
13805 added compilation test for fribidi
13807 2002-03-22 Dan Espen <dane@mk.telcordia.com>
13809 * NEWS: Document FvwmForm timeout.
13811 2002-03-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13813 * fvwm/session.c (MatchWinToSM):
13814 * fvwm/add_window.c (AddWindow):
13815 preserve user states over a restart
13817 * fvwm/add_window.c (setup_window_structure):
13818 preserve user states over a recapture
13820 * fvwm/functions.c (execute_function):
13821 "Silent" suppresses the "No such command ..." message
13823 * fvwm/frame.c (frame_move_resize):
13824 * fvwm/misc.c (GrabEm):
13825 fixed the cursor shape during resizing
13826 fixed button looks in small windows
13828 2002-03-22 Mikhael Goikhman <migo@homemail.com>
13834 2002-03-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13836 * fvwm/fvwm.c (LoadDefaultLeftButton):
13837 (LoadDefaultRightButton):
13838 * fvwm/borders.c (border_draw_vector_to_pixmap):
13839 * fvwm/screen.h (DecorFace):
13840 * fvwm/builtins.c (ReadDecorFace):
13841 fixed transparent vector line support
13843 * libs/Graphics.c (CreateGradientPixmap):
13844 fixed potential core dump with illegal gradients
13846 2002-03-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13848 * fvwm/fvwm.h (FvwmWindow):
13849 removed button_background_pixmap member
13851 * fvwm/update.c (apply_window_updates):
13852 fixed changing the decoration size
13854 * fvwm/windowshade.c (CMD_WindowShade):
13855 * fvwm/frame.c (frame_setup_border):
13856 * fvwm/functions.c (execute_complex_function):
13859 * fvwm/move_resize.c (resize_window):
13860 fixed aboting of a opaque resize w/ maximized windows
13861 (ParseOneResizeArgument):
13862 resize arguments don't take the border into account
13863 (GetResizeArguments):
13864 implemented new option "Frame" to the Resize and ResizeMove commands
13866 2002-03-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13869 * fvwm/builtins.c (ReadDecorFace):
13870 * fvwm/borders.c (DrawLinePattern):
13871 implemented transparent drawing color in vector buttons: C == 4
13873 * libs/defaults.h (MAX_TITLE_BUTTON_VECTOR_LINES):
13874 * fvwm/builtins.c (ReadDecorFace):
13875 increased allowed number of lines in a vector button to 10000 and moved
13876 the definition to defaults.h
13878 * fvwm/virtual.c (MoveViewport):
13879 don't send useless M_NEW_PAGE packets
13883 started work on new button/title drawing code
13885 * fvwm/events.c (HandleExpose):
13886 don't handle expose on the title bar
13889 * fvwm/frame.c (frame_get_sidebar_geometry):
13890 * fvwm/fvwm.h (FvwmWindow):
13891 replaced border_state with decor_state
13893 * libs/defaults.h (NR_RIGHT_BUTTONS):
13897 * fvwm/events.c (HandleExpose):
13899 * fvwm/frame.c (frame_setup_border):
13900 hide sidebars if they are too small, i.e. 0 pixels
13902 2002-03-20 olicha <olivier.chapuis@free.fr>
13904 * libs/Flocale.c (FlocaleFreeNameProperty):
13905 Fixed random core dump
13907 2002-03-19 olicha <olivier.chapuis@free.fr>
13909 * fvwm/ConfigFvwmDefaults:
13910 RightTitleRotatedCW is a default
13912 2002-03-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13914 * fvwm/frame.c (frame_get_sidebar_geometry):
13915 window corners are always at least the border width thick
13917 * fvwm/geometry.c (update_absolute_geometry):
13918 fixed south/east shading
13920 * fvwm/frame.c (frame_move_resize_step):
13921 did the best I could to prevent rxvt from flashing in the background
13924 * fvwm/add_window.c (get_default_window_attributes):
13925 (get_default_window_attributes):
13926 (setup_resize_handle_windows):
13927 * fvwm/borders.c (border_get_border_gcs):
13928 applied -visual fix by Hippo
13930 * fvwm/cursor.c (CMD_CursorStyle):
13933 * fvwm/frame.c (frame_get_title_bar_dimensions):
13934 fixed order of right buttons
13935 (frame_move_resize_step):
13936 reduced flashing when maximizing
13938 * fvwm/geometry.c (update_absolute_geometry):
13939 adapted for horizontal shading
13941 2002-03-19 Mikhael Goikhman <migo@homemail.com>
13950 several renamings of text_direction to text_rotation
13952 2002-03-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13954 * fvwm/windowshade.c (CMD_WindowShade):
13955 * fvwm/frame.c (frame_create_move_resize_args):
13956 (frame_move_resize_step):
13957 hack to enable non-animated window shading for the time being
13959 * fvwm/style.c (parse_and_set_window_style):
13960 (parse_and_set_window_style):
13961 allow to abbreviate [Counter]ClockWise with [C]CW
13963 * fvwm/frame.c (frame_move_resize_step):
13966 * fvwm/geometry.c (gravity_constrain_size):
13967 removed useless code
13969 * fvwm/update.c (apply_window_updates):
13970 * fvwm/add_window.c (AddWindow):
13971 * fvwm/move_resize.c (unmaximize_fvwm_window):
13973 do not write into frame_g. only frame.c should do this
13975 * libs/defaults.h (MIN_WINDOW_TITLEBUTTON_LENGTH):
13976 (MIN_WINDOW_TITLE_LENGTH):
13978 * fvwm/frame.c (frame_setup_title_bar):
13979 (get_resize_decor_gravities_one_axis):
13980 (frame_setup_window_internal):
13981 (frame_move_resize_step):
13982 (frame_create_move_resize_args):
13983 rewrote frame_setup_title_bar function
13985 * fvwm/add_window.c (setup_frame_stacking):
13986 fixed title bar stacking order
13988 * fvwm/frame.c (frame_setup_title_bar):
13989 removed yesterday's 'fix'
13991 * fvwm/add_window.c (hide_screen):
13992 (setup_title_window):
13993 (setup_resize_handle_windows):
13994 (setup_button_windows):
13995 fixed visual and depth of decoration windows
13997 2002-03-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
13999 * fvwm/frame.c (frame_setup_title_bar):
14000 fixed title layout bug
14002 * fvwm/move_resize.c (MaximizeHeight):
14003 fixed bug in "grow" option of the Maximize command
14006 fixed broken prototype for get_title_font_size_and_offset
14008 * fvwm/geometry.c (get_title_font_size_and_offset):
14009 simplified code a bit
14011 2002-03-18 olicha <olivier.chapuis@free.fr>
14014 * fvwm/geometry.c (get_title_font_size_and_offset):
14015 * fvwm/add_window.c (setup_title_geometry):
14017 * fvwm/style.c (parse_and_set_window_style):
14018 (check_window_style_change):
14019 * fvwm/update.c (apply_window_updates):
14020 * fvwm/window_flags.h:
14022 Reworte side title direction styles and use LeftTitleRotatedClockWise /
14023 LeftTitleRotatedCounterClockWise, RightTitleRotatedClockWise /
14024 RightTitleRotatedCounterClockWise
14026 2002-03-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14029 * vms/config.h (FMiniIconsSupported):
14030 removed last traces of MINI_ICONS ifdef
14032 * fvwm/windowlist.c (CMD_WindowList):
14033 * fvwm/update.c (apply_window_updates):
14035 * fvwm/style.c (merge_styles):
14036 (parse_and_set_window_style):
14037 (check_window_style_change):
14039 * fvwm/module_interface.c (SendMiniIcon):
14040 (BroadcastMiniIcon):
14041 (CMD_Send_WindowList):
14042 * fvwm/fvwm.h (FvwmWindow):
14043 * fvwm/ewmh_icons.c (ewmh_WMIcon):
14044 (EWMH_DoUpdateWmIcon):
14045 (ewmh_SetWmIconFromPixmap):
14046 (EWMH_DeleteWmIcon):
14047 (EWMH_SetIconFromWMIcon):
14048 * fvwm/builtins.c (ReadDecorFace):
14049 * fvwm/borders.c (DrawButton):
14052 * fvwm/add_window.c (setup_window_structure):
14054 (destroy_mini_icon):
14055 (change_mini_icon):
14057 * acconfig.h (FMiniIconsSupported):
14058 replaced all MINI_ICONS ifdefs with FMiniIconsSupported to enable
14062 removed an FANCY_TITLEBARS ifdef
14064 * fvwm/borders.c (border_draw_one_part):
14065 (border_draw_border_parts):
14066 (border_draw_all_parts):
14067 (draw_clipped_decorations_with_geom):
14068 performance enhancement
14070 2002-03-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14072 * fvwm/frame.c (frame_move_resize_step):
14073 force setting up the border when function is called with FRAME_MR_SETUP
14074 (frame_setup_window_internal):
14075 removed duplicate frame setup
14077 * fvwm/borders.c (border_get_parts_and_pos_to_draw):
14079 (draw_clipped_decorations_with_geom):
14080 do not flush the X queue after drawing; let the caller do it
14082 * fvwm/frame.c (frame_get_sidebar_geometry):
14083 fixed layout of windows with a small height
14084 (frame_hide_changing_window_parts):
14089 made good progress with frame layout rewrite. I think it is already
14090 considerably faster.
14091 some general clean up
14093 * fvwm/add_window.c (setup_decor_window):
14096 * fvwm/windowshade.c (CMD_WindowShade):
14097 * fvwm/stack.c (verify_stack_ring_consistency):
14098 (RaiseOrLowerWindow):
14099 * fvwm/move_resize.c (resize_move_window):
14100 (move_window_doit):
14101 (draw_move_resize_grid):
14102 * fvwm/icons.c (DrawIconWindow):
14103 * fvwm/icccm2.c (CloseICCCM2):
14105 (HandleSelectionRequest):
14106 * fvwm/fvwm.c (main):
14107 (SaveDesktopState):
14108 * fvwm/focus.c (DoSetFocus):
14109 * fvwm/ewmh.c (EWMH_ManageKdeSysTray):
14110 * fvwm/events.c (HandlePropertyNotify):
14111 (HandleButtonPress):
14112 (HandleConfigureRequest):
14113 * fvwm/add_window.c (RestoreWithdrawnLocation):
14115 * fvwm/builtins.c (CMD_Delete):
14119 * fvwm/menus.c (paint_menu):
14121 * fvwm/misc.c (UngrabEm):
14123 * fvwm/schedule.c (execute_obj_func):
14124 * fvwm/add_window.c (hide_screen):
14126 use XFlush instead of XSync when the latter is not necessary
14128 * libs/fvwmrect.c (fvwmrect_rectangles_equal):
14131 * fvwm/add_window.c (adjust_fvwm_internal_windows):
14132 inform frame module if the window with the hide windows dies
14134 * fvwm/placement.c (PlaceWindow):
14136 * fvwm/add_window.c (setup_window_attr):
14137 (setup_frame_attributes):
14139 (RestoreWithdrawnLocation):
14140 (setup_window_placement):
14141 * fvwm/geometry.c (gravity_translate_to_northwest_geometry):
14142 (get_title_geometry):
14143 * fvwm/fvwm.c (InitVariables):
14144 * fvwm/frame.c (frame_setup_frame):
14145 * fvwm/colormaps.c (HandleColormapNotify):
14146 (InstallWindowColormaps):
14147 * fvwm/events.c (HandleConfigureRequest):
14148 (HandleUnmapNotify):
14149 * fvwm/fvwm.h (FvwmWindow):
14150 removed attr member of FvwmWindow and replaced by a structure defined
14151 ourselves that is much smaller
14153 * fvwm/add_window.c (hide_screen):
14154 don't use save_unders and backing_store for the window used in recapture
14156 * fvwm/frame.c (frame_init):
14157 * fvwm/fvwm.c (main):
14158 new function to initialise frame module
14160 * libs/fvwmrect.c (fvwmrect_subtract_rectangles):
14163 2002-03-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14168 * fvwm/borders.h (enum):
14169 * fvwm/borders.c (draw_clipped_decorations_with_geom):
14170 (border_get_parts_and_pos_to_draw):
14171 * fvwm/fvwm.h (struct):
14173 fixed calculations of which border parts to draw
14176 corrected some typos
14179 handle marks work again
14181 2002-03-16 Dan Espen <dane@mk.telcordia.com>
14183 * AUTHORS: New author added.
14185 2002-03-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14189 * fvwm/add_window.c (setup_frame_stacking):
14190 * fvwm/cursor.c (CMD_CursorStyle):
14191 * fvwm/events.c (HandleExpose):
14193 (HandleEnterNotify):
14194 (HandleLeaveNotify):
14196 * fvwm/geometry.c (get_title_button_geometry):
14197 * fvwm/virtual.c (map_window):
14198 * fvwm/add_window.c (setup_parent_window):
14199 (setup_resize_handle_cursors):
14200 (setup_resize_handle_windows):
14201 (resize_resize_handle_windows):
14202 (change_resize_handle_windows):
14203 some progress with new frame layout
14205 * fvwm/add_window.c (setup_visible_name):
14206 fixed off-by-one bug in setup_visible_name
14207 maximum window number can be set in defaults.h
14209 2002-03-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14211 * fvwm/windowlist.h:
14216 * fvwm/placement.h:
14218 * fvwm/move_resize.h:
14225 * fvwm/add_window.h:
14226 * fvwm/ewmh_names.c:
14227 * fvwm/ewmh_icons.c:
14228 * fvwm/ewmh_events.c:
14235 * fvwm/windowlist.c:
14239 * fvwm/colormaps.c:
14240 * fvwm/decorations.c:
14241 * fvwm/conditional.c:
14244 * fvwm/placement.c:
14248 * fvwm/functions.c:
14251 * fvwm/module_interface.c:
14253 * fvwm/add_window.c:
14256 * fvwm/move_resize.c:
14259 * fvwm/fvwm.h (FvwmWindow):
14260 moved all windows into a separate sub structure and wrote access macros
14261 renamed FvwmWindow argument to builtin commands to "fw"
14262 renamed tmp_win to fw everywhere
14264 * fvwm/borders.c (RedrawBorder):
14265 * fvwm/decorations.c (SelectDecor):
14266 * fvwm/add_window.c (setup_style_and_decor):
14267 (setup_resize_handle_cursors):
14268 * fvwm/window_flags.h:
14269 * fvwm/fvwm.h (struct):
14270 added new member has_handles and new macro HAS_HANDLES
14272 * fvwm/decorations.c (SelectDecor):
14273 fixed the NoHandles style
14275 * fvwm/decorations.c (SelectDecor):
14276 * fvwm/style.c (check_window_style_change):
14277 (parse_and_set_window_style):
14279 * fvwm/fvwm.h (struct):
14280 renamed has_no_handles to has_no_border
14282 2002-03-15 olicha <olivier.chapuis@free.fr>
14285 * libs/Fft.c (is_utf8_encoding):
14289 s/COMPUND_TEXT/COMPOUND_TEXT
14292 Removed matrix xft specification doc as now it is use internally by
14295 * libs/Flocale.c (FlocaleRotateDrawString):
14296 (FlocaleUnloadFont):
14297 (FlocaleDrawString):
14298 (FlocaleTextWidth):
14300 * libs/Fft.c (FftGetRotatedFont):
14304 * fvwm/borders.c (DrawMultiPixmapTitlebar):
14306 * fvwm/geometry.c (get_title_font_size_and_offset):
14307 * fvwm/style.c (parse_and_set_window_style):
14308 (check_window_style_change):
14309 * fvwm/update.c (apply_window_updates):
14313 * fvwm/window_flags.h:
14314 Implemented vertical text rendering, new style SideTitleTextDefault,
14315 SideTitleTextTopToBottom, SideTitleTextBottomToTop
14317 2002-03-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14320 removed inclusion of fvwmdebug.h
14322 * libs/gravity.c (ParseDirectionArgument):
14323 fixed direction parsing
14325 * fvwm/menus.c (get_menu_options):
14326 fixed a compiler warning
14328 2002-03-12 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14330 * fvwm/bindings.c (ParseBinding):
14331 fixed compiler warning
14333 * fvwm/ewmh_events.c (EWMH_GetIconGeometry):
14335 fixed compilation w/ --disable-ewmh
14337 * fvwm/windowlist.c (CMD_WindowList):
14338 fixed parsing of conditions versus position of window list broken with
14341 2002-03-11 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14344 * libs/Fft.c (FftTextWidth):
14345 (is_utf8_encoding):
14346 (FftGetFontWidths):
14348 removed the HAVE_XFT_UTF8 ifdefs and fixed not setting FftUtf8Support
14349 if HAVE_XFT was not set.
14351 * fvwm/events.h (XEVMASK_DECORW):
14352 select EnterNotify and LeaveNotify on frame instead of decor_w
14354 * fvwm/add_window.c (setup_title_window):
14355 (setup_button_windows):
14356 (setup_resize_handle_windows):
14357 frame window is the new parent of the title, button and handle windows
14358 (setup_frame_stacking):
14359 new stacking order of decoration windows
14361 * fvwm/menuitem.c (menuitem_paint):
14362 * fvwm/events.c (HandleExpose):
14365 * fvwm/move_resize.c (unmaximize_fvwm_window):
14366 don't force to redraw the frame
14368 * libs/gravity.c (gravity_get_offsets):
14371 functions moved to gravity.c
14373 2002-03-10 olicha <olivier.chapuis@free.fr>
14375 * acconfig.h (HAVE_XFT_UTF8):
14377 * libs/Fft.c (is_utf8_encoding):
14378 (FftGetFontWidths):
14381 Detected if Xft can handle utf8 string
14384 * fvwm/menuitem.c (menuitem_paint):
14385 * fvwm/events.c (HandleExpose):
14386 Fixed Xft related compilation failure and warning
14388 2002-03-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14392 * fvwm/move_resize.c:
14397 * fvwm/add_window.c:
14398 * fvwm/frame.c (frame_setup_window):
14399 (frame_force_setup_window):
14400 (frame_setup_shape):
14401 SetupFrame renamed to frame_setup_window
14402 ForceSetupFrame renamed to frame_force_setup_window
14403 SetShape renamed to frame_setup_shape
14405 * fvwm/windowshade.c:
14406 moved most code to frame.c
14408 * fvwm/frame.c (SetShape):
14410 (set_decor_gravity):
14413 functions moved to new file
14416 (frame_setup_title_bar):
14420 direction code moved to gravity.c and gravity.h
14422 * fvwm/windowshade.c (CMD_WindowShade):
14423 * fvwm/geometry.c (get_shaded_geometry):
14425 * libs/FScreen.c (FScreenInit):
14426 (FScreenUpdateEmulationMapState):
14427 changed Xinerame emulation layout
14430 Corrected the description of the XineramaPrimaryScreen command that was
14433 2002-03-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14435 * fvwm/menus.c (menu_tear_off):
14436 (unlink_item_from_menu):
14437 (menu_strip_tear_off_title):
14438 use the text from a title item as the tear off menu title if the menu
14439 begins with a title; skip separators and tear off bars at the front of
14443 implemented titleatleft and titleatright styles; titles are not drawn
14446 * fvwm/style.c (check_window_style_change):
14447 * fvwm/update.c (apply_window_updates):
14448 * fvwm/ewmh_names.c (EWMH_WMIconName):
14451 * fvwm/ewmh.c (ksmserver_workarround):
14452 * fvwm/update.c (apply_window_updates):
14453 * fvwm/conditional.c (MatchesConditionMask):
14454 * fvwm/fvwm.c (main):
14455 * fvwm/session.c (SaveWindowStates):
14458 * fvwm/functions.c (expand):
14459 * fvwm/stack.c (dump_stack_ring):
14460 (verify_stack_ring_consistency):
14461 * fvwm/module_interface.c (BroadcastWindowIconNames):
14462 (CMD_Send_WindowList):
14463 * fvwm/add_window.c (free_window_names):
14464 (free_window_names):
14465 * fvwm/events.c (HandlePropertyNotify):
14466 * fvwm/builtins.c (CMD_Wait):
14467 * fvwm/style.c (CMD_DestroyStyle):
14469 Adapted to changes of Flocale.h
14472 removed COMPUND_TEXT ifdef
14475 mutibyte defaults to on
14480 * fvwm/fvwm.h (FvwmWindow):
14481 cleaned up Flocale stuff for better information hiding
14483 * libs/Flocale.c (get_FlocaleFontSet):
14485 added a new font strucht member min_char_offset for vertical text
14487 * libs/Flocale.c (get_FlocaleFontSet):
14488 fixed a bug in descent calculation
14490 * fvwm/fvwm.h (FvwmWindow):
14493 * fvwm/borders.c (RedrawButtons):
14498 (DrawMultiPixmapTitlebar):
14499 don't use title_g or boundary_width
14501 * libs/Flocale.c (FlocaleTextWidth):
14502 * libs/Flocale.c (FlocaleDrawString):
14503 added interface for vertical strings
14504 * libs/Flocale.h (FlocaleWinString):
14505 added flags structure w/ is_vertical_string flag
14507 * fvwm/borders.c (RedrawTitle):
14508 (DrawMultiPixmapTitlebar):
14509 * fvwm/screen.h (ScreenInfo):
14510 * fvwm/icons.c (DrawIconWindow):
14511 * fvwm/move_resize.c (DisplayPosition):
14513 * fvwm/screen.h (ScreenInfo):
14514 removed ScratchStr and TitleStr; *please* don't use global variables
14517 * fvwm/move_resize.c (ParseOneResizeArgument):
14518 (GetResizeArguments):
14519 (GetResizeMoveArguments):
14521 (resize_move_window):
14522 * fvwm/module_interface.c (CONFIGARGS):
14525 * fvwm/placement.c (PlaceWindow):
14526 * fvwm/add_window.c (setup_title_window):
14527 (setup_button_windows):
14528 (setup_parent_window):
14529 (resize_resize_handle_windows):
14530 (change_resize_handle_windows):
14532 * fvwm/geometry.c (get_window_borders):
14533 (gravity_get_naked_geometry):
14534 (gravity_add_decoration):
14536 don't use title_g.width and title_g.height anymore
14538 * libs/defaults.h (EXTRA_TITLE_FONT_WIDTH):
14541 * fvwm/borders.c (SetupTitleBar):
14542 * fvwm/add_window.c (setup_title_window):
14543 don't use title_g.x and title_g.y anymore
14544 (setup_title_geometry):
14547 * fvwm/fvwm.h (FvwmWindow):
14548 replaced title_g by title_length and title_thickness
14549 renamed title_text_y to title_text_offset
14551 * fvwm/add_window.c (setup_style_and_decor):
14552 (setup_parent_window):
14553 * fvwm/decorations.c (SelectDecor):
14554 * fvwm/placement.c (PlaceWindow):
14555 * fvwm/windowlist.c (CMD_WindowList):
14556 * fvwm/events.c (SendConfigureNotify):
14557 (HandlePropertyNotify):
14559 * fvwm/move_resize.c (DisplaySize):
14560 (ParseOneResizeArgument):
14561 (GetResizeArguments):
14562 (GetResizeMoveArguments):
14564 (resize_move_window):
14565 * fvwm/geometry.c (gravity_get_naked_geometry):
14566 (gravity_add_decoration):
14568 don't use boundary_width anymore
14570 * fvwm/borders.c (SetupTitleBar):
14573 * fvwm/fvwmdebug.c:
14574 removed outdated file that was never used
14576 * fvwm/move_resize.c (move_window_doit):
14577 fixed GNOME and EWMH hints when unsticking a window
14579 * fvwm/virtual.c (CMD_MoveToDesk):
14580 unstick windows when MoveToDesk is used
14583 * fvwm/windowshade.c (CMD_WindowShade):
14584 (CMD_WindowShadeAnimate):
14585 functions moved to windowshade.c
14587 * fvwm/window_flags.h:
14588 * fvwm/menus.c (pop_menu_up):
14589 * fvwm/builtins.c (CMD_WindowShade):
14590 * fvwm/move_resize.c (resize_window):
14591 * fvwm/icons.c (AutoPlaceIcon):
14592 * fvwm/borders.c (SetupFrame):
14593 don't use HAS_BOTTOM_TITLE any more
14597 * fvwm/geometry.c (get_title_font_width_and_offset):
14598 * fvwm/geometry.c (set_window_border_size):
14599 * fvwm/geometry.c (is_window_border_minimal):
14600 * fvwm/geometry.c (get_window_borders_no_title):
14601 * fvwm/geometry.c (get_shaded_client_window_pos):
14602 * fvwm/geometry.c (get_icon_corner):
14603 * fvwm/geometry.c (get_title_gravity):
14604 * fvwm/geometry.c (get_title_geometry):
14605 * fvwm/borders.c (get_button_number):
14608 * fvwm/borders.c (SetupFrame):
14610 * fvwm/events.c (HandleShapeNotify):
14611 * fvwm/borders.c (SetupTitleBar):
14612 * fvwm/update.c (apply_window_updates):
14613 * fvwm/add_window.c (setup_window_font):
14614 removed title_top_height
14616 * libs/defaults.h (WINDOW_FREAKED_OUT_SIZE):
14619 * fvwm/events.c (SendConfigureNotify):
14620 * fvwm/events.c (HandleConfigureRequest):
14621 preparations for W/E titles
14622 don't use title_top_height any more
14624 * fvwm/ewmh_events.c (ewmh_WMStateShaded):
14625 use title_dir flags
14627 * fvwm/geometry.c (get_window_borders):
14628 * fvwm/style.c (parse_and_set_window_style):
14629 (check_window_style_change):
14630 * fvwm/style.h (SCSET_TITLE_DIR):
14631 * fvwm/window_flags.h (GET_TITLE_DIR):
14632 * fvwm/fvwm.h (struct):
14633 replaced has_bottom_title flag with title_dir that can be DIR_N, DIR_S,
14636 * libs/Parse.c (ParseDirectionArgument):
14638 use new type direction_type
14640 2002-03-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14642 * fvwm/ewmh.c (EWMH_SetFrameStrut):
14643 use function from geometry.c to get the border size
14645 * fvwm/geometry.c (get_shaded_geometry):
14646 added code for shading in all directions
14648 2002-03-07 Dan Espen <dane@mk.telcordia.com>
14650 * fvwm/bindings.c (ParseBinding): Handle key_string lengths up to 30.
14652 2002-03-07 olicha <olivier.chapuis@free.fr>
14654 * libs/Flocale.c (FInitLocale):
14655 * fvwm/fvwm.c (main):
14656 Set the locale using "" as locale argument
14658 2002-03-07 Mikhael Goikhman <migo@homemail.com>
14661 fixed some typos and indentation of several new variable entries
14663 2002-03-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14665 * fvwm/functions.h (enum):
14666 * fvwm/functions.c (func_config):
14668 * fvwm/conditional.c (CMD_ThisWindow):
14669 renamed command "This" to "ThisWindow"
14671 * fvwm/conditional.c (Circulate):
14672 "Current" no longer selects a random window when no window is focused
14674 * fvwm/icccm2.c (SetupICCCM2):
14675 removed debug fprintf
14677 * fvwm/functions.c (expand_extended_var):
14678 implemented new extended variables pointer.x, pointer.x, pointer.wx,
14679 pointer.wy, pointer.cx and pointer.cy.
14681 * libs/Parse.c (ParseDirectionArgument):
14682 allow N, S, W, E, NW, SW, SE, NE for direction arguments
14684 * fvwm/builtins.c (CMD_WindowShade):
14685 fixes for animated shading w/ titleatbottom+north and titleattop+south
14687 2002-03-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14689 * fvwm/move_resize.c (moveLoop):
14691 * fvwm/virtual.c (HandlePaging):
14692 moving/resizing windows opaque is much faster
14694 2002-03-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14696 * fvwm/add_window.c (resize_resize_handle_windows):
14697 (change_resize_handle_windows):
14698 (setup_window_font):
14699 fixed changing the handlewidth style
14701 * fvwm/update.c (apply_window_updates):
14702 * fvwm/geometry.c (update_absolute_geometry):
14703 * fvwm/builtins.c (CMD_WindowShade):
14704 * fvwm/ewmh_events.c (ewmh_WMStateShaded):
14705 * fvwm/conditional.c (CreateConditionMask):
14706 * fvwm/geometry.c (get_shaded_geometry):
14707 * fvwm/session.c (MatchWinToSM):
14708 * fvwm/add_window.c (setup_window_structure):
14710 * fvwm/window_flags.h (SHADED_DIR):
14711 * fvwm/fvwm.h (struct):
14712 implemented new WindowShade options "North" and "South" to allow shading
14713 a window in either direction, regardless of if the title is at the top
14716 * libs/Module.c (module_expand_action):
14717 new convenience function for modules
14719 2002-03-03 Dan Espen <dane@mk.telcordia.com>
14721 * fvwm/fvwm2.1: Fixes to the font section.
14723 2002-03-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14725 * fvwm/conditional.c (CMD_WindowId):
14726 set the correct context window for unmanaged windows
14728 * fvwm/icons.c (DrawIconWindow):
14729 raise the icon title even if it's too small to be expanded
14731 * fvwm/conditional.c (CMD_Cond):
14732 Fixed it the right way this time
14734 same fix for the 'Any' command
14741 unified circulating functions into a single one
14743 Pick allows to pick functions that have CirculateSkip set
14744 fixed a memory leak
14748 (CMD_PointerWindow):
14749 unified selecting functions into a single one
14752 Allow user to override the default CirculateHit of these functions
14754 * fvwm/conditional.c (CMD_Cond):
14755 Fixed a problem w/ the window selection
14761 * fvwm/menustyle.h:
14762 * fvwm/menustyle.c:
14766 moved some of the menu code into separate files
14767 more work on tear off menus; windowlist can now be torn off without a
14772 added templates for new source files
14774 * libs/Picture.c (fvwmlib_clone_color):
14777 * fvwm/menus.c (make_menu):
14779 removed unused parameter from make_menu()
14781 * fvwm/fvwm2.1 (Example):
14782 corrected statement about CaptureHonorsStartsOnPage being the default
14784 2002-03-03 Mikhael Goikhman <migo@homemail.com>
14789 added and documented --disable-bidi and --disable-perllib
14791 2002-03-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14793 * fvwm/geometry.c (get_window_borders):
14794 fixed calculation of $[cw.y] and $[cw.height]
14796 * fvwm/move_resize.c (resize_move_window):
14797 windows are mo longer hilighted after ResizeMove or ResizeMoveMaximize
14799 2002-03-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14801 * fvwm/move_resize.c (resize_move_window):
14803 2002-02-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14806 re-added --enable-xinerama-emulation option that was removed recently
14808 2002-02-28 Mikhael Goikhman <migo@homemail.com>
14813 several corrections and rewording
14815 2002-02-28 olicha <olivier.chapuis@free.fr>
14818 New section FONT NAMES AND FONT LOADING
14822 Document --enable-xft
14824 * libs/Fft.c (get_FlocaleXftFont):
14825 Used the xft font height in the place of ascent+descent
14827 * fvwm/icons.c (DrawIconWindow):
14828 Fixed the fg colors of the icon title
14830 2002-02-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14832 * fvwm/conditional.c (CMD_CondCase):
14833 fixed CondCase command
14835 fixed numeric return codes
14837 * fvwm/add_window.c (CMD_Recapture):
14838 fixed focus loss w/ SloppyFocus and MouseFocus after RecaptureWindow
14840 * acinclude.m4 (smr_CHECK_LIB):
14841 disabled a destructing gnome_prefix logic again
14843 * fvwm/events.c (GetContext):
14844 * libs/Bindings.c (win_contexts):
14846 new contexts for individual parts of the window border
14848 2002-02-26 Mikhael Goikhman <migo@homemail.com>
14851 disabled a destructing gnome_prefix logic
14854 replaced fribidi detection mechanism, now fribidi-config is used
14856 2002-02-26 olicha <olivier.chapuis@free.fr>
14858 * acconfig.h (HAVE_XFT):
14861 * libs/Fft.c (new file):
14862 * libs/Flocale.c (FlocaleLoadFont):
14863 (FlocaleUnloadFont):
14864 (FlocaleDrawString):
14865 (FlocaleTextWidth):
14866 (get_FlocaleFontSet):
14868 (get_FlocaleFontOrFontSet):
14870 * fvwm/Makefile.am:
14871 Added anti-alised font rendering using Xft. This is off by default.
14872 A font can now be given as a ";" separated list of either ","
14873 separated list of XFLD font name or Xft font name with "xft:" as
14875 xft:Verdana:Regular:size=12:rgba=rgb;-adobe-*-medium-r-*--12-*,fixed
14876 See Flocale.h for details
14878 * fvwm/events.c (HandleExpose):
14879 * fvwm/menus.c (paint_item):
14880 Always clear the text area before drawing text with an Xft font
14882 2002-02-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14884 * acinclude.m4 (smr_CHECK_LIB):
14885 fixed a bug with variable expansion and autoconf cache values
14887 2002-02-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14889 * fvwm/menus.c (seek_submenu_instance):
14891 * fvwm/fvwm.c (InitVariables):
14892 some general menu clean up
14894 * fvwm/move_resize.c (AnimatedMoveAnyWindow):
14895 * fvwm/move_resize.h (resize_geometry_window):
14896 * fvwm/menus.c (animated_move_back):
14898 (ParentalMenuRePaint):
14899 Removed the global variables for parental relativity. Please *do not*
14900 use globals in menus.c or anywhere else. I'm trying to remove most
14901 globals in the long run.
14903 * libs/Graphics.c (do_relieve_rectangle):
14906 * fvwm/menus.c (MenuInteraction):
14907 fixed tearing off menus by selecting a tear off item with the keyboard
14909 * fvwm/menus.c (MenuInteraction):
14910 fixed menus not popping down sometimes
14912 * fvwm/functions.c (CMD_TearMenuOff):
14913 * fvwm/menus.c (AddToMenu):
14915 (warp_pointer_to_item):
14916 (get_selectable_item_index):
14917 (get_selectable_item_from_index):
14918 (get_selectable_item_from_section):
14921 (draw_tear_off_bar):
14922 * fvwm/menus.h (MI_IS_TEAR_OFF_BAR):
14923 New command "TearMenuOff" in menus. In a normal item, this tears off
14924 the menu when selected. If the item has no title, it is drawn as a
14925 dashed line too. Pressing button 2 over a title tears out the menu too.
14928 * fvwm/menus.c (make_menu_window):
14929 fixed problem w/ mapping menus, performance enhancement
14931 * fvwm/builtins.c (CMD_Destroy):
14935 * fvwm/functions.c (execute_function):
14936 (expand_extended_var):
14938 new variable cond.rc that returns the last return code of a conditinal
14941 2002-02-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
14943 * fvwm/conditional.c (CMD_Cond):
14947 * fvwm/functions.h:
14948 * fvwm/functions.c:
14949 new conditional commands Cond, CondCase and Break
14951 * fvwm/ewmh_events.c (ewmh_WMStateSticky):
14952 (ewmh_WMStateShaded):
14955 (ewmh_WMStateHidden):
14957 (ewmh_CloseWindow):
14958 (ewmh_ActiveWindow):
14959 (ewmh_DesktopGeometry):
14960 * fvwm/gnome.c (GNOME_HandlePropRequest):
14961 * fvwm/windowlist.c (CMD_WindowList):
14962 * fvwm/update.c (apply_window_updates):
14963 * fvwm/conditional.c (CMD_Pick):
14969 (CMD_PointerWindow):
14974 * fvwm/read.c (run_command_stream):
14975 * fvwm/fvwm.c (Done):
14979 * fvwm/module_interface.c (ExecuteModuleCommand):
14980 * fvwm/move_resize.c (handle_stick):
14981 * fvwm/add_window.c (AddWindow):
14982 * fvwm/events.c (HandleKeyPress):
14983 (HandleButtonPress):
14984 (HandleClientMessage):
14985 (HandleButtonRelease):
14986 (HandlePropertyNotify):
14987 * fvwm/builtins.c (CMD_DestroyDecor):
14990 * fvwm/functions.h (func_type):
14991 * fvwm/functions.c (old_execute_function):
14992 (execute_function):
14993 (execute_complex_function):
14995 * fvwm/fvwm.h (fvwm_cond_func_rc):
14996 inplemented return codes OK, NO_MATCH and ERROR for conditional commands
14998 * fvwm/ConfigFvwmDefaults:
14999 set some default styles for tear off menu windows
15001 * fvwm/menus.c (menuShortcuts):
15002 ignore actions that would normally close a menu if it's a tear off menu
15003 <Backspace> creates a tear off menu
15004 <Escape> closes a tear off menu
15006 * fvwm/builtins.c (CMD_Delete):
15009 * fvwm/menus.c (DestroyMenu):
15010 (make_menu_window):
15012 * fvwm/menus.h (MenuRootDynamic):
15013 Each menu window is created with a unique display to prevent fvwm from
15014 being killed when a tear off menu is destroyed. Of course this is
15015 inefficient, but still better than writing a menu module.
15017 2002-02-23 Mikhael Goikhman <migo@homemail.com>
15020 autogenerate perllib/FVWM/Module/Makefile
15022 2002-02-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15024 * fvwm/move_resize.c (moveLoop):
15025 fixed a problem with keyboard movement vs. EdgeResistance
15027 2002-02-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15030 fixed problem with root bindings and xfishtank
15032 * fvwm/windowlist.c (CMD_WindowList):
15033 applied patch by to Darren Marshall to fix placement of window list on
15034 wrong xinerama screen
15036 * libs/Parse.c (GetSuffixedIntegerArguments):
15037 integer arguments that must not have a suffix but have one are ignored
15039 * fvwm/icons.c (DeIconify):
15041 applied patch by Markus Schwarzenberg to fix a rare problem with the
15042 is_map_pending flag, iconified icons and restart
15044 2002-02-22 Mikhael Goikhman <migo@homemail.com>
15047 * fvwm/conditional.c (CMD_This):
15048 * fvwm/functions.c:
15049 * fvwm/functions.h:
15052 added new conditional command This
15054 2002-02-21 Mikhael Goikhman <migo@homemail.com>
15058 added fribidi library detection
15060 2002-02-12 olicha <olivier.chapuis@free.fr>
15062 * libs/Flocale.h (FlocaleFont):
15063 * libs/Flocale.c (get_FlocaleFont):
15064 (get_FlocaleFontSet):
15065 Compute the ascent and descent of the FlocaleFont structure directly
15066 from the XFontSetExtents data in the case of a fontset
15067 Added max_char_width to the FlocaleFont structure
15069 * libs/Makefile.am (libfvwm_a_SOURCES):
15071 Removed libs/GetFont.c
15073 * fvwm/menus.c (FreeMenuStyle):
15076 (CMD_CopyMenuStyle):
15077 * fvwm/menus.h (MenuLook):
15078 Fixed default font handling font by using a new MenuLook flags
15081 * fvwm/menus.c (UpdateMenuStyle):
15082 Fixed default font update
15084 * fvwm/fvwm.c (SetRCDefaults):
15086 Load the real default font FALLBACK_FONT or MB_FALLBACK_FONT at
15087 fvwm initialization
15089 2002-02-11 Mikhael Goikhman <migo@homemail.com>
15092 added FvwmPerl/* file generation
15094 2002-02-11 olicha <olivier.chapuis@free.fr>
15098 Multibyte news. Document --disable-compound-text and --disable-ewmh.
15101 Added more documentation and change the MB_FALLBACK_FONT to
15102 "-*-fixed-medium-r-semicondensed-*-13-*,-*-fixed-medium-r-normal-*-14-*,
15103 -*-medium-r-normal-*-16-*" (with XFree) this should gives something
15104 more consistent with the none multibyte case.
15106 2002-02-10 olicha <olivier.chapuis@free.fr>
15108 * fvwm/ewmh.c (EWMH_RestoreInitialStates):
15110 * fvwm/events.c (HandleUnmapNotify):
15111 (HandleReparentNotify):
15112 * fvwm/ewmh_events.c (ewmh_WMStateShaded):
15113 (ewmh_WMStateSticky):
15114 (ewmh_WMStateHidden):
15115 Restore various ewmh initial states when a window is unmapped or
15118 2002-02-10 Mikhael Goikhman <migo@homemail.com>
15122 added support for new perllib directory
15124 2002-02-09 olicha <olivier.chapuis@free.fr>
15131 Rename I18N_MB to MULTIBYTE
15132 Added --disable-compound-text (COMPOUND_TEXT), so this is on by default
15134 * libs/Flocale.c (*):
15136 New Font and Text API. A cache is used for fonts information. Font
15137 loading is more powerfull as both font or fontset can be loaded.
15138 See Flocale.h for details, more comments will be added soon.
15139 Fortunately, it seems that there are no more memory problems with
15140 --enable-multibyte!
15141 If COMPOUND_TEXT, then non XA_STRING text properties are converted
15142 with XmbTextPropertyToTextList
15144 * fvwm/events.c (HandlePropertyNotify):
15145 * fvwm/misc.c (NewFontAndColor):
15148 * fvwm/menus.c (FreeMenuStyle):
15150 (CMD_CopyMenuStyle):
15152 (calculate_item_sizes):
15153 (size_menu_horizontally):
15155 * fvwm/builtins.c (CMD_DefaultFont):
15156 (ApplyDefaultFontAndColors):
15157 * fvwm/add_window.c (destroy_icon_font):
15159 (destroy_window_font):
15160 (setup_window_font):
15161 (free_window_names):
15162 (setup_window_name):
15164 * fvwm/fvwm.h (FvwmWindow):
15165 * fvwm/move_resize.c (DisplayPosition):
15166 (resize_geometry_window):
15168 * fvwm/fvwm.c (InitVariables):
15169 * fvwm/icons.c (DrawIconWindow):
15170 (setup_icon_title_size):
15171 * fvwm/borders.c (RedrawTitle):
15172 (DrawMultiPixmapTitlebar):
15173 * fvwm/screen.h (ScreenInfo):
15174 Use the new Text and Font API
15176 2002-02-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15178 * fvwm/module_interface.c (PositiveWrite):
15179 fixed core dump when a module died in the select of PositiveWrite()
15181 * fvwm/module_interface.c (initModules):
15183 (do_execute_module):
15185 (KillModuleByName):
15186 (CMD_SendToModule):
15188 * fvwm/modconf.c (ModuleConfig):
15189 removed WITHOUT_KILLMODULE_ALIAS_SUPPORT ifdef; always off now
15191 * fvwm/icons.c (GetXPMFile):
15192 suppress unnecessary error message for xmb icons
15194 * fvwm/misc.c (fvwm_msg):
15195 * fvwm/misc.h (enum):
15196 added new fvwm_msg type "OLD" for deprecated commands
15198 2002-02-07 Mikhael Goikhman <migo@homemail.com>
15201 generate fvwmbug, not fvwmbug.sh; prepare LOCAL_BUGADDR for it
15204 New section "Bug Reports".
15206 2002-02-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15208 * fvwm/update.c (apply_window_updates):
15209 fixed propagation of window border and title colours to the modules
15211 2002-02-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15213 * fvwm/menus.c (do_menu):
15214 fixed leaving tear off menus when something is selected with the mouse
15216 2002-02-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15218 * fvwm/events.c (HandleEnterNotify):
15220 more work on tear off menus
15222 2002-02-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15224 * fvwm/events.h (XEVMASK_TEAR_OFF_MENU):
15225 * fvwm/menus.c (menu_enter_tear_off_menu):
15230 properly calculate pointer position in tear off menus
15232 fixed active wait w/ poopup/popdown delays
15234 * fvwm/windowlist.c (CMD_WindowList):
15235 don't initialise some variables twice
15237 2002-01-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15239 * fvwm/add_window.c (CaptureOneWindow):
15240 properly recapture tear off menus
15242 (IS_MESSAGE_IN_MASK):
15243 (is_message_selected):
15246 * fvwm/schedule.c (deschedule):
15248 * fvwm/events.c (My_XNextEvent):
15250 * fvwm/module_interface.c (ClosePipes):
15251 (CMD_ModuleSynchronous):
15253 performance enhancements; made macros out of simple functions
15255 * fvwm/builtins.c (CMD_WindowShade):
15256 don't redraw the decorations if window was not shaded or unshaded
15258 * fvwm/schedule.c (deschedule_obj_func):
15259 (execute_obj_func):
15260 fixed core dump when a scheduled command deschedules itself
15262 2002-01-31 olicha <olivier.chapuis@free.fr>
15267 2002-01-31 Mikhael Goikhman <migo@homemail.com>
15270 * fvwm/move.c (moveLoop):
15271 while moving if Mod1 (Alt/Meta) is pressed ignore snap attraction
15273 * fvwm/session.c (get_version_string):
15274 switch from static to date-based version string
15277 remove --enable-kanji compatibility option
15281 fix warnings, gcc compains on having something after #endif
15283 2002-01-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15285 * fvwm/builtins.c (CMD_Delete):
15288 don't crash fvwm when trying to close a tear off menu
15290 * fvwm/decorations.c (is_function_allowed):
15291 * fvwm/menus.c (menu_expose):
15293 * fvwm/events.c (HandleReparentNotify):
15294 (HandleUnmapNotify):
15295 * fvwm/add_window.c (AddWindow):
15297 * fvwm/fvwm.h (struct):
15298 * fvwm/add_window.c (CaptureAllWindows):
15299 (CaptureOneWindow):
15300 * fvwm/events.h (flush_property_notify):
15301 * fvwm/events.c (HandleMapRequestKeepRaised):
15302 started work on tear off menus
15304 * fvwm/fvwm.c (main):
15305 * fvwm/events.c (CMD_Sync):
15307 * fvwm/commands.h (CMD_Synchronize):
15308 * fvwm/functions.h (enum):
15309 * fvwm/functions.c (func_config):
15310 new commands XSync and XSynchronize for debugging
15312 * fvwm/conditional.c (CreateConditionMask):
15313 (MatchesConditionMask):
15314 * fvwm/builtins.c (CMD_State):
15315 * fvwm/fvwm.h (struct):
15316 * fvwm/functions.h:
15318 * fvwm/functions.c (func_config):
15319 new command "State"
15320 new condition "State"
15325 2002-01-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15327 * fvwm/module_interface.c (AddToMessageQueue):
15329 (DeleteMessageQueueBuff):
15330 (FlushMessageQueue):
15331 * fvwm/events.c (My_XNextEvent):
15332 * fvwm/module_interface.c (AddToCommandQueue):
15333 (ExecuteCommandQueue):
15334 use code from queue.c
15339 * fvwm/events.c (My_XNextEvent):
15340 "Schedule 0" commands are executed before event handling
15341 moved some of the chedule code into a new queue library
15343 2002-01-30 olicha <olivier.chapuis@free.fr>
15345 * libs/Flocale.c (FInitLocale): Fixed a miss print in an error msg
15347 2002-01-30 olicha <olivier.chapuis@free.fr>
15351 * libs/Makefile.am:
15352 * fvwm/fvwm.c (main):
15353 New libs files Flocale.c and Flocale.h with a function to set the
15354 locale as the Xlib prog man says to do it. Use it in fvwm.c. There is
15355 also a function to get the charset (from ewmh_name.c) and which
15356 setlocale if this has not been done with the above function. This
15357 function is also called at fvwm2 startup
15359 * fvwm/ewmh_names.c (charset_to_utf8):
15361 Use the Fcharset variable and remove get_charset
15363 * fvwm/ewmh_names.c (EWMH_SetVisibleName):
15366 * libs/GetFont.c (GetFontSetOrFixed):
15367 Free the missing charset list as suggested by Alexander Kotelnikov.
15368 Report problems with missing charset only 5 times. Remove the
15369 STRICTLY_FIXED code
15371 2002-01-30 Mikhael Goikhman <migo@homemail.com>
15374 a patch to config.status to generate scripts executable, may be handy;
15375 added generation of utils/fvwm24_convert
15377 2002-01-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15380 * fvwm/functions.c (expand_extended_var):
15381 implemented $[schedule.last] and $[schedule.next] variables
15382 implemented new command "Deschedule"
15384 * fvwm/misc.c (get_server_time):
15387 2002-01-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15389 * fvwm/misc.c (get_server_time):
15390 * fvwm/events.c (My_XNextEvent):
15391 * fvwm/icccm2.c (SetupICCCM2):
15392 * fvwm/functions.h:
15394 * fvwm/functions.c (func_config):
15396 implemented new command "Schedule"
15398 * fvwm/builtins.c (CMD_Exec):
15399 applied job control patch by Alexander Kotelnikov using the portable
15400 version of setpgrp()
15402 * libs/setpgrp.c (fvwm_setpgrp):
15403 * libs/setpgrp.h (fvwm_setpgrp):
15404 * libs/Makefile.am:
15406 added checks for setpgrp and setpgid
15408 2002-01-29 olicha <olivier.chapuis@free.fr>
15411 Better test for iconv second argumeny
15414 Use gnu libiconv in priority against the system iconv
15416 2002-01-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15418 * fvwm/stack.c (RaiseOrLowerWindow):
15420 (collect_transients_recursive):
15421 * fvwm/icons.c (get_visible_icon_window_count):
15422 fixed stack ring corruption with icons that have either no picture or
15425 2002-01-28 olicha <olivier.chapuis@free.fr>
15427 * fvwm/ewmh_names.c (charset_to_utf8):
15429 (EWMH_SetVisibleName):
15431 Better message errors in get_charset, use UTF-8 in the place of UTF8,
15432 set the ewmh visible (icon) name only if the fvwm visible name is
15433 different from the ICCCM (icon) window name, limit the number of
15434 conversions error messages to 10
15436 2002-01-28 olicha <olivier.chapuis@free.fr>
15438 * fvwm/functions.c (func_config):
15440 * fvwm/builtins.c (CMD_PropertyChange):
15441 New undocumented command PropertyChange to send MX_PROPERTY_CHANGE
15444 * fvwm/module_interface.h:
15445 * fvwm/module_interface.c (BroadcastPropertyChange):
15446 * libs/Module.h (MX_PROPERTY_CHANGE):
15447 New module message MX_PROPERTY_CHANGE for all propose messages.
15449 * fvwm/events.c (HandlePropertyNotify):
15451 Send a MX_PROPERTY_CHANGE message with MX_PROPERTY_CHANGE_BACKGROUND
15452 as argument when fvwm2 detects that the root background change
15453 Removed the ROOT_BG_CHANGE_STRING stuff
15455 2002-01-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15457 * NEWS, configure.in:
15458 changed version to 2.5.1
15460 * fvwm/misc.c (get_pointer_fvwm_window):
15462 * fvwm/functions.c (func_config):
15463 * fvwm/conditional.c (CreateConditionMask):
15464 (MatchesConditionMask):
15465 (CMD_PointerWindow):
15466 (CreateConditionMask):
15468 * fvwm/fvwm.h (WindowConditionMask):
15469 new conditions focused, !focused, haspointer, !haspointer
15470 new command PointerWindow that works like Current but on the window
15471 that currently contains the pointer
15472 new command Any which works like None but inverts the condition
15473 fixed parsing of conditions with more than one comma
15475 * fvwm/module_interface.h:
15476 * fvwm/module_interface.c (do_execute_module):
15478 * libs/Module.h (MAX_XMSG_MASK):
15479 fixed default message mask for modules
15481 * fvwm/update.c (flush_window_updates):
15482 * fvwm/virtual.c (UnmapDesk):
15484 (do_move_window_to_desk):
15485 * fvwm/icons.c (DeIconify):
15487 * fvwm/events.c (HandlePropertyNotify):
15488 (HandleMapRequestKeepRaised):
15490 (HandleButtonPress):
15491 (HandleEnterNotify):
15492 (HandleLeaveNotify):
15493 * fvwm/focus.c (DoSetFocus):
15496 (ReturnFocusWindow):
15498 (ForceDeleteFocus):
15500 (restore_focus_after_unmap):
15501 Fixed a race condition with M_FOCUS_CHANGE events and window updates by
15502 suppressing the M_FOCUS_CHANGE message if the focus does not change in
15503 the flush_window_updates() function.
15505 2002-01-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15507 * fvwm/placement.c (PlaceWindow):
15508 minor performance enhancement
15510 2002-01-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15513 * fvwm/menus.c (MenuInteraction):
15514 (pointer_in_active_item_area):
15515 (pointer_in_passive_item_area):
15516 new menu style PopupActiveArea
15518 2002-01-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15520 * fvwm/move_resize.c (CMD_ResizeMaximize):
15521 (CMD_ResizeMoveMaximize):
15522 fixed ResizeMaximize and ResizeMoveMaximize on pages other than 0 0
15524 2002-01-21 olicha <olivier.chapuis@free.fr>
15527 s/Penalities/Penalties/g
15529 2002-01-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15531 * fvwm/events.c (HandleLeaveNotify):
15532 (HandleEnterNotify):
15533 * fvwm/modconf.c (ModuleConfig):
15534 * fvwm/update.c (apply_window_updates):
15535 * fvwm/module_interface.c (BroadcastWindowIconNames):
15536 (CMD_Send_WindowList):
15538 (do_execute_module):
15540 (CMD_set_nograb_mask):
15541 (CMD_set_sync_mask):
15543 (set_mseggage_mask):
15544 (is_message_in_mask):
15545 (is_message_selected):
15547 rewrote message interface to allow more than 32 messages with minimal
15548 changes in the existing interfaces.
15549 new module messages MX_ENTER_WINDOW and MX_LEAVE_WINDOW
15552 * fvwm/style.c (parse_and_set_window_style):
15553 * fvwm/fvwm.h (struct):
15554 * fvwm/events.c (HandleButtonPress):
15555 implemented new styles MouseFocusClickIgnoreMotion and
15556 MouseFocusClickIgnoreMotionOff
15558 * fvwm/focus.c (focus_grab_buttons):
15559 fixed button mask for > 5 buttons
15561 2002-01-19 olicha <olivier.chapuis@free.fr>
15563 * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
15564 Save and restore the icon_pixmap_w and add comments
15566 2002-01-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15568 * fvwm/events.c (HandleEnterNotify):
15569 fixed EnterNotify events for icons
15571 2002-01-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15574 * fvwm/stack.c (overlap_box):
15576 * fvwm/icons.c (clear_icon):
15577 * fvwm/add_window.c (destroy_icon):
15578 * fvwm/fvwm.h (FvwmWindow):
15579 * fvwm/geometry.c (get_window_borders):
15580 (get_client_geometry):
15581 * libs/fvwmrect.h (struct):
15582 * fvwm/functions.c (expand_extended_var):
15583 implemented new extended variables cw.x, cw.y, cw.width, cw.height that
15584 return the geometry of the client window
15585 implemented new extended variables it.x, it.y, it.width, it.height that
15586 return the geometry of the icon title
15587 implemented new extended variables ip.x, ip.y, ip.width, ip.height that
15588 return the geometry of the icon picture
15589 implemented new extended variables i.x, i.y, i.width, i.height that
15590 return the geometry of the whole icon
15591 fixed $[w.height] when the window is shaded
15592 cleaned up icon geometry code
15594 2002-01-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15597 * fvwm/functions.c:
15598 * fvwm/functions.h:
15599 * fvwm/move_resize.c (unmaximize_fvwm_window):
15600 (maximize_fvwm_window):
15602 (CMD_ResizeMaximize):
15606 (resize_move_window):
15607 (CMD_ResizeMoveMaximize):
15608 New command ResizeMaximize. Works like Resize, but modifies the
15609 maximized size of the window, not the normal size.
15610 New command ResizeMoveMaximize that works similarly.
15611 (resize_move_window):
15612 fixed ResizeMove command
15614 * fvwm/functions.c (expand):
15615 fixed core dump when using something like $[$v] in a command
15617 2002-01-17 olicha <olivier.chapuis@free.fr>
15619 * libs/defaults.h (ROOT_BG_CHANGE_STRING):
15620 * fvwm/events.c (HandlePropertyNotify):
15621 * fvwm/fvwm.c (InternUsefulAtoms):
15623 Send the ROOT_BG_CHANGE_STRING to modules when fvwm2 detects
15624 that the root background has changed. This uses the _XSETROOT_ID
15625 and XROOTPMAP_ID properties
15627 * fvwm/ewmh.c (atom_get):
15630 2002-01-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15632 * fvwm/update.c (flush_window_updates):
15633 fixed unnecessary window style updates
15635 * fvwm/style.c (parse_and_set_window_style):
15636 * fvwm/add_window.c (RestoreWithdrawnLocation):
15638 (setup_frame_attributes):
15639 * fvwm/fvwm.h (FvwmWindow):
15640 Fvwm does no longer disable backing store on all of its windows. This
15641 cause too many problems with some applications, e.g. rdist. Introduced
15642 the new style BackingStoreWindowDefault that tells fvwm not to modify
15643 the backing store attribute on the client window - which now is the
15646 2002-01-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15649 * fvwm/functions.c (func_config):
15650 * libs/Module.c (SetMessageMask2):
15655 fixed building with libstroke-0.5.1 on Solaris8
15657 * fvwm/stack.c (new_layer):
15658 * fvwm/borders.c (DrawButton):
15661 * fvwm/builtins.c (SetLayerButtonFlag):
15663 * fvwm/screen.h (struct):
15664 Applied the layer button patch by Richard Curnow with a few
15667 * fvwm/icons.c (GetIconBitmap):
15669 Ignore client icons that have the wrong depth
15671 * fvwm/events.c (HandleEnterNotify):
15672 Tried to fix focusing problem w/ unclutter.
15674 2002-01-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15676 * fvwm/functions.c (CheckActionType):
15679 * fvwm/menus.c (paint_item):
15680 * fvwm/misc.c (is_function_allowed):
15681 * fvwm/move_resize.c (is_move_allowed):
15682 (is_resize_allowed):
15683 (is_maximize_allowed):
15684 * fvwm/decorations.c (check_if_function_allowed):
15685 combined all these functions into a new one
15686 use this function everywhere
15687 use the Fixed... styles to decide if a menu item is greyed or not
15689 2002-01-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15691 * fvwm/events.c (HandleExpose):
15692 eat up expose events even if the server claims that the expose count is
15693 zero; fixes a problem with many redraws of windows that are uncovered
15694 by shading a window above them
15696 2002-01-10 olicha <olivier.chapuis@free.fr>
15698 * fvwm/focus.c (DoSetFocus):
15699 * fvwm/move_resize.c (CMD_Maximize):
15704 * fvwm/icons.c (DeIconify):
15707 * fvwm/gnome.c (GNOME_HandlePropRequest):
15708 * fvwm/ewmh_names.c (EWMH_WMName):
15709 * fvwm/events.c (HandleFocusIn):
15710 (HandlePropertyNotify):
15712 (HandleButtonPress):
15713 (HandleLeaveNotify):
15715 * fvwm/builtins.c (CMD_UpdateDecor):
15717 * fvwm/borders.c (draw_clipped_decorations):
15719 (RedrawDecorations):
15721 Added a new argument to DrawDecoration similar to draw_window_parts,
15722 which indicate which part of the decor should be cleared. At present
15723 time only CLEAR_FRAME is taken in account and this is used in
15724 ShadeWindow to draw the decoration without flickering. This argument
15725 may be used in the future to reduce opaque resizing flickering
15727 * fvwm/builtins.c (CMD_WindowShade):
15728 Draw the decoration during unshading a window
15730 * fvwm/menus.c (ParentalMenuRePaint):
15731 Fixed transparent animated menu again
15736 2002-01-09 olicha <olivier.chapuis@free.fr>
15738 * fvwm/style.c (CMD_Style):
15739 free all the elements of the ptmpstyle before freeing it
15741 * fvwm/menus.c (ParentalMenuRePaint):
15742 Fixed transparent animated menu with HilightBackOff
15744 2002-01-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15746 * fvwm/style.c (merge_styles):
15747 fixed core dump w/ multiple use of the UseStyle style and HilightBack
15748 in the copied style
15750 2002-01-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15752 * fvwm/modconf.c (send_ignore_modifiers):
15753 (send_move_threshold):
15756 (send_color_limit):
15758 (send_desktop_geometry):
15759 (CMD_Send_ConfigInfo):
15760 moved code into new functions
15762 * libs/defaults.h (DEFAULT_MODS_UNUSED):
15763 moved to defaults.h
15765 * fvwm/bindings.c (CMD_IgnoreModifiers):
15766 * fvwm/module_interface.c (broadcast_xinerama_state):
15767 * fvwm/modconf.c (send_ignore_modifiers):
15768 broadcast IgnoreModifiers to modules
15770 * fvwm/bindings.c (CMD_IgnoreModifiers):
15771 fixed IgnoreModifiers command without arguments
15773 corrected documentation of IgnoreModifiers command
15775 2002-01-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15777 * fvwm/add_window.c:
15782 * fvwm/move_resize.c:
15785 * fvwm/module_interface.c:
15787 * fvwm/placement.c:
15790 * fvwm/fvwm.h (FvwmWindow):
15791 remnamed icon_w member to icon_title_w
15793 2002-01-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15795 * fvwm/icons.c (RedoIconName):
15796 fixed sizing of icon title for icons without a pixmap
15798 (CreateIconWindow):
15800 (CreateIconWindow):
15801 rewrote icon title layout and moved the constants to defaults.h
15803 * fvwm/menus.c (menuShortcuts):
15804 (handle_emacs_bindings):
15805 implemented emacs style bindings in menus [ctrl-a/b/e/f/g/left/right]
15807 2002-01-04 Dan Espen <dane@mk.telcordia.com>
15809 * fvwm/fvwm2.1: Language checks done.
15810 .IR command not in column 1 fixed.
15812 2002-01-04 olicha <olivier.chapuis@free.fr>
15814 * fvwm/move_resize.c (AnimatedMoveAnyWindow):
15815 (AnimatedMoveOfWindow):
15816 (AnimatedMoveFvwmWindow):
15817 (move_window_doit):
15818 * fvwm/menus.c (ParentalMenuRePaint):
15819 (animated_move_back):
15821 Fixed transparent animated menu
15823 2002-01-03 olicha <olivier.chapuis@free.fr>
15825 * fvwm/move_resize.c (is_resize_allowed):
15827 Do not check if moveing/resizeing is MWM allowed for a no user request
15828 This fix for example FvwmWinList with MwmFunctions & NoOverride
15830 * fvwm/move_resize.c (AnimatedMoveAnyWindow):
15831 * fvwm/move_resize.c (is_move_allowed):
15832 Allowed moving if tmp_win is null and check if move is allowed and
15833 not resize in AnimatedMoveAnyWindow. This fix animated menu
15835 * fvwm/ewmh.c (ewmh_AllowsMaximize):
15837 (ewmh_AllowsResize):
15838 Check as a user request
15841 * fvwm/move_resize.c (CMD_Maximize):
15844 New global flags "layer" and "ewmiwa". layer causes the grow* methods
15845 to ignore the windows with a layer less or equal to the layer of
15846 the maximized window. ewmhiwa causes to ignore the ewmh working area.
15847 Reorder a bit the Maximize documentation
15850 * fvwm/functions.c (expand_extended_var):
15851 New variables $[desk.name<n>] to get the desktop names
15853 2002-01-01 Dan Espen <dane@mk.telcordia.com>
15855 * fvwm/read.c (CMD_Read): Correct message on missing file when using
15856 Read with full path.
15858 2002-01-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15861 * fvwm/misc.c (GrabEm):
15862 reduced number of grab attempts from 500 to 50 @ 10 ms = 0.5 seconds */
15864 * fvwm/events.c (HandleUnmapNotify):
15865 (HandleMapRequestKeepRaised):
15866 (check_map_request):
15867 fixed unmanaged window when window was mapped/unmapped/mapped too fast
15869 * fvwm/add_window.c (FetchWmProtocols):
15871 * fvwm/fvwm.h (FvwmWindow):
15872 * fvwm/events.c (HandleEnterNotify):
15873 (HandlePropertyNotify):
15874 * fvwm/focus.c (refresh_focus):
15876 fixed focus problems with netscape and ddd
15878 2001-12-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15880 * libs/Target.c (fvwmlib_keyboard_shortcuts):
15881 * libs/Pointer.c (GetLocationFromEventOrQuery):
15882 * fvwm/virtual.c (HandlePaging):
15883 * fvwm/move_resize.c (GetOnePositionArgument):
15885 (AnimatedMoveAnyWindow):
15888 * fvwm/module_interface.c (ExecuteModuleCommand):
15889 * fvwm/menus.c (do_menu):
15892 (get_menu_options):
15893 * fvwm/functions.c (execute_complex_function):
15894 * fvwm/events.c (HandleClientMessage):
15895 (WaitForButtonsUp):
15896 * fvwm/conditional.c (CMD_Direction):
15897 * fvwm/builtins.c (CMD_CursorMove):
15900 handle return code of XQueryPointer everywhere; necessary for dual head
15902 * fvwm/misc.c (GrabEm):
15903 Pointer was warped to other screen with a dual head setup
15905 2001-12-31 olicha <olivier.chapuis@free.fr>
15907 * fvwm/ewmh_events.c (ewmh_WMStateModal):
15908 Removed some code which try to raise ewmh modal window over
15909 its transientfor window; this seems not possible without a new style
15910 or a bad hack in stack.c
15912 2001-12-30 Dan Espen <dane@mk.telcordia.com>
15914 * libs/GetFont.c (GetFontSetOrFixed): Cleanup the message about the
15915 fallback to fixed font so it shows the right font for I18N.
15917 2001-12-30 olicha <olivier.chapuis@free.fr>
15919 * fvwm/window_flags.h:
15920 * fvwm/session.c (MatchWinToSM):
15921 (LoadWindowStates):
15922 (SaveWindowStates):
15923 (get_version_string):
15924 * fvwm/move_resize.c (CMD_Maximize):
15926 * fvwm/icons.c (CMD_Iconify):
15927 * fvwm/ewmh.c (EWMH_SetWMState):
15930 (EWMH_SetAllowedActions):
15933 * fvwm/ewmh_intern.h:
15934 * fvwm/ewmh_events.c (ewmh_WMState*):
15935 * fvwm/builtins.c (CMD_WindowShade):
15936 * fvwm/stack.c (new_layer):
15937 * fvwm/update.c (apply_window_updates):
15938 * fvwm/update.h (struct):
15939 * fvwm/add_window.c (setup_window_structure):
15940 (setup_window_name):
15942 * fvwm/style.c (check_window_style_change):
15943 The skip list and modal ewmh window states are now updated after
15944 an use/ignore ewmh state style changes. The other ewmh states are
15945 starting state only. All the initial ewmh states are keep in memory
15948 * fvwm/ewmh.c (EWMH_Handle*):
15950 Set the ewmh_window_type to an int (and not the corresponding atom)
15951 accordingly to the window type
15953 * fvwm/ewmh_events.c (ewmh_WMStateModal):
15954 ewmh modal transient windows have RaiseTransient and GrabFocusTransient
15957 * fvwm/ewmh.c (EWMH_GetStyle):
15958 * fvwm/ewmh_events.c (ewmh_WMDesktop):
15959 Respect the _NET_WM_DESKTOP hints at window mapping as a StartsOnDesk
15962 * libs/vpacket.h (ConfigWinPacket):
15963 * fvwm/module_interface.c (CONFIGARGSNEW):
15966 Added ewmh_hint_layer, ewmh_hint_desktop and ewmh_window_type to the
15967 cfgpacket for FvwmIdent
15969 2001-12-20 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15971 * fvwm/move_resize.c (resize_geometry_window):
15972 fixed wrong size calculation of geometry window
15974 2001-12-19 olicha <olivier.chapuis@free.fr>
15976 * fvwm/ewmh_names.c (convert_charsets):
15977 More precise error messages
15980 A few formatting fixes
15982 2001-12-18 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
15984 * fvwm/gnome.c (GNOME_SetHints):
15985 fixed window getting frozen into position upon a recapture or restart
15987 2001-12-17 Dan Espen <dane@mk.telcordia.com>
15989 * fvwm/fvwm2.1: Fixup wording in EWMHIconicStateWorkaround.
15991 2001-12-17 olicha <olivier.chapuis@free.fr>
15994 Tried to clarify the EWMHIconicStateWorkaround BugOpts
15996 * fvwm/ewmh.c (delete_kst_item):
15997 (set_kde_sys_tray):
15998 (EWMH_IsKdeSysTrayWindow):
15999 (EWMH_ManageKdeSysTray):
16000 * fvwm/events.c (HandleReparentNotify):
16001 Fixed reparenting management of kde system tray windows and
16002 added some off debugging code
16004 * fvwm/virtual.c (CMD_DesktopName):
16005 Removed some debugging code
16007 2001-12-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16009 * fvwm/fvwm.h (struct):
16010 * fvwm/window_flags.h (IS_FIXED_PPOS):
16011 * fvwm/style.h (SCSET_IS_FIXED_PPOS):
16012 * fvwm/style.c (parse_and_set_window_style):
16013 (check_window_style_change):
16014 implemented new styles FixedPPosition, FixedUSPosition, FixedSize,
16015 FixedUSSize, FixedPSize and Variable PPosition, ...
16017 * fvwm/events.c (HandleConfigureRequest):
16018 * fvwm/ewmh.c (ewmh_AllowsResize):
16019 (is_resize_allowed):
16022 * fvwm/gnome.c (GNOME_SetHints):
16023 (AnimatedMoveAnyWindow):
16026 * fvwm/move_resize.c (is_move_allowed):
16027 (is_resize_allowed):
16028 (is_maximize_allowed):
16029 new functions to clean up some code
16031 2001-12-15 Dan Espen <dane@mk.telcordia.com>
16033 * fvwm/fvwm2.1: Doc fixups.
16035 2001-12-15 olicha <olivier.chapuis@free.fr>
16037 * fvwm/builtins (CMD_BugOpts):
16039 * fvwm/ewmh_conf.c (EWMH_BugOpts):
16040 * fvwm/ewmh_events.c (ewmh_StateHidden):
16041 * fvwm/fvwm.c (InitVariables):
16043 * fvwm/icons.c (CMD_Iconify):
16045 * fvwm/virtual.c (unmap_window):
16047 Implemented the new _NET_WM_STATE_HIDDEN ewmh state that allows
16048 to fix the IconicState problems in vitrual.c. New BugOpts
16049 EWMHIconicStateWorkaround for supporting current KDE versions
16051 * fvwm/events.c (HandlePropertyNotify):
16052 * fvwm/ewmh.c (ewmh_AllowsYes):
16054 (ewmh_AllowsClose):
16055 (ewmh_AllowsMaximize):
16057 (ewmh_AllowsResize):
16058 (EWMH_SetAllowedActions):
16060 * fvwm/style.c (check_window_style_change):
16061 * fvwm/update.c (apply_window_updates):
16063 Implemented _NET_WM_ALLOWED_ACTIONS from version 1.2 of the wm-spec
16065 2001-12-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16067 * fvwm/borders.c (RedrawTitle):
16068 * libs/defaults.h (WINDOW_TITLE_OFFSET):
16069 fixed 'stick' lines with long titles
16071 2001-12-11 olicha <olivier.chapuis@free.fr>
16075 * fvwm/ewmh.c (ewmh_SetWorkArea):
16077 (ewmh_ComputeAndSetWorkArea):
16078 (ewmh_HandleDynamicWorkArea):
16079 (EWMH_GetWorkAreaIntersection):
16080 (EWMH_GetStrutIntersection):
16081 (get_intersection):
16082 * fvwm/ewmh_name.c (EWMH_SetDeskNames):
16085 * fvwm/fvwm.c (InitVariables):
16087 * fvwm/modconf.c (send_desktop_names):
16088 (CMD_Send_ConfigInfo):
16089 * fvwm/placement.c (get_next_x):
16092 * fvwm/virtual.c (CMD_DesktopName):
16095 New command "DesktopName desk name" to define desktops names for
16096 the FvwmPager, the WindowList and ewmh compliant pagers.
16097 Desktops information (desk, desk name, working areas) is stored in a
16098 new list sub structure of Scr, DesktopsInfo. The head of the list
16099 contains generic information for desks that are not in the list.
16101 * fvwm/windowlist.c (get_desk_title):
16105 New window list options NoDeskNum, NoCurrentDeskTitle,
16106 TitleForAllDesks, NoNumInDeskTitle. Document these options and also
16107 the NoGeometry and NoGeometryInfo options.
16110 * fvwm/ewmh_names.c:
16111 * fvwm/ewmh_icons.c:
16112 Added some static declarations
16114 * fvwm/ewmh_names.c (EWMH_SetVisibleName):
16115 It seems that UTF8 names should not be terminated by a 0
16117 * fvwm/ewmh.c (EWMH_SetClientListStacking):
16118 Set the stacking list in the good orders
16120 2001-12-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16123 * fvwm/functions.c:
16127 removed all MULTISTYLE ifdefs
16129 * fvwm/borders.c (RedrawTitle):
16130 fixed title drawing into relief
16132 2001-12-08 olicha <olivier.chapuis@free.fr>
16139 * fvwm/window_flags.h:
16141 s/extended_window_name/indexed_window_name/i
16142 s/extended_icon_name/indexed_icon_name/i
16143 s/do_update_window_name/do_update_visible_window_name/
16144 s/do_update_icon_name/do_update_visible_icon_name/
16146 * fvwm/style.c (CMD_Style):
16148 (parse_and_set_window_style):
16149 Split CMD_Style into CMD_Style and parse_and_set_window_style
16151 2001-12-06 olicha <olivier.chapuis@free.fr>
16153 * fvwm/add_window.c (setup_window_name_count):
16154 (setup_icon_name_count):
16155 Better determination of the window and icon names index
16157 * fvwm/add_window.c (AddWindow):
16159 * fvwm/events.c (HandlePropertyNotify):
16160 * fvwm/ewmh_names.c (EWMH_WMName):
16162 * fvwm/module_interface.c (BroadcastWindowIconNames):
16163 * fvwm/module_interface.h:
16164 (CMD_Send_WindowList):
16166 (CMD_set_sync_mask):
16167 (CMD_set_nograb_mask):
16168 * fvwm/update.c (apply_window_updates):
16170 New module messages type M_VISIBLE_NAME and M_VISIBLE_ICON_NAME
16171 which are send to modules with BroadcastWindowIconNames.
16172 The set mask cmds use unsigned long mask and not int mask!
16174 2001-12-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16178 EWMH without iconv compile fix by Hippo
16180 2001-12-05 olicha <olivier.chapuis@free.fr>
16182 * fvwm/add_window.c:
16185 * fvwm/ewmh_conf.c (EWMH_CMD_Styles):
16186 * fvwm/ewmh_events.c:
16189 * fvwm/move_resize.c (CMD_Maximize):
16190 * fvwm/placement.c (test_fit):
16192 * fvwm/session.c (SaveWindowStates):
16193 * fvwm/style.c (merge_styles):
16195 (check_window_style_change):
16196 * fvwm/update.c (apply_window_updates):
16198 * fvwm/window_flags.h:
16200 EWMHMaximizeIgnoreWorkingArea / EWMHMaximizeUseWorkingArea /
16201 EWMHMaximizeUseDynamicWorkingArea,
16202 EWMHPlacementIgnoreWorkingArea / EWMHPlacementUseWorkingArea
16203 EWMHPlacementUseDynamicWorkingArea,
16204 EWMHUseStackingOrderHints / EWMHIgnoreStackingOrderHints,
16205 EWMHIgnoreStateHints / EWMHUseStateHints,
16206 EWMHIgnoreStrutHints / EWMHUseStrutHints
16208 * fvwm/ConfigFvwmDefaults:
16209 Use EWMHPlacementUseDynamicWorkingArea,
16210 EWMHMaximizeUseDynamicWorkingArea as default placement styles
16213 * fvwm/add_window.c (setup_placement_penalty):
16214 * fvwm/add_window.h:
16215 (setup_placement_penalty):
16218 * fvwm/placement.c (get_next_x):
16219 * fvwm/placement.h:
16222 * fvwm/style.c (CMD_Style):
16224 (check_window_style_change):
16225 * fvwm/update.c (apply_window_updates):
16227 * fvwm/window_flags.h:
16229 New styles PlacementOverlapPenalties and
16230 PlacementOverlapPercentPenalties
16233 * fvwm/add_window.c (setup_window_name_count):
16234 * fvwm/add_window.h:
16235 (setup_icon_name_count):
16236 (setup_visible_name):
16237 (setup_window_name):
16238 (free_window_names):
16240 * fvwm/borders.c (DrawMultiPixmapTitlebar):
16242 * fvwm/events.c (HandlePropertyNotify):
16243 * fvwm/ewmh_names.c (EWMH_*):
16245 * fvwm/icons.c (CreateIconWindow):
16250 * fvwm/session.c (MatchWinToSM):
16251 * fvwm/style.c (CMD_Style):
16253 (check_window_style_change):
16254 * fvwm/update.c (apply_window_updates):
16256 * fvwm/window_flags.h:
16257 New styles ExtendedWindowName / SimpleWindowName and
16258 ExtendedIconName / SimpleIconName. TODO: the modules implementation
16260 * fvwm/builtins.c (ReadMultiPixmapDecor):
16266 * session.c (get_version_string):
16269 * fvwm/stack.c (new_layer):
16271 Fixed ewmh wm state
16273 * fvwm/ewmh_icons.c (ewmh_SetWmIconFromPixmap):
16274 Fixed creation of the ewmh icon in the case of the window is iconified
16276 2001-11-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16278 * fvwm/placement.c (PlaceWindow):
16279 fixed manual placement on Xinerama screens other than the one with the
16280 top left corner of the total screen
16282 2001-11-27 olicha <olivier.chapuis@free.fr>
16288 Check for the second argument of iconv
16291 Added -Wall to CFLAGS if cc is gcc
16293 2001-11-26 Mikhael Goikhman <migo@homemail.com>
16297 s/extanded/extended/
16299 2001-11-26 olicha <olivier.chapuis@free.fr>
16301 * fvwm/Makefile.am:
16302 Fixed (?) iconv_LIBS
16304 2001-11-26 olicha <olivier.chapuis@free.fr>
16306 * fvwm/functions.c (expand):
16307 Fixed n, c, r expansion
16309 2001-11-25 Dan Espen <dane@mk.telcordia.com>
16311 * fvwm/fvwm2.1: Clean up ewmh stuff.
16313 2001-11-24 olicha <olivier.chapuis@free.fr>
16315 * fvwm/ewmh_internal.h:
16317 Removed a non standard macro
16319 2001-11-24 olicha <olivier.chapuis@free.fr>
16322 Documented the previous ewmh style in a new Style subsection
16324 * fvwm/functions.c (expand):
16325 Clean up, removed 5 tmp_win and IS_EWMH_DESKTOP
16327 2001-11-24 olicha <olivier.chapuis@free.fr>
16329 * fvwm/add_window (setup_icon):
16330 (setup_window_structure):
16331 * fvwm/events.c (HandlePropertyNotify):
16333 * fvwm/ewmh_conf.c (EWMH_CMD_Style):
16334 * fvwm/ewmh_icons.c (ewmh_WMIcon):
16335 (EWMH_DoUpdateWmIcon):
16336 (ewmh_SetWmIconFromPixmap):
16337 (EWMH_DeleteWmIcon):
16338 (EWMH_SetIconFromWMIcon):
16339 * fvwm/ewmh_intern.h:
16341 * fvwm/icons.c (GetIcon):
16342 * fvwm/session.c (get_version_string):
16343 * fvwm/style.c (CMD_Style):
16345 (check_window_style_change)
16346 * fvwm/update.c (apply_window_updates):
16348 * fvwm/window_flags.h:
16349 New style EWMHMiniIconOverride / EWMHNoMiniIconOverride,
16350 EWMHDonateMiniIcon / EWMHDontDonateMiniIcon,
16351 EWMHDonateIcon / EWMHDontDonateIcon,
16352 Some ewmh icon code simplification.
16353 Ewmh icons priority: just after icon window.
16355 * fvwm/ewmh.c (EWMH_ExitStuff):
16357 * fvwm/session.c (SaveWindowStates):
16358 (LoadWindowStates):
16360 * fvwm/fvwm.c (Done):
16361 Delete the ewmh icons we set ourself. Some ewmh session states do not
16362 need to be saved/restored anymore
16364 2001-11-23 olicha <olivier.chapuis@free.fr>
16366 * fvwm/ewmh_names.c (convert_charsets):
16367 Fixed infinite loop
16369 2001-11-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16371 * fvwm/ewmh_names.c (convert_charsets):
16372 -Wall fix: 2nd parameter of iconv is char **, not const char ** as the
16373 man page states on Linux
16374 replaced goto with a loop
16376 2001-11-22 olicha <olivier.chapuis@free.fr>
16378 * fvwm/ewmh_icons.c (EWMH_SetWmIconFromPixmap):
16381 * fvwm/ewmh_events.c:
16382 Fixed some styles update
16384 * fvwm/ewmh_conf.c:
16385 * fvwm/function.c (func_config):
16389 * fvwm/ewmh_events.c:
16390 * fvwm/ewmh_intern.h:
16391 * fvwm/Makefile.am:
16393 New file for ewmh styles and commands. New commands EWMHBaseStrut and
16394 EWMHNumberOfDesktops. More documentation in ewmh man page section.
16396 * fvwm/add_window.c:
16399 * fvwm/functions.c:
16400 * fvwm/ewmh.c (EWMH_Init):
16402 * fvwm/fvwm.c (InitVariables):
16409 * fvwm/window_flags.c:
16416 Remove all the HAVE_EWMH ifdef but the two in virtual.c (which
16417 are maybe problematic) and those in the ewmh* files to allow
16418 to disbale the ewmh code: with --disable-ewmh all the ewmh code
16419 should be dummy. --enable-ewmh is now the default.
16421 2001-11-20 olicha <olivier.chapuis@free.fr>
16423 * fvwm/icons.c (GetIcon):
16424 * fvwm/add_window.c (setup_icon):
16425 Fixed icons order choice and other minor bugs
16427 * fvwm/ewmh_icons.c (EWMH_SetWmIconFromPixmap):
16428 Fixed a core dump if there is no MiniIcon
16430 2001-11-18 olicha <olivier.chapuis@free.fr>
16432 * fvwm/ewmh.c (add_kst_item):
16434 (ewmh_AddToKdeSysTray):
16435 (EWMH_IsKdeSysTrayWindow):
16436 (EWMH_ManageKdeSysTray):
16438 fvwm/ewmh_intern.h:
16439 * fvwm/events.c (HandleDestroyNotify):
16440 (HandleMapRequest):
16441 (HandleUnmapNotify):
16442 Fixed the KDE system tray implementation
16444 2001-11-16 olicha <olivier.chapuis@free.fr>
16448 fixed EWMH_WindowDestroyed and EWMH_DestroyWindow macros
16450 2001-11-15 olicha <olivier.chapuis@free.fr>
16452 * fvwm/ewmh.c (EWMH_DestroyWindow):
16454 (EWMH_WindowDestroyed):
16455 * fvwm/events.c (HandleReparentNotify):
16456 (HandleDestroyNotify):
16457 (HandleUnmapNotify):
16458 * fvwm/add_window.c (destroy_window):
16459 Fixed the ewmh windows lists
16461 2001-11-15 olicha <olivier.chapuis@free.fr>
16463 * fvwm/Makefile.am:
16466 * fvwm/ewmh_intern.h:
16467 * fvwm/ewmh_events.c:
16468 * fvwm/ewmh_icons.c:
16469 * fvwm/ewmh_names.c:
16472 New files to achieve the extended WM hints support, off by
16473 default. This code is ifdefed a la gnome.c.
16474 This is work in progess (need to do so that every things are
16478 * acconfig.h (HAVE_EWMH, HAVE_ICONV, USE_LIBICONV, HAVE_CODSET):
16479 New configure option --enable-ewmh. Added tests for iconv and
16480 nl_langinfo for UTF8 conversions.
16482 * fvwm/add_window.c (AddWindow):
16483 (CaptureOneWindow):
16485 (setup_window_name):
16487 EWMH_SetWMState, EWMH_SetWMDesktop, EWMH_SetFrameStrut,
16488 EWMH_WindowDestroyed, EWMH_WMName, EWMH_SetVisibleName,
16489 SET_HAS_EWMH_ICON, EWMH_WMIconName
16491 * fvwm/add_window.c (setup_window_structure):
16492 * fvwm/fvwm.h (FvwmWindow):
16494 * fvwm/window_flags.h:
16495 * fvwm/session.c (get_version_string):
16496 (SaveWindowStates):
16497 (LoadWindowStates):
16498 Added some entries in FvwmWindow and some flags (more will be
16499 added). Some of these states need to be saved at restart and
16500 at recapture. This code is ifdefed, may be it should not: I was
16501 forced to ifdef the version string in get_version_string.
16503 * libs/Bindings.c (win_contexts):
16505 * fvwm/events.c (GetContext):
16506 * fvwm/bindings.c (ParseBinding):
16507 (activate_binding):
16508 * fvwm/functions.c (expand_extended_var):
16510 (execute_function):
16512 * fvwm/screen.h (Scr):
16513 new context C_EWMH_DESKTOP named "D" for an ewmh desktop
16514 (kdesktop or Nautilus desktop). This context is something between
16515 C_ROOT and C_WINDOW. Added Scr.EwmhDesktop.
16517 * fvwm/bindings.c (activate_binding):
16518 Fixed immediate application of mouse/stroke bindings
16521 * fvwm/borders.c (RedrawDecorations):
16522 * fvwm/update.c (apply_window_updates):
16523 New function RedrawDecorations taken from apply_window_updates
16524 and called in ewmh_icons.c and update.c
16526 * fvwm/bultins.c (CMD_WindowShade):
16529 * fvwm/events.c (HandleFocusIn):
16530 (HandlePropertyNotify):
16531 (HandleClientMessage):
16532 (HandleMapRequestKeepRaised):
16533 (HandleUnmapNotify):
16534 EWMH_SetActiveWindow. Test for utf8 window and icon name, set the ewmh
16535 icon state. EWMH_ProcessPropertyNotify, EWMH_ProcessClientMessage,
16538 * fvwm/icons.c (GetIcon):
16540 (CreateIconWindow):
16541 (ChangeIconPixmap):
16542 * fvwm/events.c (HandlePropertyNotify):
16543 New function GetIcon taken from CreateIconWindow which choose
16544 the icon, there is a new case for EWMH icons. New function
16545 ChangeIconPixmap taken from events.c.
16546 The two new functions are called from ewmh_icon.c (and icons.c).
16548 * fvwm/move_resize.c (handle_stick):
16551 EWMH_SetWMState, EWMH_GetWorkAreaIntersection, EWMH_SetWMDesktop
16554 * libs/Picture.c (LoadPictureFromPixmap):
16555 (CachePictureFromPixmap):
16556 New functions for loading a picture from a pixmap. Nothing is cached
16557 but this simplify the MiniIcon code.
16559 * fvwm/placement.c (PlaceWindow):
16560 EWMH_GetWorkAreaIntersection
16562 * fvwm/screen.h (Scr):
16563 Added the working area, the dynamic working area and the ewmh
16566 * fvwm/stack.c (restack_windows):
16568 EWMH_SetClientListStacking, EWMH_SetWMState
16570 * fvwm/style.c (check_window_style_change):
16571 * fvwm/update.c (apply_window_updates):
16573 Added do_update_list_skip to the update_win flags for EWMH_SetWMState.
16574 This code is ifdefed.
16576 * fvwm/style.c (lookup_style):
16579 * fvwm/virctual.c (goto_desk):
16580 (CMD_GotoDeskAndPage):
16581 (do_move_window_to_desk):
16582 EWMH_SetCurrentDesk, EWMH_SetWMDesktop
16584 2001-11-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16586 * fvwm/update.c (apply_window_updates):
16587 * fvwm/gnome.c (GNOME_GetStyle):
16588 * fvwm/style.c (lookup_style):
16589 (check_window_style_change):
16590 * fvwm/add_window.c (setup_style_and_decor):
16591 fixed GnomeIgnoreHints style for some of the gnome hints
16593 * fvwm/fvwm.c (StartupStuff):
16594 Tried to fix font size problem
16596 * fvwm/placement.c (PlaceWindow):
16597 suppress an X error
16599 * fvwm/move_resize.c (moveLoop):
16600 * libs/Target.c (fvwmlib_keyboard_shortcuts):
16601 * fvwm/misc.c (Keyboard_shortcuts):
16602 modified keyboard shortcut functions so that it is possible to move
16603 windows with the keyboard even if the border is hit. does not work
16604 very nicely with paging
16606 * libs/Target.c (fvwmlib_keyboard_shortcuts):
16607 performance enhancement
16609 * fvwm/events.c (HandleButtonPress):
16610 fixed (?) some problem with passing the raise click in ctf to the app
16612 * fvwm/add_window.c (Reborder):
16613 * fvwm/virtual.c (MoveViewport):
16616 * fvwm/session.c (SaveWindowStates):
16617 * fvwm/fvwmdebug.c (DB_WI_WINDOWS):
16618 don't access stack_next and stack_prev directly but use the access
16619 functions from stack.h
16621 * fvwm/stack.c (remove_window_from_stack_ring):
16622 (add_window_to_stack_ring_after):
16625 * fvwm/add_window.c (adjust_fvwm_internal_windows):
16627 when a window becomes scheduled for destruction, remove all traces of it
16628 from the fvwm internal variable so its not accessed accidentally when
16629 its fields are no longer valid
16631 2001-11-05 Mikhael Goikhman <migo@homemail.com>
16634 fixed compilation of I18N_MB
16636 2001-10-30 Mikhael Goikhman <migo@homemail.com>
16646 exclude the TitleStyle MultiPixmap feature (only) before forking
16648 and restore it after that
16652 change version string to 2.5.0
16655 added a missing entry for the stable release 2.4.0 (03-Jul-2001);
16656 added a link to the stable version 2.4.4 (not released yet)
16658 2001-10-30 Mikhael Goikhman <migo@homemail.com>
16662 change version string to 2.4.4 before forking
16664 * make_fvwmdist.sh:
16665 strip end of line from date (adjust for a new length)
16667 2001-10-29 olicha <olivier.chapuis@free.fr>
16669 * fvwm/screen.h (DecorFaceStyle):
16670 Fixed the "lenght" of face_type if FANCY_TITLEBARS is defined,
16671 so that Solid colors work again
16673 2001-10-28 olicha <olivier.chapuis@free.fr>
16675 * fvwm/module_interface.c (skipModuleAliasToken):
16676 Allows '/' as alias character
16681 2001-10-27 Mikhael Goikhman <migo@homemail.com>
16686 added --disable-multipixmap-titles for the Suzanne's patch,
16687 the default is enable
16690 some formatting fixes in TitleStyle entry
16692 2001-10-27 Suzanne Britton <tril@igs.net>
16694 * config.h.in: Added FANCY_TITLEBARS option, off by default
16697 Added info on TitleStyle MultiPixmap
16700 [All changes #ifdeffed FANCY_TITLEBARS]
16701 Added TITLE_PADDING define for fancy titlebar rendering
16702 Added tb_pixmap_enum
16703 Added MultiPixmap to DecorFaceType enum
16704 Added Picture **multi_pixmaps and short multi_stretch_flags
16705 to DecorFace structure
16708 [All changes #ifdeffed FANCY_TITLEBARS except the fix to RedrawButtons]
16709 (DrawButton): Handle UseTitleStyle where TitleStyle is MultiPixmap
16710 (RenderIntoWindow): [new]
16711 (DrawMultiPixmapTitlebar): [new]
16712 (RedrawButtons): Pass the left1right0 parameter properly to DrawButton,
16713 instead of always sending 1
16715 Call DrawFancyTitlebar for MultiPixmap style
16716 Skip DrawString calls for MultiPixmap style (title is drawn inside
16717 DrawMultiPixmapTitlebar)
16720 [All changes #ifdeffed FANCY_TITLEBARS]
16721 (FreeDecorFace): Free up multi_pixmaps array for a MultiPixmap decor
16722 (ReadDecorFace): Call ReadMultiPixmapDecor for a MultiPixmap TitleStyle
16723 (ReadMultiPixmapDecor): [new]
16725 2001-10-26 Dan Espen <dane@mk.telcordia.com>
16727 * NEWS: FvwmForm: Customize pointers, support ISO_Tab key,
16728 buttons can activate on press or release, special pointer during grab,
16729 arrow key command recall.
16731 2001-10-24 Mikhael Goikhman <migo@homemail.com>
16733 * fvwm/bindings.c (ParseBinding):
16736 binding commands now do not print error messages with Silent
16738 * fvwm/ConfigFvwmDefaults:
16740 don't use ReverseOrder in the default Alt-Tab like it was in 2.4.0;
16741 use Silent before Key Help
16743 * fvwm/add_window.c:
16744 changed the broken size hints message to notify the owner
16746 * docs/fvwm.lsm.in:
16749 2001-10-19 olicha <olivier.chapuis@free.fr>
16752 Some FvwmScript news
16754 2001-10-16 olicha <olivier.chapuis@free.fr>
16757 Some FvwmScript news
16759 2001-10-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16761 * fvwm/bindings.c (activate_binding):
16762 * libs/Bindings.c (GrabWindowKeyOrButton):
16763 activate mouse/stroke bindings immediately
16765 * fvwm/events.c (HandleButtonPress):
16766 it is possible to bind actions to the 'ClickToFocus' click
16768 2001-10-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16770 * fvwm/virtual.c (HandlePaging):
16771 allow paging during move/resize when pressing keys
16773 * libs/XResource.c (MergeCmdLineResources):
16774 possible core dump fix
16776 * fvwm/add_window.c (setup_window_placement):
16779 * libs/Bindings.c (AddBinding):
16780 another attempt at cleaning up bindings with "Shift"
16782 2001-10-13 olicha <olivier.chapuis@free.fr>
16787 2001-10-10 Mikhael Goikhman <migo@homemail.com>
16791 OpaqueMoveSize now accepts "unlimited" or negative argument.
16793 2001-10-09 Mikhael Goikhman <migo@homemail.com>
16798 2001-10-08 Dan Espen <dane@mk.telcordia.com>
16800 * libs/Makefile.am (libfvwm_a_SOURCES): Add new file.
16803 * libs/Cursor.c: Create new libs function fvwmCursorNameToIndex.
16805 * fvwm/cursor.c: Extract cursor validation routine to become a libs
16808 2001-10-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16810 * NEWS, configure.in:
16811 changed version to 2.5.0
16813 2001-10-08 olicha <olivier.chapuis@free.fr>
16815 * fvwm/borders.c (RedrawTitle):
16816 Fixed drawing of leftJustified stippled title and suppress warnings
16817 in RelieveRectangle w/ RightJustified stippled title
16819 2001-10-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16821 * fvwm/virtual.c (CMD_XineramaSlsSize):
16824 2001-10-03 olicha <olivier.chapuis@free.fr>
16826 * fvwm/style.c (CMD_Style):
16828 Added the possibility to add an Xinerama screen to the 4 numerics
16831 2001-10-03 olicha <olivier.chapuis@free.fr>
16833 * fvwm/icons.c (AutoPlaceIcon):
16834 Fixed a core dump with @c and fixed icon placement if the icon should
16835 not be on the current page
16837 2001-10-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16839 * fvwm/icons.c (AutoPlaceIcon):
16840 * libs/FScreen.c (FScreenParseScreenBit):
16841 added 'w' screen specifier for icon boxes
16843 * fvwm/icons.c (AutoPlaceIcon):
16844 fixed placement of icons in icon boxes on different screen
16846 * fvwm/menus.c (get_menu_options):
16847 reduced code duplication
16849 2001-10-02 olicha <olivier.chapuis@free.fr>
16851 * fvwm/menus.c (get_menu_options):
16852 fixed Xinerama placement of menu with empty but not null position hints
16854 2001-10-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16856 * fvwm/borders.c (RedrawTitle):
16857 * libs/defaults.h (WINDOW_TITLE_STICKY_GAP):
16858 suppress a warning in RelieveRectangle w/ small sticky windows
16860 2001-09-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16862 * fvwm/menus.c (get_menu_options):
16863 A 'rectangle' context rectangle for menus honours the '@screen' bit
16865 * fvwm/move_resize.c (DisplayPosition):
16866 coordinates of a window are show in relation to the screen, not the page
16868 * libs/FScreen.c (FScreenTranslateCoordinates):
16869 * fvwm/placement.c (PlaceWindow):
16870 * fvwm/add_window.c (setup_window_placement):
16871 Applied patches by Sidik Isani that adds the "fvwmscreen" X resource;
16872 rewrote the library functionality to better match the rest of the
16875 * fvwm/builtins.c (DestroyFvwmDecor):
16876 removed useless code
16878 * fvwm/icons.c (DrawIconWindow):
16879 fixed race condition w/ expanding/collapsing icon titles
16881 * fvwm/windowlist.c (CMD_WindowList):
16882 fixed Xinerama placement of window list when called without options
16884 2001-09-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16886 * libs/FScreen.c (FScreenSLSOnOff):
16887 fixed core dump when calling XineramaSls before XineramaSlsSize
16892 * libs/FShape.h (FHaveShapeExtension):
16893 set macro to 1 when compiling w/ shape extension
16895 2001-09-17 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16897 * libs/Bindings.c (AddBinding):
16898 * fvwm/bindings.c (ParseBinding):
16899 print a warning if a key with the given name does not exist
16900 if there is an upper and a lower case version of the same key name,
16901 always bind to the lower case version; this is problematic if the upper
16902 case version is tied to a key without a modifier and the lower case
16903 version is tied to the same key, but with a modifier (or both are tied
16904 to different keys). I hope this good enough.
16906 * libs/Bindings.c (FreeBindingList):
16907 (MatchBindingExactly):
16908 (CollectBindingList):
16909 fixed some problems overriding keys
16910 reduced duplication of logic
16912 2001-09-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16914 * NEWS, configure.in:
16915 changed version to 2.5.0
16917 2001-09-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16920 changed version to 2.4.2
16922 2001-09-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16925 (SetWindowBackground):
16926 (SetRectangleBackground):
16927 * fvwm/builtins.c (CMD_WindowShade):
16928 * fvwm/add_window.c:
16929 (setup_style_and_decor):
16931 (CreateIconWindow):
16936 (HandleConfigureRequest):
16937 (HandleShapeNotify):
16938 (InitEventHandlerJumpTable):
16939 * fvwm/borders.c (struct):
16942 * fvwm/decorations.c (SelectDecor):
16947 * fvwm/fvwm.h (FvwmWindow):
16950 moved shape support to library; its no longer necessary to
16951 '#ifdef SHAPE' any code
16953 * fvwm/borders.c (RedrawButtons):
16955 fixed top border hilight drawing of title buttons
16957 * libs/Graphics.c (do_relieve_rectangle):
16958 (RelieveRectangle):
16959 (RelieveRectangle2):
16960 allow alternate shading for title buttons
16962 2001-09-15 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
16965 Applied man page patch by Dmitry Yu. Bolkhovityanov:
16966 Add a formal description of how fvwm maintains module's configs
16967 Change manpages of individual modules to refer to fvwm2(1) for
16968 details about specifying configuration
16970 * fvwm/add_window.c (setup_window_placement):
16971 desk and page can now really be given as X resources a la
16974 * libs/XResource.c (GetResourceString):
16975 resource -> lower case, class -> upper case
16979 changed version to 2.5.0
16981 * Makefile.am (distcheck2):
16982 build distcheck before dist2; save a few seconds if the build fails
16985 * libs/ClientMsg.c:
16989 * libs/gethostname.c:
16992 * libs/safemalloc.c:
16993 * libs/strcasecmp.c:
16996 * libs/strncasecmp.c:
17005 changed version to 2.4.1 again
17007 2001-09-14 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17009 * libs/Bindings.c (FvwmStringToKeysym):
17010 try both cases of the first letter of a key name
17012 * fvwm/ConfigFvwmDefaults:
17013 * fvwm/windowlist.c (winCompareReverse):
17015 new WindowList option ReverseOrder; use the new option in the default
17016 Alt-Tab binding. This makes it possible to hit Alt-Tab repeatedly to
17017 cycle through the whole window list. The old behaviour only toggled
17018 between two windows. Also, a simple Alt-Tab can be used to switch to
17019 the next window instead of Alt-Tab-Tab.
17021 * libs/FScreen.c (FScreenInit):
17022 fixed a Xinerama crash
17025 print a verbose error message and exit if X11 headers and libraries
17028 2001-09-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17030 * fvwm/fvwm.c (main):
17033 new library for X shape encapsulation
17035 * fvwm/builtins.c (CMD_WindowShade):
17036 * fvwm/borders.c (SetupFrame):
17037 fixed shading of windows without title and border
17038 fixed shading of shaped windows; fixes bug #732
17040 * fvwm/builtins.c (CMD_SetEnv):
17041 calling SetEnv without a value is the same as UnsetEnv
17043 2001-09-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17045 * fvwm/events.c (HandleReparentNotify):
17046 fixed vanishing windows in rapid map/unmap cycles; bug #770
17048 * fvwm/add_window.c (hide_screen):
17049 fixed possible BadWindow error
17051 2001-09-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17053 * fvwm/virtual.c (MoveViewport):
17055 (CMD_GotoDeskAndPage):
17057 GotoDeskAndPage records its own history of last visited desk/page
17059 * libs/FScreen.c (FScreenInit):
17060 fixed a memory allocation bug pointed out by Giuseppe Della Ricca
17062 2001-09-05 olicha <olivier.chapuis@free.fr>
17064 * fvwm/session.c (MatchWinToSM):
17065 * fvwm/add_window.c (setup_window_structure):
17066 * fvwm/move_resize.c (moveLoop):
17067 Fixed PlacedByButton3 condition
17069 2001-09-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17072 * fvwm/functions.c (func_config):
17073 * fvwm/module_interface.c (broadcast_xinerama_state):
17074 * fvwm/virtual.c (CMD_Xinerama):
17075 (CMD_XineramaPrimaryScreen):
17077 (CMD_XineramaSlsSize):
17079 split Xinerama command into Xinerama, XineramaPrimaryScreen,
17080 XineramaSls and XineramaSlsSize
17081 restructured parts of the FScreen code
17083 * fvwm/functions.c (func_config):
17084 new commands XineramaPrimaryScreen, XineramaSls and XineramaSlsSize
17086 * libs/Graphics.c (RelieveRectangle):
17087 allow calling the function with w == 0 or h == 0 without a message
17089 * fvwm/window_flags.h (SET_STYLE_DELETED):
17090 * fvwm/style.c (CMD_DestroyStyle):
17091 (check_window_style_change):
17092 * fvwm/fvwm.h (window_style):
17093 update windows when a style is deleted
17096 fixed xpm detection problem caused by wrong library order
17098 2001-09-05 olicha <olivier.chapuis@free.fr>
17100 * NEWS: PlacedByFvwm
17102 2001-09-04 Dan Espen <dane@mk.telcordia.com>
17104 * fvwm/fvwm2.1 (PlacedByFvwm): Grammar.
17106 2001-09-04 olicha <olivier.chapuis@free.fr>
17109 * fvwm/windows_flags.h:
17110 * fvwm/placement.c (PlaceWindow):
17111 * fvwm/add_window.c (setup_window_structure):
17112 * fvwm/conditional.c (CreateConditionMask):
17113 * fvwm/session.c (get_version_string):
17116 Added a new windows_flags is_placed_by_fvwm and a new condition
17119 2001-09-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17121 * fvwm/focus.c (focus_grab_buttons):
17123 disabled xt/double click patch for now
17125 2001-09-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17127 * libs/Graphics.c (RelieveRectangle):
17128 print a warning if one of the dimensions is <= 0
17130 * fvwm/placement.c (PlaceWindow):
17131 take care of windows that have both, PPosition and USPosition set
17132 take care of transient windows that have neither PPosition nor
17135 2001-09-01 olicha <olivier.chapuis@free.fr>
17137 * libs/FScreen.c (FScreenInit):
17138 Fixed the position of the xinerama emulation delimiters
17140 2001-08-31 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17143 Xinerama introduction
17145 * fvwm/icons.c (AutoPlaceIcon):
17146 try to place icons of screen with the window center, and if that fails
17149 * libs/FScreen.c (FScreenGetScrRect):
17150 performance improvement for non-xinerama systems
17152 * fvwm/update.c (apply_window_updates):
17153 (flush_window_updates):
17154 update icon boxes and icon position when xinerama layout changes
17156 * fvwm/icons.c (AutoPlaceIcon):
17157 limit placement of icons using no icon box to screen boundaries
17158 adapt icon boxes to xinerama layout whenever used
17160 * fvwm/placement.c (PlaceWindow):
17161 * fvwm/style.c (CMD_Style):
17162 (check_window_style_change):
17163 * fvwm/style.h (SUSE_NO_USPOSITION):
17164 (SUSE_NO_TRANSIENT_PPOSITION):
17165 (SUSE_NO_TRANSIENT_USPOSITION):
17166 * fvwm/fvwm.h (struct):
17167 implemented new styles NoUSPosition/UseUSPosition,
17168 NoTransientPPosition/UseTransientPPosition,
17169 NoTransientUSPosition/UseTransientUSPosition.
17170 These work exactly like NoPPosition/UsePPosition.
17171 Transient windows ignore the window position if neither the PPosition
17172 nor the USPosition hint is set.
17174 2001-08-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17176 * fvwm/focus.c (restore_focus_after_unmap):
17177 fixed a bug transfering the focus when a window was iconified
17179 2001-08-26 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17181 * fvwm/conditional.c (MatchesConditionMask):
17182 * fvwm/move_resize.c (position_geometry_window):
17183 * fvwm/placement.c (PlaceWindow):
17184 * fvwm/menus.c (pop_menu_up):
17185 * fvwm/move_resize.c (move_window_doit):
17186 * fvwm/icons.c (do_all_iconboxes):
17187 * fvwm/placement.c (PlaceWindow):
17188 * fvwm/menus.c (update_menu):
17189 adapted to new FScreen... signatures
17191 * libs/FScreen.c (FScreenClipToScreen):
17192 (FScreenGetScrCenterCenter):
17193 (FScreenCenterCurrent):
17194 (FScreenCenterPrimary):
17195 (FScreenGetCurrent00):
17196 (FScreenGetGlobalScrRect):
17197 (FScreenGetPrimaryScrRect):
17198 (FScreenGetScrRect):
17199 (FScreenIsRectangleOnScreen):
17200 unified all the FSCreen... functions using a common signature, removed
17203 * fvwm/style.c (CMD_Style):
17204 init icon box screen
17206 * fvwm/move_resize.c (move_window_doit):
17208 * libs/Makefile.am:
17209 * libs/XineramaSupport.c:
17210 * libs/XineramaSupport.h:
17212 exported and renamed screen defines
17219 * fvwm/placement.c:
17220 * fvwm/move_resize.c:
17221 * fvwm/module_interface.c:
17226 * fvwm/conditional.c:
17227 * libs/XineramaSupport.c:
17228 renamed all XineramaSupport...() functions to FScreen...()
17230 * fvwm/style.c (CMD_Style):
17233 2001-08-25 Dan Espen <dane@mk.telcordia.com>
17235 * fvwm/style.c (CMD_Style):
17236 * fvwm/fvwm.h (icon_boxes_struct): Add screen to iconbox struct when
17237 using geometry spec.
17239 2001-08-25 Mikhael Goikhman <migo@homemail.com>
17243 new function QuoteString() to add and escape single quotes to strings
17245 * fvwm/menus.c (MenuInteraction):
17246 quote both missing function name and menu name for
17247 MissingSubmenuFunction
17249 * fvwm/functions.c (expand):
17252 2001-08-25 Dan Espen <dane@mk.telcordia.com>
17254 * fvwm/style.c (CMD_Style): Fix up iconboxes using negative geom specs.
17256 2001-08-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17258 * fvwm/cursor.c (CMD_CursorStyle):
17259 * fvwm/icons.c (GetXPMFile):
17260 * libs/Colorset.c (SetWindowBackground):
17263 * libs/Bindings.c (AddBinding):
17264 tired to help with problem binding keys that have a keycode with no
17265 modifiers and another keycode with some modifiers pressed, e.g.
17266 kc 95 = F11, kc 67 = F1, kc 67 + shift = F11, which caused pressing
17267 F1 generating the actioon bound to F11 sometimes
17269 * fvwm/focus.c (focus_grab_buttons):
17272 2001-08-23 Dan Espen <dane@mk.telcordia.com>
17274 * libs/Bindings.c (MatchBinding): Unify XDisplayKeycodes avoidance.
17276 2001-08-20 Bob Woodside <proteus@pcnet.com>
17278 * fvwm/focus.c (MoveFocus, focus_grab_buttons): Fixed passive button
17279 grab synchronization so apps using XtTranslations to catch double-
17280 clicks don't get confused by extraneous Leave/EnterNotify events.
17281 This fixes the "xfm/moxfm don't see double-clicks" problem.
17283 2001-08-20 Dan Espen <dane@mk.telcordia.com>
17285 * fvwm/icons.c (AutoPlaceIcon): Fix bug.
17287 2001-08-19 Dan Espen <dane@mk.telcordia.com>
17289 * fvwm/icons.c (AutoPlaceIcon): Apply screen dimensions as icon is
17292 * fvwm/style.c (CMD_Style): Don't apply screen dimensions to iconbox
17293 until later when the window is actually placed.
17295 * fvwm/fvwm.h (icon_boxes_struct): Save sign for later screen
17296 position calculation.
17298 2001-08-19 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17300 * fvwm/update.c (flush_window_updates):
17301 * fvwm/screen.h (ScreenInfo):
17302 * fvwm/virtual.c (CMD_Xinerama):
17304 * fvwm/move_resize.c (CMD_Maximize):
17305 * fvwm/placement.c (PlaceWindow):
17306 * libs/XineramaSupport.c (XineramaSupportGetNumberedScrRect):
17310 describe new maximize options
17312 * fvwm/move_resize.c (MaximizeWidth):
17315 applied Dmitry's Xinerama patch for Maximize command
17316 replaced "global" and "absolute" with "screen" which is more flexible
17318 2001-08-16 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17320 * libs/Parse.c (SkipQuote):
17321 fixed a bug in handling of caller specified quote pairs
17323 * fvwm/move_resize.c (CMD_Maximize):
17324 keep window on correct page when viewport does not start on a page
17327 * libs/XError.c (error_name):
17329 fixed core dump in error handling
17331 2001-08-15 Mikhael Goikhman <migo@homemail.com>
17337 renamed --disable-gnome to --disable-gnome-hints;
17338 documented configure options --with-gnome*;
17339 small improvements in documentation;
17340 use underscore in version instead of dash that causes rpm problems
17342 2001-08-14 Mikhael Goikhman <migo@homemail.com>
17344 * libs/Makefile.am:
17345 added fvwmrect.h to dist
17347 2001-08-14 Dan Espen <dane@mk.telcordia.com>
17349 * libs/XineramaSupport.c: Disable debug printing.
17351 2001-08-13 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17353 * libs/defaults.h (DEFAULT_MENU_STYLE):
17354 reset colour sets in default menu style too
17356 2001-08-13 Mikhael Goikhman <migo@homemail.com>
17360 completed the libstroke-0.5 compatibility fix
17362 2001-08-10 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17364 * fvwm/move_resize.c (draw_move_resize_grid):
17365 fixed drawing of resize grid when invoked from button or key press
17367 * fvwm/placement.c (PlaceWindow):
17368 rewrote a condition to improve readability
17369 fixed StartsOn... w/ SkipMapping
17371 2001-08-09 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17373 * fvwm/session.c (MatchWinToSM):
17374 (LoadWindowStates):
17375 (SaveWindowStates):
17376 * fvwm/move_resize.c (CMD_Resize):
17377 * fvwm/events.c (HandlePropertyNotify):
17378 (HandleConfigureRequest):
17379 * fvwm/move_resize.c (CMD_ResizeMove):
17382 * fvwm/update.c (apply_window_updates):
17383 * fvwm/add_window.c (AddWindow):
17384 * fvwm/geometry.c (constrain_size):
17385 (gravity_constrain_size):
17386 the Resize command honors the window gravity
17387 changing the size increment of maximized windows no longer shrinks the
17391 keep expanded icon titles on screen
17393 2001-08-08 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17395 * fvwm/icons.c (do_all_iconboxes):
17396 default icon box fills the primary screen
17398 * libs/XineramaSupport.c (XineramaSupportParseScreenBit):
17399 fixed default_screen argument
17401 * fvwm/style.c (merge_styles):
17402 * fvwm/fvwm.h (window_style):
17403 * fvwm/style.h (SSET_START_SCREEN):
17404 * fvwm/add_window.c (setup_window_placement):
17405 * fvwm/placement.c (PlaceWindow):
17407 implemented StartsOnScreen style
17409 * fvwm/placement.c (PlaceWindow):
17415 Place new windows on xinerama screens
17417 * libs/XineramaSupport.c (XineramaSupportParseGeometryWithScreen):
17418 fixed core dump in debug output
17420 2001-08-07 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17422 * fvwm/placement.c:
17423 removed unused variable
17425 2001-08-07 olicha <olivier.chapuis@free.fr>
17428 FvwmIconBox, FvwmTaskBar and FvwmWinList support aliases
17430 2001-08-06 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17432 * fvwm/virtual.c (CMD_Xinerama):
17433 replaced XineramaEnable and ...Disable with XineramaCommand
17435 * libs/XineramaSupport.c (XineramaSupportParseScreenBit):
17436 (XineramaSupportGetScreenArgument):
17439 * fvwm/functions.c (func_config):
17440 * fvwm/move_resize.c (move_window_doit):
17442 (CMD_AnimatedMove):
17444 (CMD_MoveToScreen):
17446 added new command MoveToScreen
17448 2001-08-05 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17454 * libs/XineramaSupport.c (XineramaSupportParseGeometry):
17455 fixed parsing of negative geometries
17456 (XineramaSupportParseGeometryWithScreen):
17458 (XineramaSupportGetNumberedScreenRect):
17461 * sample.fvwmrc/system.fvwm2rc:
17462 * sample.fvwmrc/new-features:
17463 * sample.fvwmrc/system.fvwm2rc-sample-95:
17464 * sample.fvwmrc/system.fvwm2rc-sample-2:
17465 * sample.fvwmrc/system.fvwm2rc-sample-1:
17467 updated for new condition
17469 * fvwm/conditional.c (CreateConditionMask):
17470 (MatchesConditionMask):
17471 * fvwm/fvwm.h (WindowConditionMask):
17472 implemented new condition AcceptsFocus to cope with applications like
17473 xclock that have circulatehit but don't take focus
17475 2001-08-02 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17477 * libs/XineramaSupport.c (XineramaSupportParseGeometry):
17478 handle Xinerama screens
17480 * fvwm/style.c (CMD_Style):
17481 * fvwm/menus.c (get_menu_options):
17482 cope with Xinerama like geometries with screen info
17484 * fvwm/virtual.c (CMD_XineramaEnable):
17485 XineramaEnable optionally takes the number of the primary screen as its
17488 * fvwm/events.c (GetContext):
17491 * fvwm/virtual.c (HandlePaging):
17492 * fvwm/events.c (HandleButtonPress):
17493 * fvwm/events.h (XEVMASK_PANFW):
17494 fixed button and key event handling over pan frames; fixes bug #752
17496 * fvwm/menus.c (get_menu_options):
17497 fixed Xinerama placement of menus without options
17499 2001-08-01 Mikhael Goikhman <migo@homemail.com>
17506 Color enhancements in button vectors: @2 is bg color, @3 is fg color.
17507 In addition to the existing: @0 is shadow color, @1 is hilight color.
17510 Added the formal description of Vector that was absent.
17512 2001-08-01 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17515 some man page corrections
17517 2001-07-30 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17519 * fvwm/move_resize.c (handle_stick):
17520 also redraw buttons when a window becomes sticky/slippery to make sure
17521 that MWMDecorStick buttons are updated too; fixes bug #749
17523 2001-07-30 Mikhael Goikhman <migo@homemail.com>
17526 documented previous changes
17529 improved output spacing
17534 2001-07-29 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17536 * libs/XineramaSupport.c (XineramaSupportConfigureModule):
17537 * fvwm/modconf.c (send_xinerama_state):
17538 * fvwm/module_interface.c (broadcast_xinerama_state):
17540 revised module support for Xinerama
17542 * libs/XineramaSupport.c (XineramaSupportParseGeometryWithScreen):
17543 (XineramaSupportParseGeometry):
17544 (XineramaSupportGetGeometry):
17545 make interface compatible with XineramaSupportParseGeometry().
17546 (XineramaSupportGetPrimaryScreen):
17549 * fvwm/stack.c (raise_over_unmanaged):
17550 fixed restacking of windows with RaiseOverUnmanaged - windows were
17551 raised in reverse order so that the top window became the bottom
17552 window of the ones that were raised
17553 also, ignore Scr.NoFocusWin and all InputOnly windows for raising since
17554 these are invisible
17556 2001-07-28 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17558 * sample.fvwmrc/system.fvwm2rc-sample-95:
17559 fixed syntax of BugOpts command
17561 * fvwm/ConfigFvwmDefaults:
17562 resize window when clicking on the sides of the window by default
17563 instead of moving it
17565 * fvwm/events.c (HandleEnterNotify):
17566 do not delete MouseFocus when pointer moves from one particular sub
17567 window of a frame to another one. Helps with xv/xmms vs unclutter
17568 interaction and also with MouseFocus vs. Open Look applications
17570 * fvwm/move_resize.c (DoSnapAttract):
17571 * libs/XineramaSupport.c (XineramaSupportGetResistanceRect):
17572 fixed snapping to Xinerama screen edges
17573 (XineramaSupportIsEnabled):
17574 return False is the X server provides only a single screen
17577 Added descriptions of conditions CurrentDesk, CurrentPage,
17578 CurrentScreen, CurrentGlobalPage, CurrentPageAnyDesk and
17579 CurrentGlobalPageAnyDesk
17581 * fvwm/fvwm.h (rectangle):
17583 typedefs moved to libs/fvwmlib.h
17585 * fvwm/conditional.c (MatchesConditionMask):
17586 * fvwm/fvwm.h (WindowConditionMask):
17587 * fvwm/conditional.c:
17588 introduced new conditions CurrentGlobalPage and CurrentGlobalPageAnyDesk
17589 for Xinerama support
17591 * fvwm/modconf.c (CMD_Send_ConfigInfo):
17592 (send_xinerama_state):
17593 * fvwm/module_interface.c (broadcast_xinerama_state):
17594 * libs/XineramaSupport.c (XineramaSUpportIsEnabled):
17595 * libs/defaults.h (DEFAULT_XINERAMA_DISABLED):
17596 communicate xinerama state at module startup
17598 2001-07-27 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17600 * libs/XineramaSupport.c:
17601 next Xinerama patch
17603 2001-07-25 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17605 * fvwm/move_resize.c (moveLoop):
17606 windows were lost off screen w/ non opaque interactive move when motion
17607 was aborted with Escape on a different page that it was started
17609 * fvwm/move_resize.c (position_geometry_window):
17617 * libs/XineramaSupport.c (GetMouseXY):
17618 (XineramaSupportCenterCurrent):
17619 (XineramaSupportGetCurrent00):
17620 (XineramaSupportGetCurrentScrRect):
17621 allow to pass in an event with the pointer position
17622 minimize number of XQueryPointer calls in interactive move/resize
17625 * fvwm/move_resize.c (resize_geometry_window):
17628 border width of geometry window moved to defaults.h
17629 moved strings for size window formatting to defaults.h
17630 reworked calculations of geometry window dimensions
17632 * fvwm/move_resize.c (resize_geometry_window):
17633 (position_geometry_window):
17637 * fvwm/builtins.c (ApplyDefaultFontAndColors):
17638 * fvwm/fvwm.c (main):
17639 funtions ResizeSizeWindow and PositionSizeWindow renamed to
17640 resize_geometry_window and position_geometry_window
17642 * fvwm/fvwm.c (main):
17643 fixed resizing geometry window before creating it
17645 * fvwm/move_resize.c (switch_move_resize_grid):
17647 * fvwm/virtual.c (HandlePaging):
17648 renamed MoveOutline to draw_move_resize_grid and made static
17649 new function switch_move_resize_grid for external calls
17650 delete grid before moving the geometry window to get rid of arifacts of
17653 2001-07-24 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17655 * libs/XineramaSupport.c (XineramaSupportInit):
17656 make the blank area in Xinerama emulation usable again
17658 2001-07-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17660 * fvwm/menus.c (update_menu):
17663 (calculate_item_sizes):
17664 (size_menu_horizontally):
17665 (size_menu_vertically):
17666 menus are resized to fit their Xinerama screen every time they are
17667 popped up and the screen size has changed
17669 2001-07-23 olicha <olivier.chapuis@free.fr>
17671 * libs/XineramaSupport.c (XineramaSupportInit):
17672 Draw the xinerama simulation screens with orr windows
17674 2001-07-23 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17676 * fvwm/windowlist.c (CMD_WindowList):
17677 fixed windowlist placement w/ Xinerama
17679 2001-07-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17681 * fvwm/menus.c (pop_menu_up):
17682 fixed calculations that force a menu on screen w/ Xinerama
17684 * fvwm/move_resize.c (DoSnapAttract):
17685 removed some code that slipped in with xinerama patch and broke
17686 vertical SnapAttraction
17688 * fvwm/virtual.c (CMD_EdgeResistance):
17691 * libs/XineramaSupport.c (XineramaSupportClipToScreen):
17692 take reference position src_x/src_y to determine screen
17694 * fvwm/windowlist.c (CMD_WindowList):
17695 * fvwm/menus.c (get_menu_options):
17696 (get_popup_options):
17699 handle Xinerama screens for positioning menus w/ posthints
17701 * fvwm/menus.c (get_menu_options):
17703 fix for icon/window context rectangle when window is in wrong state
17705 2001-07-22 Mikhael Goikhman <migo@homemail.com>
17708 s/XINERAMA/HAVE_XINERAMA/, now #ifdef'd xinerama code is finally ever
17709 compiled in; fixed linking by adding -lXinerama; small corrections
17711 2001-07-22 Dan Espen <dane@mk.telcordia.com>
17713 * fvwm/fvwm2.1: Remove some test code, fix remaining .IP commands.
17715 2001-07-22 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17717 * libs/XineramaSupport.c (XineramaSupportInit):
17718 added xinerama emulation for developers
17720 * fvwm/virtual.c (CMD_XineramaEnable):
17721 (CMD_XineramaDisable):
17722 * fvwm/module_interface.c (BroadcastConfigInfoString):
17723 added function to communicate Xinerama on/off to modules
17725 * fvwm/module_interface.c:
17726 include time.h to fix warning
17727 * libs/XineramaSupport.c:
17728 * fvwm/fvwm.c (setVersionInfo):
17729 * fvwm/Makefile.am:
17732 cleanded up xinerama detection
17733 added shape detection
17735 2001-07-21 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17738 Added Xinerama introduction
17740 * fvwm/fvwm.c (setVersionInfo):
17741 print xinerama support
17743 * fvwm/conditional.c (CreateConditionMask):
17744 added CirculateHitShaded option for conditional commands that was
17745 described in the man page but not implemented
17747 * fvwm/fvwm.h (WindowConditionMask):
17748 removed unused flags
17750 * fvwm/conditional.c (MatchesConditionMask):
17751 fixed CirculateHitIcon option in conditional commands
17754 reformatted man page source to improve readability
17755 fixed some source formatting bugs
17757 * libs/XineramaSupport.c (GetMouseXY):
17758 don't poll the pointer if there is only one screen or if xinerama is
17762 * fvwm/fvwm.c (main):
17763 removed -noxinerama option
17765 * fvwm/fvwm.c (main):
17766 size window is positioned and sized in move_resize.c
17768 * libs/XineramaSupport.c:
17772 print Xinerama support in configure summary
17775 applied Xinerama patch by Dmitry Yu. Bolkhovityanov
17777 2001-07-17 Mikhael Goikhman <migo@homemail.com>
17782 implemented a new convenient autoconf macro mg_DEFINE_IF_NOT;
17783 define missing macros needed for old AIX keysymdef and old stroke.h
17787 remove the previous compilation fixes, now handled by configure
17789 2001-07-15 Dan Espen <dane@mk.telcordia.com>
17791 * fvwm/fvwm2.1: Remove .BI with more than 6 args.
17793 2001-07-15 Mikhael Goikhman <migo@homemail.com>
17796 use libstroke-0.5 constant names while still supporting 0.3/0.4
17799 compiling fix for old AIX, which does not define XK_Page_Up/Down
17801 * module_interface.c:
17802 minor compiling fix for some proprietary preprocessors
17804 2001-07-10 Mikhael Goikhman <migo@homemail.com>
17807 use more compatible and structured syntax in SYNOPSIS
17809 2001-07-06 Mikhael Goikhman <migo@homemail.com>
17812 Replaced forgotten instances of IMLIB_CFLAGS and IMLIB_LIBS to
17813 GDK_IMLIB_*. This fixes "make FvwmGtk" on systems with bogus
17816 2001-07-05 Mikhael Goikhman <migo@homemail.com>
17819 changed version to 2.4.1
17822 small fix that should solve the problem with running autoconf
17823 (autoreconf is ok) from autoconf-2.50;
17824 applied a patch that adds gtk include dirs to gnome include dirs
17826 2001-07-03 Dominik Vogt <dominik(dot)vogt(at)gmx(dot)de>
17828 * NEWS, configure.in:
17829 changed version to 2.4.0.1
17831 * *: fvwm 2.4 has been released :-))