2010-03-04 22:00:30 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
|
* Copyright (C) 2010 Carlos Garnacho <carlosg@gnome.org>
|
|
|
|
|
*
|
|
|
|
|
* 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
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2010-03-04 22:00:30 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
|
#ifndef __GTK_STYLE_CONTEXT_H__
|
|
|
|
|
#define __GTK_STYLE_CONTEXT_H__
|
|
|
|
|
|
2010-12-02 22:45:14 +00:00
|
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
|
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-03-03 18:22:22 +00:00
|
|
|
|
#include <gtk/gtkborder.h>
|
2012-01-11 04:17:35 +00:00
|
|
|
|
#include <gtk/gtkcsssection.h>
|
2010-03-13 10:15:42 +00:00
|
|
|
|
#include <gtk/gtkstyleprovider.h>
|
2012-03-03 18:22:22 +00:00
|
|
|
|
#include <gtk/gtktypes.h>
|
2011-06-25 00:26:42 +00:00
|
|
|
|
#include <atk/atk.h>
|
2010-03-04 22:00:30 +00:00
|
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
|
#define GTK_TYPE_STYLE_CONTEXT (gtk_style_context_get_type ())
|
|
|
|
|
#define GTK_STYLE_CONTEXT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContext))
|
|
|
|
|
#define GTK_STYLE_CONTEXT_CLASS(c) (G_TYPE_CHECK_CLASS_CAST ((c), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
|
|
|
|
|
#define GTK_IS_STYLE_CONTEXT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GTK_TYPE_STYLE_CONTEXT))
|
|
|
|
|
#define GTK_IS_STYLE_CONTEXT_CLASS(c) (G_TYPE_CHECK_CLASS_TYPE ((c), GTK_TYPE_STYLE_CONTEXT))
|
|
|
|
|
#define GTK_STYLE_CONTEXT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), GTK_TYPE_STYLE_CONTEXT, GtkStyleContextClass))
|
|
|
|
|
|
2010-10-20 17:52:50 +00:00
|
|
|
|
typedef struct _GtkStyleContextClass GtkStyleContextClass;
|
2011-02-09 13:40:04 +00:00
|
|
|
|
typedef struct _GtkStyleContextPrivate GtkStyleContextPrivate;
|
2010-03-04 22:00:30 +00:00
|
|
|
|
|
2010-10-20 17:52:50 +00:00
|
|
|
|
struct _GtkStyleContext
|
2010-03-04 22:00:30 +00:00
|
|
|
|
{
|
|
|
|
|
GObject parent_object;
|
2011-02-09 13:40:04 +00:00
|
|
|
|
GtkStyleContextPrivate *priv;
|
2010-03-04 22:00:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
2010-10-20 17:52:50 +00:00
|
|
|
|
struct _GtkStyleContextClass
|
2010-03-04 22:00:30 +00:00
|
|
|
|
{
|
|
|
|
|
GObjectClass parent_class;
|
2010-09-11 10:18:26 +00:00
|
|
|
|
|
|
|
|
|
void (* changed) (GtkStyleContext *context);
|
2011-01-25 21:29:00 +00:00
|
|
|
|
|
|
|
|
|
/* Padding for future expansion */
|
|
|
|
|
void (*_gtk_reserved1) (void);
|
|
|
|
|
void (*_gtk_reserved2) (void);
|
|
|
|
|
void (*_gtk_reserved3) (void);
|
|
|
|
|
void (*_gtk_reserved4) (void);
|
2010-03-04 22:00:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
2010-11-12 21:48:29 +00:00
|
|
|
|
/* Default set of properties that GtkStyleContext may contain */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_BACKGROUND_COLOR:
|
|
|
|
|
*
|
|
|
|
|
* A property holding the background color of rendered elements as a #GdkRGBA.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_BACKGROUND_COLOR "background-color"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_COLOR:
|
|
|
|
|
*
|
|
|
|
|
* A property holding the foreground color of rendered elements as a #GdkRGBA.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_COLOR "color"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_FONT:
|
|
|
|
|
*
|
|
|
|
|
* A property holding the font properties used when rendering text
|
|
|
|
|
* as a #PangoFontDescription.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_FONT "font"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_PADDING:
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* A property holding the rendered element’s padding as a #GtkBorder. The
|
2010-11-12 21:48:29 +00:00
|
|
|
|
* padding is defined as the spacing between the inner part of the element border
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* and its child. It’s the innermost spacing property of the padding/border/margin
|
2011-01-08 17:11:59 +00:00
|
|
|
|
* series.
|
2010-11-12 21:48:29 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_PADDING "padding"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_BORDER_WIDTH:
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* A property holding the rendered element’s border width in pixels as
|
2011-01-08 17:11:59 +00:00
|
|
|
|
* a #GtkBorder. The border is the intermediary spacing property of the
|
|
|
|
|
* padding/border/margin series.
|
|
|
|
|
*
|
|
|
|
|
* gtk_render_frame() uses this property to find out the frame line width,
|
2014-03-29 04:24:15 +00:00
|
|
|
|
* so #GtkWidgets rendering frames may need to add up this padding when
|
2011-01-08 17:11:59 +00:00
|
|
|
|
* requesting size
|
2010-11-12 21:48:29 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_BORDER_WIDTH "border-width"
|
|
|
|
|
|
2011-01-08 17:11:59 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_MARGIN:
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* A property holding the rendered element’s margin as a #GtkBorder. The
|
2011-01-08 17:11:59 +00:00
|
|
|
|
* margin is defined as the spacing between the border of the element
|
2014-03-29 04:24:15 +00:00
|
|
|
|
* and its surrounding elements. It is external to #GtkWidget's
|
2011-01-08 17:11:59 +00:00
|
|
|
|
* size allocations, and the most external spacing property of the
|
|
|
|
|
* padding/border/margin series.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_MARGIN "margin"
|
|
|
|
|
|
2010-11-12 21:48:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_BORDER_RADIUS:
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* A property holding the rendered element’s border radius in pixels as a #gint.
|
2010-11-12 21:48:29 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_BORDER_RADIUS "border-radius"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_BORDER_STYLE:
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* A property holding the element’s border style as a #GtkBorderStyle.
|
2010-11-12 21:48:29 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_BORDER_STYLE "border-style"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_BORDER_COLOR:
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* A property holding the element’s border color as a #GdkRGBA.
|
2010-11-12 21:48:29 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_BORDER_COLOR "border-color"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_PROPERTY_BACKGROUND_IMAGE:
|
|
|
|
|
*
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* A property holding the element’s background as a #cairo_pattern_t.
|
2010-11-12 21:48:29 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_PROPERTY_BACKGROUND_IMAGE "background-image"
|
|
|
|
|
|
2010-11-03 11:17:06 +00:00
|
|
|
|
/* Predefined set of CSS classes */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_CELL:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match content rendered in cell views.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used by cell renderers, e.g. in #GtkIconView
|
|
|
|
|
* and #GtkTreeView.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_CELL "cell"
|
|
|
|
|
|
2012-04-20 13:35:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_DIM_LABEL:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match dimmed labels.
|
|
|
|
|
*
|
|
|
|
|
* This should be used for toning down right aligned labels as
|
|
|
|
|
* compared to the entry value.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_DIM_LABEL "dim-label"
|
|
|
|
|
|
2010-11-03 11:17:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_ENTRY:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match text entries.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkEntry.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_ENTRY "entry"
|
|
|
|
|
|
2011-08-09 13:32:21 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_COMBOBOX_ENTRY:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match combobox entries.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkComboBox.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_COMBOBOX_ENTRY "combobox-entry"
|
|
|
|
|
|
2010-11-03 11:17:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_BUTTON:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match buttons.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkButton and its subclasses, as well
|
|
|
|
|
* as various other widget pieces that appear like buttons,
|
|
|
|
|
* e.g. the arrows in a #GtkCalendar.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_BUTTON "button"
|
|
|
|
|
|
2013-06-12 10:00:11 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_LIST:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match lists.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkListBox.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_LIST "list"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_LIST_ROW:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match list rowss.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkListBoxRow.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_LIST_ROW "list-row"
|
|
|
|
|
|
2010-11-03 11:17:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_CALENDAR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match calendars.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is not used by GTK+ itself, currently.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_CALENDAR "calendar"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SLIDER:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match sliders.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkSwitch and #GtkRange and its subclasses.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SLIDER "slider"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_BACKGROUND:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match the window background.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_BACKGROUND "background"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_RUBBERBAND:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match the rubberband selection rectangle.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkIconView and #GtkTreeView.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_RUBBERBAND "rubberband"
|
|
|
|
|
|
2014-06-06 21:53:50 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_CSD:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class that gets added to windows which have
|
|
|
|
|
* client-side decorations.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.14
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_CSD "csd"
|
|
|
|
|
|
2010-11-03 11:17:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_TOOLTIP:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match tooltip windows.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_TOOLTIP "tooltip"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_MENU:
|
|
|
|
|
*
|
2013-08-18 14:45:24 +00:00
|
|
|
|
* A CSS class to match menus.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkMenu.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_MENU "menu"
|
|
|
|
|
|
2013-08-18 14:45:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_CONTEXT_MENU:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match context menus.
|
|
|
|
|
*
|
|
|
|
|
* This style class is useful when you want to prevent
|
|
|
|
|
* a context menu from inheriting e.g. font changes from
|
|
|
|
|
* the widget it is attached to.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_CONTEXT_MENU "context-menu"
|
|
|
|
|
|
2010-11-08 00:30:02 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_MENUBAR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to menubars.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkMenuBar.
|
2010-11-08 00:30:02 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_MENUBAR "menubar"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_MENUITEM:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match menu items.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkMenuItem and its subclasses.
|
2010-11-08 00:30:02 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_MENUITEM "menuitem"
|
|
|
|
|
|
2010-11-09 17:27:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_TOOLBAR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match toolbars.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkToolbar.
|
2010-11-09 17:27:36 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_TOOLBAR "toolbar"
|
|
|
|
|
|
2011-03-03 15:13:10 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_PRIMARY_TOOLBAR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match primary toolbars.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
2014-02-07 19:03:49 +00:00
|
|
|
|
* This should be used for the “main” toolbar of an application,
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* right below its menubar.
|
2011-03-03 15:13:10 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_PRIMARY_TOOLBAR "primary-toolbar"
|
|
|
|
|
|
2011-03-17 19:44:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_INLINE_TOOLBAR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match inline toolbars.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This should be used for toolbars that are used to hold
|
|
|
|
|
* actions below lists, as seen e.g. in the left pane of the
|
|
|
|
|
* file chooser.
|
2011-03-17 19:44:03 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_INLINE_TOOLBAR "inline-toolbar"
|
|
|
|
|
|
2010-11-03 11:17:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_RADIO:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match radio buttons.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkRadioButton, #GtkRadioMenuItem and
|
|
|
|
|
* #GtkCellRendererToggle.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_RADIO "radio"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_CHECK:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match check boxes.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkCheckButton, #GtkCheckMenuItem and
|
|
|
|
|
* #GtkCellRendererToggle.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_CHECK "check"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_DEFAULT:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match the default widget.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkButton.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_DEFAULT "default"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_TROUGH:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match troughs, as in scrollbars and progressbars.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkRange and its subclasses, #GtkProgressBar
|
|
|
|
|
* and #GtkSwitch.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_TROUGH "trough"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SCROLLBAR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match scrollbars.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SCROLLBAR "scrollbar"
|
|
|
|
|
|
2012-02-03 19:03:28 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SCROLLBARS_JUNCTION:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match the junction area between an horizontal
|
2014-02-07 18:37:09 +00:00
|
|
|
|
* and vertical scrollbar, when they’re both shown.
|
2012-02-03 19:03:28 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkScrolledWindow.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SCROLLBARS_JUNCTION "scrollbars-junction"
|
|
|
|
|
|
2010-12-13 12:43:52 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SCALE:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match scale widgets.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkScale.
|
2010-12-13 12:43:52 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SCALE "scale"
|
|
|
|
|
|
2011-03-03 21:47:55 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SCALE_HAS_MARKS_ABOVE:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match scale widgets with marks attached,
|
|
|
|
|
* all the marks are above for horizontal #GtkScale.
|
|
|
|
|
* left for vertical #GtkScale.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SCALE_HAS_MARKS_ABOVE "scale-has-marks-above"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SCALE_HAS_MARKS_BELOW:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match scale widgets with marks attached,
|
|
|
|
|
* all the marks are below for horizontal #GtkScale,
|
|
|
|
|
* right for vertical #GtkScale.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SCALE_HAS_MARKS_BELOW "scale-has-marks-below"
|
|
|
|
|
|
2010-11-03 11:17:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_HEADER:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match a header element.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used for the header in #GtkCalendar.
|
2010-11-03 11:17:06 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_HEADER "header"
|
|
|
|
|
|
2010-11-08 00:30:02 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_ACCELERATOR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match an accelerator.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used for the accelerator in #GtkAccelLabel.
|
2010-11-08 00:30:02 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_ACCELERATOR "accelerator"
|
|
|
|
|
|
2011-03-08 22:08:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_RAISED:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match a raised control, such as a raised
|
|
|
|
|
* button on a toolbar.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This should be used in conjunction with #GTK_STYLE_CLASS_PRIMARY_TOOLBAR.
|
2011-03-08 22:08:03 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_RAISED "raised"
|
|
|
|
|
|
2011-11-28 19:40:04 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_LINKED:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to match a linked area, such as a box containing buttons
|
|
|
|
|
* belonging to the same control.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_LINKED "linked"
|
|
|
|
|
|
2010-11-08 00:30:02 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_GRIP:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining a resize grip.
|
|
|
|
|
*
|
|
|
|
|
* This is used for the resize grip in #GtkWindow.
|
2010-11-08 00:30:02 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_GRIP "grip"
|
|
|
|
|
|
2010-11-09 17:27:36 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_DOCK:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining a dock area.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkHandleBox.
|
2010-11-09 17:27:36 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_DOCK "dock"
|
|
|
|
|
|
2010-11-08 00:30:02 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_PROGRESSBAR:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class to use when rendering activity as a progressbar.
|
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkProgressBar and when drawing progress
|
|
|
|
|
* inside a #GtkEntry or in #GtkCellRendererProgress.
|
2010-11-08 00:30:02 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_PROGRESSBAR "progressbar"
|
2010-11-03 11:17:06 +00:00
|
|
|
|
|
2010-11-24 22:00:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SPINNER:
|
|
|
|
|
*
|
2014-02-07 19:03:49 +00:00
|
|
|
|
* A CSS class to use when rendering activity as a “spinner”.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkSpinner and #GtkCellRendererSpinner.
|
2010-11-24 22:00:47 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SPINNER "spinner"
|
|
|
|
|
|
2010-12-13 12:43:52 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_MARK:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining marks in a widget, such as in scales.
|
|
|
|
|
*
|
|
|
|
|
* Used in #GtkScale.
|
2010-12-13 12:43:52 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_MARK "mark"
|
|
|
|
|
|
2010-12-13 19:04:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_EXPANDER:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining an expander, such as those in treeviews.
|
|
|
|
|
*
|
|
|
|
|
* Used for drawing expanders in #GtkTreeView, GtkExpander and
|
|
|
|
|
* #GtkToolItemGroup.
|
2010-12-13 19:04:40 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_EXPANDER "expander"
|
|
|
|
|
|
2010-12-13 12:46:21 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SPINBUTTON:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining an spinbutton.
|
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkSpinButton.
|
2010-12-13 12:46:21 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SPINBUTTON "spinbutton"
|
|
|
|
|
|
2010-12-13 12:39:53 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_NOTEBOOK:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining a notebook.
|
|
|
|
|
*
|
|
|
|
|
* Used in #GtkNotebook.
|
2010-12-13 12:39:53 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_NOTEBOOK "notebook"
|
|
|
|
|
|
2010-12-14 19:26:52 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_VIEW:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining a view, such as iconviews or treeviews.
|
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkTreeView, #GtkIconView, #GtkTextView,
|
|
|
|
|
* as well as #GtkCalendar.
|
2010-12-14 19:26:52 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_VIEW "view"
|
|
|
|
|
|
2011-03-17 21:09:05 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SIDEBAR:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining a sidebar, such as the left side in
|
|
|
|
|
* a file chooser.
|
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkFileChooser and in #GtkAssistant.
|
2011-03-17 21:09:05 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SIDEBAR "sidebar"
|
|
|
|
|
|
2011-05-25 01:29:20 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_IMAGE:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining an image, such as the icon in an entry.
|
|
|
|
|
*
|
|
|
|
|
* This is used when rendering icons in #GtkEntry.
|
2011-05-25 01:29:20 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_IMAGE "image"
|
|
|
|
|
|
2011-01-04 00:57:50 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_HIGHLIGHT:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class defining a highlighted area, such as headings in
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* assistants and calendars.
|
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkAssistant and #GtkCalendar.
|
2011-01-04 00:57:50 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_HIGHLIGHT "highlight"
|
|
|
|
|
|
2010-12-28 16:37:22 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_FRAME:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class defining a frame delimiting content, such as
|
|
|
|
|
* #GtkFrame or the scrolled window frame around the
|
|
|
|
|
* scrollable area.
|
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkFrame and #GtkScrollbar.
|
2010-12-28 16:37:22 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_FRAME "frame"
|
|
|
|
|
|
2011-01-04 01:32:04 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_DND:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class for a drag-and-drop indicator.
|
|
|
|
|
*
|
|
|
|
|
* This is used when drawing an outline around a potential
|
|
|
|
|
* drop target during DND.
|
2011-01-04 01:32:04 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_DND "dnd"
|
|
|
|
|
|
2011-01-10 22:23:54 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_PANE_SEPARATOR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class for a pane separator, such as those in #GtkPaned.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* Used in #GtkPaned.
|
2011-01-10 22:23:54 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_PANE_SEPARATOR "pane-separator"
|
|
|
|
|
|
2011-03-03 03:55:25 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SEPARATOR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class for a separator.
|
2011-06-30 23:18:26 +00:00
|
|
|
|
*
|
|
|
|
|
* This is used in #GtkSeparator, #GtkSeparatorMenuItem,
|
|
|
|
|
* #GtkSeparatorToolItem, and when drawing separators in #GtkTreeView.
|
2011-03-03 03:55:25 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SEPARATOR "separator"
|
|
|
|
|
|
2010-12-14 01:29:57 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_INFO:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class for an area displaying an informational message,
|
|
|
|
|
* such as those in infobars.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkInfoBar.
|
2010-12-14 01:29:57 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_INFO "info"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_WARNING:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class for an area displaying a warning message,
|
|
|
|
|
* such as those in infobars.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkInfoBar.
|
2010-12-14 01:29:57 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_WARNING "warning"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_QUESTION:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class for an area displaying a question to the user,
|
|
|
|
|
* such as those in infobars.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkInfoBar.
|
2010-12-14 01:29:57 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_QUESTION "question"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_ERROR:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class for an area displaying an error message,
|
|
|
|
|
* such as those in infobars.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkInfoBar.
|
2010-12-14 01:29:57 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_ERROR "error"
|
|
|
|
|
|
2011-01-10 22:38:47 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_HORIZONTAL:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class for horizontally layered widgets.
|
|
|
|
|
*
|
|
|
|
|
* This is used by widgets implementing #GtkOrientable.
|
2011-01-10 22:38:47 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_HORIZONTAL "horizontal"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_VERTICAL:
|
|
|
|
|
*
|
2011-06-30 23:18:26 +00:00
|
|
|
|
* A CSS class for vertically layered widgets.
|
|
|
|
|
*
|
|
|
|
|
* This is used by widgets implementing #GtkOrientable.
|
2011-01-10 22:38:47 +00:00
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_VERTICAL "vertical"
|
|
|
|
|
|
2011-09-22 00:13:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_TOP:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to indicate an area at the top of a widget.
|
|
|
|
|
*
|
|
|
|
|
* This is used by widgets that can render an area in different
|
|
|
|
|
* positions, such as tabs in a #GtkNotebook.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_TOP "top"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_BOTTOM:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to indicate an area at the bottom of a widget.
|
|
|
|
|
*
|
|
|
|
|
* This is used by widgets that can render an area in different
|
|
|
|
|
* positions, such as tabs in a #GtkNotebook.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_BOTTOM "bottom"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_LEFT:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to indicate an area at the left of a widget.
|
|
|
|
|
*
|
|
|
|
|
* This is used by widgets that can render an area in different
|
|
|
|
|
* positions, such as tabs in a #GtkNotebook.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_LEFT "left"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_RIGHT:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to indicate an area at the right of a widget.
|
|
|
|
|
*
|
|
|
|
|
* This is used by widgets that can render an area in different
|
|
|
|
|
* positions, such as tabs in a #GtkNotebook.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_RIGHT "right"
|
2010-12-13 12:39:53 +00:00
|
|
|
|
|
2012-04-19 19:00:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_PULSE:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class to use when rendering a pulse in an indeterminate progress bar.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkProgressBar and #GtkEntry.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_PULSE "pulse"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_ARROW:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used when rendering an arrow element.
|
|
|
|
|
*
|
|
|
|
|
* Note that #gtk_render_arrow automatically adds this style class
|
|
|
|
|
* to the style context when rendering an arrow element.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_ARROW "arrow"
|
|
|
|
|
|
2012-04-19 19:01:04 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_OSD:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used when rendering an OSD (On Screen Display) element,
|
|
|
|
|
* on top of another container.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_OSD "osd"
|
|
|
|
|
|
2012-05-29 21:00:33 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_LEVEL_BAR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used when rendering a level indicator, such
|
|
|
|
|
* as a battery charge level, or a password strength.
|
|
|
|
|
*
|
|
|
|
|
* This is used by #GtkLevelBar.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_LEVEL_BAR "level-bar"
|
|
|
|
|
|
2012-07-11 13:51:43 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_CURSOR_HANDLE:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used when rendering a drag handle for
|
|
|
|
|
* text selection.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_CURSOR_HANDLE "cursor-handle"
|
|
|
|
|
|
2012-10-26 15:57:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_INSERTION_CURSOR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used when rendering a drag handle for
|
|
|
|
|
* the insertion cursor position.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_INSERTION_CURSOR "insertion-cursor"
|
|
|
|
|
|
2013-08-16 17:25:32 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_TITLEBAR:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used when rendering a titlebar in a toplevel
|
|
|
|
|
* window.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_TITLEBAR "titlebar"
|
2012-10-26 15:57:03 +00:00
|
|
|
|
|
2014-07-04 22:13:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_TITLE:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used for the title label in a titlebar in
|
|
|
|
|
* a toplevel window.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.14
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_TITLE "title"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SUBTITLE:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used for the subtitle label in a titlebar in
|
|
|
|
|
* a toplevel window.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.14
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SUBTITLE "subtitle"
|
|
|
|
|
|
2013-08-30 20:32:42 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_NEEDS_ATTENTION:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used when an element needs the user attention,
|
|
|
|
|
* for instance a button in a stack switcher corresponding to
|
|
|
|
|
* a hidden page that changed state.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.12
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_NEEDS_ATTENTION "needs-attention"
|
|
|
|
|
|
2014-02-07 15:25:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_SUGGESTED_ACTION:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used when an action (usually a button) is the
|
|
|
|
|
* primary suggested action in a specific context.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.12
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_SUGGESTED_ACTION "suggested-action"
|
|
|
|
|
|
2014-02-07 15:28:24 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_DESTRUCTIVE_ACTION:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used when an action (usually a button) is
|
|
|
|
|
* one that is expected to remove or destroy something visible
|
|
|
|
|
* to the user.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.12
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_DESTRUCTIVE_ACTION "destructive-action"
|
|
|
|
|
|
2014-06-18 11:13:30 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_POPOVER:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class that matches popovers. Used by #GtkPopover.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.14
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_POPOVER "popover"
|
|
|
|
|
|
2010-11-03 11:17:06 +00:00
|
|
|
|
/* Predefined set of widget regions */
|
|
|
|
|
|
2014-06-12 13:09:30 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_POPUP:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class that is added to the toplevel windows used for menus.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.14
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_POPUP "popup"
|
|
|
|
|
|
2014-06-12 13:14:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_MESSAGE_DIALOG:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class that is added to message dialogs.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.14
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_MESSAGE_DIALOG "message-dialog"
|
|
|
|
|
|
2014-06-27 02:00:29 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_FLAT:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class that is added when widgets that usually have
|
|
|
|
|
* a frame or border (like buttons or entries) should appear
|
|
|
|
|
* without it.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.14
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_FLAT "flat"
|
|
|
|
|
|
2014-07-06 16:16:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_CLASS_READ_ONLY:
|
|
|
|
|
*
|
|
|
|
|
* A CSS class used to indicate a read-only state.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_READ_ONLY "read-only"
|
|
|
|
|
|
2014-06-30 18:45:32 +00:00
|
|
|
|
/*
|
|
|
|
|
* GTK_STYLE_CLASS_OVERSHOOT:
|
|
|
|
|
* A CSS class that is added on the visual hints that happen
|
|
|
|
|
* when scrolling is attempted past the limits of a scrollable
|
|
|
|
|
* area.
|
|
|
|
|
*
|
|
|
|
|
* Since: 3.14
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_CLASS_OVERSHOOT "overshoot"
|
|
|
|
|
|
2010-11-03 11:17:06 +00:00
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_REGION_ROW:
|
|
|
|
|
*
|
|
|
|
|
* A widget region name to define a treeview row.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_REGION_ROW "row"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_REGION_COLUMN:
|
|
|
|
|
*
|
|
|
|
|
* A widget region name to define a treeview column.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_REGION_COLUMN "column"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_REGION_COLUMN_HEADER:
|
|
|
|
|
*
|
|
|
|
|
* A widget region name to define a treeview column header.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_REGION_COLUMN_HEADER "column-header"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* GTK_STYLE_REGION_TAB:
|
|
|
|
|
*
|
|
|
|
|
* A widget region name to define a notebook tab.
|
|
|
|
|
*/
|
|
|
|
|
#define GTK_STYLE_REGION_TAB "tab"
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-03-04 22:00:30 +00:00
|
|
|
|
GType gtk_style_context_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-10-19 16:42:00 +00:00
|
|
|
|
GtkStyleContext * gtk_style_context_new (void);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-09-11 10:42:35 +00:00
|
|
|
|
void gtk_style_context_add_provider_for_screen (GdkScreen *screen,
|
|
|
|
|
GtkStyleProvider *provider,
|
|
|
|
|
guint priority);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-09-11 10:42:35 +00:00
|
|
|
|
void gtk_style_context_remove_provider_for_screen (GdkScreen *screen,
|
|
|
|
|
GtkStyleProvider *provider);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-03-04 22:00:30 +00:00
|
|
|
|
void gtk_style_context_add_provider (GtkStyleContext *context,
|
|
|
|
|
GtkStyleProvider *provider,
|
|
|
|
|
guint priority);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-03-04 22:00:30 +00:00
|
|
|
|
void gtk_style_context_remove_provider (GtkStyleContext *context,
|
|
|
|
|
GtkStyleProvider *provider);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-07-03 18:53:50 +00:00
|
|
|
|
void gtk_style_context_save (GtkStyleContext *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-07-03 18:53:50 +00:00
|
|
|
|
void gtk_style_context_restore (GtkStyleContext *context);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2012-01-11 04:17:35 +00:00
|
|
|
|
GtkCssSection * gtk_style_context_get_section (GtkStyleContext *context,
|
|
|
|
|
const gchar *property);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-03-07 00:22:38 +00:00
|
|
|
|
void gtk_style_context_get_property (GtkStyleContext *context,
|
|
|
|
|
const gchar *property,
|
2010-08-16 17:09:34 +00:00
|
|
|
|
GtkStateFlags state,
|
2010-03-07 00:22:38 +00:00
|
|
|
|
GValue *value);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-03-07 00:22:38 +00:00
|
|
|
|
void gtk_style_context_get_valist (GtkStyleContext *context,
|
2010-08-16 17:09:34 +00:00
|
|
|
|
GtkStateFlags state,
|
2010-03-07 00:22:38 +00:00
|
|
|
|
va_list args);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-03-07 00:22:38 +00:00
|
|
|
|
void gtk_style_context_get (GtkStyleContext *context,
|
2010-08-16 17:09:34 +00:00
|
|
|
|
GtkStateFlags state,
|
2010-03-07 00:22:38 +00:00
|
|
|
|
...) G_GNUC_NULL_TERMINATED;
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-03-10 00:02:46 +00:00
|
|
|
|
void gtk_style_context_set_state (GtkStyleContext *context,
|
|
|
|
|
GtkStateFlags flags);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-03-10 00:02:46 +00:00
|
|
|
|
GtkStateFlags gtk_style_context_get_state (GtkStyleContext *context);
|
|
|
|
|
|
2013-06-27 16:21:41 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
|
void gtk_style_context_set_scale (GtkStyleContext *context,
|
|
|
|
|
gint scale);
|
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
|
gint gtk_style_context_get_scale (GtkStyleContext *context);
|
|
|
|
|
|
2012-04-04 16:55:51 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_6
|
2010-10-20 16:05:15 +00:00
|
|
|
|
gboolean gtk_style_context_state_is_running (GtkStyleContext *context,
|
|
|
|
|
GtkStateType state,
|
|
|
|
|
gdouble *progress);
|
2010-03-10 00:02:46 +00:00
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-03-13 10:15:42 +00:00
|
|
|
|
void gtk_style_context_set_path (GtkStyleContext *context,
|
|
|
|
|
GtkWidgetPath *path);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-06-06 18:13:44 +00:00
|
|
|
|
const GtkWidgetPath * gtk_style_context_get_path (GtkStyleContext *context);
|
2012-02-27 12:10:59 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_4
|
2011-12-29 11:30:25 +00:00
|
|
|
|
void gtk_style_context_set_parent (GtkStyleContext *context,
|
|
|
|
|
GtkStyleContext *parent);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-12-29 11:30:25 +00:00
|
|
|
|
GtkStyleContext *gtk_style_context_get_parent (GtkStyleContext *context);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-19 20:00:04 +00:00
|
|
|
|
GList * gtk_style_context_list_classes (GtkStyleContext *context);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-10-20 17:02:41 +00:00
|
|
|
|
void gtk_style_context_add_class (GtkStyleContext *context,
|
|
|
|
|
const gchar *class_name);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-10-20 17:02:41 +00:00
|
|
|
|
void gtk_style_context_remove_class (GtkStyleContext *context,
|
|
|
|
|
const gchar *class_name);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-10-20 17:02:41 +00:00
|
|
|
|
gboolean gtk_style_context_has_class (GtkStyleContext *context,
|
|
|
|
|
const gchar *class_name);
|
2010-03-20 12:02:20 +00:00
|
|
|
|
|
2014-06-19 18:00:16 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-08-05 09:08:51 +00:00
|
|
|
|
GList * gtk_style_context_list_regions (GtkStyleContext *context);
|
|
|
|
|
|
2014-06-19 18:00:16 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-10-20 17:02:41 +00:00
|
|
|
|
void gtk_style_context_add_region (GtkStyleContext *context,
|
|
|
|
|
const gchar *region_name,
|
|
|
|
|
GtkRegionFlags flags);
|
2014-06-19 18:00:16 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-10-20 17:02:41 +00:00
|
|
|
|
void gtk_style_context_remove_region (GtkStyleContext *context,
|
|
|
|
|
const gchar *region_name);
|
2014-06-19 18:00:16 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_14
|
2010-10-20 17:02:41 +00:00
|
|
|
|
gboolean gtk_style_context_has_region (GtkStyleContext *context,
|
|
|
|
|
const gchar *region_name,
|
|
|
|
|
GtkRegionFlags *flags_return);
|
2010-03-13 10:15:42 +00:00
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-06-18 15:11:37 +00:00
|
|
|
|
void gtk_style_context_get_style_property (GtkStyleContext *context,
|
|
|
|
|
const gchar *property_name,
|
|
|
|
|
GValue *value);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-02 11:58:16 +00:00
|
|
|
|
void gtk_style_context_get_style_valist (GtkStyleContext *context,
|
|
|
|
|
va_list args);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-02 11:58:16 +00:00
|
|
|
|
void gtk_style_context_get_style (GtkStyleContext *context,
|
|
|
|
|
...);
|
2010-06-18 15:11:37 +00:00
|
|
|
|
|
2013-07-05 13:17:24 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_10_FOR(gtk_icon_theme_lookup_icon)
|
2010-06-27 17:37:34 +00:00
|
|
|
|
GtkIconSet * gtk_style_context_lookup_icon_set (GtkStyleContext *context,
|
2011-01-23 23:29:07 +00:00
|
|
|
|
const gchar *stock_id);
|
2013-07-05 13:17:24 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_10
|
2010-12-03 19:39:58 +00:00
|
|
|
|
GdkPixbuf * gtk_icon_set_render_icon_pixbuf (GtkIconSet *icon_set,
|
|
|
|
|
GtkStyleContext *context,
|
|
|
|
|
GtkIconSize size);
|
2013-07-05 13:42:31 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_10
|
2013-06-25 11:59:51 +00:00
|
|
|
|
cairo_surface_t *
|
|
|
|
|
gtk_icon_set_render_icon_surface (GtkIconSet *icon_set,
|
|
|
|
|
GtkStyleContext *context,
|
|
|
|
|
GtkIconSize size,
|
|
|
|
|
int scale,
|
|
|
|
|
GdkWindow *for_window);
|
2010-06-27 17:37:34 +00:00
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-07-03 11:17:35 +00:00
|
|
|
|
void gtk_style_context_set_screen (GtkStyleContext *context,
|
|
|
|
|
GdkScreen *screen);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-07-03 11:17:35 +00:00
|
|
|
|
GdkScreen * gtk_style_context_get_screen (GtkStyleContext *context);
|
|
|
|
|
|
2012-12-19 17:03:16 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_8
|
|
|
|
|
void gtk_style_context_set_frame_clock (GtkStyleContext *context,
|
|
|
|
|
GdkFrameClock *frame_clock);
|
|
|
|
|
GDK_AVAILABLE_IN_3_8
|
|
|
|
|
GdkFrameClock *gtk_style_context_get_frame_clock (GtkStyleContext *context);
|
|
|
|
|
|
2012-12-18 17:05:28 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_8_FOR(gtk_style_context_set_state)
|
2010-08-02 15:18:53 +00:00
|
|
|
|
void gtk_style_context_set_direction (GtkStyleContext *context,
|
|
|
|
|
GtkTextDirection direction);
|
2012-12-18 17:05:28 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_8_FOR(gtk_style_context_get_state)
|
2010-08-02 15:18:53 +00:00
|
|
|
|
GtkTextDirection gtk_style_context_get_direction (GtkStyleContext *context);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-03 18:33:53 +00:00
|
|
|
|
void gtk_style_context_set_junction_sides (GtkStyleContext *context,
|
2011-01-23 23:29:07 +00:00
|
|
|
|
GtkJunctionSides sides);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-08-03 18:33:53 +00:00
|
|
|
|
GtkJunctionSides gtk_style_context_get_junction_sides (GtkStyleContext *context);
|
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-09 22:55:33 +00:00
|
|
|
|
gboolean gtk_style_context_lookup_color (GtkStyleContext *context,
|
|
|
|
|
const gchar *color_name,
|
|
|
|
|
GdkRGBA *color);
|
2010-06-27 17:37:34 +00:00
|
|
|
|
|
2012-04-04 16:55:51 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_6
|
2010-08-19 20:35:42 +00:00
|
|
|
|
void gtk_style_context_notify_state_change (GtkStyleContext *context,
|
|
|
|
|
GdkWindow *window,
|
|
|
|
|
gpointer region_id,
|
|
|
|
|
GtkStateType state,
|
|
|
|
|
gboolean state_value);
|
2012-04-04 16:55:51 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_6
|
2011-01-10 02:31:35 +00:00
|
|
|
|
void gtk_style_context_cancel_animations (GtkStyleContext *context,
|
|
|
|
|
gpointer region_id);
|
2012-04-04 16:55:51 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_6
|
2011-01-10 19:45:23 +00:00
|
|
|
|
void gtk_style_context_scroll_animations (GtkStyleContext *context,
|
|
|
|
|
GdkWindow *window,
|
|
|
|
|
gint dx,
|
|
|
|
|
gint dy);
|
2011-01-10 02:31:35 +00:00
|
|
|
|
|
2012-04-04 16:55:51 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_6
|
2010-08-19 20:35:42 +00:00
|
|
|
|
void gtk_style_context_push_animatable_region (GtkStyleContext *context,
|
|
|
|
|
gpointer region_id);
|
2012-04-04 16:55:51 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_6
|
2010-08-19 20:35:42 +00:00
|
|
|
|
void gtk_style_context_pop_animatable_region (GtkStyleContext *context);
|
|
|
|
|
|
2010-12-02 22:41:24 +00:00
|
|
|
|
/* Some helper functions to retrieve most common properties */
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-02 22:41:24 +00:00
|
|
|
|
void gtk_style_context_get_color (GtkStyleContext *context,
|
|
|
|
|
GtkStateFlags state,
|
|
|
|
|
GdkRGBA *color);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-02 22:41:24 +00:00
|
|
|
|
void gtk_style_context_get_background_color (GtkStyleContext *context,
|
|
|
|
|
GtkStateFlags state,
|
|
|
|
|
GdkRGBA *color);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-02 22:41:24 +00:00
|
|
|
|
void gtk_style_context_get_border_color (GtkStyleContext *context,
|
|
|
|
|
GtkStateFlags state,
|
|
|
|
|
GdkRGBA *color);
|
2012-12-06 01:55:22 +00:00
|
|
|
|
|
|
|
|
|
GDK_DEPRECATED_IN_3_8_FOR(gtk_style_context_get)
|
2011-01-23 23:29:07 +00:00
|
|
|
|
const PangoFontDescription *
|
|
|
|
|
gtk_style_context_get_font (GtkStyleContext *context,
|
|
|
|
|
GtkStateFlags state);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-02 22:41:24 +00:00
|
|
|
|
void gtk_style_context_get_border (GtkStyleContext *context,
|
|
|
|
|
GtkStateFlags state,
|
|
|
|
|
GtkBorder *border);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-02 22:41:24 +00:00
|
|
|
|
void gtk_style_context_get_padding (GtkStyleContext *context,
|
|
|
|
|
GtkStateFlags state,
|
|
|
|
|
GtkBorder *padding);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-02 22:41:24 +00:00
|
|
|
|
void gtk_style_context_get_margin (GtkStyleContext *context,
|
|
|
|
|
GtkStateFlags state,
|
|
|
|
|
GtkBorder *margin);
|
2010-08-19 20:35:42 +00:00
|
|
|
|
|
2013-10-01 13:09:20 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_12
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_style_context_invalidate (GtkStyleContext *context);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_style_context_reset_widgets (GdkScreen *screen);
|
2010-08-19 20:35:42 +00:00
|
|
|
|
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_style_context_set_background (GtkStyleContext *context,
|
|
|
|
|
GdkWindow *window);
|
2010-11-09 20:24:41 +00:00
|
|
|
|
|
2010-03-20 13:26:11 +00:00
|
|
|
|
/* Paint methods */
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_check (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_option (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_arrow (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble angle,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble size);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_background (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_frame (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_expander (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_focus (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_layout (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
PangoLayout *layout);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_line (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x0,
|
|
|
|
|
gdouble y0,
|
|
|
|
|
gdouble x1,
|
|
|
|
|
gdouble y1);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_slider (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height,
|
|
|
|
|
GtkOrientation orientation);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_frame_gap (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height,
|
|
|
|
|
GtkPositionType gap_side,
|
|
|
|
|
gdouble xy0_gap,
|
|
|
|
|
gdouble xy1_gap);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_extension (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height,
|
|
|
|
|
GtkPositionType gap_side);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_handle (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height);
|
2013-03-20 22:17:32 +00:00
|
|
|
|
GDK_AVAILABLE_IN_ALL
|
2011-01-23 23:29:07 +00:00
|
|
|
|
void gtk_render_activity (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
gdouble width,
|
|
|
|
|
gdouble height);
|
2013-07-05 13:17:24 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_10_FOR(gtk_icon_theme_load_icon)
|
2010-11-03 20:14:08 +00:00
|
|
|
|
GdkPixbuf * gtk_render_icon_pixbuf (GtkStyleContext *context,
|
|
|
|
|
const GtkIconSource *source,
|
|
|
|
|
GtkIconSize size);
|
2012-02-27 12:10:59 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_2
|
2011-05-25 00:59:50 +00:00
|
|
|
|
void gtk_render_icon (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
2011-11-02 03:50:19 +00:00
|
|
|
|
GdkPixbuf *pixbuf,
|
2011-05-25 00:59:50 +00:00
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y);
|
2013-06-24 10:35:39 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
|
void gtk_render_icon_surface (GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
cairo_surface_t *surface,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y);
|
2012-02-27 12:10:59 +00:00
|
|
|
|
GDK_AVAILABLE_IN_3_4
|
2011-11-27 15:38:04 +00:00
|
|
|
|
void gtk_render_insertion_cursor
|
|
|
|
|
(GtkStyleContext *context,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
gdouble x,
|
|
|
|
|
gdouble y,
|
|
|
|
|
PangoLayout *layout,
|
|
|
|
|
int index,
|
|
|
|
|
PangoDirection direction);
|
2012-02-27 16:35:57 +00:00
|
|
|
|
GDK_DEPRECATED_IN_3_4
|
2011-11-02 03:50:19 +00:00
|
|
|
|
void gtk_draw_insertion_cursor (GtkWidget *widget,
|
|
|
|
|
cairo_t *cr,
|
|
|
|
|
const GdkRectangle *location,
|
|
|
|
|
gboolean is_primary,
|
|
|
|
|
GtkTextDirection direction,
|
|
|
|
|
gboolean draw_arrow);
|
|
|
|
|
|
2010-03-04 22:00:30 +00:00
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
|
|
#endif /* __GTK_STYLE_CONTEXT_H__ */
|