summaryrefslogtreecommitdiff
path: root/capplets/file-types/mime-types-model.h
blob: 38a655404097b972285b5235f98a0e5dde2c030f (plain)
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
/* -*- mode: c; style: linux -*- */

/* mime-types-model.h
 * Copyright (C) 2001 Ximian, Inc.
 *
 * Written by Bradford Hovinen <hovinen@ximian.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, 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 Place - Suite 330, Boston, MA
 * 02111-1307, USA.
 */

#ifndef __MIME_TYPES_MODEL_H
#define __MIME_TYPES_MODEL_H

#include <gnome.h>

#include "model-entry.h"

G_BEGIN_DECLS

#define MIME_TYPES_MODEL(obj)          G_TYPE_CHECK_INSTANCE_CAST (obj, mime_types_model_get_type (), MimeTypesModel)
#define MIME_TYPES_MODEL_CLASS(klass)  G_TYPE_CHECK_CLASS_CAST (klass, mime_types_model_get_type (), MimeTypesModelClass)
#define IS_MIME_TYPES_MODEL(obj)       G_TYPE_CHECK_INSTANCE_TYPE (obj, mime_types_model_get_type ())

#define MODEL_ENTRY_FROM_ITER(obj) (MODEL_ENTRY ((obj)->user_data))

typedef struct _MimeTypesModel MimeTypesModel;
typedef struct _MimeTypesModelClass MimeTypesModelClass;
typedef struct _MimeTypesModelPrivate MimeTypesModelPrivate;

enum {
	MODEL_COLUMN_MIME_TYPE,
	MODEL_COLUMN_DESCRIPTION,
	MODEL_COLUMN_ICON,
	MODEL_COLUMN_FILE_EXT,
	MODEL_LAST_COLUMN
};

struct _MimeTypesModel 
{
	GObject parent;

	MimeTypesModelPrivate *p;
};

struct _MimeTypesModelClass 
{
	GObjectClass g_object_class;
};

GType    mime_types_model_get_type       (void);

GObject *mime_types_model_new            (gboolean category_only);

void     mime_types_model_construct_iter (MimeTypesModel *model,
					  ModelEntry     *entry,
					  GtkTreeIter    *iter);

G_END_DECLS

#endif /* __MIME_TYPES_MODEL_H */