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
dc1b7eab
Commit
dc1b7eab
authored
19 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
Add function to remove feature sets from the hash, and some new container funcs.
parent
df9056c5
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/zmapWindow/zmapWindow_P.h
+15
-9
15 additions, 9 deletions
src/zmapWindow/zmapWindow_P.h
with
15 additions
and
9 deletions
src/zmapWindow/zmapWindow_P.h
+
15
−
9
View file @
dc1b7eab
...
...
@@ -26,9 +26,9 @@
* Description: Defines internal interfaces/data structures of zMapWindow.
*
* HISTORY:
* Last edited: Oct 1
0 08:44
2005 (edgrif)
* Last edited: Oct 1
3 11:25
2005 (edgrif)
* Created: Fri Aug 1 16:45:58 2003 (edgrif)
* CVS info: $Id: zmapWindow_P.h,v 1.8
2
2005-10-1
0
1
0
:3
1
:3
6
edgrif Exp $
* CVS info: $Id: zmapWindow_P.h,v 1.8
3
2005-10-1
3
1
3
:3
0
:3
7
edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_WINDOW_P_H
...
...
@@ -236,6 +236,10 @@ typedef struct _ZMapWindowStruct
double
column_gap
;
/* horizontal gap between columns. */
gboolean
keep_empty_cols
;
/* If TRUE then columns are displayed
even if they have no features. */
GtkWidget
*
text
;
GdkAtom
zmap_atom
;
void
*
app_data
;
...
...
@@ -336,6 +340,7 @@ void zmapWindowSetPageIncr (ZMapWindow window);
void
zmapWindowLongItemCheck
(
ZMapWindow
window
,
FooCanvasItem
*
item
,
double
start
,
double
end
)
;
void
zmapWindowLongItemCrop
(
ZMapWindow
window
)
;
gboolean
zmapWindowLongItemRemove
(
GList
**
long_items
,
FooCanvasItem
*
item
)
;
void
zmapWindowLongItemFree
(
GList
*
long_items
)
;
void
zmapWindowDrawFeatures
(
ZMapWindow
window
,
...
...
@@ -381,23 +386,24 @@ FooCanvasItem *zmapWindowFToIFindSetItem(GHashTable *feature_to_context_hash,
FooCanvasItem
*
zmapWindowFToIFindFeatureItem
(
GHashTable
*
feature_to_context_hash
,
ZMapFeature
feature
)
;
FooCanvasItem
*
zmapWindowFToIFindItemChild
(
GHashTable
*
feature_to_context_hash
,
ZMapFeature
feature
,
int
child_start
,
int
child_end
)
;
gboolean
zmapWindowFToIRemoveSet
(
GHashTable
*
feature_to_context_hash
,
GQuark
align_id
,
GQuark
block_id
,
GQuark
set_id
,
ZMapStrand
set_strand
)
;
void
zmapWindowFToIDestroy
(
GHashTable
*
feature_to_item_hash
)
;
void
zmapWindowPrintItemCoords
(
FooCanvasItem
*
item
)
;
void
zmapWindowPrintItemCoords
(
FooCanvasItem
*
item
)
;
void
my_foo_canvas_item_w2i
(
FooCanvasItem
*
item
,
double
*
x
,
double
*
y
)
;
void
my_foo_canvas_item_i2w
(
FooCanvasItem
*
item
,
double
*
x
,
double
*
y
)
;
void
my_foo_canvas_item_goto
(
FooCanvasItem
*
item
,
double
*
x
,
double
*
y
)
;
void
zmapWindowPrintW2I
(
FooCanvasItem
*
item
,
char
*
text
,
double
x1
,
double
y1
)
;
void
zmapWindowPrintI2W
(
FooCanvasItem
*
item
,
char
*
text
,
double
x1
,
double
y1
)
;
gboolean
zmapWindowCallBlixem
(
ZMapWindow
window
,
FooCanvasItem
*
item
,
gboolean
oneType
);
/* Window Editor functions */
ZMapWindowEditor
zmapWindowEditorCreate
(
ZMapWindow
zmapWindow
,
FooCanvasItem
*
item
);
void
zmapWindowEditorDraw
(
ZMapWindowEditor
editor
);
/* End of Window Editor functions */
void
zmapWindow_set_scroll_region
(
ZMapWindow
window
,
double
y1a
,
double
y2a
);
...
...
@@ -408,8 +414,6 @@ ZMapWindowClampType zmapWindowClampStartEnd(ZMapWindow window,
double
*
top_inout
,
double
*
bot_inout
)
;
void
zmapWindowMaximiseRectangle
(
FooCanvasItem
*
rectangle
)
;
void
zMapWindowMoveItem
(
ZMapWindow
window
,
ZMapFeature
origFeature
,
ZMapFeature
modFeature
,
FooCanvasItem
*
item
);
...
...
@@ -432,9 +436,11 @@ FooCanvasGroup *zmapWindowContainerGetSuperGroup(FooCanvasGroup *container_paren
FooCanvasGroup
*
zmapWindowContainerGetParent
(
FooCanvasItem
*
any_container_child
)
;
FooCanvasGroup
*
zmapWindowContainerGetFeatures
(
FooCanvasGroup
*
container_parent
)
;
FooCanvasItem
*
zmapWindowContainerGetBackground
(
FooCanvasGroup
*
container_parent
)
;
gboolean
zmapWindowContainerHasFeatures
(
FooCanvasGroup
*
container_parent
)
;
void
zmapWindowContainerSetBackgroundSize
(
FooCanvasGroup
*
container_parent
,
double
y_extent
)
;
void
zmapWindowContainerMaximiseBackground
(
FooCanvasGroup
*
container_parent
)
;
void
zmapWindowContainerPrint
(
FooCanvasGroup
*
container_parent
)
;
void
zmapWindowContainerDestroy
(
FooCanvasGroup
*
container_parent
)
;
void
zmapWindowCanvasGroupChildSort
(
FooCanvasGroup
*
group_inout
)
;
...
...
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