Skip to content

Commit

Permalink
Change FvwmPager Logic for initial window size.
Browse files Browse the repository at this point in the history
 * Updated window size computational logic and formulas to deal with
   per-monitor vs global configurations.
 * Use either global window size or monitor window size (if monitor is set)
   to determine initial dimensions of pager if not set by user. Fixes #522.
 * Correctly use DeskTopScale (Scr.VScale) to determine window size if
   Geometry not set by user. Fixes #223.
 * Improved use of sizehints to set both minimum window size, and to
   preserve aspect ratio when resizing the pager. The aspect ratio is
   set to the initial size of the window unless the user sets window
   size with the Geometry option.
 * Manual page updates to state the how initial size works.
  • Loading branch information
somiaj authored and ThomasAdam committed Jun 12, 2021
1 parent 1a7a9a7 commit c54162a
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 75 deletions.
1 change: 1 addition & 0 deletions default-config/config
Original file line number Diff line number Diff line change
Expand Up @@ -611,6 +611,7 @@ Test (!x stalonetray) PipeRead 'echo "*RightPanel: (120x$(($[monitor.$[monitor.p
# This module displays the location of the windows on the various Pages
# and Desks. This is setup to show only the Pages on the current Desk.
DestroyModuleConfig FvwmPager:*
*FvwmPager: Geometry 110x80
*FvwmPager: Colorset * 10
*FvwmPager: HilightColorset * 13
*FvwmPager: BalloonColorset * 10
Expand Down
19 changes: 16 additions & 3 deletions doc/modules/FvwmPager.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ both desk numbers are omitted, the current desk is used instead. If you
use an asterisk '*' in place of _first desk_ the pager will always show
the current desktop, even when you switch desks.

FvwmPager will compute its initial window size based on your monitor(s)
configuration. By default it makes a page 1/32 the size of your monitor(s)
resolution (see _DeskTopScale_) and matches either the global aspect ratio
or a single monitor if _Monitor_ is set. FvwmPager will preserve this
aspect ratio when you resize it. See the _Geometry_ option for more info.

Example lines to put in your .fvwm2rc:

....
Expand Down Expand Up @@ -143,9 +149,16 @@ The invocation method was shown in the synopsis section

*FvwmPager: Geometry geometry::
Completely or partially specifies the pager windows location and
geometry, in standard X11 notation. In order to maintain an
undistorted aspect ratio, you might want to leave out either the width
or height dimension of the geometry specification.
geometry, in standard X11 notation. If both width and height are
set, FvwmPager will use that size and no longer preserve the
aspect ratio when resized. If you wish to maintain an undistorted
aspect ratio, you can set one dimension to zero. For example
'400x0' will make a 400 pixel wide window whose height matches
the aspect ratio and will also preserve aspect ratio when resized.
+
*Note*: FvwmPager's dimensions will be slightly adjusted to ensure
every page shown has the exact same number of pixels. So the actual
size may be slightly different than the specified size.
*FvwmPager: Rows rows::
Tells fvwm how many rows of desks to use when laying out the pager
window.
Expand Down
170 changes: 98 additions & 72 deletions modules/FvwmPager/x_pager.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ Window icon_win; /* icon window */

static int MyVx, MyVy; /* copy of Scr.Vx/y for drag logic */

static void adjust_for_sizehints(int, int, bool);
static char *GetBalloonLabel(const PagerWindow *pw,const char *fmt);
extern void ExitPager(void);

Expand All @@ -131,7 +132,6 @@ Pixmap default_pixmap = None;
#define MYFPRINTF(X)
#endif


#define MAX_UNPROCESSED_MESSAGES 1
/* sums up pixels to scroll. If do_send_message is True a Scroll command is
* sent back to fvwm. The function shall be called with is_message_recieved
Expand Down Expand Up @@ -405,14 +405,14 @@ void draw_desk_background(int i, int page_w, int page_h)
char *pager_name = "Fvwm Pager";
XSizeHints sizehints =
{
(PMinSize | PResizeInc | PBaseSize | PWinGravity),
0, 0, 100, 100, /* x, y, width and height */
1, 1, /* Min width and height */
0, 0, /* Max width and height */
1, 1, /* Width and height increments */
{0, 0}, {0, 0}, /* Aspect ratio - not used */
1, 1, /* base size */
(NorthWestGravity) /* gravity */
(PMinSize | PResizeInc | PBaseSize | PWinGravity), /* flags */
0, 0, 100, 100, /* x, y, width and height (legacy) */
1, 1, /* Min width and height */
0, 0, /* Max width and height */
1, 1, /* Width and height increments */
{0, 0}, {0, 0}, /* Aspect ratio */
1, 1, /* base size */
(NorthWestGravity) /* gravity */
};

void initialize_balloon_window(void)
Expand Down Expand Up @@ -446,6 +446,46 @@ void initialize_balloon_window(void)
return;
}

