pkgsrc/wm
obache 81006570cc Update ctwm to 3.8a.
Patch provided by maintainer, Rhialto in PR 35637.

    Changes from version 3.7 to 3.8
    -------------------------------

    1 - Global cleanup

	There were some variables shadowing others, things not being
	safely initialized, that sort of thing.
	[Richard Levitte]

    2 - Fixed several memory leaks found by
	"Nadav Har'El" <nyh@math.technion.ac.il>.
	[Olaf "Rhialto" Seibert]

    3 - Merged in the f.movetitlebar command. By default this is bound to
        alt-left-click in the titlebar.
	[Olaf "Rhialto" Seibert]

    4 - Fixed the following issues:
	Poking at the code, it looks like InitVirtualScreens() is called
	before the configuration file is parsed which would explain what
	I see since there's no attempt to create them after the config
	file read.

	Moving the call after the config parsing causes things to work.

	I've run into a few other issues that I fixed with the attached
	patch:

		- shadow menus on the right screen open the shadow on
		  the left screen
		- shadow menus on the left screen open on top of the
		  window
		- windows on the right screen disappear after startup
	[Todd Kover]

    5 - Adjustments to ctwm.man:
	I noticed a couple of small errors.

	One is that the window list arguments for the opaque
	keywords are now optional, are listed with square brackets
	in the man page.  The other is that the two Threshold
	keywords are shown in the man page as requiring curly-
	brackets, but they are not required or accepted in
	configuration files.
	[Ross Combs]

    6 - improve algoritm to deal with mismatched geometry of virtual
	screens

      - allow windows to be dragged from one virtual screen to another and
	have them switch workspaces appropriately

      - handle restarts properly with virtual screens, including preserving
	where windows were placed within workspaces regardless of which
	virtual screen a window was on; preserve across restarts
	[Todd Kover]

    7 - WMapCreateCurrentBackGround() and WMapCreateDefaultBackGround()
	would skip remaining virtual screens if not all parameters are present.

      - small type errors. [Olaf "Rhialto" Seibert].

    8 - There were some directives in the config file that wanted to set some
	setting for all virtual screens. However since that list is (now) only
	set up after parsing the config file, they failed to work.  Moreover,
	these settings were basically meant to be global to all virtual
	screens, so a better place for them is somewhere in *Scr.  They all
	related to the Workspace Manager, so I moved them from struct
	WorkSpaceWindow to struct WorkSpaceMgr.

	The affected directives are StartInMapState, WMgrVertButtonIndent,
	WMgrHorizButtonIndent, MapWindowCurrentWorkSpace,
	MapWindowDefaultWorkSpace.  The window and icon_name, even though not
	user-settable, were also moved.

	This is basically change #7 above done right.
	[Olaf "Rhialto" Seibert]

    9 - Re-introduced TwmWindow.oldvs, used to avoid calling
	XReparentWindow() when possibe (it messed up the stacking order
	of windows). However, maybe the use of .vs should be rethought a
	bit: in Vanish() it is now set to NULL with the old value kept
	in .oldvs.  However the window is still a child of the same vs.
	Maybe it is better not to set it to NULL and then, when *really*
	changing the virtual screen, .vs can be used instead of .oldvs.

	This whole "virtual screen" thing is unexplained in the manual,
	which even uses it as a synonym for "workspace" already in the
	introduction paragraph. (There also does not seem to be a way
	now to test virtual screens in captive windows) I suspect that
	all this causes lots of confusion, and when cleared up, can
	simplify the code a lot.

	I also fixed up the horrible indentation in the functions
	where I changed something.
	[Olaf "Rhialto" Seibert]

   10 - Fixed interaction between "inner" and "outer" workspace
	selection with "captive" windows. This was because the Gnome
	"_WIN_WORKSPACE" property is used in 2 conflicting ways: for
	client windows it indicates which workspace they are in, for
	root windows it indicates which workspace they show. Captive
	windows are both. Also, the initially selected inner workspace
	is now the first, not the same as the outer workspace (this had
	a different cause).
	[Olaf "Rhialto" Seibert]

   11 - Introduce Scr->XineramaRoot to store the root window that
	encompasses all virtual screen rootwindows. This further reduces
	any need to use RealRoot and/or CaptiveRoot.
	Add a schematic drawing that clarifies the relation between the
	various root-type windows.
	[Olaf "Rhialto" Seibert]

   12 - Get rid of all non-locale code and make I18N the silent default
	(doesn't have to be mentioned any more).
	THIS WILL BREAK CTWM ON OLDER (PRE-LOCALE) ENVIRONMENTS.
	I strongly recommend an upgrade to "post-locale" standards.
	[Richard Levitte]

   13 - Enhance RandomPlacement with a displacement argument, so the
	pseudo-radomness can be of displacements other than +30+30.
	Here's an example for a pretty funky displacement:

		RandomPlacement "on" "-30-100"

	[Richard Levitte]

   14 - Extend the Info window with the geometry seen from the lower
	right corner as well.
	[Richard Levitte]

   15 - Extend the pointer button specification for title buttons
	to take modifiers.
	As part of this change, the following title pointer button
	specification is deprecated:

		Button {j} : {function}

	in favor of the following, for consistency:

		Button {j} = {function}

	The old way still works, but is considered bad form and will
	be removed in ctwm 4.0.
	[Richard Levitte]

   16 - Fix position of buttons in Occupy window, to make them centered.
	(and spread the remaining space evenly in 4).
	[Olaf "Rhialto" Seibert]

   17 - "TwmWindow.group" was once apparently set to 0 when a window had
	no group leader but this was changed to pointing to its own
	window.  This resulted however in many places checking for both
	conditions, and several checking only for 0 which could not
	occur anymore. Changed it back to 0 (so we can now distinguish
	again windows that really indicate themselves as group leader,
	if we wish) and this gave rise to some simplifications.

	Also, there were various loops through all TwmWindows looking
	for a group leader (or a transientfor), I replaced them with
	GetTwmWindow() which uses the Xlib function XFindContext() which
	uses a hash table lookup. This should be more efficient.

	When you change the occupation of a group member window, it is
	now applied to the group leader (which in turn affects all
	members).

	I tried this with ExMH, the only program that uses a real group
	leader that I could find. Iconifying the leader unmaps the
	members. What should "squeezing" do? ExMH also has an icon
	window (see ICCCM 4.1.9, 3rd option) which behaves weirdly; this
	may be a bug in ExMH (see exmh-2.7.2/exmh.BUGS) even though fvwm
	somehow handles it better.
	[Olaf "Rhialto" Seibert]

   18 - When Squeezing a window group leader, unmap the member windows,
	just like happens with iconification.
	[Olaf "Rhialto" Seibert]

   19 - Simplifications c.q. de-duplications of code regarding the
	WorkSpaceManager and Occupation windows. This includes coding
	the layout of these windows only once instead of twice (at
	initialisation and when resizing). If it's wrong now at least it
	should be consistent.
	When changing occupation via functions like
	f.movetonextworkspace, also move complete window groups (just
	like when you do it via the Occupation window).
	Also fixed changing the occupation of the Occupation window.
	Documented (so far) undocumented possibility to edit the labels
	of workspaces on the fly (what use this is, I'm not sure).
	Removed some unused variables.
	[Olaf "Rhialto" Seibert]

   20 - Get rid of the USE_SESSION and X11R6 macros and make them the
	silent default.  Also cleaned out a few references to the macro
	X11R4, which hasn't been used for ages.
	THIS WILL BREAK CTWM ON OLDER (PRE-X11R6) ENVIRONMENTS.
	I strongly recommend an upgrade to a newer X11 release.
	[Richard Levitte]

   21 - Modified the random placement so a negative X displacement has
	the first "random" window start near the right edge instead of
	the right and a negative Y displacement has the first "random"
	window start near the bottom edge instead of the top.
	[Richard Levitte]
2007-02-17 08:27:11 +00:00
..
3ddesktop Modular Xorg support. 2007-02-01 17:45:36 +00:00
9wm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
aewm++ Modular Xorg support. 2007-02-01 17:45:36 +00:00
afterstep Modular Xorg support. 2007-02-01 21:51:55 +00:00
afterstep1 - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
amaterus Modular Xorg support. 2007-01-08 15:01:17 +00:00
amiwm Modular Xorg support. 2007-02-01 18:02:47 +00:00
bbconf Drop support for LTCONFIG_OVERRIDE. For quite a long time, pkgsrc 2006-07-19 19:14:37 +00:00
bbkeys Modular Xorg support. 2007-02-01 23:11:33 +00:00
bbkeys09 Modular Xorg support. 2007-02-01 23:29:07 +00:00
bbpager Modular Xorg support. 2007-02-01 23:14:33 +00:00
bbpager04 Modular Xorg support. 2007-02-01 23:29:07 +00:00
bbrun Modular Xorg support. 2007-01-08 15:01:17 +00:00
blackbox Modular Xorg support. 2007-02-01 21:56:13 +00:00
blackbox70 Modular Xorg support. 2007-02-01 21:56:13 +00:00
bsetroot Modular Xorg support. 2007-02-01 21:37:51 +00:00
ctwm Update ctwm to 3.8a. 2007-02-17 08:27:11 +00:00
cwm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
e16menuedit2 Update e16menuedit2 to 0.0.3. 2006-10-14 05:02:21 +00:00
econf Needs msgfmt. 2006-06-21 15:12:43 +00:00
enlightenment - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
ethemes Don't include x11.b3.mk here. 2007-02-01 23:12:22 +00:00
evilwm Modular Xorg support. 2007-02-01 21:56:13 +00:00
fluxbox Modular Xorg support. 2007-02-01 22:57:17 +00:00
fluxconf Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
fluxter Modular Xorg support. 2007-02-01 22:57:17 +00:00
flwm Update flwm from 1.00 to 1.02 2007-01-05 16:59:57 +00:00
fvwm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
fvwm-devel Updated wm/fvwm-devel to 2.5.21 2007-01-22 07:25:47 +00:00
fvwm-themes No need for explicit x11.b3.mk here. 2007-02-02 19:30:23 +00:00
fvwm1 - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
golem - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
icecc Remove the runtime dependency on qt3-tools, addressed by PR 32774. 2006-12-08 12:05:05 +00:00
icepref Fixed PKGMANDIR. 2007-02-03 11:46:56 +00:00
icewm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
icewm-imlib Modular Xorg support. 2007-01-09 08:31:17 +00:00
icewmconf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ion Modular Xorg support. 2007-02-01 22:47:39 +00:00
ion3-devel Switch to modular buildlinks. 2006-11-06 11:33:52 +00:00
jwm Modular Xorg support. 2007-01-16 23:02:49 +00:00
larswm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
lwm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
matchbox-wm Depend on xdg-1.4 for share/themes. 2007-02-03 09:25:39 +00:00
metacity Workaround idiotic configure which disables session support even though 2007-02-15 12:21:48 +00:00
mlvwm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
novawm Mechanically replace all includes of buildlink3.mk of the following 2006-12-15 20:32:52 +00:00
obconf Modular Xorg support. 2007-01-13 16:50:12 +00:00
olvwm Modular Xorg support. 2007-01-08 17:11:31 +00:00
openbox Depend on xdg-1.4 for share/themes. 2007-02-03 09:25:39 +00:00
openbox2 Modular Xorg support. 2007-02-15 14:53:14 +00:00
oroborox Modular Xorg support. 2007-01-13 16:50:12 +00:00
oroborus - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
pekwm Modular Xorg support. 2007-02-01 22:47:39 +00:00
piewm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
pwm Modular Xorg support. 2007-02-01 22:47:39 +00:00
qvwm Modular Xorg support. 2007-01-13 16:09:13 +00:00
ratpoison Modular Xorg support. 2007-02-01 17:26:39 +00:00
sawfish Modular Xorg support. 2007-02-02 19:32:12 +00:00
sawfish-replibs More PKGREVISION bumps for png-1.2.9nb2 update. 2006-04-17 14:52:10 +00:00
sawfish-themes Modular Xorg support. 2007-02-02 19:32:12 +00:00
selectwm Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update. 2006-04-17 13:45:57 +00:00
skippy - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
tvtwm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
uwm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
vtwm Modular Xorg support. 2007-02-01 21:56:13 +00:00
w9wm - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
waimea Modular Xorg support. XXX The conditionals for the native case are nasty. 2007-01-14 09:10:45 +00:00
wampager Modular Xorg support. 2007-01-15 16:32:24 +00:00
weewm Modular Xorg support. 2007-02-01 22:30:48 +00:00
whiteBOX Let gdk-pixbuf pull in the dependencies. 2007-02-01 23:08:22 +00:00
windowlab - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
windowmaker Finish the last commit: libXt is actually needed for configure and 2007-02-03 02:59:22 +00:00
wm2 Needs makedepend as well. 2007-02-02 15:13:03 +00:00
wmakerconf Add missing dependency on Perl and make sure the correct path to the 2006-11-19 22:15:17 +00:00
wmctrl Modular Xorg support. 2007-02-01 23:14:33 +00:00
wmdrawer Modular Xorg support. 2007-01-16 00:53:12 +00:00
wmextra Modular Xorg support. 2007-02-01 22:57:17 +00:00
wmi - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
wmii Modular Xorg support. 2007-02-01 17:45:36 +00:00
wmthemes No need to include x11.b3.mk here. 2007-02-01 22:55:49 +00:00
wmx - fine grained X11 dependencies for packages which have either USE_IMAKE 2006-12-27 13:37:35 +00:00
wmx-gnome Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
xfce4-wm Depend on xdg-1.4 for share/themes. 2007-02-03 09:25:39 +00:00
xfce4-wm-themes Xfce 4.2.4 released 2007-01-23 11:53:46 +00:00
Makefile Correct name for bbkeys09 and bbpager04. 2006-08-21 21:31:59 +00:00