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
b1cb1d47
Commit
b1cb1d47
authored
18 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
remove the hash table of styles for features, we hold it in the canvas items now.
parent
99e66500
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/include/ZMap/zmapFeature.h
+2
-5
2 additions, 5 deletions
src/include/ZMap/zmapFeature.h
src/zmapFeature/zmapFeature.c
+3
-54
3 additions, 54 deletions
src/zmapFeature/zmapFeature.c
with
5 additions
and
59 deletions
src/include/ZMap/zmapFeature.h
+
2
−
5
View file @
b1cb1d47
...
...
@@ -25,9 +25,9 @@
* Description: Data structures describing a sequence feature.
*
* HISTORY:
* Last edited: Jun 2
1
1
6:40
2006 (edgrif)
* Last edited: Jun 2
8
1
0:15
2006 (edgrif)
* Created: Fri Jun 11 08:37:19 2004 (edgrif)
* CVS info: $Id: zmapFeature.h,v 1.7
5
2006-06-2
2
0
8
:1
5:08
edgrif Exp $
* CVS info: $Id: zmapFeature.h,v 1.7
6
2006-06-2
8
0
9
:1
8:35
edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_FEATURE_H
...
...
@@ -301,9 +301,6 @@ typedef struct ZMapFeatureSetStruct_
drawn, this applies only to the set
* itself, _not_ the features within
* the set. */
GHashTable
*
feature_styles
;
/* Cache of styles for features within
* the feature set. */
GData
*
features
;
/* A set of ZMapFeatureStruct. */
}
ZMapFeatureSetStruct
,
*
ZMapFeatureSet
;
...
...
This diff is collapsed.
Click to expand it.
src/zmapFeature/zmapFeature.c
+
3
−
54
View file @
b1cb1d47
...
...
@@ -27,9 +27,9 @@
*
* Exported functions: See zmapView_P.h
* HISTORY:
* Last edited: Jun 2
1
1
6:29
2006 (edgrif)
* Last edited: Jun 2
8
1
0:17
2006 (edgrif)
* Created: Fri Jul 16 13:05:58 2004 (edgrif)
* CVS info: $Id: zmapFeature.c,v 1.3
7
2006-06-2
2
0
8
:1
5:08
edgrif Exp $
* CVS info: $Id: zmapFeature.c,v 1.3
8
2006-06-2
8
0
9
:1
8:35
edgrif Exp $
*-------------------------------------------------------------------
*/
...
...
@@ -93,7 +93,7 @@ static void removeNotFreeFeature(GQuark key_id, gpointer data, gpointer user_dat
static
void
destroyFeatureSet
(
gpointer
data
)
;
static
void
removeNotFreeFeatureSet
(
GQuark
key_id
,
gpointer
data
,
gpointer
user_data
)
;
static
void
styleDestroyCB
(
gpointer
data
)
;
/* !
* A set of functions for allocating, populating and destroying features.
...
...
@@ -556,7 +556,6 @@ ZMapFeatureSet zMapFeatureSetIDCreate(GQuark original_id, GQuark unique_id,
feature_set
->
unique_id
=
unique_id
;
feature_set
->
original_id
=
original_id
;
feature_set
->
style
=
style
;
feature_set
->
feature_styles
=
g_hash_table_new_full
(
NULL
,
NULL
,
NULL
,
styleDestroyCB
)
;
if
(
!
features
)
g_datalist_init
(
&
(
feature_set
->
features
))
;
...
...
@@ -567,41 +566,6 @@ ZMapFeatureSet zMapFeatureSetIDCreate(GQuark original_id, GQuark unique_id,
}
/* Adds a style to the list of feature styles using the styles unique_id as the key.
* NOTE that if the style is already there it is not added as this would overwrite
* the existing style. */
gboolean
zMapFeatureSetAddStyle
(
ZMapFeatureSet
feature_set
,
ZMapFeatureTypeStyle
new_style
)
{
gboolean
result
=
FALSE
;
ZMapFeatureTypeStyle
style
;
zMapAssert
(
feature_set
&&
new_style
)
;
if
(
!
(
style
=
g_hash_table_lookup
(
feature_set
->
feature_styles
,
GINT_TO_POINTER
(
new_style
->
unique_id
))))
{
g_hash_table_insert
(
feature_set
->
feature_styles
,
GINT_TO_POINTER
(
new_style
->
unique_id
),
new_style
)
;
result
=
TRUE
;
}
return
result
;
}
/* Finds a feature style using the styles unique_id. */
ZMapFeatureTypeStyle
zMapFeatureSetFindStyle
(
ZMapFeatureSet
feature_set
,
GQuark
style_id
)
{
ZMapFeatureTypeStyle
style
;
zMapAssert
(
feature_set
&&
style_id
)
;
style
=
g_hash_table_lookup
(
feature_set
->
feature_styles
,
GINT_TO_POINTER
(
style_id
))
;
return
style
;
}
...
...
@@ -677,8 +641,6 @@ void zMapFeatureSetDestroy(ZMapFeatureSet feature_set, gboolean free_data)
}
g_datalist_clear
(
&
(
feature_set
->
features
))
;
g_hash_table_destroy
(
feature_set
->
feature_styles
)
;
g_free
(
feature_set
)
;
return
;
...
...
@@ -1403,16 +1365,3 @@ static void doNewFeatures(GQuark key_id, gpointer data, gpointer user_data)
}
/* Called when a style is destroyed and the styles hash of feature_styles is destroyed. */
static
void
styleDestroyCB
(
gpointer
data
)
{
ZMapFeatureTypeStyle
style
=
(
ZMapFeatureTypeStyle
)
data
;
zMapFeatureTypeDestroy
(
style
)
;
return
;
}
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