~elementary-os/ubuntu-package-imports/mutter-bionic

« back to all changes in this revision

Viewing changes to clutter/clutter/deprecated/clutter-backend.h

  • Committer: RabbitBot
  • Date: 2018-04-11 14:49:36 UTC
  • Revision ID: rabbitbot@elementary.io-20180411144936-hgymqa9d8d1xfpbh
Initial import, version 3.28.0-2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Clutter.
 
3
 *
 
4
 * An OpenGL based 'interactive canvas' library.
 
5
 *
 
6
 * Authored By Matthew Allum  <mallum@openedhand.com>
 
7
 *
 
8
 * Copyright (C) 2006, 2007, 2008 OpenedHand Ltd
 
9
 * Copyright (C) 2009, 2010 Intel Corp
 
10
 *
 
11
 * This library is free software; you can redistribute it and/or
 
12
 * modify it under the terms of the GNU Lesser General Public
 
13
 * License as published by the Free Software Foundation; either
 
14
 * version 2 of the License, or (at your option) any later version.
 
15
 *
 
16
 * This library is distributed in the hope that it will be useful,
 
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
19
 * Lesser General Public License for more details.
 
20
 *
 
21
 * You should have received a copy of the GNU Lesser General Public
 
22
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 
23
 */
 
24
 
 
25
#if !defined(__CLUTTER_H_INSIDE__) && !defined(CLUTTER_COMPILATION)
 
26
#error "Only <clutter/clutter.h> can be included directly."
 
27
#endif
 
28
 
 
29
#ifndef __CLUTTER_BACKEND_DEPRECATED_H__
 
30
#define __CLUTTER_BACKEND_DEPRECATED_H__
 
31
 
 
32
#include <clutter/clutter-types.h>
 
33
 
 
34
G_BEGIN_DECLS
 
35
 
 
36
CLUTTER_DEPRECATED_IN_1_4_FOR(ClutterSettings:font_dpi)
 
37
void            clutter_backend_set_resolution                  (ClutterBackend *backend,
 
38
                                                                 gdouble         dpi);
 
39
 
 
40
CLUTTER_DEPRECATED_IN_1_4_FOR(ClutterSettings:double_click_time)
 
41
void            clutter_backend_set_double_click_time           (ClutterBackend *backend,
 
42
                                                                 guint           msec);
 
43
 
 
44
CLUTTER_DEPRECATED_IN_1_4_FOR(ClutterSettings:double_click_time)
 
45
guint           clutter_backend_get_double_click_time           (ClutterBackend *backend);
 
46
 
 
47
CLUTTER_DEPRECATED_IN_1_4_FOR(ClutterSettings:double_click_distance)
 
48
void            clutter_backend_set_double_click_distance       (ClutterBackend *backend,
 
49
                                                                 guint           distance);
 
50
 
 
51
CLUTTER_DEPRECATED_IN_1_4_FOR(ClutterSettings:double_click_distance)
 
52
guint           clutter_backend_get_double_click_distance       (ClutterBackend *backend);
 
53
 
 
54
CLUTTER_DEPRECATED_IN_1_4_FOR(ClutterSettings:font_name)
 
55
void            clutter_backend_set_font_name                   (ClutterBackend *backend,
 
56
                                                                 const gchar    *font_name);
 
57
 
 
58
CLUTTER_DEPRECATED_IN_1_4_FOR(ClutterSettings:font_name)
 
59
const gchar *   clutter_backend_get_font_name                   (ClutterBackend *backend);
 
60
 
 
61
 
 
62
G_END_DECLS
 
63
 
 
64
#endif /* __CLUTTER_BACKEND_DEPRECATED_H__ */