~ubuntu-branches/ubuntu/raring/gdis/raring-proposed

« back to all changes in this revision

Viewing changes to file.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Leidert (dale)
  • Date: 2009-04-06 17:12:18 UTC
  • mfrom: (3.1.3 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090406171218-uizoe126jrq09ytt
Tags: 0.90-1
* New upstream release 0.90.
* Acknowledge NMU (closes: #492994). Thanks to Neil Williams.

* makefile.debian: Upstream doesn't provide a Makefile to edit - so created
  our own.
* debian/compat: Added and set to be 5.
* debian/control: Added Homepage, Vcs* and DM-Upload-Allowed fields.
  (Maintainer): Set to the debichem team with approval by Noèl.
  (Uploaders): Added myself.
  (Build-Depends): Increased debhelper version to 5. Removed glutg3-dev.
  Added dpatch.
  (Standards-Version): Bumped to 3.8.1.
  (Description): Removed homepage. Fixed a typo.
* debian/copyright: Updated, completed and adjusted.
* debian/dirs: Dropped useless file.
* debian/docs: Renamed to debian/gdis.docs.
* debian/menu: Renamed to debian/gdis.menu.
  (section): Fixed accordingly to policy.
* debian/gdis.1: Just some formatting changes.
* debian/gdis.desktop: Added file (with small fixes) provided by Phill Bull
  (LP: #111353).
* debian/gdis.install: Added.
* debian/rules: Cleaned. Installation is now done by dh_install. Make sure,
  the CVS directory is not copied. Added dh_desktop call.
* debian/source.lintian-overrides: makefile.debian is created for Debian but
  lives outside debian/.
* debian/watch: Added.
* debian/README.build: Dropped.
* debian/README.source: Added to be compliant to the policy v3.8.
* debian/patches/Debian_make.dpatch: Added.
  - gdis.h (ELEM_FILE): Moved fix for gdis.elemts path (#399132) to this
    patch.
* debian/patches/00list: Added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
/* main */
49
49
void file_init(void);
 
50
void file_free(void);
50
51
gint fgetline(FILE *, gchar *);
51
52
gchar *file_read_line(FILE *);
 
53
void file_skip_comment(gint);
 
54
 
52
55
gint set_path(const gchar *);
53
 
GSList *get_dir_list(const char *, gint);
 
56
GSList *file_dir_list(const gchar *, gint);
 
57
GSList *file_dir_list_pattern(const gchar *, const gchar *);
 
58
 
54
59
struct file_pak *get_file_info(gpointer, gint);
55
60
void file_load(gchar *, struct model_pak *);
56
61
void file_save(void);
60
65
gint file_extension_valid(const gchar *);
61
66
gchar *file_extension_get(const gchar *);
62
67
gint file_byte_size(const gchar *);
 
68
gchar *file_find_program(const gchar *);
63
69
 
64
70
/* dialog control */
65
71
void file_dialog(gchar *, gchar *, gint, 
89
95
gint write_bgf(gchar *, struct model_pak *);
90
96
gint write_cgf(gchar *, struct model_pak *);
91
97
gint write_dlp(gchar *, struct model_pak *);
 
98
gint write_gromacs(gchar *, struct model_pak *);
 
99
gint write_castep_cell(gchar *, struct model_pak *);
 
100
gint write_meta(gchar *, struct model_pak *);
92
101
 
93
102
void write_povray_colour_textures(FILE *, struct model_pak *, int);
94
103
void write_sfc_data(FILE *);
134
143
gint read_bgf(gchar *, struct model_pak *);
135
144
gint read_cgf(gchar *, struct model_pak *);
136
145
gint read_dlp(gchar *, struct model_pak *);
 
146
gint read_gromacs_gro(gchar *, struct model_pak *);
137
147
 
138
148
gint project_read(gchar *, struct model_pak *);
139
149
 
149
159
gint read_gauss_out_frame(FILE *, struct model_pak *);
150
160
gint read_xyz_frame(FILE *, struct model_pak *);
151
161
gint read_dlpoly_frame(FILE *, struct model_pak *);
 
162
gint read_dmol_frame(FILE *, struct model_pak *);
152
163
 
153
164
gint load_planes(gchar *, struct model_pak *);
154
165
 
 
166
gint mark_trj_frames(struct model_pak *);
 
167
 
155
168
void import_planes(gchar *);
156
169
 
157
170
void swap_bytes(void *, const gint);
172
185
GSList *fdf_species_build(struct model_pak *);
173
186
gint fdf_species_index(gchar *, GSList *);
174
187
 
 
188
GSList *gromacs_read_ff(const gchar *);
 
189