mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 19:00:08 +00:00
css: Add a number value handling win32 sizes
This commit is contained in:
parent
915fe87a62
commit
3b19db425e
@ -445,6 +445,7 @@ gtk_private_h_sources = \
|
|||||||
gtkcsstypedvalueprivate.h \
|
gtkcsstypedvalueprivate.h \
|
||||||
gtkcssunsetvalueprivate.h \
|
gtkcssunsetvalueprivate.h \
|
||||||
gtkcssvalueprivate.h \
|
gtkcssvalueprivate.h \
|
||||||
|
gtkcsswin32sizevalueprviate.h \
|
||||||
gtkcsswidgetnodeprivate.h \
|
gtkcsswidgetnodeprivate.h \
|
||||||
gtkcustompaperunixdialog.h \
|
gtkcustompaperunixdialog.h \
|
||||||
gtkdialogprivate.h \
|
gtkdialogprivate.h \
|
||||||
@ -715,6 +716,7 @@ gtk_base_c_sources = \
|
|||||||
gtkcsstypes.c \
|
gtkcsstypes.c \
|
||||||
gtkcssvalue.c \
|
gtkcssvalue.c \
|
||||||
gtkcsswidgetnode.c \
|
gtkcsswidgetnode.c \
|
||||||
|
gtkcsswin32sizevalue.c \
|
||||||
gtkdialog.c \
|
gtkdialog.c \
|
||||||
gtkdragsource.c \
|
gtkdragsource.c \
|
||||||
gtkdrawingarea.c \
|
gtkdrawingarea.c \
|
||||||
|
@ -21,6 +21,7 @@
|
|||||||
|
|
||||||
#include "gtkcsscalcvalueprivate.h"
|
#include "gtkcsscalcvalueprivate.h"
|
||||||
#include "gtkcssdimensionvalueprivate.h"
|
#include "gtkcssdimensionvalueprivate.h"
|
||||||
|
#include "gtkcsswin32sizevalueprivate.h"
|
||||||
|
|
||||||
struct _GtkCssValue {
|
struct _GtkCssValue {
|
||||||
GTK_CSS_VALUE_BASE
|
GTK_CSS_VALUE_BASE
|
||||||
@ -129,7 +130,8 @@ gboolean
|
|||||||
gtk_css_number_value_can_parse (GtkCssParser *parser)
|
gtk_css_number_value_can_parse (GtkCssParser *parser)
|
||||||
{
|
{
|
||||||
return _gtk_css_parser_has_number (parser)
|
return _gtk_css_parser_has_number (parser)
|
||||||
|| _gtk_css_parser_has_prefix (parser, "calc");
|
|| _gtk_css_parser_has_prefix (parser, "calc")
|
||||||
|
|| _gtk_css_parser_has_prefix (parser, "-gtk-win32-size");
|
||||||
}
|
}
|
||||||
|
|
||||||
GtkCssValue *
|
GtkCssValue *
|
||||||
@ -138,6 +140,8 @@ _gtk_css_number_value_parse (GtkCssParser *parser,
|
|||||||
{
|
{
|
||||||
if (_gtk_css_parser_has_prefix (parser, "calc"))
|
if (_gtk_css_parser_has_prefix (parser, "calc"))
|
||||||
return gtk_css_calc_value_parse (parser, flags);
|
return gtk_css_calc_value_parse (parser, flags);
|
||||||
|
if (_gtk_css_parser_has_prefix (parser, "-gtk-win32-size"))
|
||||||
|
return gtk_css_win32_size_value_parse (parser, flags);
|
||||||
|
|
||||||
return gtk_css_dimension_value_parse (parser, flags);
|
return gtk_css_dimension_value_parse (parser, flags);
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@
|
|||||||
#include "gtkprivatetypebuiltins.h"
|
#include "gtkprivatetypebuiltins.h"
|
||||||
#include "gtkstylecontextprivate.h"
|
#include "gtkstylecontextprivate.h"
|
||||||
#include "gtktypebuiltins.h"
|
#include "gtktypebuiltins.h"
|
||||||
#include "gtkwin32themeprivate.h"
|
#include "gtkcsswin32sizevalueprivate.h"
|
||||||
|
|
||||||
#include "deprecated/gtkthemingengine.h"
|
#include "deprecated/gtkthemingengine.h"
|
||||||
#include "deprecated/gtkgradientprivate.h"
|
#include "deprecated/gtkgradientprivate.h"
|
||||||
@ -431,15 +431,18 @@ int_value_parse (GtkCssParser *parser,
|
|||||||
{
|
{
|
||||||
gint i;
|
gint i;
|
||||||
|
|
||||||
if (_gtk_css_parser_begins_with (parser, '-'))
|
if (_gtk_css_parser_has_prefix (parser, "-gtk"))
|
||||||
{
|
{
|
||||||
int res = _gtk_win32_theme_int_parse (parser, &i);
|
GtkCssValue *cssvalue = gtk_css_win32_size_value_parse (parser, GTK_CSS_PARSE_NUMBER | GTK_CSS_NUMBER_AS_PIXELS);
|
||||||
if (res >= 0)
|
|
||||||
{
|
if (cssvalue)
|
||||||
g_value_set_int (value, i);
|
{
|
||||||
return res > 0;
|
g_value_set_int (value, _gtk_css_number_value_get (cssvalue, 100));
|
||||||
}
|
_gtk_css_value_unref (cssvalue);
|
||||||
/* < 0 => continue */
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!_gtk_css_parser_try_int (parser, &i))
|
if (!_gtk_css_parser_try_int (parser, &i))
|
||||||
@ -615,18 +618,19 @@ border_value_parse (GtkCssParser *parser,
|
|||||||
|
|
||||||
for (i = 0; i < G_N_ELEMENTS (numbers); i++)
|
for (i = 0; i < G_N_ELEMENTS (numbers); i++)
|
||||||
{
|
{
|
||||||
if (_gtk_css_parser_begins_with (parser, '-'))
|
if (_gtk_css_parser_has_prefix (parser, "-gtk"))
|
||||||
{
|
{
|
||||||
/* These are strictly speaking signed, but we want to be able to use them
|
GtkCssValue *cssvalue = gtk_css_win32_size_value_parse (parser, GTK_CSS_PARSE_NUMBER | GTK_CSS_NUMBER_AS_PIXELS);
|
||||||
for unsigned types too, as the actual ranges of values make this safe */
|
|
||||||
int res = _gtk_win32_theme_int_parse (parser, &numbers[i]);
|
|
||||||
|
|
||||||
if (res == 0) /* Parse error, report */
|
if (cssvalue)
|
||||||
return FALSE;
|
{
|
||||||
|
numbers[i] = _gtk_css_number_value_get (cssvalue, 100);
|
||||||
|
_gtk_css_value_unref (cssvalue);
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
|
||||||
if (res < 0) /* Nothing known to expand */
|
return FALSE;
|
||||||
break;
|
}
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!_gtk_css_parser_try_length (parser, &numbers[i]))
|
if (!_gtk_css_parser_try_length (parser, &numbers[i]))
|
||||||
|
196
gtk/gtkcsswin32sizevalue.c
Normal file
196
gtk/gtkcsswin32sizevalue.c
Normal file
@ -0,0 +1,196 @@
|
|||||||
|
/* GTK - The GIMP Toolkit
|
||||||
|
* Copyright (C) 2011 Red Hat, Inc.
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser 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
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "config.h"
|
||||||
|
|
||||||
|
#include "gtkcsswin32sizevalueprivate.h"
|
||||||
|
|
||||||
|
#include "gtkwin32themeprivate.h"
|
||||||
|
|
||||||
|
struct _GtkCssValue {
|
||||||
|
GTK_CSS_VALUE_BASE
|
||||||
|
double scale; /* needed for calc() math */
|
||||||
|
GtkWin32Theme *theme;
|
||||||
|
gint id;
|
||||||
|
};
|
||||||
|
|
||||||
|
static GtkCssValue * gtk_css_win32_size_value_new (double scale,
|
||||||
|
GtkWin32Theme *theme,
|
||||||
|
int id);
|
||||||
|
|
||||||
|
static void
|
||||||
|
gtk_css_value_win32_size_free (GtkCssValue *value)
|
||||||
|
{
|
||||||
|
gtk_win32_theme_unref (value->theme);
|
||||||
|
g_slice_free (GtkCssValue, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
static GtkCssValue *
|
||||||
|
gtk_css_value_win32_size_compute (GtkCssValue *value,
|
||||||
|
guint property_id,
|
||||||
|
GtkStyleProviderPrivate *provider,
|
||||||
|
GtkCssStyle *style,
|
||||||
|
GtkCssStyle *parent_style)
|
||||||
|
{
|
||||||
|
return _gtk_css_number_value_new (value->scale * gtk_win32_theme_get_size (value->theme, value->id), GTK_CSS_PX);
|
||||||
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
gtk_css_value_win32_size_equal (const GtkCssValue *value1,
|
||||||
|
const GtkCssValue *value2)
|
||||||
|
{
|
||||||
|
return gtk_win32_theme_equal (value1->theme, value2->theme) &&
|
||||||
|
value1->id == value2->id;
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
gtk_css_value_win32_size_print (const GtkCssValue *value,
|
||||||
|
GString *string)
|
||||||
|
{
|
||||||
|
if (value->scale != 1.0)
|
||||||
|
{
|
||||||
|
g_string_append_printf (string, "%g * ", value->scale);
|
||||||
|
}
|
||||||
|
g_string_append (string, "-gtk-win32-size(");
|
||||||
|
gtk_win32_theme_print (value->theme, string);
|
||||||
|
g_string_append_printf (string, ", %d)", value->id);
|
||||||
|
}
|
||||||
|
|
||||||
|
static double
|
||||||
|
gtk_css_value_win32_size_get (const GtkCssValue *value,
|
||||||
|
double one_hundred_percent)
|
||||||
|
{
|
||||||
|
return value->scale * gtk_win32_theme_get_size (value->theme, value->id);
|
||||||
|
}
|
||||||
|
|
||||||
|
static GtkCssDimension
|
||||||
|
gtk_css_value_win32_size_get_dimension (const GtkCssValue *value)
|
||||||
|
{
|
||||||
|
return GTK_CSS_DIMENSION_LENGTH;
|
||||||
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
gtk_css_value_win32_size_has_percent (const GtkCssValue *value)
|
||||||
|
{
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
static GtkCssValue *
|
||||||
|
gtk_css_value_win32_size_multiply (const GtkCssValue *value,
|
||||||
|
double factor)
|
||||||
|
{
|
||||||
|
return gtk_css_win32_size_value_new (value->scale * factor, value->theme, value->id);
|
||||||
|
}
|
||||||
|
|
||||||
|
static GtkCssValue *
|
||||||
|
gtk_css_value_win32_size_try_add (const GtkCssValue *value1,
|
||||||
|
const GtkCssValue *value2)
|
||||||
|
{
|
||||||
|
if (!gtk_css_value_win32_size_equal (value1, value2))
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
return gtk_css_win32_size_value_new (value1->scale + value2->scale, value1->theme, value1->id);
|
||||||
|
}
|
||||||
|
|
||||||
|
static gint
|
||||||
|
gtk_css_value_win32_size_get_calc_term_order (const GtkCssValue *value)
|
||||||
|
{
|
||||||
|
return 2000;
|
||||||
|
}
|
||||||
|
|
||||||
|
static const GtkCssNumberValueClass GTK_CSS_VALUE_WIN32_SIZE = {
|
||||||
|
{
|
||||||
|
gtk_css_value_win32_size_free,
|
||||||
|
gtk_css_value_win32_size_compute,
|
||||||
|
gtk_css_value_win32_size_equal,
|
||||||
|
gtk_css_number_value_transition,
|
||||||
|
gtk_css_value_win32_size_print
|
||||||
|
},
|
||||||
|
gtk_css_value_win32_size_get,
|
||||||
|
gtk_css_value_win32_size_get_dimension,
|
||||||
|
gtk_css_value_win32_size_has_percent,
|
||||||
|
gtk_css_value_win32_size_multiply,
|
||||||
|
gtk_css_value_win32_size_try_add,
|
||||||
|
gtk_css_value_win32_size_get_calc_term_order
|
||||||
|
};
|
||||||
|
|
||||||
|
static GtkCssValue *
|
||||||
|
gtk_css_win32_size_value_new (double scale,
|
||||||
|
GtkWin32Theme *theme,
|
||||||
|
int id)
|
||||||
|
{
|
||||||
|
GtkCssValue *result;
|
||||||
|
|
||||||
|
result = _gtk_css_value_new (GtkCssValue, >K_CSS_VALUE_WIN32_SIZE.value_class);
|
||||||
|
result->scale = scale;
|
||||||
|
result->theme = gtk_win32_theme_ref (theme);
|
||||||
|
result->id = id;
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
GtkCssValue *
|
||||||
|
gtk_css_win32_size_value_parse (GtkCssParser *parser,
|
||||||
|
GtkCssNumberParseFlags flags)
|
||||||
|
{
|
||||||
|
GtkWin32Theme *theme;
|
||||||
|
char *theme_class;
|
||||||
|
GtkCssValue *result;
|
||||||
|
int id;
|
||||||
|
|
||||||
|
if (!_gtk_css_parser_try (parser, "-gtk-win32-size(", TRUE))
|
||||||
|
{
|
||||||
|
_gtk_css_parser_error (parser, "Expected '-gtk-win32-size('");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
theme_class = _gtk_css_parser_try_name (parser, TRUE);
|
||||||
|
if (theme_class == NULL)
|
||||||
|
{
|
||||||
|
_gtk_css_parser_error (parser, "Expected name as first argument to '-gtk-win32-size'");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (! _gtk_css_parser_try (parser, ",", TRUE))
|
||||||
|
{
|
||||||
|
g_free (theme_class);
|
||||||
|
_gtk_css_parser_error (parser, "Expected ','");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!_gtk_css_parser_try_int (parser, &id))
|
||||||
|
{
|
||||||
|
g_free (theme_class);
|
||||||
|
_gtk_css_parser_error (parser, "Expected an integer ID");
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!_gtk_css_parser_try (parser, ")", TRUE))
|
||||||
|
{
|
||||||
|
g_free (theme_class);
|
||||||
|
_gtk_css_parser_error (parser, "Expected ')'");
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
theme = gtk_win32_theme_lookup (theme_class);
|
||||||
|
g_free (theme_class);
|
||||||
|
|
||||||
|
result = gtk_css_win32_size_value_new (1.0, theme, id);
|
||||||
|
gtk_win32_theme_unref (theme);
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
32
gtk/gtkcsswin32sizevalueprivate.h
Normal file
32
gtk/gtkcsswin32sizevalueprivate.h
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
/*
|
||||||
|
* Copyright © 2012 Red Hat Inc.
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2.1 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
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* Authors: Alexander Larsson <alexl@gnome.org>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __GTK_CSS_WIN32_SIZE_VALUE_PRIVATE_H__
|
||||||
|
#define __GTK_CSS_WIN32_SIZE_VALUE_PRIVATE_H__
|
||||||
|
|
||||||
|
#include "gtkcssnumbervalueprivate.h"
|
||||||
|
|
||||||
|
G_BEGIN_DECLS
|
||||||
|
|
||||||
|
GtkCssValue * gtk_css_win32_size_value_parse (GtkCssParser *parser,
|
||||||
|
GtkCssNumberParseFlags flags);
|
||||||
|
|
||||||
|
G_END_DECLS
|
||||||
|
|
||||||
|
#endif /* __GTK_CSS_WIN32_SIZE_VALUE_PRIVATE_H__ */
|
@ -126,6 +126,14 @@ gtk_win32_theme_unref (GtkWin32Theme *theme)
|
|||||||
g_slice_free (GtkWin32Theme, theme);
|
g_slice_free (GtkWin32Theme, theme);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gboolean
|
||||||
|
gtk_win32_theme_equal (GtkWin32Theme *theme1,
|
||||||
|
GtkWin32Theme *theme2)
|
||||||
|
{
|
||||||
|
/* Themes are cached so they're guaranteed unique. */
|
||||||
|
return theme1 == theme2;
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef G_OS_WIN32
|
#ifdef G_OS_WIN32
|
||||||
|
|
||||||
static GdkFilterReturn
|
static GdkFilterReturn
|
||||||
@ -213,8 +221,6 @@ gtk_win32_theme_init (void)
|
|||||||
use_xp_theme = FALSE;
|
use_xp_theme = FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
themes_by_class = g_hash_table_new (g_str_hash, g_str_equal);
|
|
||||||
|
|
||||||
gdk_window_add_filter (NULL, invalidate_win32_themes, NULL);
|
gdk_window_add_filter (NULL, invalidate_win32_themes, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -246,6 +252,9 @@ gtk_win32_theme_lookup (const char *classname)
|
|||||||
{
|
{
|
||||||
GtkWin32Theme *theme;
|
GtkWin32Theme *theme;
|
||||||
|
|
||||||
|
if (G_UNLIKELY (themes_by_class == NULL))
|
||||||
|
themes_by_class = g_hash_table_new (g_str_hash, g_str_equal);
|
||||||
|
|
||||||
theme = g_hash_table_lookup (themes_by_class, classname);
|
theme = g_hash_table_lookup (themes_by_class, classname);
|
||||||
|
|
||||||
if (theme != NULL)
|
if (theme != NULL)
|
||||||
@ -353,82 +362,22 @@ gtk_win32_theme_create_surface (GtkWin32Theme *theme,
|
|||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
_gtk_win32_theme_int_parse (GtkCssParser *parser,
|
gtk_win32_theme_get_size (GtkWin32Theme *theme,
|
||||||
int *value)
|
int id)
|
||||||
{
|
{
|
||||||
char *theme_class;
|
|
||||||
int arg;
|
|
||||||
#ifdef G_OS_WIN32
|
#ifdef G_OS_WIN32
|
||||||
GtkWin32Theme *theme;
|
if (use_xp_theme && get_theme_sys_metric != NULL)
|
||||||
HTHEME htheme;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
if (_gtk_css_parser_try (parser,
|
|
||||||
"-gtk-win32-size",
|
|
||||||
TRUE))
|
|
||||||
{
|
{
|
||||||
if (!_gtk_css_parser_try (parser, "(", TRUE))
|
HTHEME htheme = gtk_win32_theme_get_htheme (theme);
|
||||||
{
|
|
||||||
_gtk_css_parser_error (parser,
|
|
||||||
"Expected '(' after '-gtk-win32-size'");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
theme_class = _gtk_css_parser_try_name (parser, TRUE);
|
/* If htheme is NULL it will just return the GetSystemMetrics value */
|
||||||
if (theme_class == NULL)
|
return get_theme_sys_metric (htheme, id);
|
||||||
{
|
|
||||||
_gtk_css_parser_error (parser,
|
|
||||||
"Expected name as first argument to '-gtk-win32-size'");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! _gtk_css_parser_try (parser, ",", TRUE))
|
|
||||||
{
|
|
||||||
g_free (theme_class);
|
|
||||||
_gtk_css_parser_error (parser,
|
|
||||||
"Expected ','");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!_gtk_css_parser_try_int (parser, &arg))
|
|
||||||
{
|
|
||||||
g_free (theme_class);
|
|
||||||
_gtk_css_parser_error (parser, "Expected a valid integer value");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!_gtk_css_parser_try (parser, ")", TRUE))
|
|
||||||
{
|
|
||||||
g_free (theme_class);
|
|
||||||
_gtk_css_parser_error (parser,
|
|
||||||
"Expected ')'");
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef G_OS_WIN32
|
|
||||||
theme = gtk_win32_theme_lookup (theme_class);
|
|
||||||
if (use_xp_theme && get_theme_sys_metric != NULL)
|
|
||||||
{
|
|
||||||
htheme = gtk_win32_theme_get_htheme (theme);
|
|
||||||
|
|
||||||
/* If htheme is NULL it will just return the GetSystemMetrics value */
|
|
||||||
*value = get_theme_sys_metric (htheme, arg);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
*value = GetSystemMetrics (arg);
|
|
||||||
|
|
||||||
gtk_win32_theme_unref (theme);
|
|
||||||
|
|
||||||
#else
|
|
||||||
*value = 1;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
g_free (theme_class);
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
return GetSystemMetrics (id);
|
||||||
|
#else
|
||||||
return -1;
|
return -1;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
@ -465,3 +414,9 @@ _gtk_win32_theme_color_resolve (const char *theme_class,
|
|||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
gtk_win32_theme_print (GtkWin32Theme *theme,
|
||||||
|
GString *string)
|
||||||
|
{
|
||||||
|
g_string_append (string, theme->class_name);
|
||||||
|
}
|
||||||
|
@ -33,6 +33,12 @@ GtkWin32Theme * gtk_win32_theme_lookup (const char *classna
|
|||||||
GtkWin32Theme * gtk_win32_theme_ref (GtkWin32Theme *theme);
|
GtkWin32Theme * gtk_win32_theme_ref (GtkWin32Theme *theme);
|
||||||
void gtk_win32_theme_unref (GtkWin32Theme *theme);
|
void gtk_win32_theme_unref (GtkWin32Theme *theme);
|
||||||
|
|
||||||
|
gboolean gtk_win32_theme_equal (GtkWin32Theme *theme1,
|
||||||
|
GtkWin32Theme *theme2);
|
||||||
|
|
||||||
|
void gtk_win32_theme_print (GtkWin32Theme *theme,
|
||||||
|
GString *string);
|
||||||
|
|
||||||
cairo_surface_t * gtk_win32_theme_create_surface (GtkWin32Theme *theme,
|
cairo_surface_t * gtk_win32_theme_create_surface (GtkWin32Theme *theme,
|
||||||
int xp_part,
|
int xp_part,
|
||||||
int state,
|
int state,
|
||||||
@ -41,9 +47,9 @@ cairo_surface_t * gtk_win32_theme_create_surface (GtkWin32Theme *theme,
|
|||||||
int height,
|
int height,
|
||||||
int *x_offs_out,
|
int *x_offs_out,
|
||||||
int *y_offs_out);
|
int *y_offs_out);
|
||||||
|
int gtk_win32_theme_get_size (GtkWin32Theme *theme,
|
||||||
|
int id);
|
||||||
|
|
||||||
int _gtk_win32_theme_int_parse (GtkCssParser *parser,
|
|
||||||
int *value);
|
|
||||||
gboolean _gtk_win32_theme_color_resolve (const char *theme_class,
|
gboolean _gtk_win32_theme_color_resolve (const char *theme_class,
|
||||||
gint id,
|
gint id,
|
||||||
GdkRGBA *color);
|
GdkRGBA *color);
|
||||||
|
Loading…
Reference in New Issue
Block a user