The R Project SVN R

Rev

Rev 32589 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32589 Rev 32606
Line 1529... Line 1529...
1529
    show(RConsole);
1529
    show(RConsole);
1530
    R_de_up = FALSE;
1530
    R_de_up = FALSE;
1531
}
1531
}
1532
 
1532
 
1533
static void deresize(console c, rect r)
1533
static void deresize(console c, rect r)
1534
FBEGIN
1534
{
1535
    if (((WIDTH  == r.width) &&
1535
    if (((WIDTH  == r.width) &&
1536
	 (HEIGHT == r.height)) ||
1536
	 (HEIGHT == r.height)) ||
1537
	(r.width == 0) || (r.height == 0) ) /* minimize */
1537
	(r.width == 0) || (r.height == 0) ) /* minimize */
1538
        FVOIDRETURN;
1538
        return;;
1539
    WIDTH = r.width;
1539
    WIDTH = r.width;
1540
    HEIGHT = r.height;
1540
    HEIGHT = r.height;
1541
FVOIDEND
1541
}
-
 
1542
 
1542
 
1543
 
1543
static void menudehelp(control m)
1544
static void menudehelp(control m)
1544
{
1545
{
1545
    char s[] = "Navigation.\n  Keyboard: cursor keys move selection\n\tTab move right, Shift+Tab moves left\n\tPgDn or Ctrl+F: move down one screenful\n\tPgUp or Ctrl+B: move up one screenful\n\tHome: move to (1,1) cell\n\tEnd: show last rows of last column.\n   Mouse: left-click in a cell, use the scrollbar(s).\n\nEditing.\n  Type in the currently hightlighted cell\n  Double-click in a cell for an editable field\n\nMisc.\n  Ctrl-L redraws the screen, auto-resizing the columns\n  Ctrl-C copies selected cell\n  Ctrl-V pastes to selected cell\n  Right-click menu for copy, paste, autosize currently selected column\n\n";
1546
    char s[] = "Navigation.\n  Keyboard: cursor keys move selection\n\tTab move right, Shift+Tab moves left\n\tPgDn or Ctrl+F: move down one screenful\n\tPgUp or Ctrl+B: move up one screenful\n\tHome: move to (1,1) cell\n\tEnd: show last rows of last column.\n   Mouse: left-click in a cell, use the scrollbar(s).\n\nEditing.\n  Type in the currently hightlighted cell\n  Double-click in a cell for an editable field\n\nMisc.\n  Ctrl-L redraws the screen, auto-resizing the columns\n  Ctrl-C copies selected cell\n  Ctrl-V pastes to selected cell\n  Right-click menu for copy, paste, autosize currently selected column\n\n";
1546
    askok(s);
1547
    askok(s);