~ubuntu-branches/ubuntu/quantal/gnumeric/quantal

« back to all changes in this revision

Viewing changes to src/application.h

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2009-06-07 11:10:47 UTC
  • mfrom: (1.1.19 upstream) (2.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090607111047-l3rtbzfjxvmi1kx0
Tags: 1.9.8-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Promoted gnumeric-doc to Recommends in gnumeric package for help to be
    installed automatically
  - gnumeric-gtk is a transitional package
  - gnumeric conflicts with gnumeric-gtk << 1.8.3-3ubuntu1
  - call initltool-update in po*
  - remove psiconv support (psiconv is in universe):
    o debian/control: remove B-D on libpsiconv-dev
    o debian/rules: don't pass --with-psiconv to ./configure

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
GSList      *gnm_app_history_get_list      (int max_elements);
28
28
void         gnm_app_history_add           (char const *filename, const char *mimetype);
29
29
 
 
30
void         gnm_app_recalc_start          (void);
 
31
void         gnm_app_recalc_finish         (void);
 
32
 
30
33
/* GtkFileFilter */
31
34
void        *gnm_app_create_opener_filter (void);
32
35
 
37
40
void         gnm_app_set_transition_keys  (gboolean);
38
41
gboolean     gnm_app_live_scrolling       (void);
39
42
int          gnm_app_auto_expr_recalc_lag (void);
 
43
gboolean     gnm_app_detachable_toolbars  (void);
40
44
 
41
45
double       gnm_app_display_dpi_get      (gboolean horizontal);
42
46
double       gnm_app_dpi_to_pixels        (void);
79
83
        GnmActionHandler        handler;
80
84
};
81
85
typedef struct {
82
 
        char const *group_name;
 
86
        char *group_name;
83
87
        GSList     *actions;
84
88
        char       *layout;
85
89
        char const *domain;
92
96
void       gnm_action_free (GnmAction *action);
93
97
 
94
98
GnmAppExtraUI *gnm_app_add_extra_ui (char const *group_name,
95
 
                                     GSList *actions, char *layout,
 
99
                                     GSList *actions, const char *layout,
96
100
                                     char const *domain,
97
101
                                     gpointer user_data);
98
102
void       gnm_app_remove_extra_ui  (GnmAppExtraUI *extra_ui);