File: nemo-column.c

package info (click to toggle)
nemo 6.4.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 9,088 kB
  • sloc: ansic: 127,474; xml: 1,555; python: 1,434; sh: 57; makefile: 20
file content (331 lines) | stat: -rw-r--r-- 9,735 bytes parent folder | download | duplicates (2)
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
/*
 *  nemo-column.c - Info columns exported by NemoColumnProvider
 *                      objects.
 *
 *  Copyright (C) 2003 Novell, Inc.
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public
 *  License as published by the Free Software Foundation; either
 *  version 2 of the License, or (at your option) any later version.
 *
 *  This library 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
 *  Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public
 *  License along with this library; if not, write to the Free
 *  Software Foundation, Inc., 51 Franklin Street, Suite 500, MA 02110-1335, USA.
 * 
 *  Author:  Dave Camp <dave@ximian.com>
 *
 */

#include <config.h>
#include "nemo-column.h"
#include "nemo-extension-i18n.h"

enum {
	PROP_0,
	PROP_NAME,
	PROP_ATTRIBUTE,
	PROP_ATTRIBUTE_Q,
	PROP_LABEL,
	PROP_DESCRIPTION,
	PROP_XALIGN,
    PROP_WIDTH_CHARS,
    PROP_ELLIPSIZE,
	LAST_PROP
};

typedef struct
{
    char *name;
    GQuark attribute;
    char *label;
    char *description;
    float xalign;
    gint width_chars;
    gboolean ellipsize;
 } NemoColumnPrivate;

struct _NemoColumn
{
    GObject parent_object;

    NemoColumnPrivate *details;
};

G_DEFINE_TYPE_WITH_PRIVATE (NemoColumn, nemo_column, G_TYPE_OBJECT)

/**
 * SECTION:nemo-column
 * @Title: NemoColumn
 * @Short_description: A column used in Nemo's  list view.
 *
 * A column is linked to a particular file attribute to display in the view.
 * Many of these are built in to Nemo, but they can also be provided by
 * a #NemoColumnProvider/#NemoInfoProvider extension.
 **/

/**
 * nemo_column_new:
 * @name: identifier of the column
 * @attribute: the file attribute to be displayed in the column
 * @label: the user-visible label for the column
 * @description: a user-visible description of the column
 *
 * Creates a new column
 *
 * Returns: (transfer full): a newly created #NemoColumn
 */
NemoColumn *
nemo_column_new (const char *name,
                 const char *attribute,
		     const char *label,
		     const char *description)
{
	NemoColumn *column;

	g_return_val_if_fail (name != NULL, NULL);
	g_return_val_if_fail (attribute != NULL, NULL);
	g_return_val_if_fail (label != NULL, NULL);
	g_return_val_if_fail (description != NULL, NULL);
	
	column = g_object_new (NEMO_TYPE_COLUMN, 
			       "name", name,
			       "attribute", attribute,
			       "label", label,
			       "description", description,
			       NULL);

	return column;
}


/**
 * nemo_column_new2:
 * @name: identifier of the column
 * @attribute: the file attribute to be displayed in the column
 * @label: the user-visible label for the column
 * @description: a user-visible description of the column
 * @width_chars: the default width of the column (-1 for auto-calc)
 * @ellipsize: PangoEllipsizeMode to set when truncating column
 *
 * Creates a new column
 *
 * Returns: (transfer full): a newly created #NemoColumn
 */
NemoColumn *
nemo_column_new2 (const char         *name,
                  const char         *attribute,
                  const char         *label,
                  const char         *description,
                  gint                width_chars,
                  PangoEllipsizeMode  ellipsize)
{
    NemoColumn *column;

    g_return_val_if_fail (name != NULL, NULL);
    g_return_val_if_fail (attribute != NULL, NULL);
    g_return_val_if_fail (label != NULL, NULL);
    g_return_val_if_fail (description != NULL, NULL);

    column = g_object_new (NEMO_TYPE_COLUMN, 
                           "name", name,
                           "attribute", attribute,
                           "label", label,
                           "description", description,
                           "width-chars", width_chars,
                           "ellipsize", ellipsize,
                           NULL);

    return column;
}

static void
nemo_column_get_property (GObject *object,
			      guint param_id,
			      GValue *value,
			      GParamSpec *pspec)
{
	NemoColumn *column;
	
	column = NEMO_COLUMN (object);
	
	switch (param_id) {
	case PROP_NAME :
		g_value_set_string (value, column->details->name);
		break;
	case PROP_ATTRIBUTE :
		g_value_set_string (value, g_quark_to_string (column->details->attribute));
		break;
	case PROP_ATTRIBUTE_Q :
		g_value_set_uint (value, column->details->attribute);
		break;
	case PROP_LABEL :
		g_value_set_string (value, column->details->label);
		break;
	case PROP_DESCRIPTION :
		g_value_set_string (value, column->details->description);
		break;
	case PROP_XALIGN :
		g_value_set_float (value, column->details->xalign);
		break;
    case PROP_WIDTH_CHARS :
        g_value_set_int (value, column->details->width_chars);
        break;
    case PROP_ELLIPSIZE :
        g_value_set_enum (value, column->details->ellipsize);
        break;
    
	default :
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
		break;
	}
}

