File: pepactivezonecol.c

package info (click to toggle)
acedb 4.9.39%2Bdfsg.02-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 33,796 kB
  • sloc: ansic: 256,989; perl: 2,803; cpp: 2,534; csh: 1,712; python: 862; sh: 658; makefile: 298; awk: 249; lex: 225; yacc: 221
file content (126 lines) | stat: -rw-r--r-- 4,111 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*  File: pepfeaturecol.c
 *  Author: Ian Longden (il@sanger.ac.uk)
 *  Copyright (C) J Thierry-Mieg and R Durbin, 1992
 * -------------------------------------------------------------------
 * Acedb is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 * or see the on-line version at http://www.gnu.org/copyleft/gpl.txt
 * -------------------------------------------------------------------
 * This file is part of the ACEDB genome database package, written by
 *      Richard Durbin (MRC LMB, UK) rd@mrc-lmb.cam.ac.uk, and
 *      Jean Thierry-Mieg (CRBM du CNRS, France) mieg@kaa.cnrs-mop.fr
 *
 * Description: feature display for fmap package
 * Exported functions:
 * HISTORY:
 * Last edited: Oct 11 10:36 1996 (srk)
 * Created: Tue 24 16:23 1996 (il)
 *-------------------------------------------------------------------
 */

/* $Id: pepactivezonecol.c,v 1.3 1999/09/01 10:55:34 fw Exp $ */
/* model additions
under ?Colomns put 		pepActiveZone	
*/

#include "mystdlib.h"
#include "pepdisp.h"
BOOL alignDisplay (KEY key, KEY from, BOOL isOldGraph);

static void activeZoneDraw (COLINSTANCE instance, float *offset) 
{ 
  int box ;
  float y1, y2 ;
  PEPLOOK *look = (PEPLOOK*) instance->map->look ;
  COLCONTROL control = instance->map->control ;
      
  y1 = MAP2GRAPH(look->map, look->activeStart) ;
  y2 = MAP2GRAPH(look->map, look->activeEnd) ;
  if (y1 > control->graphHeight -0.5 || y2 < control->topMargin+0.5)
    return ;
  
  if (y1 < control->topMargin+0.5)
    y1 = control->topMargin+0.5 ;
  
  if (y2 > control->graphHeight -0.5)
    y2 = control->graphHeight -0.5 ;
  
  box = graphBoxStart() ;
  graphRectangle (*offset , y1, *offset+1.0, y2) ;
 
  graphBoxEnd() ;
  controlRegBox (instance, box, (void *)1) ;
  graphBoxDraw (box, BLACK, BLUE) ;
  *offset += 3 ;
}

/*******************************************************************************************************/
static BOOL activeZoneUnSetSelect(COLINSTANCE instance, int box)
{
  MAPCONTROL map = instance->map;
  COLCONTROL control = map->control;
  PEPLOOK *look = map->look;

  control->activeKey = 0;
  look->startcol = 0;
  look->endcol = 0;
  
  *look->messageText = 0;
  
  if(look->messageBox)
    graphBoxDraw(look->messageBox,-1,-1);

  return FALSE;
}
/****************************************************************************************************/
static BOOL activeZoneSetSelect(COLINSTANCE instance, int box, double x, double y)
{
  MAPCONTROL map = instance->map;
  COLCONTROL control = map->control;
  PEPLOOK *look = map->look;

  control->activeKey = 0;
  control->activeBox = box;
  look->startcol = look->activeStart;
  look->endcol = look->activeEnd;

  return FALSE;

}
/****************************************************************************************************/
static void activeZoneDoColour(COLINSTANCE instance, int box)
{
  MAPCONTROL map = instance->map;
  COLCONTROL control = map->control;

  if(instance == control->activeInstance){
    graphBoxDraw(box, BLACK,activecol);
  }
  else
      graphBoxDraw(box,BLACK,BLUE);
}

/****************************************************************************************************/

extern  BOOL activeZoneCreate (COLINSTANCE instance, OBJ init) 
{
  instance->draw = activeZoneDraw ;
  instance->doColour = activeZoneDoColour; 
  instance->unSelectBox = activeZoneUnSetSelect; 
  instance->setSelectBox =  activeZoneSetSelect;
/*  instance->save = activeZoneSave;*/

  return TRUE;
}