Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
zmap
Commits
5d7685f1
Commit
5d7685f1
authored
20 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
Add new ZMapViewWindowStruct, represents a single window of a view.
parent
29f61952
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/zmapView/zmapView_P.h
+20
-3
20 additions, 3 deletions
src/zmapView/zmapView_P.h
with
20 additions
and
3 deletions
src/zmapView/zmapView_P.h
+
20
−
3
View file @
5d7685f1
...
...
@@ -24,9 +24,9 @@
*
* Description:
* HISTORY:
* Last edited: Jul
1 14:53
2004 (
rnc
)
* Last edited: Jul
13 16:14
2004 (
edgrif
)
* Created: Thu May 13 15:06:21 2004 (edgrif)
* CVS info: $Id: zmapView_P.h,v 1.
4
2004-07-
02 13:50:25 rnc
Exp $
* CVS info: $Id: zmapView_P.h,v 1.
5
2004-07-
14 09:16:47 edgrif
Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_VIEW_P_H
...
...
@@ -53,18 +53,35 @@ typedef struct _ZMapViewStruct
GtkWidget
*
parent_widget
;
GList
*
window_list
;
GList
*
window_list
;
/* Of ZMapViewWindowStruct. */
GList
*
connection_list
;
void
*
app_data
;
#ifdef ED_G_NEVER_INCLUDE_THIS_CODE
ZMapViewCallbackFunc
app_destroy_cb
;
#endif
/* ED_G_NEVER_INCLUDE_THIS_CODE */
ZMapRegion
*
zMapRegion
;
/* the region holding all the SEGS - may be redundant*/
}
ZMapViewStruct
;
/* We have this because it enables callers to call on a window but us to get the corresponding view. */
typedef
struct
_ZMapViewWindowStruct
{
ZMapView
parent_view
;
ZMapWindow
window
;
}
ZMapViewWindowStruct
;
int
zMapWindowGetRegionLength
(
ZMapWindow
window
);
Coord
zMapWindowGetRegionArea
(
ZMapWindow
window
,
int
area
);
void
zMapWindowSetRegionArea
(
ZMapWindow
window
,
Coord
area
,
int
num
);
gboolean
zMapWindowGetRegionReverse
(
ZMapWindow
window
);
#endif
/* !ZMAP_VIEW_P_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment