~ubuntu-branches/ubuntu/saucy/gtk+3.0/saucy

« back to all changes in this revision

Viewing changes to gtk/gtkcsseasevalueprivate.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell, Jeremy Bicha, Robert Ancell, Sebastien Bacher, Ken VanDine
  • Date: 2012-06-15 11:36:11 UTC
  • mfrom: (1.1.20) (36.1.48 precise) (0.1.25 sid)
  • Revision ID: package-import@ubuntu.com-20120615113611-bvb6nfn0k6kriz3k
Tags: 3.5.4-0ubuntu1
[ Jeremy Bicha ]
* settings.ini:
  Set gnome-panel menu-bar icon size to 24 so that Ubuntu logo
  for the Applications menu isn't set too small (LP: #986969)

[ Robert Ancell ]
* New upstream release (LP: #1000545)
* debian/control:
  - Bump build-depends on libglib2.0-dev
  - Add breaks older version of gtk3-engines-unico
* debian/libgtk-3-0.symbols:
  - Updated
* debian/libgtk-3-0.install.in:
* debian/rules:
  - Install settings.ini in rules
* debian/patches/00git_gtkimage_cleanup_crash.patch:
  - Applied upstream

[ Sebastien Bacher ]
* Rebase on Debian, including:
  - simplified the build rules and .install
  - dropped the static build (not really useful and costing time and efforts)
* Remaining diffs:
* debian/control.in:
  - updated replace versions
* debian/patches/100_overlay_scrollbar_loading.patch: 
  -dropped, the new scollbar code doesn't require that hack
* Drop fallback support for pre-multiarch loaders
* Remaining patches:
  - 043_ubuntu_menu_proxy.patch
  - 062_ubuntu-set-grab-add.patch
  - 073_treeview_almost_fixed.patch
  - 075_expose_gdkwidget_for_gtkrange.patch
  - 099_eventbox_scroll_mask.patch
  - git_gtkcellrenderer_grabbing_modifier.patch

[ Ken VanDine ]
* debian/patches/101_revert_symbolic_icon_search.patch
  - Revert symbolic icon search changes from 3.4.2, it breaks the icon 
    displayed in indicator-power because of the order the icons are searched
    in.  It looks like ubuntu-mono should drop the old icon names and 
    use the new -symbolic icons.  We need to carry this patch until 
    ubuntu-mono fixes it's handling of symbolic icons.  (LP: #1001229)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2012 Red Hat Inc.
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Lesser General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2.1 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Lesser General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Lesser General Public
 
15
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 
16
 *
 
17
 * Authors: Alexander Larsson <alexl@gnome.org>
 
18
 */
 
19
 
 
20
#ifndef __GTK_CSS_EASE_VALUE_PRIVATE_H__
 
21
#define __GTK_CSS_EASE_VALUE_PRIVATE_H__
 
22
 
 
23
#include "gtkcssparserprivate.h"
 
24
#include "gtkcssvalueprivate.h"
 
25
 
 
26
G_BEGIN_DECLS
 
27
 
 
28
GtkCssValue *   _gtk_css_ease_value_new_cubic_bezier  (double                x1,
 
29
                                                       double                y1,
 
30
                                                       double                x2,
 
31
                                                       double                y2);
 
32
gboolean        _gtk_css_ease_value_can_parse         (GtkCssParser         *parser);
 
33
GtkCssValue *   _gtk_css_ease_value_parse             (GtkCssParser         *parser);
 
34
 
 
35
double          _gtk_css_ease_value_transform         (const GtkCssValue    *ease,
 
36
                                                       double                progress);
 
37
 
 
38
 
 
39
G_END_DECLS
 
40
 
 
41
#endif /* __GTK_CSS_EASE_VALUE_PRIVATE_H__ */