~ubuntu-branches/ubuntu/vivid/gdis/vivid

« back to all changes in this revision

Viewing changes to edit.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2006-11-18 23:41:00 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20061118234100-85eekne977b0eznj
Tags: 0.89-1ubuntu1
* Merge from Debian unstable. Ubuntu changes are as follows:
* Add desktop file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
/**************/
3
 
/* structures */
4
 
/**************/
5
 
 
6
 
struct transform_pak
7
 
{
8
 
gint id;
9
 
gdouble matrix[9];
10
 
gdouble vector[3];
11
 
gdouble scalar;
12
 
};
13
 
 
14
 
/**************/
15
3
/* prototypes */
16
4
/**************/
17
5
 
27
15
 
28
16
void elem_change_colour(GtkWidget *, gpointer *);
29
17
 
30
 
gint copy_gulp_data(struct model_pak *, struct model_pak *);
31
 
gint copy_gulp_extra(struct model_pak *, struct model_pak *);
32
 
gint free_gulp_data(struct model_pak *);
 
18
void gulp_init(gpointer);
 
19
void gulp_files_init(struct model_pak *);
 
20
void gulp_data_free(struct model_pak *);
 
21
void gulp_files_free(struct model_pak *);
 
22
void gulp_data_copy(struct model_pak *, struct model_pak *);
 
23
void gulp_extra_copy(struct model_pak *, struct model_pak *);
 
24
 
 
25
gint gulp_cosmo_points(gint, gint, gint);
 
26
 
 
27
gint free_moldy_data(struct model_pak *);
33
28
 
34
29
gint search_basename(const gchar *);
35
30
gint dialog_active(gint);
38
33
 
39
34
void type_model(const gchar *, struct model_pak *);
40
35
 
41
 
void connect_page(GtkWidget *);
42
36
void periodicity_page(GtkWidget *);
43
37
 
 
38
void atom_numbers_box(GtkWidget *);
 
39