~ubuntu-branches/ubuntu/feisty/gnumeric/feisty-updates

« back to all changes in this revision

Viewing changes to src/sheet-filter.h

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2006-12-20 16:30:57 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20061220163057-3mrnnae80im72nlr
Tags: 1.7.6-1ubuntu1
* Merge with debian experimental:
  - debian/control, debian/*-gtk-*, debian/rules,
    debian/shlibs.local: Xubuntu changes for
    gtk/gnome multibuild.
  - run intltool-update in po*
  - Build Depend on intltool

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
        GNM_FILTER_OP_BOTTOM_N          = 0x31,
21
21
        GNM_FILTER_OP_TOP_N_PERCENT     = 0x32,
22
22
        GNM_FILTER_OP_BOTTOM_N_PERCENT  = 0x33,
 
23
        GNM_FILTER_OP_BOTTOM_MASK       = 0x01,
 
24
        GNM_FILTER_OP_PERCENT_MASK      = 0x02,
23
25
 
24
26
        /* Added in 1.7.5 */
25
27
        GNM_FILTER_OP_GT_AVERAGE        = 0x40,
34
36
        GnmFilterOp  op[2];
35
37
        GnmValue    *value[2];
36
38
        gboolean is_and;
37
 
        int      count;
 
39
        float    count;
38
40
};
39
41
 
40
42
struct _GnmFilter {
51
53
                                                     GnmFilterOp op2, GnmValue *v2);
52
54
GnmFilterCondition *gnm_filter_condition_new_bucket (gboolean top,
53
55
                                                     gboolean absolute,
54
 
                                                     unsigned n);
 
56
                                                     float n);
55
57
GnmFilterCondition *gnm_filter_condition_dup        (GnmFilterCondition const *src);
56
58
void                gnm_filter_condition_unref      (GnmFilterCondition *cond);
57
59