static void
nemo_column_set_property (GObject *object,
				 guint param_id,
				 const GValue *value,
				 GParamSpec *pspec)
{
	NemoColumn *column;
	
	column = NEMO_COLUMN (object);

	switch (param_id) {
	case PROP_NAME :
		g_free (column->details->name);
		column->details->name = g_strdup (g_value_get_string (value));
		g_object_notify (object, "name");
		break;
	case PROP_ATTRIBUTE :
		column->details->attribute = g_quark_from_string (g_value_get_string (value));
		g_object_notify (object, "attribute");
		g_object_notify (object, "attribute_q");
		break;
	case PROP_LABEL :
		g_free (column->details->label);
		column->details->label = g_strdup (g_value_get_string (value));
		g_object_notify (object, "label");
		break;
	case PROP_DESCRIPTION :
		g_free (column->details->description);
		column->details->description = g_strdup (g_value_get_string (value));
		g_object_notify (object, "description");
		break;
	case PROP_XALIGN :
		column->details->xalign = g_value_get_float (value);
		g_object_notify (object, "xalign");		
		break;
    case PROP_WIDTH_CHARS :
        column->details->width_chars = g_value_get_int (value);
        g_object_notify (object, "width-chars");
        break;
    case PROP_ELLIPSIZE :
        column->details->ellipsize = g_value_get_enum (value);
        g_object_notify (object, "ellipsize");
        break;

	default :
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
		break;
	}
}

static void
nemo_column_finalize (GObject *object)
{
	NemoColumn *column;
	
	column = NEMO_COLUMN (object);

	g_free (column->details->name);
	g_free (column->details->label);
	g_free (column->details->description);

	g_free (column->details);

	G_OBJECT_CLASS (nemo_column_parent_class)->finalize (object);
}

static void
nemo_column_init (NemoColumn *column)
{
    column->details = G_TYPE_INSTANCE_GET_PRIVATE (column, NEMO_TYPE_COLUMN, NemoColumnPrivate);

    column->details->xalign = 0.0;
}

static void
nemo_column_class_init (NemoColumnClass *class)
{
	G_OBJECT_CLASS (class)->finalize = nemo_column_finalize;
	G_OBJECT_CLASS (class)->get_property = nemo_column_get_property;
	G_OBJECT_CLASS (class)->set_property = nemo_column_set_property;

	g_object_class_install_property (G_OBJECT_CLASS (class),
					 PROP_NAME,
					 g_param_spec_string ("name",
							      "Name",
							      "Name of the column",
							      NULL,
							      G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE | G_PARAM_READABLE));
	g_object_class_install_property (G_OBJECT_CLASS (class),
					 PROP_ATTRIBUTE,
					 g_param_spec_string ("attribute",
							      "Attribute",
							      "The attribute name to display",
							      NULL,
							      G_PARAM_READWRITE));
	g_object_class_install_property (G_OBJECT_CLASS (class),
					 PROP_ATTRIBUTE_Q,
					 g_param_spec_uint ("attribute_q",
							    "Attribute quark",
							    "The attribute name to display, in quark form",
							    0, G_MAXUINT, 0,
							    G_PARAM_READABLE));
	g_object_class_install_property (G_OBJECT_CLASS (class),
					 PROP_LABEL,
					 g_param_spec_string ("label",
							      "Label",
							      "Label to display in the column",
							      NULL,
							      G_PARAM_READWRITE));
	g_object_class_install_property (G_OBJECT_CLASS (class),
					 PROP_DESCRIPTION,
					 g_param_spec_string ("description",
							      "Description",
							      "A user-visible description of the column",
							      NULL,
							      G_PARAM_READWRITE));

	g_object_class_install_property (G_OBJECT_CLASS (class),
					 PROP_XALIGN,
					 g_param_spec_float ("xalign",
							     "xalign",
							     "The x-alignment of the column",
							     0.0,
							     1.0,
							     0.0,
							     G_PARAM_READWRITE));
    g_object_class_install_property (G_OBJECT_CLASS (class),
                     PROP_WIDTH_CHARS,
                     g_param_spec_int ("width-chars",
                                "Default column width",
                                "Default column width",
                                -1, G_MAXINT, -1,
                                G_PARAM_READWRITE));
    g_object_class_install_property (G_OBJECT_CLASS (class),
                     PROP_ELLIPSIZE,
                     g_param_spec_enum ("ellipsize",
                                "Pango ellipsize mode when text won't fit",
                                "Pango ellipsize mode when text won't fit",
                                PANGO_TYPE_ELLIPSIZE_MODE,
                                PANGO_ELLIPSIZE_NONE,
                                G_PARAM_READWRITE));
}