aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-score.c
blob: 722ac5bb652d860781f71f6cd2ae6f809838ab01 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 *  Authors: Jeffrey Stedfast <fejj@helixcode.com>
 *
 *  Copyright 2000 Helix Code, Inc. (www.helixcode.com)
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA.
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <gtk/gtk.h>
#include <gnome.h>
#include <gnome-xml/xmlmemory.h>

#include "e-util/e-sexp.h"
#include "filter-score.h"

#define d(x)

static void xml_create (FilterElement *fe, xmlNodePtr node);
static xmlNodePtr xml_encode (FilterElement *fe);
static int xml_decode (FilterElement *fe, xmlNodePtr node);
static GtkWidget *get_widget (FilterElement *fe);
static void build_code (FilterElement *fe, GString *out, struct _FilterPart *ff);
static void format_sexp (FilterElement *, GString *);

static void filter_score_class_init (FilterScoreClass *class);
static void filter_score_init (FilterScore *gspaper);
static void filter_score_finalise (GtkObject *obj);

#define _PRIVATE(x) (((FilterScore *)(x))->priv)

struct _FilterScorePrivate {
};

static FilterElementClass *parent_class;

enum {
    LAST_SIGNAL
};

static guint signals[LAST_SIGNAL] = { 0 };

guint
filter_score_get_type (void)
{
    static guint type = 0;
    
    if (!type) {
        GtkTypeInfo type_info = {
            "FilterScore",
            sizeof (FilterScore),
            sizeof (FilterScoreClass),
            (GtkClassInitFunc) filter_score_class_init,
            (GtkObjectInitFunc) filter_score_init,
            (GtkArgSetFunc) NULL,
            (GtkArgGetFunc) NULL
        };
        
        type = gtk_type_unique (filter_element_get_type (), &type_info);
    }
    
    return type;
}

static void
filter_score_class_init (FilterScoreClass *class)
{
    GtkObjectClass *object_class;
    FilterElementClass *filter_element = (FilterElementClass *)class;
    
    object_class = (GtkObjectClass *)class;
    parent_class = gtk_type_class (filter_element_get_type ());
    
    object_class->finalize = filter_score_finalise;
    
    /* override methods */
    filter_element->xml_create = xml_create;
    filter_element->xml_encode = xml_encode;
    filter_element->xml_decode = xml_decode;
    filter_element->get_widget = get_widget;
    filter_element->build_code = build_code;
    filter_element->format_sexp = format_sexp;
    
    /* signals */
    
    gtk_object_class_add_signals(object_class, signals, LAST_SIGNAL);
}

static void
filter_score_init (FilterScore *o)
{
    o->priv = g_malloc0 (sizeof (*o->priv));
}

static void
filter_score_finalise(GtkObject *obj)
{
    FilterScore *o = (FilterScore *)obj;
    
    o = o;
    
        ((GtkObjectClass *)(parent_class))->finalize(obj);
}

/**
 * filter_score_new:
 *
 * Create a new FilterScore object.
 * 
 * Return value: A new #FilterScore object.
 **/
FilterScore *
filter_score_new (void)
{
    FilterScore *o = (FilterScore *)gtk_type_new(filter_score_get_type ());
    return o;
}

static void
xml_create (FilterElement *fe, xmlNodePtr node)
{
    /*FilterScore *fs = (FilterScore *)fe;*/
    
    /* parent implementation */
        ((FilterElementClass *)(parent_class))->xml_create(fe, node);
}

static xmlNodePtr
xml_encode (FilterElement *fe)
{
    xmlNodePtr value;
    FilterScore *fs = (FilterScore *)fe;
    char *score;
    
    d(printf("Encoding score as xml\n"));
    
    value = xmlNewNode (NULL, "value");
    xmlSetProp (value, "name", fe->name);
    xmlSetProp (value, "type", "score");
    
    score = g_strdup_printf ("%d", fs->score);
    xmlSetProp (value, "score", score);
    g_free (score);
    
    return value;
}

static int
xml_decode (FilterElement *fe, xmlNodePtr node)
{
    FilterScore *fs = (FilterScore *)fe;
    char *name;
    char *score;
    
    d(printf("Decoding score from xml %p\n", fe));
    
    name = xmlGetProp (node, "name");
    d(printf ("Name = %s\n", name));
    fe->name = name;
    score = xmlGetProp (node, name);
    if (score)
        fs->score = atoi (score);
    else
        fs->score = 0;
    
    if (fs->score > 3)
        fs->score = 3;
    else if (fs->score < -3)
        fs->score = -3;
    
    return 0;
}

static void
spin_changed (GtkWidget *spin, FilterElement *fe)
{
    FilterScore *fs = (FilterScore *)fe;
    
    fs->score = gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON (spin));
}

static GtkWidget *
get_widget (FilterElement *fe)
{
    GtkWidget *spin;
    GtkObject *adjustment;
    FilterScore *fs = (FilterScore *)fe;
    
    adjustment = gtk_adjustment_new (0.0, -3.0, 3.0, 1.0, 1.0, 1.0);
    spin = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1.0, 0);
    gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (spin), TRUE);
    
    if (fs->score) {
        gtk_spin_button_set_value (GTK_SPIN_BUTTON (spin), (gfloat) fs->score);
    }
    
    gtk_signal_connect (GTK_OBJECT (spin), "changed", spin_changed, fe);
    
    return spin;
}

static void
build_code (FilterElement *fe, GString *out, struct _FilterPart *ff)
{
    return;
}

static void
format_sexp (FilterElement *fe, GString *out)
{
    FilterScore *fs = (FilterScore *)fe;
    char *score;
    
    score = g_strdup_printf ("%d", fs->score);
    e_sexp_encode_string (out, score);
    g_free (score);
}