Subversion Repositories filter_foundry

Rev

Rev 259 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 259 Rev 268
Line 1... Line 1...
1
/*
1
/*
2
        This file is part of a common library
2
    This file is part of a common library
3
    Copyright (C) 1990-2006 Toby Thain, toby@telegraphics.com.au
3
    Copyright (C) 1990-2006 Toby Thain, toby@telegraphics.com.au
4
 
4
 
5
    This program is free software; you can redistribute it and/or modify
5
    This program is free software; you can redistribute it and/or modify
6
    it under the terms of the GNU General Public License as published by  
6
    it under the terms of the GNU General Public License as published by
7
    the Free Software Foundation; either version 2 of the License, or
7
    the Free Software Foundation; either version 2 of the License, or
8
    (at your option) any later version.
8
    (at your option) any later version.
9
 
9
 
10
    This program is distributed in the hope that it will be useful,
10
    This program is distributed in the hope that it will be useful,
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
    GNU General Public License for more details.
13
    GNU General Public License for more details.
14
 
14
 
15
    You should have received a copy of the GNU General Public License  
15
    You should have received a copy of the GNU General Public License
16
    along with this program; if not, write to the Free Software
16
    along with this program; if not, write to the Free Software
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
*/
18
*/
19
 
19
 
20
#include "calc_std_state.h"
20
#include "calc_std_state.h"
Line 35... Line 35...
35
        Rect d,wr,sr,r;
35
        Rect d,wr,sr,r;
36
        Boolean spot_taken,too_wide,too_high;
36
        Boolean spot_taken,too_wide,too_high;
37
        WindowPeek peek;
37
        WindowPeek peek;
38
        Point size;
38
        Point size;
39
 
39
 
40
/* As per Human Interface Note 7,
40
        /* As per Human Interface Note 7,
41
 * recalculate standard state starting from user state,
41
         * recalculate standard state starting from user state,
42
 * so that top-left corner of window only moves if necessary.
42
         * so that top-left corner of window only moves if necessary.
43
 */
43
         */
44
 
44
 
45
/* "display each additional window on the screen that
45
        /* "display each additional window on the screen that
46
 *  contains the largest portion of the frontmost window" */
46
         *  contains the largest portion of the frontmost window" */
47
 
47
 
48
        size = natural_size(w);
48
        size = natural_size(w);
49
        d = FrontWindow() ? dominant_device_rect(FrontWindow()) : main_device_rect();
49
        d = FrontWindow() ? dominant_device_rect(FrontWindow()) : main_device_rect();
50
        global_wind_rect(w,&wr);
50
        global_wind_rect(w,&wr);
51
        get_struc_bbox(w,&sr);
51
        get_struc_bbox(w,&sr);