2008-06-02 17:41:35 -04:00
|
|
|
/* Clearlooks theme engine
|
2008-12-12 09:43:24 -05:00
|
|
|
* Copyright (C) 2005 Richard Stellingwerff.
|
|
|
|
* Copyright (C) 2007 Benjamin Berg <benjamin@sipsolutions.net>.
|
2008-06-02 17:41:35 -04:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <ge-support.h>
|
|
|
|
#include "clearlooks_style.h"
|
|
|
|
#include "clearlooks_rc_style.h"
|
|
|
|
#include "clearlooks_draw.h"
|
|
|
|
#include "support.h"
|
|
|
|
|
|
|
|
/* #define DEBUG 1 */
|
|
|
|
|
|
|
|
#define DETAIL(xx) ((detail) && (!strcmp(xx, detail)))
|
|
|
|
|
|
|
|
#define DRAW_ARGS GtkStyle *style, \
|
|
|
|
GdkWindow *window, \
|
|
|
|
GtkStateType state_type, \
|
|
|
|
GtkShadowType shadow_type, \
|
|
|
|
GdkRectangle *area, \
|
|
|
|
GtkWidget *widget, \
|
|
|
|
const gchar *detail, \
|
|
|
|
gint x, \
|
|
|
|
gint y, \
|
|
|
|
gint width, \
|
|
|
|
gint height
|
|
|
|
|
|
|
|
#ifdef HAVE_ANIMATION
|
|
|
|
#include "animation.h"
|
|
|
|
#endif
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
#define STYLE_FUNCTION(function) (clearlooks_style_class->style_functions[CLEARLOOKS_STYLE (style)->style].function)
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
static ClearlooksStyleClass *clearlooks_style_class;
|
|
|
|
static GtkStyleClass *clearlooks_parent_class;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
static void
|
2016-02-21 15:54:19 -05:00
|
|
|
clearlooks_set_widget_parameters (GtkWidget *widget,
|
2008-06-02 17:41:35 -04:00
|
|
|
const GtkStyle *style,
|
|
|
|
GtkStateType state_type,
|
|
|
|
WidgetParameters *params)
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
params->style_functions = &(clearlooks_style_class->style_functions[CLEARLOOKS_STYLE (style)->style]);
|
|
|
|
|
|
|
|
params->active = (state_type == GTK_STATE_ACTIVE);
|
|
|
|
params->prelight = (state_type == GTK_STATE_PRELIGHT);
|
2015-10-05 10:17:49 -04:00
|
|
|
params->disabled = (state_type == GTK_STATE_INSENSITIVE);
|
2008-12-12 09:43:24 -05:00
|
|
|
params->state_type = (ClearlooksStateType)state_type;
|
|
|
|
params->corners = CR_CORNER_ALL;
|
|
|
|
params->ltr = ge_widget_is_ltr ((GtkWidget*)widget);
|
|
|
|
params->focus = widget && GTK_WIDGET_HAS_FOCUS (widget);
|
|
|
|
params->is_default = widget && GE_WIDGET_HAS_DEFAULT (widget);
|
|
|
|
params->enable_glow = FALSE;
|
|
|
|
params->radius = CLEARLOOKS_STYLE (style)->radius;
|
|
|
|
|
|
|
|
if (!params->active && widget && GE_IS_TOGGLE_BUTTON (widget))
|
|
|
|
params->active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget));
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
params->xthickness = style->xthickness;
|
|
|
|
params->ythickness = style->ythickness;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
/* This is used in GtkEntry to fake transparency. The reason to do this
|
|
|
|
* is that the entry has it's entire background filled with base[STATE].
|
|
|
|
* This is not a very good solution as it will eg. fail if one changes
|
|
|
|
* the background color of a notebook. */
|
|
|
|
params->parentbg = CLEARLOOKS_STYLE (style)->colors.bg[state_type];
|
|
|
|
clearlooks_get_parent_bg (widget, ¶ms->parentbg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_flat_box (DRAW_ARGS)
|
|
|
|
{
|
2015-10-05 10:17:49 -04:00
|
|
|
if (detail &&
|
2008-06-02 17:41:35 -04:00
|
|
|
state_type == GTK_STATE_SELECTED && (
|
|
|
|
!strncmp ("cell_even", detail, 9) ||
|
|
|
|
!strncmp ("cell_odd", detail, 8)))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
ClearlooksStyle *clearlooks_style;
|
|
|
|
ClearlooksColors *colors;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
|
|
|
clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
colors = &clearlooks_style->colors;
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
|
|
|
|
/* XXX: We could expose the side details by setting params->corners accordingly
|
|
|
|
* or adding another option. */
|
|
|
|
STYLE_FUNCTION (draw_selected_cell) (cr, colors, ¶ms, x, y, width, height);
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
else if (DETAIL ("tooltip"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
ClearlooksStyle *clearlooks_style;
|
|
|
|
ClearlooksColors *colors;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
|
|
|
clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
colors = &clearlooks_style->colors;
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
|
|
|
|
STYLE_FUNCTION (draw_tooltip) (cr, colors, ¶ms, x, y, width, height);
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
else if ((CLEARLOOKS_STYLE (style)->style == CL_STYLE_GLOSSY || CLEARLOOKS_STYLE (style)->style == CL_STYLE_GUMMY) &&
|
|
|
|
((DETAIL("checkbutton") || DETAIL("radiobutton")) && state_type == GTK_STATE_PRELIGHT))
|
|
|
|
{
|
|
|
|
/* XXX: Don't draw any check/radiobutton bg in GLOSSY or GUMMY mode. */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->draw_flat_box (style, window, state_type,
|
|
|
|
shadow_type,
|
|
|
|
area, widget, detail,
|
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_shadow (DRAW_ARGS)
|
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
ClearlooksColors *colors = &clearlooks_style->colors;
|
|
|
|
cairo_t *cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if ((DETAIL ("entry") && !(widget && widget->parent && GE_IS_TREE_VIEW (widget->parent))) ||
|
|
|
|
(DETAIL ("frame") && ge_is_in_combo_box (widget)))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
WidgetParameters params;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
/* Override the entries state type, because we are too lame to handle this via
|
|
|
|
* the focus ring, and GtkEntry doesn't even set the INSENSITIVE state ... */
|
|
|
|
if (state_type == GTK_STATE_NORMAL && widget && GE_IS_ENTRY (widget))
|
2008-12-12 09:43:24 -05:00
|
|
|
params.state_type = GTK_WIDGET_STATE (widget);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (widget && (ge_is_in_combo_box (widget) || GE_IS_SPIN_BUTTON (widget)))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
width += style->xthickness;
|
|
|
|
if (!params.ltr)
|
|
|
|
x -= style->xthickness;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (params.ltr)
|
|
|
|
params.corners = CR_CORNER_TOPLEFT | CR_CORNER_BOTTOMLEFT;
|
|
|
|
else
|
|
|
|
params.corners = CR_CORNER_TOPRIGHT | CR_CORNER_BOTTOMRIGHT;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION (draw_entry) (cr, &clearlooks_style->colors, ¶ms,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
else if (DETAIL ("frame") && widget && GE_IS_STATUSBAR (widget->parent))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
WidgetParameters params;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
|
|
|
|
gtk_style_apply_default_background (style, window, TRUE, state_type,
|
|
|
|
area, x, y, width, height);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
STYLE_FUNCTION (draw_statusbar) (cr, colors, ¶ms,
|
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
else if (DETAIL ("frame"))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
FrameParameters frame;
|
|
|
|
frame.shadow = shadow_type;
|
2008-12-12 09:43:24 -05:00
|
|
|
frame.gap_x = -1; /* No gap will be drawn */
|
2008-06-02 17:41:35 -04:00
|
|
|
frame.border = &colors->shade[4];
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
params.corners = CR_CORNER_NONE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (widget && !g_str_equal ("XfcePanelWindow", gtk_widget_get_name (gtk_widget_get_toplevel (widget))))
|
|
|
|
STYLE_FUNCTION(draw_frame) (cr, colors, ¶ms, &frame,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (DETAIL ("scrolled_window") || DETAIL ("viewport") || detail == NULL)
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
CairoColor *border = (CairoColor*)&colors->shade[5];
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_rectangle (cr, x+0.5, y+0.5, width-1, height-1);
|
2008-12-12 09:43:24 -05:00
|
|
|
ge_cairo_set_color (cr, border);
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_set_line_width (cr, 1);
|
|
|
|
cairo_stroke (cr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
FrameParameters frame;
|
|
|
|
|
|
|
|
frame.shadow = shadow_type;
|
|
|
|
frame.gap_x = -1;
|
|
|
|
frame.border = &colors->shade[5];
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
params.corners = CR_CORNER_ALL;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_frame) (cr, colors, ¶ms, &frame, x, y, width, height);
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
static void
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_style_draw_box_gap (DRAW_ARGS,
|
2008-12-12 09:43:24 -05:00
|
|
|
GtkPositionType gap_side,
|
|
|
|
gint gap_x,
|
|
|
|
gint gap_width)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
ClearlooksColors *colors = &clearlooks_style->colors;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
|
|
|
|
if (DETAIL ("notebook"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
FrameParameters frame;
|
|
|
|
gboolean start, end;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
frame.shadow = shadow_type;
|
|
|
|
frame.gap_side = gap_side;
|
|
|
|
frame.gap_x = gap_x;
|
|
|
|
frame.gap_width = gap_width;
|
|
|
|
frame.border = &colors->shade[5];
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
|
|
|
|
clearlooks_get_notebook_tab_position (widget, &start, &end);
|
|
|
|
|
|
|
|
params.corners = CR_CORNER_ALL;
|
2008-12-12 09:43:24 -05:00
|
|
|
switch (gap_side) {
|
|
|
|
case GTK_POS_LEFT:
|
|
|
|
if (start)
|
|
|
|
params.corners ^= CR_CORNER_TOPLEFT;
|
|
|
|
if (end)
|
|
|
|
params.corners ^= CR_CORNER_BOTTOMLEFT;
|
|
|
|
break;
|
|
|
|
case GTK_POS_RIGHT:
|
|
|
|
if (start)
|
|
|
|
params.corners ^= CR_CORNER_TOPRIGHT;
|
|
|
|
if (end)
|
|
|
|
params.corners ^= CR_CORNER_BOTTOMRIGHT;
|
|
|
|
break;
|
2008-06-02 17:41:35 -04:00
|
|
|
case GTK_POS_TOP:
|
2008-12-12 09:43:24 -05:00
|
|
|
if (ge_widget_is_ltr (widget)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
if (start)
|
|
|
|
params.corners ^= CR_CORNER_TOPLEFT;
|
|
|
|
if (end)
|
|
|
|
params.corners ^= CR_CORNER_TOPRIGHT;
|
2008-12-12 09:43:24 -05:00
|
|
|
} else {
|
2008-06-02 17:41:35 -04:00
|
|
|
if (start)
|
|
|
|
params.corners ^= CR_CORNER_TOPRIGHT;
|
|
|
|
if (end)
|
|
|
|
params.corners ^= CR_CORNER_TOPLEFT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GTK_POS_BOTTOM:
|
2008-12-12 09:43:24 -05:00
|
|
|
if (ge_widget_is_ltr (widget)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
if (start)
|
|
|
|
params.corners ^= CR_CORNER_BOTTOMLEFT;
|
|
|
|
if (end)
|
|
|
|
params.corners ^= CR_CORNER_BOTTOMRIGHT;
|
2008-12-12 09:43:24 -05:00
|
|
|
} else {
|
2008-06-02 17:41:35 -04:00
|
|
|
if (start)
|
|
|
|
params.corners ^= CR_CORNER_BOTTOMRIGHT;
|
|
|
|
if (end)
|
|
|
|
params.corners ^= CR_CORNER_BOTTOMLEFT;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill the background with bg[NORMAL] */
|
|
|
|
ge_cairo_rounded_rectangle (cr, x, y, width, height, params.radius, params.corners);
|
|
|
|
ge_cairo_set_color (cr, &colors->bg[GTK_STATE_NORMAL]);
|
|
|
|
cairo_fill (cr);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_frame) (cr, colors, ¶ms, &frame,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->draw_box_gap (style, window, state_type, shadow_type,
|
|
|
|
area, widget, detail,
|
|
|
|
x, y, width, height,
|
|
|
|
gap_side, gap_x, gap_width);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
|
|
|
cairo_destroy (cr);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_extension (DRAW_ARGS, GtkPositionType gap_side)
|
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
ClearlooksColors *colors = &clearlooks_style->colors;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (DETAIL ("tab"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
TabParameters tab;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
tab.gap_side = (ClearlooksGapSide)gap_side;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
switch (gap_side)
|
|
|
|
{
|
|
|
|
case CL_GAP_BOTTOM:
|
|
|
|
params.corners = CR_CORNER_TOPLEFT | CR_CORNER_TOPRIGHT;
|
|
|
|
break;
|
2008-12-12 09:43:24 -05:00
|
|
|
case CL_GAP_TOP:
|
|
|
|
params.corners = CR_CORNER_BOTTOMLEFT | CR_CORNER_BOTTOMRIGHT;
|
2008-06-02 17:41:35 -04:00
|
|
|
break;
|
|
|
|
case CL_GAP_RIGHT:
|
|
|
|
params.corners = CR_CORNER_TOPLEFT | CR_CORNER_BOTTOMLEFT;
|
|
|
|
break;
|
2008-12-12 09:43:24 -05:00
|
|
|
case CL_GAP_LEFT:
|
|
|
|
params.corners = CR_CORNER_TOPRIGHT | CR_CORNER_BOTTOMRIGHT;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_tab) (cr, colors, ¶ms, &tab,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->draw_extension (style, window, state_type, shadow_type, area,
|
|
|
|
widget, detail, x, y, width, height,
|
|
|
|
gap_side);
|
2008-10-04 20:09:32 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
static void
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_style_draw_handle (DRAW_ARGS, GtkOrientation orientation)
|
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
ClearlooksColors *colors = &clearlooks_style->colors;
|
|
|
|
cairo_t *cr;
|
2008-12-12 09:43:24 -05:00
|
|
|
gboolean is_horizontal;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
/* Evil hack to work around broken orientation for toolbars */
|
|
|
|
is_horizontal = (width > height);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (DETAIL ("handlebox"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
HandleParameters handle;
|
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
handle.type = CL_HANDLE_TOOLBAR;
|
2008-12-12 09:43:24 -05:00
|
|
|
handle.horizontal = is_horizontal;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
/* Is this ever true? -Daniel */
|
|
|
|
if (GE_IS_TOOLBAR (widget) && shadow_type != GTK_SHADOW_NONE)
|
|
|
|
{
|
|
|
|
ToolbarParameters toolbar;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_set_toolbar_parameters (&toolbar, widget, window, x, y);
|
|
|
|
|
|
|
|
toolbar.style = clearlooks_style->toolbarstyle;
|
|
|
|
|
|
|
|
cairo_save (cr);
|
|
|
|
STYLE_FUNCTION(draw_toolbar) (cr, colors, ¶ms, &toolbar, x, y, width, height);
|
|
|
|
cairo_restore (cr);
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_handle) (cr, colors, ¶ms, &handle,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (DETAIL ("paned"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
HandleParameters handle;
|
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
handle.type = CL_HANDLE_SPLITTER;
|
2008-12-12 09:43:24 -05:00
|
|
|
handle.horizontal = orientation == GTK_ORIENTATION_HORIZONTAL;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_handle) (cr, colors, ¶ms, &handle,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
HandleParameters handle;
|
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
handle.type = CL_HANDLE_TOOLBAR;
|
2008-12-12 09:43:24 -05:00
|
|
|
handle.horizontal = is_horizontal;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
/* Is this ever true? -Daniel */
|
|
|
|
if (GE_IS_TOOLBAR (widget) && shadow_type != GTK_SHADOW_NONE)
|
|
|
|
{
|
|
|
|
ToolbarParameters toolbar;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_set_toolbar_parameters (&toolbar, widget, window, x, y);
|
|
|
|
|
|
|
|
toolbar.style = clearlooks_style->toolbarstyle;
|
|
|
|
|
|
|
|
cairo_save (cr);
|
|
|
|
STYLE_FUNCTION(draw_toolbar) (cr, colors, ¶ms, &toolbar, x, y, width, height);
|
|
|
|
cairo_restore (cr);
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_handle) (cr, colors, ¶ms, &handle,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_box (DRAW_ARGS)
|
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
const ClearlooksColors *colors;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
colors = &clearlooks_style->colors;
|
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (DETAIL ("menubar") && !ge_is_panel_widget_item(widget))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
MenuBarParameters menubar;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
|
|
|
|
menubar.style = clearlooks_style->menubarstyle;
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
STYLE_FUNCTION(draw_menubar) (cr, colors, ¶ms, &menubar,
|
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
else if (DETAIL ("button") && widget && widget->parent &&
|
|
|
|
(GE_IS_TREE_VIEW(widget->parent) ||
|
|
|
|
GE_IS_CLIST (widget->parent) ||
|
|
|
|
ge_object_is_a (G_OBJECT(widget->parent), "ETree"))) /* ECanvas inside ETree */
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
ListViewHeaderParameters header;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
gint columns, column_index;
|
|
|
|
gboolean resizable = TRUE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
/* XXX: This makes unknown treeview header CL_ORDER_MIDDLE, in need for something nicer */
|
2008-06-02 17:41:35 -04:00
|
|
|
columns = 3;
|
|
|
|
column_index = 1;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
params.corners = CR_CORNER_NONE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (GE_IS_TREE_VIEW (widget->parent))
|
|
|
|
{
|
|
|
|
clearlooks_treeview_get_header_index (GTK_TREE_VIEW(widget->parent),
|
2008-12-12 09:43:24 -05:00
|
|
|
widget, &column_index, &columns,
|
|
|
|
&resizable);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (GE_IS_CLIST (widget->parent))
|
|
|
|
{
|
|
|
|
clearlooks_clist_get_header_index (GTK_CLIST(widget->parent),
|
2008-12-12 09:43:24 -05:00
|
|
|
widget, &column_index, &columns);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
header.resizable = resizable;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (column_index == 0)
|
2008-12-12 09:43:24 -05:00
|
|
|
header.order = params.ltr ? CL_ORDER_FIRST : CL_ORDER_LAST;
|
|
|
|
else if (column_index == columns-1)
|
|
|
|
header.order = params.ltr ? CL_ORDER_LAST : CL_ORDER_FIRST;
|
|
|
|
else
|
|
|
|
header.order = CL_ORDER_MIDDLE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
gtk_style_apply_default_background (style, window, FALSE, state_type, area, x, y, width, height);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_list_view_header) (cr, colors, ¶ms, &header,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (DETAIL ("button") || DETAIL ("buttondefault"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (ge_is_in_combo_box(widget))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
if (params.ltr)
|
|
|
|
params.corners = CR_CORNER_TOPRIGHT | CR_CORNER_BOTTOMRIGHT;
|
|
|
|
else
|
|
|
|
params.corners = CR_CORNER_TOPLEFT | CR_CORNER_BOTTOMLEFT;
|
|
|
|
|
|
|
|
if (params.xthickness > 2)
|
|
|
|
{
|
|
|
|
if (params.ltr)
|
|
|
|
x--;
|
|
|
|
width++;
|
2013-03-24 09:55:56 -04:00
|
|
|
}
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
params.corners = CR_CORNER_ALL;
|
|
|
|
/* if (!(ge_is_combo_box (widget, FALSE))) */
|
|
|
|
params.enable_glow = TRUE;
|
2013-03-24 09:55:56 -04:00
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (GE_IS_TOGGLE_BUTTON (widget) &&
|
|
|
|
gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)))
|
|
|
|
params.active = TRUE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_button) (cr, &clearlooks_style->colors, ¶ms,
|
|
|
|
x, y, width, height);
|
|
|
|
}
|
|
|
|
else if (DETAIL ("spinbutton_up") || DETAIL ("spinbutton_down"))
|
|
|
|
{
|
|
|
|
if (state_type == GTK_STATE_ACTIVE)
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (style->xthickness == 3)
|
|
|
|
{
|
|
|
|
width++;
|
|
|
|
if (params.ltr)
|
|
|
|
x--;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (DETAIL ("spinbutton_up"))
|
|
|
|
{
|
|
|
|
height+=2;
|
|
|
|
if (params.ltr)
|
|
|
|
params.corners = CR_CORNER_TOPRIGHT;
|
|
|
|
else
|
|
|
|
params.corners = CR_CORNER_TOPLEFT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (params.ltr)
|
|
|
|
params.corners = CR_CORNER_BOTTOMRIGHT;
|
|
|
|
else
|
|
|
|
params.corners = CR_CORNER_BOTTOMLEFT;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_spinbutton_down) (cr, &clearlooks_style->colors, ¶ms, x, y, width, height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (DETAIL ("spinbutton"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (params.ltr)
|
|
|
|
params.corners = CR_CORNER_TOPRIGHT | CR_CORNER_BOTTOMRIGHT;
|
|
|
|
else
|
|
|
|
params.corners = CR_CORNER_TOPLEFT | CR_CORNER_BOTTOMLEFT;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (style->xthickness == 3)
|
|
|
|
{
|
|
|
|
if (params.ltr)
|
|
|
|
x--;
|
|
|
|
width++;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_spinbutton) (cr, &clearlooks_style->colors, ¶ms,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
else if (detail && g_str_has_prefix (detail, "trough") && GE_IS_SCALE (widget))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
SliderParameters slider;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
params.corners = CR_CORNER_NONE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
slider.lower = DETAIL ("trough-lower");
|
|
|
|
slider.fill_level = DETAIL ("trough-fill-level") || DETAIL ("trough-fill-level-full");
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
slider.horizontal = (GTK_RANGE (widget)->orientation == GTK_ORIENTATION_HORIZONTAL);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_scale_trough) (cr, &clearlooks_style->colors,
|
2008-12-12 09:43:24 -05:00
|
|
|
¶ms, &slider,
|
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
else if (DETAIL ("trough") && widget && GE_IS_PROGRESS_BAR (widget))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
WidgetParameters params;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
STYLE_FUNCTION(draw_progressbar_trough) (cr, colors, ¶ms,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
else if (DETAIL ("trough") && widget && (GE_IS_VSCROLLBAR (widget) || GE_IS_HSCROLLBAR (widget)))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
ScrollBarParameters scrollbar;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2008-12-12 09:43:24 -05:00
|
|
|
params.corners = CR_CORNER_NONE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
scrollbar.horizontal = TRUE;
|
|
|
|
scrollbar.junction = clearlooks_scrollbar_get_junction (widget);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (GE_IS_RANGE (widget))
|
|
|
|
scrollbar.horizontal = GTK_RANGE (widget)->orientation == GTK_ORIENTATION_HORIZONTAL;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (scrollbar.horizontal)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
x += 2;
|
|
|
|
width -= 4;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
else
|
|
|
|
{
|
|
|
|
y += 2;
|
|
|
|
height -= 4;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_scrollbar_trough) (cr, colors, ¶ms, &scrollbar,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (DETAIL ("bar"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
ProgressBarParameters progressbar;
|
|
|
|
gdouble elapsed = 0.0;
|
|
|
|
|
|
|
|
#ifdef HAVE_ANIMATION
|
|
|
|
if(clearlooks_style->animation && CL_IS_PROGRESS_BAR (widget))
|
2015-10-05 10:17:49 -04:00
|
|
|
{
|
2008-06-02 17:41:35 -04:00
|
|
|
gboolean activity_mode = GTK_PROGRESS (widget)->activity_mode;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (!activity_mode)
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_animation_progressbar_add ((gpointer)widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
elapsed = clearlooks_animation_elapsed (widget);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
|
|
|
|
if (widget && GE_IS_PROGRESS_BAR (widget))
|
|
|
|
{
|
|
|
|
progressbar.orientation = gtk_progress_bar_get_orientation (GTK_PROGRESS_BAR (widget));
|
|
|
|
progressbar.value = gtk_progress_bar_get_fraction(GTK_PROGRESS_BAR(widget));
|
|
|
|
progressbar.pulsing = GTK_PROGRESS (widget)->activity_mode;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
progressbar.orientation = CL_ORIENTATION_LEFT_TO_RIGHT;
|
|
|
|
progressbar.value = 0;
|
|
|
|
progressbar.pulsing = FALSE;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (!params.ltr)
|
|
|
|
{
|
2016-02-21 15:54:19 -05:00
|
|
|
if (progressbar.orientation == (ClearlooksOrientation)GTK_PROGRESS_LEFT_TO_RIGHT)
|
2008-06-02 17:41:35 -04:00
|
|
|
progressbar.orientation = GTK_PROGRESS_RIGHT_TO_LEFT;
|
2016-02-21 15:54:19 -05:00
|
|
|
else if (progressbar.orientation == (ClearlooksOrientation)GTK_PROGRESS_RIGHT_TO_LEFT)
|
2008-06-02 17:41:35 -04:00
|
|
|
progressbar.orientation = GTK_PROGRESS_LEFT_TO_RIGHT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Following is a hack to have a larger clip area, the one passed in
|
|
|
|
* does not allow for the shadow. */
|
|
|
|
if (area)
|
|
|
|
{
|
|
|
|
GdkRectangle tmp = *area;
|
|
|
|
if (!progressbar.pulsing)
|
|
|
|
{
|
|
|
|
switch (progressbar.orientation)
|
|
|
|
{
|
|
|
|
case GTK_PROGRESS_RIGHT_TO_LEFT:
|
|
|
|
tmp.x -= 1;
|
|
|
|
case GTK_PROGRESS_LEFT_TO_RIGHT:
|
|
|
|
tmp.width += 1;
|
|
|
|
break;
|
|
|
|
case GTK_PROGRESS_BOTTOM_TO_TOP:
|
|
|
|
tmp.y -= 1;
|
|
|
|
case GTK_PROGRESS_TOP_TO_BOTTOM:
|
|
|
|
tmp.height += 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-02-21 15:54:19 -05:00
|
|
|
if (progressbar.orientation == (ClearlooksOrientation)GTK_PROGRESS_RIGHT_TO_LEFT ||
|
|
|
|
progressbar.orientation == (ClearlooksOrientation)GTK_PROGRESS_LEFT_TO_RIGHT)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
tmp.x -= 1;
|
|
|
|
tmp.width += 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tmp.y -= 1;
|
|
|
|
tmp.height += 2;
|
|
|
|
}
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_reset_clip (cr);
|
|
|
|
gdk_cairo_rectangle (cr, &tmp);
|
|
|
|
cairo_clip (cr);
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_progressbar_fill) (cr, colors, ¶ms, &progressbar,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height,
|
|
|
|
10 - (int)(elapsed * 10.0) % 10);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (DETAIL ("optionmenu"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
OptionMenuParameters optionmenu;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
GtkRequisition indicator_size;
|
|
|
|
GtkBorder indicator_spacing;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
params.enable_glow = TRUE;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
ge_option_menu_get_props (widget, &indicator_size, &indicator_spacing);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (ge_widget_is_ltr (widget))
|
|
|
|
optionmenu.linepos = width - (indicator_size.width + indicator_spacing.left + indicator_spacing.right) - 1;
|
|
|
|
else
|
|
|
|
optionmenu.linepos = (indicator_size.width + indicator_spacing.left + indicator_spacing.right) + 1;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_optionmenu) (cr, colors, ¶ms, &optionmenu,
|
2015-10-05 10:17:49 -04:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (DETAIL ("menuitem"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (widget && GE_IS_MENU_BAR (widget->parent))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
params.corners = CR_CORNER_TOPLEFT | CR_CORNER_TOPRIGHT;
|
|
|
|
height += 1;
|
|
|
|
STYLE_FUNCTION(draw_menubaritem) (cr, colors, ¶ms, x, y, width, height);
|
|
|
|
}
|
|
|
|
else
|
2015-10-05 10:17:49 -04:00
|
|
|
{
|
2008-06-02 17:41:35 -04:00
|
|
|
params.corners = CR_CORNER_ALL;
|
|
|
|
STYLE_FUNCTION(draw_menuitem) (cr, colors, ¶ms, x, y, width, height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (DETAIL ("hscrollbar") || DETAIL ("vscrollbar")) /* This can't be "stepper" for scrollbars ... */
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
ScrollBarParameters scrollbar;
|
|
|
|
ScrollBarStepperParameters stepper;
|
|
|
|
GdkRectangle this_rectangle;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
this_rectangle.x = x;
|
|
|
|
this_rectangle.y = y;
|
|
|
|
this_rectangle.width = width;
|
|
|
|
this_rectangle.height = height;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
params.corners = CR_CORNER_NONE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
scrollbar.has_color = FALSE;
|
|
|
|
scrollbar.horizontal = TRUE;
|
|
|
|
scrollbar.junction = clearlooks_scrollbar_get_junction (widget);
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (clearlooks_style->colorize_scrollbar || clearlooks_style->has_scrollbar_color) {
|
2008-06-02 17:41:35 -04:00
|
|
|
scrollbar.has_color = TRUE;
|
2008-12-12 09:43:24 -05:00
|
|
|
}
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
scrollbar.horizontal = DETAIL ("hscrollbar");
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
stepper.stepper = clearlooks_scrollbar_get_stepper (widget, &this_rectangle);
|
|
|
|
|
|
|
|
STYLE_FUNCTION(draw_scrollbar_stepper) (cr, colors, ¶ms, &scrollbar, &stepper,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (DETAIL ("toolbar") || DETAIL ("handlebox_bin") || DETAIL ("dockitem_bin"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
ToolbarParameters toolbar;
|
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
clearlooks_set_toolbar_parameters (&toolbar, widget, window, x, y);
|
|
|
|
|
|
|
|
toolbar.style = clearlooks_style->toolbarstyle;
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
/* Only draw the shadows on horizontal toolbars */
|
|
|
|
if (shadow_type != GTK_SHADOW_NONE && height < 2*width )
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_toolbar) (cr, colors, ¶ms, &toolbar, x, y, width, height);
|
|
|
|
}
|
|
|
|
else if (DETAIL ("trough"))
|
|
|
|
{
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (DETAIL ("menu"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_menu_frame) (cr, colors, ¶ms, x, y, width, height);
|
|
|
|
}
|
|
|
|
else if (DETAIL ("hseparator") || DETAIL ("vseparator"))
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
const gchar *new_detail = detail;
|
2008-06-02 17:41:35 -04:00
|
|
|
/* Draw a normal separator, we just use this because it gives more control
|
|
|
|
* over sizing (currently). */
|
|
|
|
|
|
|
|
/* This isn't nice ... but it seems like the best cleanest way to me right now.
|
|
|
|
* It will get slightly nicer in the future hopefully. */
|
|
|
|
if (GE_IS_MENU_ITEM (widget))
|
|
|
|
new_detail = "menuitem";
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (DETAIL ("hseparator")) {
|
2008-06-02 17:41:35 -04:00
|
|
|
gtk_paint_hline (style, window, state_type, area, widget, new_detail,
|
|
|
|
x, x + width - 1, y + height/2);
|
2008-12-12 09:43:24 -05:00
|
|
|
} else
|
2008-06-02 17:41:35 -04:00
|
|
|
gtk_paint_vline (style, window, state_type, area, widget, new_detail,
|
|
|
|
y, y + height - 1, x + width/2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->draw_box (style, window, state_type, shadow_type, area,
|
|
|
|
widget, detail, x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_slider (DRAW_ARGS, GtkOrientation orientation)
|
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
const ClearlooksColors *colors;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
colors = &clearlooks_style->colors;
|
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (DETAIL ("hscale") || DETAIL ("vscale"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
SliderParameters slider;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
slider.horizontal = (orientation == GTK_ORIENTATION_HORIZONTAL);
|
|
|
|
slider.lower = FALSE;
|
|
|
|
slider.fill_level = FALSE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (clearlooks_style->style == CL_STYLE_GLOSSY) /* XXX! */
|
|
|
|
params.corners = CR_CORNER_ALL;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_slider_button) (cr, &clearlooks_style->colors,
|
2008-12-12 09:43:24 -05:00
|
|
|
¶ms, &slider,
|
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else if (DETAIL ("slider"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
ScrollBarParameters scrollbar;
|
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
params.corners = CR_CORNER_NONE;
|
|
|
|
|
|
|
|
scrollbar.has_color = FALSE;
|
|
|
|
scrollbar.horizontal = (orientation == GTK_ORIENTATION_HORIZONTAL);
|
|
|
|
scrollbar.junction = clearlooks_scrollbar_get_junction (widget);
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (clearlooks_style->colorize_scrollbar) {
|
2008-06-02 17:41:35 -04:00
|
|
|
scrollbar.color = colors->spot[1];
|
|
|
|
scrollbar.has_color = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set scrollbar color */
|
|
|
|
if (clearlooks_style->has_scrollbar_color)
|
|
|
|
{
|
|
|
|
ge_gdk_color_to_cairo (&clearlooks_style->scrollbar_color, &scrollbar.color);
|
|
|
|
scrollbar.has_color = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((clearlooks_style->style == CL_STYLE_GLOSSY || clearlooks_style->style == CL_STYLE_GUMMY)
|
|
|
|
&& !scrollbar.has_color)
|
|
|
|
scrollbar.color = colors->bg[0];
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_scrollbar_slider) (cr, colors, ¶ms, &scrollbar,
|
|
|
|
x, y, width, height);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->draw_slider (style, window, state_type, shadow_type, area,
|
|
|
|
widget, detail, x, y, width, height, orientation);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_option (DRAW_ARGS)
|
|
|
|
{
|
|
|
|
const ClearlooksColors *colors;
|
|
|
|
WidgetParameters params;
|
|
|
|
CheckboxParameters checkbox;
|
|
|
|
cairo_t *cr;
|
2013-08-27 12:07:53 -04:00
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2013-08-27 12:07:53 -04:00
|
|
|
(void) detail;
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
colors = &clearlooks_style->colors;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
checkbox.shadow_type = shadow_type;
|
|
|
|
checkbox.in_menu = (widget && GTK_IS_MENU(widget->parent));
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_radiobutton) (cr, colors, ¶ms, &checkbox, x, y, width, height);
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_check (DRAW_ARGS)
|
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
WidgetParameters params;
|
|
|
|
CheckboxParameters checkbox;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
params.corners = CR_CORNER_ALL;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
checkbox.shadow_type = shadow_type;
|
|
|
|
checkbox.in_cell = DETAIL("cellcheck");
|
|
|
|
|
|
|
|
checkbox.in_menu = (widget && widget->parent && GTK_IS_MENU(widget->parent));
|
|
|
|
|
|
|
|
STYLE_FUNCTION(draw_checkbox) (cr, &clearlooks_style->colors, ¶ms, &checkbox,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_vline (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint y1,
|
|
|
|
gint y2,
|
|
|
|
gint x)
|
|
|
|
{
|
2013-08-27 12:07:53 -04:00
|
|
|
const ClearlooksColors *colors;
|
|
|
|
SeparatorParameters separator;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
|
2009-10-06 19:58:29 -04:00
|
|
|
(void) state_type;
|
|
|
|
(void) widget;
|
|
|
|
(void) detail;
|
2013-08-27 12:07:53 -04:00
|
|
|
|
|
|
|
separator.horizontal = FALSE;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
|
|
|
|
colors = &clearlooks_style->colors;
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
|
|
|
|
/* There is no such thing as a vertical menu separator
|
|
|
|
* (and even if, a normal one should be better on menu bars) */
|
|
|
|
STYLE_FUNCTION(draw_separator) (cr, colors, NULL, &separator,
|
|
|
|
x, y1, 2, y2-y1+1);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_hline (GtkStyle *style,
|
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
gint x1,
|
|
|
|
gint x2,
|
|
|
|
gint y)
|
|
|
|
{
|
|
|
|
const ClearlooksColors *colors;
|
|
|
|
cairo_t *cr;
|
|
|
|
SeparatorParameters separator;
|
2013-08-27 12:07:53 -04:00
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
|
|
|
|
(void) state_type;
|
|
|
|
(void) widget;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
|
|
|
|
colors = &clearlooks_style->colors;
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
separator.horizontal = TRUE;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (!DETAIL ("menuitem"))
|
|
|
|
STYLE_FUNCTION(draw_separator) (cr, colors, NULL, &separator,
|
|
|
|
x1, y, x2-x1+1, 2);
|
|
|
|
else
|
|
|
|
STYLE_FUNCTION(draw_menu_item_separator) (cr, colors, NULL, &separator,
|
2008-12-12 09:43:24 -05:00
|
|
|
x1, y, x2-x1+1, 2);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
static void
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_style_draw_shadow_gap (DRAW_ARGS,
|
2008-12-12 09:43:24 -05:00
|
|
|
GtkPositionType gap_side,
|
|
|
|
gint gap_x,
|
|
|
|
gint gap_width)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
const ClearlooksColors *colors;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
colors = &clearlooks_style->colors;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (DETAIL ("frame"))
|
|
|
|
{
|
|
|
|
WidgetParameters params;
|
|
|
|
FrameParameters frame;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
frame.shadow = shadow_type;
|
|
|
|
frame.gap_side = gap_side;
|
|
|
|
frame.gap_x = gap_x;
|
|
|
|
frame.gap_width = gap_width;
|
|
|
|
frame.border = &colors->shade[5];
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
|
|
|
|
params.corners = CR_CORNER_ALL;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_frame) (cr, colors, ¶ms, &frame,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->draw_shadow_gap (style, window, state_type, shadow_type, area,
|
|
|
|
widget, detail, x, y, width, height,
|
|
|
|
gap_side, gap_x, gap_width);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_resize_grip (GtkStyle *style,
|
2008-12-12 09:43:24 -05:00
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
GdkWindowEdge edge,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2013-08-27 12:07:53 -04:00
|
|
|
ClearlooksColors *colors;
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_t *cr;
|
|
|
|
WidgetParameters params;
|
|
|
|
ResizeGripParameters grip;
|
2013-08-27 12:07:53 -04:00
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
|
|
|
|
(void) detail;
|
|
|
|
colors = &clearlooks_style->colors;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
|
|
|
grip.edge = (ClearlooksWindowEdge)edge;
|
|
|
|
|
|
|
|
g_return_if_fail (window != NULL);
|
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
|
2015-10-05 10:17:49 -04:00
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
STYLE_FUNCTION(draw_resize_grip) (cr, colors, ¶ms, &grip,
|
2008-12-12 09:43:24 -05:00
|
|
|
x, y, width, height);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_tab (DRAW_ARGS)
|
|
|
|
{
|
2013-08-27 12:07:53 -04:00
|
|
|
ClearlooksColors *colors;
|
2008-06-02 17:41:35 -04:00
|
|
|
WidgetParameters params;
|
2015-10-05 10:17:49 -04:00
|
|
|
ArrowParameters arrow;
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_t *cr;
|
2013-08-27 12:07:53 -04:00
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
|
|
|
|
(void) shadow_type;
|
|
|
|
(void) detail;
|
|
|
|
colors = &clearlooks_style->colors;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
arrow.type = CL_ARROW_COMBO;
|
2015-10-05 10:17:49 -04:00
|
|
|
arrow.direction = CL_DIRECTION_DOWN;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
STYLE_FUNCTION(draw_arrow) (cr, colors, ¶ms, &arrow, x, y, width, height);
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_arrow (GtkStyle *style,
|
2008-12-12 09:43:24 -05:00
|
|
|
GdkWindow *window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
GtkShadowType shadow,
|
|
|
|
GdkRectangle *area,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const gchar *detail,
|
|
|
|
GtkArrowType arrow_type,
|
|
|
|
gboolean fill,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2013-08-27 12:07:53 -04:00
|
|
|
ClearlooksColors *colors;
|
|
|
|
WidgetParameters params;
|
|
|
|
ArrowParameters arrow;
|
|
|
|
cairo_t *cr;
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
|
2009-10-06 19:58:29 -04:00
|
|
|
(void) shadow;
|
|
|
|
(void) detail;
|
|
|
|
(void) fill;
|
2013-08-27 12:07:53 -04:00
|
|
|
|
|
|
|
cr = ge_gdk_drawable_to_cairo (window, area);
|
|
|
|
colors = &clearlooks_style->colors;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (arrow_type == GTK_ARROW_NONE) {
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
arrow.type = CL_ARROW_NORMAL;
|
|
|
|
arrow.direction = (ClearlooksDirection)arrow_type;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
if (ge_is_combo_box (widget, FALSE) && !ge_is_combo_box_entry (widget))
|
|
|
|
{
|
|
|
|
arrow.type = CL_ARROW_COMBO;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
/* I have no idea why, but the arrow of GtkCombo is larger than in other places.
|
|
|
|
* Subtracting 3 seems to fix this. */
|
|
|
|
if (widget && widget->parent && GE_IS_COMBO (widget->parent->parent))
|
|
|
|
{
|
|
|
|
if (params.ltr)
|
|
|
|
x += 1;
|
|
|
|
else
|
|
|
|
x += 2;
|
|
|
|
width -= 3;
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
STYLE_FUNCTION(draw_arrow) (cr, colors, ¶ms, &arrow, x, y, width, height);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cairo_destroy (cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_init_from_rc (GtkStyle * style,
|
2008-12-12 09:43:24 -05:00
|
|
|
GtkRcStyle * rc_style)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->init_from_rc (style, rc_style);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2009-10-06 19:58:29 -04:00
|
|
|
g_assert ((CLEARLOOKS_RC_STYLE (rc_style)->style < CL_NUM_STYLES));
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_style->style = CLEARLOOKS_RC_STYLE (rc_style)->style;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_style->menubarstyle = CLEARLOOKS_RC_STYLE (rc_style)->menubarstyle;
|
|
|
|
clearlooks_style->toolbarstyle = CLEARLOOKS_RC_STYLE (rc_style)->toolbarstyle;
|
2008-06-02 17:41:35 -04:00
|
|
|
clearlooks_style->has_scrollbar_color = CLEARLOOKS_RC_STYLE (rc_style)->flags & CL_FLAG_SCROLLBAR_COLOR;
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_style->colorize_scrollbar = CLEARLOOKS_RC_STYLE (rc_style)->colorize_scrollbar;
|
|
|
|
clearlooks_style->animation = CLEARLOOKS_RC_STYLE (rc_style)->animation;
|
|
|
|
clearlooks_style->radius = CLAMP (CLEARLOOKS_RC_STYLE (rc_style)->radius, 0.0, 10.0);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
if (clearlooks_style->has_scrollbar_color)
|
|
|
|
clearlooks_style->scrollbar_color = CLEARLOOKS_RC_STYLE (rc_style)->scrollbar_color;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_realize (GtkStyle * style)
|
|
|
|
{
|
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
double shades[] = {1.15, 0.95, 0.896, 0.82, 0.7, 0.665, 0.475, 0.45, 0.4};
|
|
|
|
CairoColor spot_color;
|
|
|
|
CairoColor bg_normal;
|
|
|
|
double contrast;
|
|
|
|
int i;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->realize (style);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
contrast = CLEARLOOKS_RC_STYLE (style->rc_style)->contrast;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
/* Lighter to darker */
|
|
|
|
ge_gdk_color_to_cairo (&style->bg[GTK_STATE_NORMAL], &bg_normal);
|
|
|
|
|
|
|
|
for (i = 0; i < 9; i++)
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
ge_shade_color(&bg_normal, (shades[i]-0.7) * contrast + 0.7, &clearlooks_style->colors.shade[i]);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
ge_gdk_color_to_cairo (&style->bg[GTK_STATE_SELECTED], &spot_color);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
ge_shade_color(&spot_color, 1.42, &clearlooks_style->colors.spot[0]);
|
|
|
|
ge_shade_color(&spot_color, 1.05, &clearlooks_style->colors.spot[1]);
|
|
|
|
ge_shade_color(&spot_color, 0.65, &clearlooks_style->colors.spot[2]);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
for (i=0; i<5; i++)
|
|
|
|
{
|
|
|
|
ge_gdk_color_to_cairo (&style->fg[i], &clearlooks_style->colors.fg[i]);
|
|
|
|
ge_gdk_color_to_cairo (&style->bg[i], &clearlooks_style->colors.bg[i]);
|
|
|
|
ge_gdk_color_to_cairo (&style->base[i], &clearlooks_style->colors.base[i]);
|
|
|
|
ge_gdk_color_to_cairo (&style->text[i], &clearlooks_style->colors.text[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_focus (GtkStyle *style, GdkWindow *window, GtkStateType state_type,
|
2008-12-12 09:43:24 -05:00
|
|
|
GdkRectangle *area, GtkWidget *widget, const gchar *detail,
|
|
|
|
gint x, gint y, gint width, gint height)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
cairo_t *cr;
|
2008-12-12 09:43:24 -05:00
|
|
|
gboolean free_dash_list = FALSE;
|
|
|
|
gint line_width = 1;
|
|
|
|
gint8 *dash_list = (gint8 *)"\1\1";
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (widget)
|
|
|
|
{
|
|
|
|
gtk_widget_style_get (widget,
|
|
|
|
"focus-line-width", &line_width,
|
|
|
|
"focus-line-pattern",
|
|
|
|
(gchar *) & dash_list, NULL);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
free_dash_list = TRUE;
|
|
|
|
}
|
2008-10-04 20:09:32 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (detail && !strcmp (detail, "add-mode"))
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
if (free_dash_list)
|
|
|
|
g_free (dash_list);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
dash_list = (gint8 *)"\4\4";
|
|
|
|
free_dash_list = FALSE;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
CHECK_ARGS
|
|
|
|
SANITIZE_SIZE
|
|
|
|
|
|
|
|
cr = gdk_cairo_create (window);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (detail && !strcmp (detail, "colorwheel_light"))
|
|
|
|
cairo_set_source_rgb (cr, 0., 0., 0.);
|
|
|
|
else if (detail && !strcmp (detail, "colorwheel_dark"))
|
|
|
|
cairo_set_source_rgb (cr, 1., 1., 1.);
|
2008-06-02 17:41:35 -04:00
|
|
|
else
|
2008-12-12 09:43:24 -05:00
|
|
|
ge_cairo_set_gdk_color_with_alpha (cr, &style->fg[state_type],
|
|
|
|
0.7);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
cairo_set_line_width (cr, line_width);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (dash_list[0])
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
gint n_dashes = strlen ((gchar *)dash_list);
|
|
|
|
gdouble *dashes = g_new (gdouble, n_dashes);
|
|
|
|
gdouble total_length = 0;
|
|
|
|
gdouble dash_offset;
|
|
|
|
gint i;
|
2008-06-02 17:41:35 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
for (i = 0; i < n_dashes; i++)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
dashes[i] = dash_list[i];
|
|
|
|
total_length += dash_list[i];
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
/* The dash offset here aligns the pattern to integer pixels
|
|
|
|
* by starting the dash at the right side of the left border
|
|
|
|
* Negative dash offsets in cairo don't work
|
|
|
|
* (https://bugs.freedesktop.org/show_bug.cgi?id=2729)
|
|
|
|
*/
|
|
|
|
dash_offset = -line_width / 2.;
|
|
|
|
while (dash_offset < 0)
|
|
|
|
dash_offset += total_length;
|
|
|
|
|
|
|
|
cairo_set_dash (cr, dashes, n_dashes, dash_offset);
|
|
|
|
g_free (dashes);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (area)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
gdk_cairo_rectangle (cr, area);
|
|
|
|
cairo_clip (cr);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
cairo_rectangle (cr,
|
|
|
|
x + line_width / 2.,
|
|
|
|
y + line_width / 2.,
|
|
|
|
width - line_width, height - line_width);
|
|
|
|
cairo_stroke (cr);
|
2008-10-04 20:09:32 -04:00
|
|
|
cairo_destroy (cr);
|
2008-12-12 09:43:24 -05:00
|
|
|
|
|
|
|
if (free_dash_list)
|
|
|
|
g_free (dash_list);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_copy (GtkStyle * style, GtkStyle * src)
|
|
|
|
{
|
|
|
|
ClearlooksStyle * cl_style = CLEARLOOKS_STYLE (style);
|
|
|
|
ClearlooksStyle * cl_src = CLEARLOOKS_STYLE (src);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
cl_style->colors = cl_src->colors;
|
|
|
|
cl_style->menubarstyle = cl_src->menubarstyle;
|
|
|
|
cl_style->toolbarstyle = cl_src->toolbarstyle;
|
|
|
|
cl_style->scrollbar_color = cl_src->scrollbar_color;
|
|
|
|
cl_style->has_scrollbar_color = cl_src->has_scrollbar_color;
|
|
|
|
cl_style->colorize_scrollbar = cl_src->colorize_scrollbar;
|
|
|
|
cl_style->animation = cl_src->animation;
|
|
|
|
cl_style->radius = cl_src->radius;
|
|
|
|
cl_style->style = cl_src->style;
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->copy (style, src);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_unrealize (GtkStyle * style)
|
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_parent_class->unrealize (style);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf *
|
|
|
|
set_transparency (const GdkPixbuf *pixbuf, gdouble alpha_percent)
|
|
|
|
{
|
|
|
|
GdkPixbuf *target;
|
|
|
|
guchar *data, *current;
|
|
|
|
guint x, y, rowstride, height, width;
|
|
|
|
|
|
|
|
g_return_val_if_fail (pixbuf != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GDK_IS_PIXBUF (pixbuf), NULL);
|
|
|
|
|
|
|
|
/* Returns a copy of pixbuf with it's non-completely-transparent pixels to
|
|
|
|
have an alpha level "alpha_percent" of their original value. */
|
|
|
|
|
|
|
|
target = gdk_pixbuf_add_alpha (pixbuf, FALSE, 0, 0, 0);
|
|
|
|
|
|
|
|
if (alpha_percent == 1.0)
|
|
|
|
return target;
|
|
|
|
width = gdk_pixbuf_get_width (target);
|
|
|
|
height = gdk_pixbuf_get_height (target);
|
|
|
|
rowstride = gdk_pixbuf_get_rowstride (target);
|
|
|
|
data = gdk_pixbuf_get_pixels (target);
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
for (y = 0; y < height; y++) {
|
|
|
|
for (x = 0; x < width; x++) {
|
2008-06-02 17:41:35 -04:00
|
|
|
/* The "4" is the number of chars per pixel, in this case, RGBA,
|
|
|
|
the 3 means "skip to the alpha" */
|
2015-10-04 14:51:05 -04:00
|
|
|
current = data + (y * rowstride) + (x * 4) + 3;
|
2008-06-02 17:41:35 -04:00
|
|
|
*(current) = (guchar) (*(current) * alpha_percent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return target;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf*
|
|
|
|
scale_or_ref (GdkPixbuf *src,
|
|
|
|
int width,
|
|
|
|
int height)
|
|
|
|
{
|
|
|
|
if (width == gdk_pixbuf_get_width (src) &&
|
2008-12-12 09:43:24 -05:00
|
|
|
height == gdk_pixbuf_get_height (src)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
return g_object_ref (src);
|
2008-12-12 09:43:24 -05:00
|
|
|
} else {
|
2008-06-02 17:41:35 -04:00
|
|
|
return gdk_pixbuf_scale_simple (src,
|
2008-12-12 09:43:24 -05:00
|
|
|
width, height,
|
|
|
|
GDK_INTERP_BILINEAR);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_draw_layout (GtkStyle * style,
|
2008-12-12 09:43:24 -05:00
|
|
|
GdkWindow * window,
|
|
|
|
GtkStateType state_type,
|
|
|
|
gboolean use_text,
|
|
|
|
GdkRectangle * area,
|
|
|
|
GtkWidget * widget,
|
|
|
|
const gchar * detail, gint x, gint y, PangoLayout * layout)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
|
|
|
GdkGC *gc;
|
|
|
|
|
2013-08-27 12:07:53 -04:00
|
|
|
(void) detail;
|
2008-06-02 17:41:35 -04:00
|
|
|
g_return_if_fail (GTK_IS_STYLE (style));
|
|
|
|
g_return_if_fail (window != NULL);
|
|
|
|
|
|
|
|
gc = use_text ? style->text_gc[state_type] : style->fg_gc[state_type];
|
|
|
|
|
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (gc, area);
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (state_type == GTK_STATE_INSENSITIVE) {
|
2008-06-02 17:41:35 -04:00
|
|
|
ClearlooksStyle *clearlooks_style = CLEARLOOKS_STYLE (style);
|
|
|
|
ClearlooksColors *colors = &clearlooks_style->colors;
|
|
|
|
|
|
|
|
WidgetParameters params;
|
|
|
|
GdkColor etched;
|
|
|
|
CairoColor temp;
|
|
|
|
|
|
|
|
clearlooks_set_widget_parameters (widget, style, state_type, ¶ms);
|
|
|
|
|
|
|
|
if (GTK_WIDGET_NO_WINDOW (widget))
|
|
|
|
ge_shade_color (¶ms.parentbg, 1.2, &temp);
|
|
|
|
else
|
|
|
|
ge_shade_color (&colors->bg[widget->state], 1.2, &temp);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
etched.red = (int) (temp.r * 65535);
|
|
|
|
etched.green = (int) (temp.g * 65535);
|
|
|
|
etched.blue = (int) (temp.b * 65535);
|
|
|
|
|
|
|
|
gdk_draw_layout_with_colors (window, gc, x + 1, y + 1, layout, &etched, NULL);
|
|
|
|
gdk_draw_layout (window, gc, x, y, layout);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gdk_draw_layout (window, gc, x, y, layout);
|
|
|
|
|
|
|
|
if (area)
|
|
|
|
gdk_gc_set_clip_rectangle (gc, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GdkPixbuf *
|
|
|
|
clearlooks_style_draw_render_icon (GtkStyle *style,
|
2008-12-12 09:43:24 -05:00
|
|
|
const GtkIconSource *source,
|
|
|
|
GtkTextDirection direction,
|
|
|
|
GtkStateType state,
|
|
|
|
GtkIconSize size,
|
|
|
|
GtkWidget *widget,
|
|
|
|
const char *detail)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2013-08-27 12:07:53 -04:00
|
|
|
int width;
|
|
|
|
int height;
|
2008-06-02 17:41:35 -04:00
|
|
|
GdkPixbuf *scaled;
|
|
|
|
GdkPixbuf *stated;
|
|
|
|
GdkPixbuf *base_pixbuf;
|
|
|
|
GdkScreen *screen;
|
|
|
|
GtkSettings *settings;
|
2013-08-27 12:07:53 -04:00
|
|
|
|
|
|
|
width = 1;
|
|
|
|
height = 1;
|
|
|
|
|
|
|
|
(void) direction;
|
|
|
|
(void) detail;
|
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
/* Oddly, style can be NULL in this function, because
|
|
|
|
* GtkIconSet can be used without a style and if so
|
|
|
|
* it uses this function.
|
|
|
|
*/
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
base_pixbuf = gtk_icon_source_get_pixbuf (source);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
g_return_val_if_fail (base_pixbuf != NULL, NULL);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (widget && gtk_widget_has_screen (widget)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
screen = gtk_widget_get_screen (widget);
|
|
|
|
settings = gtk_settings_get_for_screen (screen);
|
2008-12-12 09:43:24 -05:00
|
|
|
} else if (style->colormap) {
|
2008-06-02 17:41:35 -04:00
|
|
|
screen = gdk_colormap_get_screen (style->colormap);
|
|
|
|
settings = gtk_settings_get_for_screen (screen);
|
2008-12-12 09:43:24 -05:00
|
|
|
} else {
|
2008-06-02 17:41:35 -04:00
|
|
|
settings = gtk_settings_get_default ();
|
|
|
|
GTK_NOTE (MULTIHEAD,
|
|
|
|
g_warning ("Using the default screen for gtk_default_render_icon()"));
|
|
|
|
}
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (size != (GtkIconSize) -1 && !gtk_icon_size_lookup_for_settings (settings, size, &width, &height)) {
|
2008-06-02 17:41:35 -04:00
|
|
|
g_warning (G_STRLOC ": invalid icon size '%d'", size);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the size was wildcarded, and we're allowed to scale, then scale; otherwise,
|
|
|
|
* leave it alone.
|
|
|
|
*/
|
|
|
|
if (size != (GtkIconSize)-1 && gtk_icon_source_get_size_wildcarded (source))
|
|
|
|
scaled = scale_or_ref (base_pixbuf, width, height);
|
|
|
|
else
|
|
|
|
scaled = g_object_ref (base_pixbuf);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
/* If the state was wildcarded, then generate a state. */
|
2008-12-12 09:43:24 -05:00
|
|
|
if (gtk_icon_source_get_state_wildcarded (source)) {
|
|
|
|
if (state == GTK_STATE_INSENSITIVE) {
|
2008-06-02 17:41:35 -04:00
|
|
|
stated = set_transparency (scaled, 0.3);
|
2008-12-12 09:43:24 -05:00
|
|
|
gdk_pixbuf_saturate_and_pixelate (stated, stated,
|
|
|
|
0.1, FALSE);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
g_object_unref (scaled);
|
2008-12-12 09:43:24 -05:00
|
|
|
} else if (state == GTK_STATE_PRELIGHT) {
|
2015-10-04 14:51:05 -04:00
|
|
|
stated = gdk_pixbuf_copy (scaled);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
gdk_pixbuf_saturate_and_pixelate (scaled, stated,
|
|
|
|
1.2, FALSE);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-06-02 17:41:35 -04:00
|
|
|
g_object_unref (scaled);
|
2008-12-12 09:43:24 -05:00
|
|
|
} else {
|
2008-06-02 17:41:35 -04:00
|
|
|
stated = scaled;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
stated = scaled;
|
2015-10-04 14:51:05 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
return stated;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_init (ClearlooksStyle * style)
|
|
|
|
{
|
2009-10-06 19:58:29 -04:00
|
|
|
(void) style;
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clearlooks_style_class_init (ClearlooksStyleClass * klass)
|
|
|
|
{
|
|
|
|
GtkStyleClass *style_class = GTK_STYLE_CLASS (klass);
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_style_class = CLEARLOOKS_STYLE_CLASS (klass);
|
|
|
|
clearlooks_parent_class = g_type_class_peek_parent (klass);
|
2008-06-02 17:41:35 -04:00
|
|
|
|
|
|
|
style_class->copy = clearlooks_style_copy;
|
|
|
|
style_class->realize = clearlooks_style_realize;
|
|
|
|
style_class->unrealize = clearlooks_style_unrealize;
|
|
|
|
style_class->init_from_rc = clearlooks_style_init_from_rc;
|
|
|
|
style_class->draw_handle = clearlooks_style_draw_handle;
|
|
|
|
style_class->draw_slider = clearlooks_style_draw_slider;
|
|
|
|
style_class->draw_shadow_gap = clearlooks_style_draw_shadow_gap;
|
|
|
|
style_class->draw_focus = clearlooks_style_draw_focus;
|
|
|
|
style_class->draw_box = clearlooks_style_draw_box;
|
|
|
|
style_class->draw_shadow = clearlooks_style_draw_shadow;
|
|
|
|
style_class->draw_box_gap = clearlooks_style_draw_box_gap;
|
|
|
|
style_class->draw_extension = clearlooks_style_draw_extension;
|
|
|
|
style_class->draw_option = clearlooks_style_draw_option;
|
|
|
|
style_class->draw_check = clearlooks_style_draw_check;
|
|
|
|
style_class->draw_flat_box = clearlooks_style_draw_flat_box;
|
|
|
|
style_class->draw_vline = clearlooks_style_draw_vline;
|
|
|
|
style_class->draw_hline = clearlooks_style_draw_hline;
|
|
|
|
style_class->draw_resize_grip = clearlooks_style_draw_resize_grip;
|
|
|
|
style_class->draw_tab = clearlooks_style_draw_tab;
|
|
|
|
style_class->draw_arrow = clearlooks_style_draw_arrow;
|
|
|
|
style_class->draw_layout = clearlooks_style_draw_layout;
|
|
|
|
style_class->render_icon = clearlooks_style_draw_render_icon;
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
clearlooks_register_style_classic (&clearlooks_style_class->style_functions[CL_STYLE_CLASSIC]);
|
|
|
|
clearlooks_style_class->style_functions[CL_STYLE_GLOSSY] = clearlooks_style_class->style_functions[CL_STYLE_CLASSIC];
|
|
|
|
clearlooks_register_style_glossy (&clearlooks_style_class->style_functions[CL_STYLE_GLOSSY]);
|
|
|
|
clearlooks_style_class->style_functions[CL_STYLE_INVERTED] = clearlooks_style_class->style_functions[CL_STYLE_CLASSIC];
|
|
|
|
clearlooks_register_style_inverted (&clearlooks_style_class->style_functions[CL_STYLE_INVERTED]);
|
|
|
|
clearlooks_style_class->style_functions[CL_STYLE_GUMMY] = clearlooks_style_class->style_functions[CL_STYLE_CLASSIC];
|
|
|
|
clearlooks_register_style_gummy (&clearlooks_style_class->style_functions[CL_STYLE_GUMMY]);
|
2008-10-04 20:09:32 -04:00
|
|
|
}
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
GType clearlooks_type_style = 0;
|
|
|
|
|
|
|
|
void
|
|
|
|
clearlooks_style_register_type (GTypeModule * module)
|
2008-06-02 17:41:35 -04:00
|
|
|
{
|
2008-12-12 09:43:24 -05:00
|
|
|
static const GTypeInfo object_info =
|
|
|
|
{
|
|
|
|
sizeof (ClearlooksStyleClass),
|
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) clearlooks_style_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (ClearlooksStyle),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) clearlooks_style_init,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
clearlooks_type_style = g_type_module_register_type (module,
|
|
|
|
GTK_TYPE_STYLE,
|
|
|
|
"ClearlooksStyle",
|
|
|
|
&object_info, 0);
|
2008-06-02 17:41:35 -04:00
|
|
|
}
|