Skip to content
Snippets Groups Projects
Commit e44ea6f4 authored by edgrif's avatar edgrif
Browse files

Add types to control struct.

parent 757667e4
No related branches found
No related tags found
No related merge requests found
......@@ -25,9 +25,9 @@
* Description: Private header for interface that creates/manages/destroys
* instances of ZMaps.
* HISTORY:
* Last edited: Jul 13 18:57 2004 (edgrif)
* Last edited: Jul 15 15:52 2004 (edgrif)
* Created: Thu Jul 24 14:39:06 2003 (edgrif)
* CVS info: $Id: zmapControl_P.h,v 1.5 2004-07-14 09:08:43 edgrif Exp $
* CVS info: $Id: zmapControl_P.h,v 1.6 2004-07-15 15:11:25 edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_CONTROL_P_H
......@@ -53,6 +53,7 @@ typedef enum {
/* A ZMap Control struct represents a single top level window which is a "ZMap", within
* this top level window there will be one or more zmap "Views". */
typedef struct _ZMapStruct
......@@ -91,12 +92,13 @@ typedef struct _ZMapStruct
/* List of views in this zmap. */
GList *view_list ;
#ifdef ED_G_NEVER_INCLUDE_THIS_CODE
ZMapView curr_view ;
#endif /* ED_G_NEVER_INCLUDE_THIS_CODE */
GList *view_list ;
/* In DAS2 terminology methods are types...easy to change if we don't like the name.
* These are the stylesheets in effect for the feature sets. */
GData *types ;
} ZMapStruct ;
......@@ -118,13 +120,16 @@ typedef struct _ZMapPaneStruct
/* Functions internal to zmapControl. */
gboolean zmapControlWindowCreate (ZMap zmap, char *zmap_id) ;
gboolean zmapControlWindowCreate (ZMap zmap) ;
GtkWidget *zmapControlWindowMakeMenuBar(ZMap zmap) ;
GtkWidget *zmapControlWindowMakeButtons(ZMap zmap) ;
GtkWidget *zmapControlWindowMakeFrame (ZMap zmap) ;
GtkWidget *zmapControlCreateNavigator(FooCanvas **canvas_out) ;
void zmapControlWindowDestroy (ZMap zmap) ;
GtkWidget *zmapControlNavigatorCreate(FooCanvas **canvas_out) ;
void zmapControlNavigatorNewView(ZMapMapBlock sequence_to_parent) ;
void zmapControlTopLevelKillCB(ZMap zmap) ;
void zmapControlLoadCB (ZMap zmap) ;
void zmapControlResetCB (ZMap zmap) ;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment