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
626a480e
Commit
626a480e
authored
16 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
add styles field to view struct.
parent
8e0cef7d
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
+17
-17
17 additions, 17 deletions
src/zmapView/zmapView_P.h
with
17 additions
and
17 deletions
src/zmapView/zmapView_P.h
+
17
−
17
View file @
626a480e
...
...
@@ -24,9 +24,9 @@
*
* Description:
* HISTORY:
* Last edited:
Dec 18 09:34
200
8
(edgrif)
* Last edited:
Jan 30 08:43
200
9
(edgrif)
* Created: Thu May 13 15:06:21 2004 (edgrif)
* CVS info: $Id: zmapView_P.h,v 1.4
1
200
8-12-18 13:27:42
edgrif Exp $
* CVS info: $Id: zmapView_P.h,v 1.4
2
200
9-02-03 09:17:16
edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_VIEW_P_H
...
...
@@ -99,7 +99,7 @@ typedef struct _ZMapViewConnectionStruct
}
ZMapViewConnectionStruct
,
*
ZMapViewConnection
;
/* Represents a sub-
request and the
connection that
will service that request
. */
/* Represents a sub-
step to a
connection that
forms part of a step
. */
typedef
struct
_ZMapViewConnectionRequestStruct
{
StepListStepState
state
;
...
...
@@ -115,7 +115,7 @@ typedef struct _ZMapViewConnectionRequestStruct
}
ZMapViewConnectionRequestStruct
,
*
ZMapViewConnectionRequest
;
/* Represents a dispatchable step
(sub-request)
that is part of an overall request. */
/* Represents a dispatchable step that is part of an overall request. */
typedef
struct
_ZMapViewConnectionStepStruct
{
StepListStepState
state
;
...
...
@@ -147,14 +147,11 @@ typedef gboolean (*StepListProcessDataCB)(ZMapViewConnection connection, ZMapSer
typedef
void
(
*
StepListFreeDataCB
)(
ZMapViewConnection
connection
,
ZMapServerReqAny
req_any
)
;
/* Represents a request composed of a list of dispatchable steps
* which should be executed one at a time, waiting until each step is completed
* before executing the next. */
typedef
struct
_ZMapViewConnectionStepListStruct
{
GList
*
current
;
/* Step being currently managed, set
to first step on initialisation,
NULL on termination. */
...
...
@@ -170,6 +167,14 @@ typedef struct _ZMapViewConnectionStepListStruct
}
ZMapViewConnectionStepListStruct
,
*
ZMapViewConnectionStepList
;
/* Specifies the action that should be taken if a sub-step fails in a step list. */
typedef
enum
{
REQUEST_ONFAIL_INVALID
,
REQUEST_ONFAIL_CONTINUE
,
/* Continue other remaining steps. */
REQUEST_ONFAIL_CANCEL_THREAD
,
/* Cancel thread sevicing request. */
REQUEST_ONFAIL_CANCEL_REQUEST
,
/* Cancel whole request. */
}
ActionOnFailureType
;
...
...
@@ -229,32 +234,27 @@ typedef struct _ZMapViewStruct
sequence from. */
ZMapViewConnection
writeback_server
;
/* Which connection to send edits to. */
ActionOnFailureType
on_fail
;
/* Action to take if a sub-step fails. */
ZMapViewConnectionStepList
step_list
;
/* List of steps required to get data from server. */
/* The features....needs thought as to how this updated/constructed..... */
ZMapFeatureContext
features
;
/* Original styles, these are all the styles loaded from the server(s) in their original
* form, i.e. no user settings. */
GData
*
orig_styles
;
/* We need to know if the user has done a revcomp for a few reasons to do with coord
* transforms and the way annotation is done....*/
gboolean
revcomped_features
;
#ifdef RDS_DONT_INCLUDE_UNUSED
/* 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, this set is a merge of all the
* sets from the various servers. */
GData
*
types
;
#endif
/* Be good to get rid of this window stuff in any restructure..... */
GList
*
window_list
;
/* Of ZMapViewWindow. */
ZMapWindowNavigator
navigator_window
;
ZMapXRemoteObj
xremote_client
;
GList
*
navigator_set_names
;
...
...
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