~ubuntu-branches/ubuntu/vivid/rawstudio/vivid

« back to all changes in this revision

Viewing changes to librawstudio/rs-profile-factory.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernd Zeimetz
  • Date: 2011-07-28 17:36:32 UTC
  • mfrom: (2.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20110728173632-5czluz9ye3c83zc5
Tags: 2.0-1
* [3750b2cf] Merge commit 'upstream/2.0'
* [63637468] Removing Patch, not necessary anymore.
* [2fb580dc] Add new build-dependencies.
* [c57d953b] Run dh_autoreconf due to patches in configure.in
* [13febe39] Add patch to remove the libssl requirement.
* [5ae773fe] Replace libjpeg62-dev by libjpeg8-dev :)
* [1969d755] Don't build static libraries.
* [7cfe0a2e] Add a patch to fix the plugin directory path.
  As plugins are shared libraries, they need to go into /usr/lib,
  not into /usr/share.
  Thanks to Andrew McMillan
* [c1d0d9dd] Don't install .la files for all plugins and libraries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * * Copyright (C) 2006-2011 Anders Brander <anders@brander.dk>, 
 
3
 * * Anders Kvist <akv@lnxbx.dk> and Klaus Post <klauspost@gmail.com>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or
 
6
 * modify it under the terms of the GNU General Public License
 
7
 * as published by the Free Software Foundation; either version 2
 
8
 * of the License, or (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program; if not, write to the Free Software
 
17
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
18
 */
 
19
 
 
20
#ifndef RS_PROFILE_FACTORY_H
 
21
#define RS_PROFILE_FACTORY_H
 
22
 
 
23
#include <glib-object.h>
 
24
#include "rs-dcp-file.h"
 
25
#include "rs-icc-profile.h"
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define RS_TYPE_PROFILE_FACTORY rs_profile_factory_get_type()
 
30
#define RS_PROFILE_FACTORY(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), RS_TYPE_PROFILE_FACTORY, RSProfileFactory))
 
31
#define RS_PROFILE_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), RS_TYPE_PROFILE_FACTORY, RSProfileFactoryClass))
 
32
#define RS_IS_PROFILE_FACTORY(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), RS_TYPE_PROFILE_FACTORY))
 
33
#define RS_IS_PROFILE_FACTORY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), RS_TYPE_PROFILE_FACTORY))
 
34
#define RS_PROFILE_FACTORY_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), RS_TYPE_PROFILE_FACTORY, RSProfileFactoryClass))
 
35
 
 
36
enum {
 
37
        RS_PROFILE_FACTORY_STORE_MODEL,
 
38
        RS_PROFILE_FACTORY_STORE_PROFILE,
 
39
        RS_PROFILE_FACTORY_NUM_FIELDS
 
40
};
 
41
 
 
42
struct _RSProfileFactory {
 
43
        GObject parent;
 
44
 
 
45
        GtkListStore *profiles;
 
46
};
 
47
 
 
48
typedef struct _RSProfileFactory RSProfileFactory;
 
49
 
 
50
typedef struct {
 
51
        GObjectClass parent_class;
 
52
} RSProfileFactoryClass;
 
53
 
 
54
GType rs_profile_factory_get_type(void);
 
55
 
 
56
void rs_profile_factory_load_profiles(RSProfileFactory *factory, const gchar *path, gboolean load_dcp, gboolean load_icc);
 
57
 
 
58
RSProfileFactory *rs_profile_factory_new(const gchar *search_path);
 
59
 
 
60
RSProfileFactory *rs_profile_factory_new_default(void);
 
61
 
 
62
const gchar *rs_profile_factory_get_user_profile_directory(void);
 
63
 
 
64
gboolean rs_profile_factory_add_profile(RSProfileFactory *factory, const gchar *path);
 
65
 
 
66
GtkTreeModelFilter *rs_dcp_factory_get_compatible_as_model(RSProfileFactory *factory, const gchar *unique_id);
 
67
 
 
68
RSDcpFile *rs_profile_factory_find_from_id(RSProfileFactory *factory, const gchar *path);
 
69
 
 
70
RSIccProfile *rs_profile_factory_find_icc_from_filename(RSProfileFactory *factory, const gchar *path);
 
71
 
 
72
GSList *rs_profile_factory_find_from_model(RSProfileFactory *factory, const gchar *id);
 
73
 
 
74
void rs_profile_factory_set_embedded_profile(RSProfileFactory *factory, const RSIccProfile *profile);
 
75
 
 
76
G_END_DECLS
 
77
 
 
78
#endif /* RS_PROFILE_FACTORY_H */