Newer
Older
/* File: zmapWindowContainerChildren_I.h
* Author: Roy Storey (rds@sanger.ac.uk)
*-------------------------------------------------------------------
* ZMap is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* or see the on-line version at http://www.gnu.org/copyleft/gpl.txt
*-------------------------------------------------------------------
* This file is part of the ZMap genome database package
* originally written by:
*
* Ed Griffiths (Sanger Institute, UK) edgrif@sanger.ac.uk,
* Roy Storey (Sanger Institute, UK) rds@sanger.ac.uk
*
* Description:
*
* Exported functions: See XXXXXXXXXXXXX.h
* HISTORY:
* CVS info: $Id: zmapWindowContainerChildren_I.h,v 1.3 2010-05-24 14:18:05 edgrif Exp $
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
*-------------------------------------------------------------------
*/
#ifndef ZMAP_WINDOW_CONTAINER_CHILDREN_I_H
#define ZMAP_WINDOW_CONTAINER_CHILDREM_I_H
#include <zmapWindowContainerChildren.h>
typedef enum
{
_CONTAINER_BACKGROUND_POSITION = 0,
_CONTAINER_UNDERLAY_POSITION = 1,
_CONTAINER_FEATURES_POSITION = 2,
_CONTAINER_OVERLAY_POSITION = 3,
}ContainerPositions;
/* ==== Features ==== */
typedef struct _zmapWindowContainerFeaturesClassStruct
{
FooCanvasGroupClass __parent__;
} zmapWindowContainerFeaturesClassStruct;
typedef struct _zmapWindowContainerFeaturesStruct
{
FooCanvasGroup __parent__;
/* Nothing as yet, but plenty of scope... */
} zmapWindowContainerFeaturesStruct;
/* ==== Underlay ==== */
typedef struct _zmapWindowContainerUnderlayClassStruct
{
FooCanvasGroupClass __parent__;
} zmapWindowContainerUnderlayClassStruct;
typedef struct _zmapWindowContainerUnderlayStruct
{
FooCanvasGroup __parent__;
struct
{
unsigned int max_width : 1;
unsigned int max_height : 1;
}flags;
} zmapWindowContainerUnderlayStruct;
/* ==== Overlay ==== */
typedef struct _zmapWindowContainerOverlayClassStruct
{
FooCanvasGroupClass __parent__;
} zmapWindowContainerOverlayClassStruct;
typedef struct _zmapWindowContainerOverlayStruct
{
FooCanvasGroup __parent__;
struct
{
unsigned int max_width : 1;
unsigned int max_height : 1;
}flags;
} zmapWindowContainerOverlayStruct;
/* ==== Background ==== */
typedef struct _zmapWindowContainerBackgroundClassStruct
{
FooCanvasGroupClass __parent__;
} zmapWindowContainerBackgroundClassStruct;
typedef struct _zmapWindowContainerBackgroundStruct
{
FooCanvasRect __parent__;
GdkColor original_colour;
unsigned int has_bg_colour : 1;
} zmapWindowContainerBackgroundStruct;
#endif /* ZMAP_WINDOW_CONTAINER_GROUP_I_H */