~ubuntu-branches/ubuntu/natty/gnumeric/natty

« back to all changes in this revision

Viewing changes to src/commands.h

  • Committer: Bazaar Package Importer
  • Author(s): Bilal Akhtar
  • Date: 2010-11-28 11:33:23 UTC
  • mfrom: (2.1.26 sid)
  • Revision ID: james.westby@ubuntu.com-20101128113323-fx05jeip07mnwyvc
Tags: 1.10.12-1ubuntu1
* Merge from Debian Unstable. Remaining changes:
  - debian/control: Promote gnumeric-doc to Recommends in package gnumeric
    so that help gets installed automatically.
  - debian/rules: run intltool-update in po{,-functions}/

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
GString *gnm_cmd_trunc_descriptor (GString *src, gboolean *truncated);
19
19
gboolean cmd_cell_range_is_locked_effective (Sheet *sheet, GnmRange *range,
20
 
                                             WorkbookControl *wbc, 
 
20
                                             WorkbookControl *wbc,
21
21
                                             char const *cmd_name);
22
22
gboolean cmd_selection_is_locked_effective (Sheet *sheet, GSList *selection,
23
 
                                            WorkbookControl *wbc, 
 
23
                                            WorkbookControl *wbc,
24
24
                                            char const *cmd_name);
25
25
 
26
26
/* Commands: note that any extensions should ideally use cmd_generic* */
57
57
gboolean cmd_resize_colrow      (WorkbookControl *wbc, Sheet *sheet,
58
58
                                 gboolean is_col, ColRowIndexList *selection,
59
59
                                 int new_size);
60
 
gboolean cmd_autofit_selection  (WorkbookControl *wbc, SheetView *sv, Sheet *sheet, 
61
 
                                 gboolean fit_width, 
 
60
gboolean cmd_autofit_selection  (WorkbookControl *wbc, SheetView *sv, Sheet *sheet,
 
61
                                 gboolean fit_width,
62
62
                                 ColRowIndexList *selectionlist);
63
63
 
64
64
gboolean cmd_paste_cut          (WorkbookControl *wbc,
138
138
                                 GnmExprTop const *texpr,
139
139
                                 char const *descriptor);
140
140
gboolean cmd_remove_name        (WorkbookControl *wbc, GnmNamedExpr *nexpr);
141
 
gboolean cmd_rescope_name       (WorkbookControl *wbc, GnmNamedExpr *nexpr, 
 
141
gboolean cmd_rescope_name       (WorkbookControl *wbc, GnmNamedExpr *nexpr,
142
142
                                 Sheet *scope);
143
143
 
144
144
gboolean cmd_scenario_add (WorkbookControl *wbc, GnmScenario *s, Sheet *sheet);
163
163
gboolean cmd_toggle_rtl (WorkbookControl *wbc, Sheet *sheet);
164
164
 
165
165
gboolean cmd_autofilter_add_remove (WorkbookControl *wbc);
166
 
gboolean cmd_autofilter_set_condition (WorkbookControl *wbc, 
167
 
                                       GnmFilter *filter, unsigned i, 
 
166
gboolean cmd_autofilter_set_condition (WorkbookControl *wbc,
 
167
                                       GnmFilter *filter, unsigned i,
168
168
                                       GnmFilterCondition *cond);
169
169
 
170
170
/**************************  Sheet Objects **************************************/
196
196
                           Sheet *sheet);
197
197
 
198
198
gboolean cmd_so_set_links (WorkbookControl *wbc, SheetObject *so,
199
 
                           GnmExprTop const *output, GnmExprTop const *content);
 
199
                           GnmExprTop const *output, GnmExprTop const *content,
 
200
                           gboolean as_index);
200
201
 
201
202
gboolean cmd_so_set_frame_label (WorkbookControl *wbc, SheetObject *so,
202
203
                                 char *old_label, char *new_label);
221
222
                                int step, int page,
222
223
                                char const *undo_label);
223
224
 
 
225
gboolean cmd_page_breaks_clear (WorkbookControl *wbc, Sheet *sheet);
 
226
gboolean cmd_page_break_toggle (WorkbookControl *wbc, Sheet *sheet, gboolean is_vert);
224
227
 
225
228
/********************************************************************************/
226
229