2016-05-09 02:08:26 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef WidgetStyleCache_h
|
|
|
|
#define WidgetStyleCache_h
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include "gtkdrawing.h"
|
|
|
|
|
|
|
|
GtkWidget* GetWidget(WidgetNodeType aNodeType);
|
|
|
|
|
2018-02-20 18:16:23 +03:00
|
|
|
cairo_surface_t* GetWidgetIconSurface(GtkWidget* aWidgetIcon, int aScale);
|
2018-01-25 13:13:12 +03:00
|
|
|
|
2016-06-07 09:06:04 +03:00
|
|
|
/*
|
|
|
|
* Return a new style context based on aWidget, as a child of aParentStyle.
|
|
|
|
* If aWidget still has a floating reference, then it is sunk and released.
|
|
|
|
*/
|
|
|
|
GtkStyleContext* CreateStyleForWidget(GtkWidget* aWidget,
|
|
|
|
GtkStyleContext* aParentStyle);
|
|
|
|
|
2016-06-07 03:49:00 +03:00
|
|
|
GtkStyleContext* CreateCSSNode(const char* aName, GtkStyleContext* aParentStyle,
|
|
|
|
GType aType = G_TYPE_NONE);
|
|
|
|
|
2017-09-05 00:16:01 +03:00
|
|
|
/*
|
|
|
|
* Returns a pointer to a style context for the specified node and state.
|
2018-04-18 12:03:39 +03:00
|
|
|
* aStateFlags is applied only to last widget in css style path,
|
|
|
|
* for instance GetStyleContext(MOZ_GTK_BUTTON, .., GTK_STATE_FLAG_HOVER)
|
|
|
|
* you get "window button:hover" css selector.
|
|
|
|
* If you want aStateFlags applied to all path elements use
|
|
|
|
* CreateStyleContextWithStates().
|
|
|
|
*
|
|
|
|
* The context is owned by WidgetStyleCache. Do not unref.
|
2017-09-05 00:16:01 +03:00
|
|
|
*/
|
2016-05-09 02:08:26 +03:00
|
|
|
GtkStyleContext* GetStyleContext(
|
2019-04-25 16:18:49 +03:00
|
|
|
WidgetNodeType aNodeType, int aScale = 1,
|
|
|
|
GtkTextDirection aDirection = GTK_TEXT_DIR_NONE,
|
|
|
|
GtkStateFlags aStateFlags = GTK_STATE_FLAG_NORMAL);
|
2016-05-09 02:08:26 +03:00
|
|
|
|
2018-04-18 12:03:39 +03:00
|
|
|
/*
|
|
|
|
* Returns a pointer to a style context for the specified node
|
|
|
|
* and state applied to all elements at widget style path.
|
|
|
|
*
|
|
|
|
* The context is owned by caller and must be released by g_object_unref().
|
|
|
|
*/
|
|
|
|
GtkStyleContext* CreateStyleContextWithStates(
|
2019-04-25 16:18:49 +03:00
|
|
|
WidgetNodeType aNodeType, int aScale = 1,
|
|
|
|
GtkTextDirection aDirection = GTK_TEXT_DIR_NONE,
|
2018-04-18 12:03:39 +03:00
|
|
|
GtkStateFlags aStateFlags = GTK_STATE_FLAG_NORMAL);
|
|
|
|
|
2021-10-28 13:52:31 +03:00
|
|
|
void ResetWidgetCache();
|
2016-05-09 02:08:26 +03:00
|
|
|
|
2020-12-04 18:47:30 +03:00
|
|
|
bool IsSolidCSDStyleUsed();
|
|
|
|
|
2019-04-25 16:18:49 +03:00
|
|
|
void StyleContextSetScale(GtkStyleContext* style, gint aScaleFactor);
|
|
|
|
|
2021-12-12 22:49:17 +03:00
|
|
|
gint GetBorderRadius(GtkStyleContext* aStyle);
|
|
|
|
|
2021-12-13 13:48:36 +03:00
|
|
|
bool HeaderBarShouldDrawContainer(WidgetNodeType);
|
|
|
|
|
2016-05-09 02:08:26 +03:00
|
|
|
#endif // WidgetStyleCache_h
|