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
8eabd1d3
Commit
8eabd1d3
authored
17 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
add types/calls to support better compress calls.
parent
bbddf368
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
+12
-6
12 additions, 6 deletions
src/zmapWindow/zmapWindow_P.h
with
12 additions
and
6 deletions
src/zmapWindow/zmapWindow_P.h
+
12
−
6
View file @
8eabd1d3
...
...
@@ -26,9 +26,9 @@
* Description: Defines internal interfaces/data structures of zMapWindow.
*
* HISTORY:
* Last edited: Jan
7
1
2:16
2008 (
rds
)
* Last edited: Jan
8
1
4:39
2008 (
edgrif
)
* Created: Fri Aug 1 16:45:58 2003 (edgrif)
* CVS info: $Id: zmapWindow_P.h,v 1.20
8
2008-01-0
7
1
3:29:00 rds
Exp $
* CVS info: $Id: zmapWindow_P.h,v 1.20
9
2008-01-0
8
1
4:49:46 edgrif
Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_WINDOW_P_H
...
...
@@ -147,7 +147,9 @@ typedef struct
{
ZMapWindow
window
;
GList
*
compressed_cols
;
/* Columns hidden for "compress" option. */
/* Columns hidden or rebumped for "compress" option. */
GList
*
compressed_cols
;
GList
*
bumped_cols
;
}
ZMapWindowItemFeatureBlockDataStruct
,
*
ZMapWindowItemFeatureBlockData
;
...
...
@@ -309,12 +311,14 @@ typedef enum
}
ZMapWindowColConfigureMode
;
/* Controls mode of column compression, default is ZMAPWWINDOW_COMPRESS_MARK_VISIBLE */
/* Controls mode of column compression: this removes or compresses columns to the width required
* for the features within the whole sequence, the marked area or just the visible window. */
typedef
enum
{
ZMAPWWINDOW_COMPRESS_INVALID
,
ZMAPWWINDOW_COMPRESS_VISIBLE_ONLY
,
ZMAPWWINDOW_COMPRESS_MARK_VISIBLE
ZMAPWWINDOW_COMPRESS_NONE
,
/* Compress for whole sequence. */
ZMAPWWINDOW_COMPRESS_VISIBLE
,
/* Compress for visible window only. */
ZMAPWWINDOW_COMPRESS_MARK
/* Compress for mark region. */
}
ZMapWindowCompressMode
;
...
...
@@ -968,6 +972,8 @@ void zmapWindowColumnConfigureDestroy(ZMapWindow window) ;
void
zmapWindowCompressCols
(
FooCanvasItem
*
column_item
,
ZMapWindow
window
,
ZMapWindowCompressMode
compress_mode
)
;
void
zmapWindowColumnBump
(
FooCanvasItem
*
bump_item
,
ZMapStyleOverlapMode
bump_mode
)
;
void
zmapWindowColumnBumpRange
(
FooCanvasItem
*
bump_item
,
ZMapStyleOverlapMode
bump_mode
,
ZMapWindowCompressMode
compress_mode
)
;
void
zmapWindowColumnWriteDNA
(
ZMapWindow
window
,
FooCanvasGroup
*
column_parent
);
void
zmapWindowColumnSetMagState
(
ZMapWindow
window
,
FooCanvasGroup
*
col_group
)
;
...
...
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