On Thu, Jan 17, 2002 at 11:02:45PM +0100, Marcus Lundblad wrote:
> Is there any chance that it could be possible to change the appearence of
> the move and resize feedback windows in a future version (I believe it's
> currently not possible, or did I miss something?)
> For example to show (x, y) instead of +x +y as it does now.
> There could be options to leave out the plus sign for positive values for
> exaple, maybe with some sort of format string.
That would be quite easy to do. The format string is defined in
libs/defaults.h:
#define GEOMETRY_WINDOW_POS_STRING " %+-4d %+-4d "
At the moment, you would have to change that string to
#define GEOMETRY_WINDOW_POS_STRING " (%-4d, %-4d) "
It would be no problem to make that string configurable. However,
there would be a wide range of possible misuse since this string
is directly passed to sprintf().
Bye
Dominik ^_^ ^_^
--
Dominik Vogt, dominik.vogt_at_gmx.de
Reply-To: dominik.vogt_at_gmx.de
--
Visit the official FVWM web page at <URL: http://www.fvwm.org/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_fvwm.org.
To report problems, send mail to fvwm-owner_at_fvwm.org.
Received on Thu Jan 17 2002 - 16:31:58 GMT