/* XXX: Here be dragons! Ideally, this function should be parameterised,
* however due to all the global state in FvwmPager, there's no point. This
* should get added to a clean up TODO at some point.
*/
static void
adjust_for_sizehints(int VxPages, int VyPages, bool check_min_aspect)
{
/* Resize increments are one pixel per visible page. */
sizehints.width_inc = Columns * VxPages;
sizehints.height_inc = Rows * VyPages;
/* Set Min size for 1 pixel pages */
sizehints.min_width = VxPages * Columns + Columns - 1;
sizehints.min_height = (VyPages + label_h + 1) * Rows - 1;
sizehints.base_width = sizehints.min_width;
sizehints.base_height = sizehints.min_height;

/* Adjust window size to be even multiples of increment size. */
if (window_w > 0) {
window_w = (window_w - sizehints.base_width) /
sizehints.width_inc;
window_w = window_w * sizehints.width_inc +
sizehints.base_width;
}
if (window_h > 0) {
window_h = (window_h - sizehints.base_height) /
sizehints.height_inc;
window_h = window_h * sizehints.height_inc +
sizehints.base_height;
}
if (check_min_aspect && sizehints.min_aspect.x > 0) {
sizehints.min_aspect.x = window_w;
sizehints.min_aspect.y = window_h;
sizehints.max_aspect.x = window_w;
sizehints.max_aspect.y = window_h - label_h * Rows;
}

desk_w = (window_w - Columns + 1) / Columns;
desk_h = (window_h - Rows * label_h - Rows + 1) / Rows;
}

