1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563
|
% Window management routines.
%
% Copyright (c) 2004 Marko Mahnic
% Released under the terms of the GNU General Public License (ver. 2 or later)
%
% 2004-12-11: Marko Mahnic
% - first version
%
% 2006-04-11: Marko Mahnic
% - bugfix in do_create_windows
% - applied patch by G. Milde
% - added more tets
provide("window");
%!%+
%\variable{WindowInfo_Type}
%\synopsis{struct WindowInfo_Type}
%\usage{list = @WindowInfo_Type}
%\description
% A linked list that describes each window.
%
% The head element describes the screen (the biggest window).
% Each 'line' of the screen represents a window.
%
% The following elements describe the windows in top-down order.
% The minibuffer is not included in the list.
%!%-
!if (is_defined ("WindowInfo_Type"))
{
typedef struct
{
height,
buffer,
line,
offs,
next
} WindowInfo_Type;
}
static variable Windows = NULL;
%!%+
%\function{select_top_window}
%\synopsis{Select the window at the top of the screen}
%\usage{select_top_window()}
%\description
% Select the window at the top of the screen.
%\seealso{select_prev_window, select_next_window, select_bottom_window}
%!%-
public define select_top_window()
{
variable i;
loop (nwindows())
{
if (TOP_WINDOW_ROW == window_info('t')) break;
otherwindow();
}
}
%!%+
%\function{select_bottom_window}
%\synopsis{Select the window at the bottom of the screen}
%\usage{select_bottom_window()}
%\description
% Select the window at the bottom of the screen.
% The minibuffer is never selected even if it is active.
%
%\seealso{select_prev_window, select_next_window, select_top_window}
%!%-
public define select_bottom_window()
{
variable togo = nwindows() - 1;
if (MINIBUFFER_ACTIVE) togo--;
select_top_window();
if (togo > 0)
loop (togo) otherwindow();
}
%!%+
%\function{select_next_window}
%\synopsis{Select the next window}
%\usage{select_next_window()}
%\description
% Select the next window. Same as otherwindow().
%
%\seealso{select_prev_window, select_top_window, select_bottom_window}
%!%-
define select_next_window()
{
otherwindow();
}
%!%+
%\function{select_prev_window}
%\synopsis{Select the previous window}
%\usage{select_prev_window()}
%\description
% Select the previous window.
%
%\seealso{select_next_window, select_top_window, select_bottom_window}
%!%-
public define select_prev_window()
{
variable i;
for (i = nwindows() - 1; i > 0; i--) otherwindow();
}
%!%+
%\function{select_window}
%\synopsis{Select the nth. window from top}
%\usage{select_window(Integer_Type n)}
%\description
% Select the nth. window from top.
% The top window is 1.
% \seealso{what_window, nwindows}
%!%-
define select_window(n)
{
while (n < 1) n += nwindows();
n = (n - 1) mod nwindows();
select_top_window();
loop(n) otherwindow();
}
%!%+
%\function{what_window}
%\synopsis{Return the number of the current window}
%\usage{Integer_Type what_window()}
%\description
% Return the number of the current window. Windows are numbered
% from 1 to nwindows(). The top window is 1.
% \seealso{select_window, nwindows}
%!%-
define what_window()
{
variable curwin = window_info('t');
variable n = 1;
select_top_window();
while (window_info('t') != curwin)
{
otherwindow();
n++;
}
return n;
}
%!%+
%\function{save_windows}
%\synopsis{Return window configuration with buffer positions}
%\usage{WindowInfo_Type save_windows ()}
%\description
% Return window configuration with buffer positions.
%\returns
% Return a linked list of window information (WindowInfo_Type).
%\seealso{restore_windows}
%!%-
define save_windows ()
{
variable curwin = what_window();
variable list, pwin;
% Save screen
list = @WindowInfo_Type;
list.height = SCREEN_HEIGHT;
list.line = what_window();
list.next = @WindowInfo_Type;
select_top_window();
% Save first window
pwin = list.next;
pwin.next = NULL;
pwin.height = window_info('r');
pwin.buffer = whatbuf();
pwin.line = what_line();
pwin.offs = window_line();
% Save other windows
otherwindow();
while (window_info('t') != TOP_WINDOW_ROW)
{
if (window_info('t') >= SCREEN_HEIGHT - 1) % minibuffer
{
otherwindow();
continue;
}
pwin.next = @WindowInfo_Type;
pwin = pwin.next;
pwin.next = NULL;
pwin.height = window_info('r');
pwin.buffer = whatbuf();
pwin.line = what_line();
pwin.offs = window_line();
otherwindow();
}
% Activate current window
select_window(curwin);
return list;
}
%!%+
%\function{restore_windows}
%\synopsis{Restore a previously saved configuration of windows}
%\usage{restore_windows(WindowInfo_Type list)}
%\description
% Restore a configuration of windows that was previously stored
% with save_windows().
%\seealso{save_windows}
%!%-
define restore_windows(list)
{
if (list == NULL) return;
if (list.next == NULL)
{
onewindow();
return;
}
variable pwin;
variable i, diff;
pwin = list.next;
% create all windows
onewindow();
while (pwin.next != NULL)
{
splitwindow();
pwin = pwin.next;
}
select_bottom_window();
diff = (SCREEN_HEIGHT - nwindows()) - window_info('r');
for (i = 0; i < diff; i++) enlargewin();
% restore window state
select_top_window();
pwin = list.next;
while (pwin != NULL)
{
diff = pwin.height - window_info('r');
if (diff > 0) for (i = 0; i < diff; i++) enlargewin();
if (bufferp(pwin.buffer))
{
sw2buf(pwin.buffer);
goto_line(pwin.line);
recenter(pwin.offs);
}
otherwindow();
pwin = pwin.next;
}
% Restore active window
select_window(list.line);
}
%!%+
%\function{save_windows_cmd}
%\synopsis{Save window configuration with buffer positions into a static variable}
%\usage{Void save_windows_cmd()}
%\description
% Save window configuration with buffer positions into a static variable.
%
% Suitable for a menu entry.
% \seealso{restore_windows_cmd, save_windows}
%!%-
public define save_windows_cmd()
{
Windows = save_windows();
}
%!%+
%\function{restore_windows_cmd}
%\synopsis{Restore a previously saved configuration of windows}
%\usage{Void restore_windows_cmd()}
%\description
% Restore a previously saved configuration of windows. The configuration
% must have been stored with save_windows_cmd().
% Suitable for a menu entry.
%
% \seealso{save_windows_cmd, restore_windows}
%!%-
public define restore_windows_cmd()
{
restore_windows(Windows);
}
static define do_create_windows(nwin)
{
variable i, s, diff, ifill;
variable wins;
onewindow();
if (nwin == 1) pop();
if (nwin < 2) return;
wins = Integer_Type[nwin];
% Create windows
for (i = 0; i < nwin - 1; i++) splitwindow();
% Read window info and find the 'elastic' window
ifill = -1;
for (i = 0; i < nwin; i++)
{
s = ();
wins[nwin - 1 - i] = s;
if (ifill < 0 and s == 0) ifill = nwin - 1 - i;
}
if (ifill < 0) ifill = nwin - 1;
% Enlarge the elastic window to max size
select_top_window();
for (i = 0; i < ifill; i++) otherwindow();
for (i = 0; i < SCREEN_HEIGHT - nwindows(); i++) enlargewin();
% Enlarge other windows
otherwindow();
if (window_info('t') >= SCREEN_HEIGHT - 1)
otherwindow();
ifill = (ifill + 1) mod nwin;
for (i = 0; i < nwin; i++)
{
if (wins[ifill] > 1)
{
diff = wins[ifill] - window_info('r');
while (diff > 0)
{
enlargewin();
diff--;
}
}
otherwindow();
if (window_info('t') >= SCREEN_HEIGHT - 1) % minibuffer
otherwindow();
ifill = (ifill + 1) mod nwin;
}
}
% Create windows with sizes passed in parameters.
% 0 means: whatever is left
%!%+
%\function{create_windows}
%\synopsis{Create a configuration of windows with the desired sizes}
%\usage{Void create_windows(Integer_Type s0, Integer_Type s1 [, ...]) }
%\description
% Create a configuration of windows with the desired sizes.
% Window sizes are defined top to bottom (s0 for topmost window).
%
% The first window with a desired size of 0 will be 'elastic' -
% it's size will shrink or grow so that other windows.
%
% If none of the parameters sX is 0, the bottom window will be
% elastic.
%
%\example
%#v+
% create_windows(7, 0, 3)
%#v-
% will create 3 windows:
% * the topmost will have 7 lines
% * the bottom one will have 3 lines
% * the middle window will take whatever is left
%
%\notes
% If the screen is too small, the function may fail.
%\seealso{create_windows_rel, save_windows, restore_windows}
%!%-
public define create_windows()
{
do_create_windows(_NARGS);
}
%!%+
%\function{create_windows_rel}
%\synopsis{Create a configuration of windows with the desired relative sizes }
%\usage{Void create_windows_rel(Integer_Type s0, Integer_Type s1 [, ...]) }
%\description
% Create a configuration of windows with the desired relative sizes. All sizes
% must be equal or greater than 1.
%
%\example
%#v+
% create_windows(30, 60, 10)
%#v-
% will create 3 windows:
% * the topmost one will be 30% of total height
% * the middle one will be 60% of total height
% * the bottom one will be 10% of total height
%
%\seealso{create_windows, save_windows, restore_windows}
%!%-
define create_windows_rel()
{
variable wins, sum, i, vislines, nwin;
if (_NARGS == 0) onewindow();
if (_NARGS == 1)
{
pop();
onewindow();
}
if (_NARGS < 2) return;
% Read parameters from stack - only values >= 1
wins = Integer_Type[_NARGS];
_stk_reverse(_NARGS);
nwin = 0;
for (i = 0; i < _NARGS; i++)
{
wins[nwin] = ();
if (wins[nwin] >= 1) nwin++;
}
if (nwin < 2)
{
onewindow();
return;
}
% Calculate window sizes
vislines = SCREEN_HEIGHT - 1 - (TOP_WINDOW_ROW - 1) - nwin;
sum = 0;
for (i = 0; i < nwin; i++) sum += wins[i];
for (i = 0; i < nwin; i++)
{
wins[i] = int(1.0 * vislines * wins[i] / sum + 0.5);
if (wins[i] < 2) wins[i] = 2;
}
% Fixup
sum = 0;
for (i = 0; i < nwin; i++) sum += wins[i];
while (sum > vislines)
{
variable max = 2, imax;
for (i = 0; i < nwin; i++)
{
if (wins[i] > max)
{
imax = i;
max = wins[i];
}
}
if (max <= 2) break;
else
{
wins[imax]--;
sum--;
}
}
% Create windows
for (i = 0; i < nwin; i++) wins[i];
do_create_windows(nwin);
}
% ----------------------------------------------------------
% Demo/Testing code
% ----------------------------------------------------------
#stop
#iffalse
define pause(m)
{
vmessage("Pause: %s", m);
update(1);
() = getkey();
}
define dump_windows(list)
{
variable pwin = list;
variable buf = whatbuf();
setbuf("*scratch*");
eob();
insert ("\n");
while (pwin != NULL)
{
vinsert("%d (L:%d C:%d B:%s) ", pwin.height, pwin.line, pwin.offs, pwin.buffer);
pwin = pwin.next;
}
setbuf(buf);
}
define Test()
{
variable Current;
variable TestWin1;
variable TestWin2;
Current = save_windows();
dump_windows(Current);
create_windows_rel (30, 30, 30);
select_top_window();
bob();
select_next_window();
eob();
TestWin1 = save_windows();
create_windows_rel (20, 20, 60);
TestWin2 = save_windows();
create_windows_rel (10, 20, 30, 40);
save_windows_cmd();
% dump_windows(TestWin1);
% dump_windows(TestWin2);
% dump_windows(Windows);
onewindow();
pause("onewindow");
create_windows(10, 0);
pause("create_windows: 10, 0");
create_windows(0, 10);
pause("create_windows: 0, 10");
create_windows(10, 0, 10);
pause("create_windows: 10, 0, 10");
restore_windows(TestWin1);
pause("Saved create_windows_rel, TestWin1: 30, 30, 30");
restore_windows(TestWin2);
pause("Saved create_windows_rel, TestWin1: 20, 20, 60");
restore_windows_cmd();
pause("Saved create_windows_rel, Static: 10, 20, 30, 40");
restore_windows(Current);
pause("restored");
}
Test();
#endif
|