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
4b37a1f0
Commit
4b37a1f0
authored
20 years ago
by
edgrif
Browse files
Options
Downloads
Patches
Plain Diff
add parent widget parameter, window is now not top level widget.
parent
05264354
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/include/ZMap/zmapWindow.h
+9
-9
9 additions, 9 deletions
src/include/ZMap/zmapWindow.h
with
9 additions
and
9 deletions
src/include/ZMap/zmapWindow.h
+
9
−
9
View file @
4b37a1f0
...
...
@@ -23,12 +23,13 @@
* Ed Griffiths (Sanger Institute, UK) edgrif@sanger.ac.uk and
* Simon Kelley (Sanger Institute, UK) srk@sanger.ac.uk
*
* Description:
* Exported functions: See XXXXXXXXXXXXX.h
* Description: Defines interface to code that creates/handles a
* window displaying genome data.
*
* HISTORY:
* Last edited: Ma
r 3
16:2
3
2004 (edgrif)
* Last edited: Ma
y 17
16:2
9
2004 (edgrif)
* Created: Thu Jul 24 15:21:56 2003 (edgrif)
* CVS info: $Id: zmapWindow.h,v 1.
2
2004-0
3
-1
2
1
5:12:13
edgrif Exp $
* CVS info: $Id: zmapWindow.h,v 1.
3
2004-0
5
-1
7
1
6:22:45
edgrif Exp $
*-------------------------------------------------------------------
*/
#ifndef ZMAP_WINDOW_H
...
...
@@ -36,16 +37,15 @@
#include
<ZMap/zmapSys.h>
/* For callback funcs... */
/* Window stuff, callbacks.... */
typedef
enum
{
ZMAP_WINDOW_INIT
,
ZMAP_WINDOW_LOAD
,
ZMAP_WINDOW_STOP
,
ZMAP_WINDOW_QUIT
}
ZmapWindowCmd
;
/* Opaque type, represents an individual ZMap window. */
typedef
struct
_ZMapWindowStruct
*
ZMapWindow
;
/* Window stuff, callbacks, will need changing.... */
typedef
enum
{
ZMAP_WINDOW_INIT
,
ZMAP_WINDOW_LOAD
,
ZMAP_WINDOW_STOP
,
ZMAP_WINDOW_QUIT
}
ZmapWindowCmd
;
ZMapWindow
zMapWindowCreate
(
char
*
sequence
,
char
*
zmap_id
,
ZMapWindow
zMapWindowCreate
(
GtkWidget
*
parent_widget
,
char
*
sequence
,
zmapVoidIntCallbackFunc
app_routine
,
void
*
app_data
)
;
void
zMapWindowDisplayData
(
ZMapWindow
window
,
void
*
data
)
;
void
zMapWindowReset
(
ZMapWindow
window
)
;
...
...
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