void initialize_pager(void)
{
XWMHints wmhints;
Expand All @@ -456,11 +496,12 @@ void initialize_pager(void)
extern char *WindowBack, *WindowFore, *WindowHiBack, *WindowHiFore;
extern char *BalloonFont;
extern char *font_string, *smallFont;
int n,m,w,h,i,x,y;
int w = 0, h = 0, x = 0, y = 0, i = 0;
XGCValues gcv;
char dash_list[2];
FlocaleFont *balloon_font;
struct fpmonitor *mon = fpmonitor_this();
int VxPages = mon->virtual_scr.VxPages, VyPages = mon->virtual_scr.VyPages;

/* I don't think that this is necessary - just let pager die */
/* domivogt (07-mar-1999): But it is! A window being moved in the pager
Expand Down Expand Up @@ -543,9 +584,6 @@ void initialize_pager(void)
fore_pix,back_pix,Pdepth);
}

n = mon->virtual_scr.VxMax / (mon->x + mon->w); //mon->virtual_scr.MyDisplayWidth;
m = mon->virtual_scr.VyMax / (mon->y + mon->h); //mon->virtual_scr.MyDisplayHeight;

/* Size the window */
if(Rows < 0)
{
Expand Down Expand Up @@ -579,34 +617,37 @@ void initialize_pager(void)
Rows++;
}

sizehints.width_inc = Columns*(n+1);
sizehints.height_inc = Rows*(m+1);
sizehints.base_width = Columns * n + Columns - 1;
sizehints.base_height = Rows * (m + label_h + 1) - 1;

int vWidth = mon->virtual_scr.VxPages * (mon->x + mon->w);
int vHeight = mon->virtual_scr.VyPages * (mon->y + mon->h);
/* Set window size if not fully set by user to match */
/* aspect ratio of monitor(s) being shown. */
if ( window_w == 0 || window_h == 0 ) {
int vWidth = monitor_get_all_widths();
int vHeight = monitor_get_all_heights();
if (monitor_to_track != NULL) {
vWidth = mon->w;
vHeight = mon->h;
}

if (window_w > 0)
{
window_w = (window_w - sizehints.base_width) / sizehints.width_inc;
window_w = window_w * sizehints.width_inc + sizehints.base_width;
}
else
{
window_w = Columns * (vWidth / Scr.VScale + n) + Columns - 1;
}
if (window_h > 0)
{
window_h = (window_h - sizehints.base_height) / sizehints.height_inc;
window_h = window_h * sizehints.height_inc + sizehints.base_height;
}
else
{
window_h = Rows * (vHeight / Scr.VScale + m + label_h + 1) - 1;
if (window_w > 0) {
window_h = (window_w * vHeight) / vWidth +
label_h * Rows + Rows;
} else if (window_h > label_h * Rows) {
window_w = ((window_h - label_h * Rows + Rows) *
vWidth) / vHeight + Columns;
} else {
window_w = (VxPages * vWidth * Columns) / Scr.VScale +
Columns;
window_h = (VyPages * vHeight * Rows) / Scr.VScale +
label_h * Rows + Rows;
}
sizehints.flags = (sizehints.flags | PAspect);
sizehints.min_aspect.x = sizehints.max_aspect.x = window_w;
sizehints.min_aspect.y = sizehints.max_aspect.y = window_h;
}
desk_w = (window_w - Columns + 1) / Columns;
desk_h = (window_h - Rows * label_h - Rows + 1) / Rows;
/* Adjust the window to handle these new sizehints. This is also called
* from ReConfigure().
*/
adjust_for_sizehints(VxPages, VyPages, true);

if (is_transient)
{
rectangle screen_g;
Expand All @@ -617,6 +658,8 @@ void initialize_pager(void)
FScreenGetScrRect(
&fscr, FSCREEN_XYPOS,
&screen_g.x, &screen_g.y, &screen_g.width, &screen_g.height);
/* FIXME: Recalculate what to do if window is off screen. */
/* Leaving alone for now */
if (window_w + window_x > screen_g.x + screen_g.width)
{
window_x = screen_g.x + screen_g.width - mon->w; //mon->virtual_scr.MyDisplayWidth;
Expand Down Expand Up @@ -689,12 +732,12 @@ void initialize_pager(void)

attributes.event_mask = (StructureNotifyMask| ExposureMask);
if(icon_w < 1)
icon_w = (window_w - Columns+1)/Columns;
icon_w = (window_w - Columns + 1) / Columns;
if(icon_h < 1)
icon_h = (window_h - Rows* label_h - Rows + 1)/Rows;
icon_h = (window_h - Rows * label_h - Rows + 1) / Rows;

icon_w = (icon_w / (n+1)) *(n+1)+n;
icon_h = (icon_h / (m+1)) *(m+1)+m;
icon_w = (icon_w / (VxPages + 1)) * (VxPages + 1) + VxPages;
icon_h = (icon_h / (VyPages + 1)) * (VyPages + 1) + VyPages;
icon_win = XCreateWindow (dpy, Scr.Root, window_x, window_y, icon_w, icon_h,
0, Pdepth, InputOutput, Pvisual, valuemask,
&attributes);
Expand Down Expand Up @@ -910,8 +953,8 @@ void initialize_pager(void)
: Colorset[Desks[i].highcolorset].bg;
}

w = w / (n + 1);
h = desk_h / (m + 1);
w = w / (VxPages + 1);
h = desk_h / (VyPages + 1);
Desks[i].CPagerWin=XCreateWindow(dpy, Desks[i].w, -32768, -32768, w, h, 0,
CopyFromParent, InputOutput,
CopyFromParent, valuemask, &attributes);
Expand Down Expand Up @@ -1333,11 +1376,12 @@ void ReConfigure(void)
{
Window root;
unsigned border_width, depth;
int n,m,w,h,n1,m1,x,y,i,j,k;
int w,h,x,y,i,j,k;
int old_ww;
int old_wh;
int is_size_changed;
struct fpmonitor *mon = fpmonitor_this();
int VxPages = mon->virtual_scr.VxPages, VyPages = mon->virtual_scr.VyPages;

old_ww = window_w;
old_wh = window_h;
Expand All @@ -1348,36 +1392,18 @@ void ReConfigure(void)
}
is_size_changed = (old_ww != window_w || old_wh != window_h);

n1 = mon->virtual_scr.Vx / mon->virtual_scr.MyDisplayWidth;
m1 = mon->virtual_scr.Vy / mon->virtual_scr.MyDisplayHeight;
n = mon->virtual_scr.VxMax / mon->virtual_scr.MyDisplayWidth;
m = mon->virtual_scr.VyMax / mon->virtual_scr.MyDisplayHeight;
adjust_for_sizehints(VxPages, VyPages, false);

sizehints.width_inc = Columns * (n + 1);
sizehints.height_inc = Rows * (m + 1);
sizehints.base_width = Columns * n + Columns - 1;
sizehints.base_height = Rows*(m + label_h+1) - 1;
sizehints.min_width = sizehints.base_width;
sizehints.min_height = sizehints.base_height;
if (window_w > 0)
{
window_w = (window_w - sizehints.base_width) / sizehints.width_inc;
window_w = window_w * sizehints.width_inc + sizehints.base_width;
}
if (window_h > 0)
{
window_h = (window_h - sizehints.base_height) / sizehints.height_inc;
window_h = window_h * sizehints.height_inc + sizehints.base_height;
}
desk_w = (window_w - Columns + 1) / Columns;
desk_h = (window_h - Rows * label_h - Rows + 1) / Rows;
w = (desk_w - n)/(n+1);
h = (desk_h - m)/(m+1);
w = (desk_w - VxPages)/(VxPages + 1);
h = (desk_h - VyPages)/(VyPages + 1);

XSetWMNormalHints(dpy,Scr.Pager_w,&sizehints);

x = (desk_w - n) * mon->virtual_scr.Vx / mon->virtual_scr.VWidth + n1;
y = (desk_h - m) * mon->virtual_scr.Vy / mon->virtual_scr.VHeight + m1;
/* FIXME: This needs to be looked at for per-monitor configuration */
x = (desk_w - VxPages) * mon->virtual_scr.Vx / mon->virtual_scr.VWidth +
mon->virtual_scr.Vx / mon->virtual_scr.MyDisplayWidth;
y = (desk_h - VyPages) * mon->virtual_scr.Vy / mon->virtual_scr.VHeight +
mon->virtual_scr.Vy / mon->virtual_scr.MyDisplayHeight;

for(k=0;k<Rows;k++)
{
Expand Down

0 comments on commit c54162a

Please sign in to comment.