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

« back to all changes in this revision

Viewing changes to display/d.colors/colors.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
 
/* curses.c */
2
 
int Initialize_curses(void);
3
 
int Close_curses(void);
4
 
int Write_cats(struct Categories *, int);
5
 
int Write_menu(void);
6
 
int Write_status(int, int, int, int, int, int);
7
 
int Write_message(int, char *);
8
 
int Clear_message(void);
9
 
int Clear_menu(void);
10
 
int Write_menu_line(int, char *);
11
 
int Replot_screen(void);
12
 
int Get_curses_text(char[]);
13
 
 
14
 
/* get_info.c */
15
 
int get_map_info(char *, char *);
16
 
 
17
 
/* interact.c */
18
 
int interact(struct Categories *, struct Colors *, char *, char *);
19
 
int shift_color(int, int);
20
 
 
21
 
/* main.c */
22
 
int main(int, char **);
23
 
 
24
 
/* set_sigs.c */
25
 
int set_signals(void);
26
 
 
27
 
/* sigint.c */
28
 
void sigint(int);
29
 
 
30
 
/* tbl_toggle.c */
31
 
int table_toggle(char *, char *, struct Colors *);