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
|
/* Project nGenEx
Destroyer Studios LLC
Copyright © 1997-2004. All Rights Reserved.
SUBSYSTEM: nGenEx.lib
FILE: Layout.h
AUTHOR: John DiCamillo
OVERVIEW
========
Layout Manager class for ActiveWindow panels
*/
#ifndef Layout_h
#define Layout_h
#include "ActiveWindow.h"
#include "ArrayList.h"
// +--------------------------------------------------------------------+
class Layout
{
public:
static const char* TYPENAME() { return "Layout"; }
Layout();
virtual ~Layout();
virtual bool DoLayout(ActiveWindow* panel);
virtual void Clear();
virtual void AddCol(DWORD min_width, float col_factor);
virtual void AddRow(DWORD min_height, float row_factor);
virtual void SetConstraints(const ArrayList& min_x,
const ArrayList& min_y,
const FloatList& weight_x,
const FloatList& weight_y);
virtual void SetConstraints(const FloatList& min_x,
const FloatList& min_y,
const FloatList& weight_x,
const FloatList& weight_y);
virtual void SetConstraints(int ncols,
int nrows,
const int* min_x,
const int* min_y,
const float* weight_x,
const float* weight_y);
protected:
virtual void ScaleWeights();
virtual void CalcCells(DWORD w, DWORD h, ArrayList& cell_x, ArrayList& cell_y);
ArrayList cols;
ArrayList rows;
FloatList col_weights;
FloatList row_weights;
};
#endif Layout_h
|