~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to display/d.zoom/local_proto.h

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <grass/gis.h>
2
 
#include <grass/config.h>
3
 
 
4
 
/* box.c */
5
 
int make_window_box(struct Cell_head *, double, int, int);
6
 
 
7
 
/* center.c */
8
 
int make_window_center(struct Cell_head *, double, double, double);
9
 
 
10
 
/* returns.c */
11
 
int get_wind_bot(void);
12
 
int get_wind_top(void);
13
 
int get_wind_rite(void);
14
 
int get_wind_left(void);
15
 
int get_map_bot(void);
16
 
int get_map_top(void);
17
 
int get_map_left(void);
18
 
int get_map_rite(void);
19
 
int get_wind_y_pos(float);
20
 
int get_wind_x_pos(float);
21
 
 
22
 
/* zoom.c */
23
 
int zoomwindow(struct Cell_head *, int, double);
24
 
 
25
 
/* pan.c */
26
 
int do_pan(struct Cell_head *);
27
 
int pan_window(struct Cell_head *, int, int);
28
 
 
29
 
/* redraw.c */
30
 
int redraw(void);
31
 
 
32
 
/* print.c */
33
 
int print_coor(struct Cell_head *, double, double);
34
 
int print_win(struct Cell_head *, double, double, double, double);
35
 
int print_limit(struct Cell_head *, struct Cell_head *);
36
 
 
37
 
/* set.c */
38
 
int set_win(struct Cell_head *, double, double, double, double, int);
39
 
 
40
 
/* quit.c */
41
 
int quit(struct Cell_head *, struct Cell_head *);
42
 
 
43
 
#ifdef MAIN
44
 
#define GLOBAL
45
 
#else
46
 
#define GLOBAL  extern
47
 
#endif
48
 
 
49
 
GLOBAL char *cmd;
50
 
GLOBAL char **rast, **vect, **list;
51
 
GLOBAL int nrasts, nvects, nlists;
52
 
GLOBAL double U_east, U_west, U_south, U_north;