2008-12-12 09:43:24 -05:00
# include <gtk/gtk.h>
# include "clearlooks_style.h"
# include "clearlooks_rc_style.h"
# include "clearlooks_draw.h"
# include <math.h>
# include <string.h>
# include "bits.c"
# include "support.h"
//#include "config.h"
/* #define DEBUG 1 */
# define SCALE_SIZE 5
# define DETAIL(xx) ((detail) && (!strcmp(xx, detail)))
# define COMPARE_COLORS(a,b) (a.red == b.red && a.green == b.green && a.blue == b.blue)
# 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
static GdkGC * realize_color ( GtkStyle * style , GdkColor * color ) ;
static GtkStyleClass * parent_class ;
static GList * progressbars = NULL ;
static gint8 pboffset = 10 ;
static int timer_id = 0 ;
static void cl_progressbar_remove ( gpointer data )
{
if ( g_list_find ( progressbars , data ) = = NULL )
return ;
progressbars = g_list_remove ( progressbars , data ) ;
g_object_unref ( data ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( g_list_first ( progressbars ) = = NULL ) {
g_source_remove ( timer_id ) ;
timer_id = 0 ;
}
}
static void update_progressbar ( gpointer data , gpointer user_data )
{
gfloat fraction ;
if ( data = = NULL )
return ;
fraction = gtk_progress_bar_get_fraction ( GTK_PROGRESS_BAR ( data ) ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* update only if not filled */
if ( fraction < 1.0 )
gtk_widget_queue_resize ( ( GtkWidget * ) data ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( fraction > = 1.0 | | GTK_PROGRESS ( data ) - > activity_mode )
cl_progressbar_remove ( data ) ;
}
static gboolean timer_func ( gpointer data )
{
g_list_foreach ( progressbars , update_progressbar , NULL ) ;
if ( - - pboffset < 0 ) pboffset = 9 ;
return ( g_list_first ( progressbars ) ! = NULL ) ;
}
static gboolean cl_progressbar_known ( gconstpointer data )
{
return ( g_list_find ( progressbars , data ) ! = NULL ) ;
}
static void cl_progressbar_add ( gpointer data )
{
if ( ! GTK_IS_PROGRESS_BAR ( data ) )
return ;
progressbars = g_list_append ( progressbars , data ) ;
g_object_ref ( data ) ;
g_signal_connect ( ( GObject * ) data , " unrealize " , G_CALLBACK ( cl_progressbar_remove ) , data ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( timer_id = = 0 )
timer_id = g_timeout_add ( 100 , timer_func , NULL ) ;
}
static GdkColor *
clearlooks_get_spot_color ( ClearlooksRcStyle * clearlooks_rc )
{
GtkRcStyle * rc = GTK_RC_STYLE ( clearlooks_rc ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( clearlooks_rc - > has_spot_color )
return & clearlooks_rc - > spot_color ;
else
return & rc - > base [ GTK_STATE_SELECTED ] ;
}
/**************************************************************************/
/* used for optionmenus... */
static void
draw_tab ( 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 )
{
# define ARROW_SPACE 2
# define ARROW_LINE_HEIGHT 2
# define ARROW_LINE_WIDTH 5
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
GtkRequisition indicator_size ;
GtkBorder indicator_spacing ;
gint arrow_height ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
option_menu_get_props ( widget , & indicator_size , & indicator_spacing ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
indicator_size . width + = ( indicator_size . width % 2 ) - 1 ;
arrow_height = indicator_size . width / 2 + 2 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
x + = ( width - indicator_size . width ) / 2 ;
y + = height / 2 ;
if ( state_type = = GTK_STATE_INSENSITIVE )
{
draw_arrow ( window , style - > light_gc [ state_type ] , area ,
GTK_ARROW_UP , 1 + x , 1 + y - arrow_height ,
indicator_size . width , arrow_height ) ;
draw_arrow ( window , style - > light_gc [ state_type ] , area ,
GTK_ARROW_DOWN , 1 + x , 1 + y + 1 ,
indicator_size . width , arrow_height ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
draw_arrow ( window , style - > fg_gc [ state_type ] , area ,
GTK_ARROW_UP , x , y - arrow_height ,
indicator_size . width , arrow_height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
draw_arrow ( window , style - > fg_gc [ state_type ] , area ,
GTK_ARROW_DOWN , x , y + 1 ,
indicator_size . width , arrow_height ) ;
}
static void
clearlooks_draw_arrow ( GtkStyle * style ,
GdkWindow * window ,
GtkStateType state ,
GtkShadowType shadow ,
GdkRectangle * area ,
GtkWidget * widget ,
const gchar * detail ,
GtkArrowType arrow_type ,
gboolean fill ,
gint x ,
gint y ,
gint width ,
gint height )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
gint original_width , original_x ;
GdkGC * gc ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
sanitize_size ( window , & width , & height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( is_combo_box ( widget ) )
{
width = 7 ;
height = 5 ;
x + = 2 ;
y + = 4 ;
if ( state = = GTK_STATE_INSENSITIVE )
{
draw_arrow ( window , style - > light_gc [ state ] , area ,
GTK_ARROW_UP , 1 + x , 1 + y - height ,
width , height ) ;
draw_arrow ( window , style - > light_gc [ state ] , area ,
GTK_ARROW_DOWN , 1 + x , 1 + y + 1 ,
width , height ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
draw_arrow ( window , style - > fg_gc [ state ] , area ,
GTK_ARROW_UP , x , y - height ,
width , height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
draw_arrow ( window , style - > fg_gc [ state ] , area ,
GTK_ARROW_DOWN , x , y + 1 ,
width , height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
return ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
original_width = width ;
original_x = x ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* Make spinbutton arrows and arrows in menus
* slightly larger to get the right pixels drawn */
if ( DETAIL ( " spinbutton " ) )
height + = 1 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( DETAIL ( " menuitem " ) )
{
width = 6 ;
height = 7 ;
}
2015-10-05 10:17:49 -04:00
2015-10-04 14:51:05 -04:00
/* Compensate arrow position for "sunken" look */
2008-12-12 09:43:24 -05:00
if ( DETAIL ( " spinbutton " ) & & arrow_type = = GTK_ARROW_DOWN & &
style - > xthickness > 2 & & style - > ythickness > 2 )
y - = 1 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( widget & & widget - > parent & & GTK_IS_COMBO ( widget - > parent - > parent ) )
{
width - = 2 ;
height - = 2 ;
x + + ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
calculate_arrow_geometry ( arrow_type , & x , & y , & width , & height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( DETAIL ( " menuitem " ) )
x = original_x + original_width - width ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( DETAIL ( " spinbutton " ) & & ( arrow_type = = GTK_ARROW_DOWN ) )
y + = 1 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( state = = GTK_STATE_INSENSITIVE )
draw_arrow ( window , style - > light_gc [ state ] , area , arrow_type , x + 1 , y + 1 , width , height ) ;
gc = style - > fg_gc [ state ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
draw_arrow ( window , gc , area , arrow_type , x , y , width , height ) ;
}
static void
draw_flat_box ( DRAW_ARGS )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
sanitize_size ( window , & width , & height ) ;
2015-10-05 10:17:49 -04:00
if ( detail & &
2015-10-04 14:51:05 -04:00
clearlooks_style - > listviewitemstyle = = 1 & &
2008-12-12 09:43:24 -05:00
state_type = = GTK_STATE_SELECTED & & (
! strncmp ( " cell_even " , detail , strlen ( " cell_even " ) ) | |
! strncmp ( " cell_odd " , detail , strlen ( " cell_odd " ) ) ) )
{
GdkGC * gc ;
GdkColor lower_color ;
GdkColor * upper_color ;
if ( GTK_WIDGET_HAS_FOCUS ( widget ) )
{
gc = style - > base_gc [ state_type ] ;
upper_color = & style - > base [ state_type ] ;
}
else
{
gc = style - > base_gc [ GTK_STATE_ACTIVE ] ;
upper_color = & style - > base [ GTK_STATE_ACTIVE ] ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( GTK_IS_TREE_VIEW ( widget ) & & 0 )
{
GtkTreeSelection * sel = gtk_tree_view_get_selection ( GTK_TREE_VIEW ( widget ) ) ;
if ( gtk_tree_selection_count_selected_rows ( sel ) > 1 )
{
parent_class - > draw_flat_box ( style , window , state_type , shadow_type ,
area , widget , detail ,
x , y , width , height ) ;
return ;
}
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
shade ( upper_color , & lower_color , 0.8 ) ;
if ( area )
gdk_gc_set_clip_rectangle ( gc , area ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
draw_hgradient ( window , gc , style ,
x , y , width , height , upper_color , & lower_color ) ;
if ( area )
gdk_gc_set_clip_rectangle ( gc , NULL ) ;
}
else
{
parent_class - > draw_flat_box ( style , window , state_type ,
shadow_type ,
area , widget , detail ,
x , y , width , height ) ;
}
}
/**************************************************************************/
static void
draw_shadow ( DRAW_ARGS )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
CLRectangle r ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
GdkGC * outer_gc = clearlooks_style - > shade_gc [ 4 ] ;
GdkGC * gc1 = NULL ;
GdkGC * gc2 = NULL ;
gint thickness_light ;
gint thickness_dark ;
gboolean interior_focus = FALSE ;
# if DEBUG
printf ( " draw_shadow: %s %d %d %d %d \n " , detail , x , y , width , height ) ;
# endif
if ( widget = = NULL )
{
gdk_draw_rectangle ( window , outer_gc , FALSE ,
x , y , width - 1 , height - 1 ) ;
return ;
}
if ( ( width = = - 1 ) & & ( height = = - 1 ) )
gdk_window_get_size ( window , & width , & height ) ;
else if ( width = = - 1 )
gdk_window_get_size ( window , & width , NULL ) ;
else if ( height = = - 1 )
gdk_window_get_size ( window , NULL , & height ) ;
cl_rectangle_reset ( & r , style ) ;
if ( DETAIL ( " frame " ) & & widget - > parent & &
GTK_IS_STATUSBAR ( widget - > parent ) )
{
gtk_style_apply_default_background ( style , window , widget & & ! GTK_WIDGET_NO_WINDOW ( widget ) ,
state_type , area , x , y , width , height ) ;
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 3 ] , area ) ;
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 0 ] , area ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 3 ] ,
x , y , x + width , y ) ;
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 0 ] ,
x , y + 1 , x + width , y + 1 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 3 ] , NULL ) ;
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 0 ] , NULL ) ;
}
}
else if ( detail & & ! strcmp ( detail , " entry " ) )
{
if ( widget - > parent & & ( GTK_IS_COMBO_BOX_ENTRY ( widget - > parent ) | |
GTK_IS_SPIN_BUTTON ( widget ) | |
GTK_IS_COMBO ( widget - > parent ) ) )
{
cl_draw_combobox_entry ( style , window , GTK_WIDGET_STATE ( widget ) , shadow_type , area , widget , detail , x , y , width , height ) ;
}
else
{
cl_draw_entry ( style , window , GTK_WIDGET_STATE ( widget ) , shadow_type , area , widget , detail , x , y , width , height ) ;
}
}
else if ( DETAIL ( " viewport " ) | | DETAIL ( " scrolled_window " ) )
{
gdk_draw_rectangle ( window , clearlooks_style - > shade_gc [ 4 ] , FALSE ,
x , y , width - 1 , height - 1 ) ;
}
else
{
if ( DETAIL ( " menuitem " ) )
outer_gc = clearlooks_style - > spot3_gc ;
else
outer_gc = clearlooks_style - > shade_gc [ 4 ] ;
if ( shadow_type = = GTK_SHADOW_IN )
gdk_draw_rectangle ( window , outer_gc , FALSE ,
x , y , width - 1 , height - 1 ) ;
else if ( shadow_type = = GTK_SHADOW_OUT )
{
gdk_draw_rectangle ( window , outer_gc , FALSE ,
x , y , width - 1 , height - 1 ) ;
gdk_draw_line ( window , style - > light_gc [ state_type ] ,
x + 1 , y + 1 , x + width - 2 , y + 1 ) ;
gdk_draw_line ( window , style - > light_gc [ state_type ] ,
x + 1 , y + 1 , x + 1 , y + height - 2 ) ;
}
else if ( shadow_type = = GTK_SHADOW_ETCHED_IN )
{
GdkGC * a = clearlooks_style - > shade_gc [ ( shadow_type = = GTK_SHADOW_ETCHED_IN ) ? 0 : 3 ] ;
GdkGC * b = clearlooks_style - > shade_gc [ ( shadow_type = = GTK_SHADOW_ETCHED_IN ) ? 3 : 0 ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
r . bordergc = a ;
cl_rectangle_set_clip_rectangle ( & r , area ) ;
cl_draw_rectangle ( window , widget , style , x + 1 , y + 1 , width - 1 , height - 1 , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . bordergc = b ;
cl_rectangle_set_clip_rectangle ( & r , area ) ;
2015-10-05 10:17:49 -04:00
cl_draw_rectangle ( window , widget , style , x , y , width - 1 , height - 1 , & r ) ;
2008-12-12 09:43:24 -05:00
cl_rectangle_reset_clip_rectangle ( & r ) ;
}
else if ( shadow_type = = GTK_SHADOW_ETCHED_IN )
{
GdkGC * a = clearlooks_style - > shade_gc [ ( shadow_type = = GTK_SHADOW_ETCHED_IN ) ? 3 : 0 ] ;
GdkGC * b = clearlooks_style - > shade_gc [ ( shadow_type = = GTK_SHADOW_ETCHED_IN ) ? 0 : 3 ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
r . bordergc = a ;
cl_rectangle_set_clip_rectangle ( & r , area ) ;
cl_draw_rectangle ( window , widget , style , x + 1 , y + 1 , width - 1 , height - 1 , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . bordergc = b ;
cl_rectangle_set_clip_rectangle ( & r , area ) ;
2015-10-05 10:17:49 -04:00
cl_draw_rectangle ( window , widget , style , x , y , width - 1 , height - 1 , & r ) ;
2008-12-12 09:43:24 -05:00
cl_rectangle_reset_clip_rectangle ( & r ) ;
2015-10-05 10:17:49 -04:00
}
2008-12-12 09:43:24 -05:00
else
parent_class - > draw_shadow ( style , window , state_type , shadow_type ,
area , widget , detail ,
x , y , width , height ) ;
}
}
# define GDK_RECTANGLE_SET(rect,a,b,c,d) rect.x = a; \
rect . y = b ; \
rect . width = c ; \
rect . height = d ;
2015-10-04 14:51:05 -04:00
static void
2008-12-12 09:43:24 -05:00
draw_box_gap ( DRAW_ARGS ,
GtkPositionType gap_side ,
gint gap_x ,
gint gap_width )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
CLRectangle r ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
GdkRegion * area_region = NULL ,
* gap_region = NULL ;
GdkRectangle light_rect ;
GdkRectangle dark_rect ;
# if DEBUG
printf ( " draw_box_gap: %s %d %d %d %d \n " , detail , x , y , width , height ) ;
# endif
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
sanitize_size ( window , & width , & height ) ;
cl_rectangle_reset ( & r , style ) ;
r . bordergc = clearlooks_style - > shade_gc [ 5 ] ;
r . topleft = style - > light_gc [ state_type ] ;
r . bottomright = clearlooks_style - > shade_gc [ 1 ] ;
if ( area )
area_region = gdk_region_rectangle ( area ) ;
else
{
GdkRectangle tmp = { x , y , width , height } ;
area_region = gdk_region_rectangle ( & tmp ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
switch ( gap_side )
{
case GTK_POS_TOP :
{
GdkRectangle rect = { x + gap_x + 1 , y , gap_width - 2 , 2 } ;
gap_region = gdk_region_rectangle ( & rect ) ;
GDK_RECTANGLE_SET ( light_rect , x + gap_x + 1 , y , x + gap_x + 1 , y + 1 ) ;
GDK_RECTANGLE_SET ( dark_rect , x + gap_x + gap_width - 2 , y , x + gap_x + gap_width - 2 , y ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_ROUND , CL_CORNER_ROUND ) ;
break ;
}
case GTK_POS_BOTTOM :
{
GdkRectangle rect = { x + gap_x + 1 , y + height - 2 , gap_width - 2 , 2 } ;
gap_region = gdk_region_rectangle ( & rect ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
GDK_RECTANGLE_SET ( light_rect , x + gap_x + 1 , y + height - 2 , x + gap_x + 1 , y + height - 1 ) ;
GDK_RECTANGLE_SET ( dark_rect , x + gap_x + gap_width - 2 , y + height - 2 , x + gap_x + gap_width - 2 , y + height - 1 ) ;
cl_rectangle_set_corners ( & r , CL_CORNER_ROUND , CL_CORNER_ROUND ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
break ;
}
case GTK_POS_LEFT :
{
GdkRectangle rect = { x , y + gap_x + 1 , 2 , gap_width - 2 } ;
gap_region = gdk_region_rectangle ( & rect ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
GDK_RECTANGLE_SET ( light_rect , x , y + gap_x + 1 , x + 1 , y + gap_x + 1 ) ;
GDK_RECTANGLE_SET ( dark_rect , x , y + gap_x + gap_width - 2 , x , y + gap_x + gap_width - 2 ) ;
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_ROUND ,
CL_CORNER_NONE , CL_CORNER_ROUND ) ;
break ;
2015-10-05 10:17:49 -04:00
}
2008-12-12 09:43:24 -05:00
case GTK_POS_RIGHT :
{
GdkRectangle rect = { x + width - 2 , y + gap_x + 1 , 2 , gap_width - 2 } ;
gap_region = gdk_region_rectangle ( & rect ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
GDK_RECTANGLE_SET ( light_rect , x + width - 2 , y + gap_x + 1 , x + width - 1 , y + gap_x + 1 ) ;
GDK_RECTANGLE_SET ( dark_rect , x + width - 2 , y + gap_x + gap_width - 2 , x + width - 1 , y + gap_x + gap_width - 2 ) ;
cl_rectangle_set_corners ( & r , CL_CORNER_ROUND , CL_CORNER_NONE ,
CL_CORNER_ROUND , CL_CORNER_NONE ) ;
break ;
2015-10-05 10:17:49 -04:00
}
2008-12-12 09:43:24 -05:00
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_region_subtract ( area_region , gap_region ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_gc_set_clip_region ( r . bordergc , area_region ) ;
gdk_gc_set_clip_region ( r . topleft , area_region ) ;
gdk_gc_set_clip_region ( r . bottomright , area_region ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_region_destroy ( area_region ) ;
gdk_region_destroy ( gap_region ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_rectangle ( window , style - > bg_gc [ state_type ] , TRUE , x , y , width , height ) ;
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
2015-10-04 14:51:05 -04:00
cl_draw_shadow ( window , widget , style , x , y , width , height , & r ) ;
2008-12-12 09:43:24 -05:00
gdk_gc_set_clip_region ( r . bordergc , NULL ) ;
gdk_gc_set_clip_region ( r . topleft , NULL ) ;
gdk_gc_set_clip_region ( r . bottomright , NULL ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* it's a semi hack */
gdk_draw_line ( window , style - > light_gc [ state_type ] ,
light_rect . x , light_rect . y ,
light_rect . width , light_rect . height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 1 ] ,
dark_rect . x , dark_rect . y ,
dark_rect . width , dark_rect . height ) ;
}
/**************************************************************************/
static void
draw_extension ( DRAW_ARGS , GtkPositionType gap_side )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
int my_state_type = ( state_type = = GTK_STATE_ACTIVE ) ? 2 : 0 ;
CLRectangle r ;
# if DEBUG
printf ( " draw_extension: %s %d %d %d %d \n " , detail , x , y , width , height ) ;
# endif
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
sanitize_size ( window , & width , & height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( DETAIL ( " tab " ) )
{
GdkRectangle new_area ;
GdkColor tmp_color ;
cl_rectangle_set_button ( & r , style , state_type , FALSE , FALSE ,
CL_CORNER_ROUND , CL_CORNER_ROUND ,
CL_CORNER_ROUND , CL_CORNER_ROUND ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( state_type = = GTK_STATE_ACTIVE )
shade ( & style - > bg [ state_type ] , & tmp_color , 1.08 ) ;
else
shade ( & style - > bg [ state_type ] , & tmp_color , 1.05 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
new_area = * area ;
}
else
{
new_area . x = x ;
new_area . y = y ;
new_area . width = width ;
new_area . height = height ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
switch ( gap_side )
{
case GTK_POS_BOTTOM :
height + = 2 ;
new_area . y = y ;
new_area . height = height - 2 ;
r . gradient_type = CL_GRADIENT_VERTICAL ;
cl_rectangle_set_gradient ( & r . fill_gradient , & tmp_color , & style - > bg [ state_type ] ) ;
cl_rectangle_set_gradient ( & r . border_gradient ,
& clearlooks_style - > border [ CL_BORDER_UPPER + my_state_type ] ,
& clearlooks_style - > border [ CL_BORDER_LOWER + my_state_type ] ) ;
break ;
case GTK_POS_TOP :
y - = 2 ;
height + = 2 ;
new_area . y = y + 2 ;
new_area . height = height ;
r . gradient_type = CL_GRADIENT_VERTICAL ;
cl_rectangle_set_gradient ( & r . fill_gradient , & style - > bg [ state_type ] , & tmp_color ) ;
cl_rectangle_set_gradient ( & r . border_gradient ,
& clearlooks_style - > border [ CL_BORDER_LOWER + my_state_type ] ,
& clearlooks_style - > border [ CL_BORDER_UPPER + my_state_type ] ) ;
break ;
case GTK_POS_LEFT :
x - = 2 ;
width + = 2 ;
new_area . x = x + 2 ;
new_area . width = width ;
r . gradient_type = CL_GRADIENT_HORIZONTAL ;
cl_rectangle_set_gradient ( & r . fill_gradient , & style - > bg [ state_type ] , & tmp_color ) ;
cl_rectangle_set_gradient ( & r . border_gradient ,
& clearlooks_style - > border [ CL_BORDER_LOWER + my_state_type ] ,
& clearlooks_style - > border [ CL_BORDER_UPPER + my_state_type ] ) ;
break ;
case GTK_POS_RIGHT :
width + = 2 ;
new_area . x = x ;
new_area . width = width - 2 ;
r . gradient_type = CL_GRADIENT_HORIZONTAL ;
cl_rectangle_set_gradient ( & r . fill_gradient , & tmp_color , & style - > bg [ state_type ] ) ;
cl_rectangle_set_gradient ( & r . border_gradient ,
& clearlooks_style - > border [ CL_BORDER_UPPER + my_state_type ] ,
& clearlooks_style - > border [ CL_BORDER_LOWER + my_state_type ] ) ;
break ;
}
2015-10-05 10:17:49 -04:00
r . topleft = style - > light_gc [ state_type ] ;
2008-12-12 09:43:24 -05:00
r . bottomright = ( state_type = = GTK_STATE_NORMAL ) ? clearlooks_style - > shade_gc [ 1 ] : NULL ;
cl_rectangle_set_clip_rectangle ( & r , & new_area ) ;
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
cl_draw_shadow ( window , widget , style , x , y , width , height , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* draw the selection stripe */
if ( state_type ! = GTK_STATE_ACTIVE ) {
cl_rectangle_set_gradient ( & r . fill_gradient , NULL , NULL ) ;
r . fillgc = clearlooks_style - > spot2_gc ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
switch ( gap_side )
{
case GTK_POS_BOTTOM :
cl_rectangle_set_corners ( & r , CL_CORNER_ROUND , CL_CORNER_ROUND ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
cl_rectangle_set_gradient ( & r . border_gradient , & clearlooks_style - > spot3 , & clearlooks_style - > spot2 ) ;
r . gradient_type = CL_GRADIENT_VERTICAL ;
cl_rectangle_set_clip_rectangle ( & r , & new_area ) ;
cl_draw_rectangle ( window , widget , style , x , y , width , 3 , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
break ;
case GTK_POS_TOP :
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_ROUND , CL_CORNER_ROUND ) ;
cl_rectangle_set_gradient ( & r . border_gradient , & clearlooks_style - > spot2 , & clearlooks_style - > spot3 ) ;
r . gradient_type = CL_GRADIENT_VERTICAL ;
cl_rectangle_set_clip_rectangle ( & r , & new_area ) ;
cl_draw_rectangle ( window , widget , style , x , y + height - 3 , width , 3 , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
break ;
case GTK_POS_LEFT :
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_ROUND ,
CL_CORNER_NONE , CL_CORNER_ROUND ) ;
cl_rectangle_set_gradient ( & r . border_gradient , & clearlooks_style - > spot2 , & clearlooks_style - > spot3 ) ;
r . gradient_type = CL_GRADIENT_HORIZONTAL ;
cl_rectangle_set_clip_rectangle ( & r , & new_area ) ;
cl_draw_rectangle ( window , widget , style , x + width - 3 , y , 3 , height , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
break ;
case GTK_POS_RIGHT :
cl_rectangle_set_corners ( & r , CL_CORNER_ROUND , CL_CORNER_NONE ,
CL_CORNER_ROUND , CL_CORNER_NONE ) ;
cl_rectangle_set_gradient ( & r . border_gradient , & clearlooks_style - > spot3 , & clearlooks_style - > spot2 ) ;
r . gradient_type = CL_GRADIENT_HORIZONTAL ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_clip_rectangle ( & r , & new_area ) ;
cl_draw_rectangle ( window , widget , style , x , y , 3 , height , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
break ;
}
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
}
else
{
parent_class - > draw_extension ( style , window , state_type , shadow_type , area ,
widget , detail , x , y , width , height ,
gap_side ) ;
}
}
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
/**************************************************************************/
2015-10-04 14:51:05 -04:00
static void
2008-12-12 09:43:24 -05:00
draw_handle ( DRAW_ARGS , GtkOrientation orientation )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
gint xx , yy ;
gint xthick , ythick ;
GdkGC * light_gc , * dark_gc ;
GdkRectangle rect ;
GdkRectangle dest ;
gint intersect ;
gint h ;
int i ;
int n_lines ;
int offset ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
# if DEBUG
printf ( " draw_handle: %s %d %d %d %d \n " , detail , x , y , width , height ) ;
# endif
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
sanitize_size ( window , & width , & height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( state_type = = GTK_STATE_PRELIGHT )
gtk_style_apply_default_background ( style , window ,
widget & & ! GTK_WIDGET_NO_WINDOW ( widget ) ,
state_type , area , x , y , width , height ) ;
/* orientation is totally bugged, but this actually works... */
orientation = ( width > height ) ? GTK_ORIENTATION_HORIZONTAL : GTK_ORIENTATION_VERTICAL ;
if ( ! strcmp ( detail , " paned " ) )
{
/* we want to ignore the shadow border in paned widgets */
xthick = 0 ;
ythick = 0 ;
}
else
{
xthick = style - > xthickness ;
ythick = style - > ythickness ;
}
if ( ( ( DETAIL ( " handlebox " ) & & widget & & GTK_IS_HANDLE_BOX ( widget ) ) | | DETAIL ( " dockitem " ) ) & &
orientation = = GTK_ORIENTATION_VERTICAL )
{
/* The line in the toolbar */
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
light_gc = style - > light_gc [ state_type ] ;
dark_gc = clearlooks_style - > shade_gc [ 3 ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
gdk_gc_set_clip_rectangle ( light_gc , area ) ;
gdk_gc_set_clip_rectangle ( dark_gc , area ) ;
}
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
gdk_gc_set_clip_rectangle ( light_gc , NULL ) ;
gdk_gc_set_clip_rectangle ( dark_gc , NULL ) ;
}
if ( area )
{
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 0 ] , area ) ;
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 3 ] , area ) ;
}
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 0 ] , x , y , x + width , y ) ;
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 3 ] , x , y + height - 1 , x + width , y + height - 1 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 0 ] , NULL ) ;
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 3 ] , NULL ) ;
}
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
light_gc = clearlooks_style - > shade_gc [ 0 ] ;
dark_gc = clearlooks_style - > shade_gc [ 4 ] ;
rect . x = x + xthick ;
rect . y = y + ythick ;
rect . width = width - ( xthick * 2 ) ;
rect . height = height - ( ythick * 2 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
intersect = gdk_rectangle_intersect ( area , & rect , & dest ) ;
else
{
intersect = TRUE ;
dest = rect ;
}
if ( ! intersect )
return ;
gdk_gc_set_clip_rectangle ( light_gc , & dest ) ;
gdk_gc_set_clip_rectangle ( dark_gc , & dest ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
n_lines = ( ! strcmp ( detail , " paned " ) ) ? 21 : 11 ;
if ( orientation = = GTK_ORIENTATION_VERTICAL )
2015-10-05 10:17:49 -04:00
{
2008-12-12 09:43:24 -05:00
h = width - 2 * xthick ;
h = MAX ( 3 , h - 6 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
xx = x + ( width - h ) / 2 ;
offset = ( height - 2 * ythick - 2 * n_lines ) / 2 + 1 ;
if ( offset < 0 )
offset = 0 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
for ( i = 0 , yy = y + ythick + offset ; yy < = ( y + height - ythick - 1 ) & & i < n_lines ; yy + = 2 , i + + )
{
gdk_draw_line ( window , dark_gc , xx , yy , xx + h , yy ) ;
gdk_draw_line ( window , light_gc , xx , yy + 1 , xx + h , yy + 1 ) ;
}
}
else
{
h = height - 2 * ythick ;
h = MAX ( 3 , h - 6 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
yy = y + ( height - h ) / 2 ;
offset = ( width - 2 * xthick - 2 * n_lines ) / 2 + 1 ;
if ( offset < 0 )
offset = 0 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
for ( i = 0 , xx = x + xthick + offset ; i < n_lines ; xx + = 2 , i + + )
{
gdk_draw_line ( window , dark_gc , xx , yy , xx , yy + h ) ;
gdk_draw_line ( window , light_gc , xx + 1 , yy , xx + 1 , yy + h ) ;
}
}
gdk_gc_set_clip_rectangle ( light_gc , NULL ) ;
gdk_gc_set_clip_rectangle ( dark_gc , NULL ) ;
}
/**************************************************************************/
static void
draw_box ( DRAW_ARGS )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
CLRectangle r ;
gboolean false_size = FALSE ;
# ifdef DEBUG
printf ( " draw_box: %s %d %d %d %d \n " , detail , x , y , width , height ) ;
# endif
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
g_return_if_fail ( style ! = NULL ) ;
g_return_if_fail ( window ! = NULL ) ;
if ( width = = - 1 | | height = = - 1 )
false_size = TRUE ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( ( width = = - 1 ) & & ( height = = - 1 ) )
gdk_window_get_size ( window , & width , & height ) ;
else if ( width = = - 1 )
gdk_window_get_size ( window , & width , NULL ) ;
else if ( height = = - 1 )
gdk_window_get_size ( window , NULL , & height ) ;
cl_rectangle_reset ( & r , style ) ;
if ( widget = = NULL )
return ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* listview headers */
if ( widget & & DETAIL ( " button " ) & & widget - > parent & &
( GTK_IS_TREE_VIEW ( widget - > parent ) | |
GTK_IS_CLIST ( widget - > parent ) | |
strcmp ( G_OBJECT_TYPE_NAME ( widget - > parent ) , " ETree " ) = = 0 ) )
{
cl_draw_treeview_header ( style , window , state_type , shadow_type ,
area , widget , detail , x , y , width , height ) ;
}
else if ( detail & & ( ! strcmp ( detail , " button " ) | |
! strcmp ( detail , " buttondefault " ) ) )
{
if ( GTK_IS_COMBO_BOX_ENTRY ( widget - > parent ) | | GTK_IS_COMBO ( widget - > parent ) )
{
cl_draw_combobox_button ( style , window , state_type , shadow_type ,
area , widget ,
detail , x , y , width , height ) ;
}
else
{
cl_draw_button ( style , window , state_type , shadow_type , area , widget ,
detail , x , y , width , height ) ;
}
}
else if ( detail & & (
! strcmp ( detail , " spinbutton_up " ) | |
! strcmp ( detail , " spinbutton_down " ) | |
! strcmp ( detail , " spinbutton " ) ) )
2015-10-05 10:17:49 -04:00
{
2008-12-12 09:43:24 -05:00
cl_draw_spinbutton ( style , window , state_type , shadow_type , area ,
widget , detail , x , y , width , height ) ;
}
else if ( detail & & (
! strcmp ( detail , " hscale " ) | | ! strcmp ( detail , " vscale " ) ) )
{
cl_rectangle_set_button ( & r , style , state_type ,
GTK_WIDGET_HAS_DEFAULT ( widget ) , GTK_WIDGET_HAS_FOCUS ( widget ) ,
CL_CORNER_ROUND , CL_CORNER_ROUND ,
CL_CORNER_ROUND , CL_CORNER_ROUND ) ;
if ( ! strcmp ( detail , " hscale " ) | | ! strcmp ( detail , " vscale " ) )
{
r . fill_gradient . to = & clearlooks_style - > shade [ 2 ] ;
r . bottomright = clearlooks_style - > shade_gc [ 2 ] ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_set_corner_sharpness ( detail , widget , & r ) ;
if ( ! strcmp ( detail , " spinbutton_up " ) )
{
r . border_gradient . to = r . border_gradient . from ;
height + + ;
gtk_style_apply_default_background ( style , window , FALSE , state_type ,
area , x , y , width , height ) ;
}
else if ( ! strcmp ( detail , " spinbutton_down " ) )
{
r . border_gradient . to = r . border_gradient . from ;
gtk_style_apply_default_background ( style , window , FALSE , state_type ,
area , x , y , width , height ) ;
}
2015-10-05 10:17:49 -04:00
cl_rectangle_set_clip_rectangle ( & r , area ) ;
2008-12-12 09:43:24 -05:00
cl_draw_rectangle ( window , widget , style , x + 1 , y + 1 , width - 2 , height - 2 , & r ) ;
cl_draw_shadow ( window , widget , style , x + 1 , y + 1 , width - 2 , height - 2 , & r ) ;
2015-10-05 10:17:49 -04:00
cl_rectangle_reset_clip_rectangle ( & r ) ;
2008-12-12 09:43:24 -05:00
}
else if ( DETAIL ( " trough " ) & & GTK_IS_PROGRESS_BAR ( widget ) )
{
GdkPoint points [ 4 ] = { { x , y } , { x + width - 1 , y } , { x , y + height - 1 } , { x + width - 1 , y + height - 1 } } ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_points ( window , style - > bg_gc [ state_type ] , points , 4 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . bordergc = clearlooks_style - > shade_gc [ 5 ] ;
r . fillgc = clearlooks_style - > shade_gc [ 2 ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_corners ( & r , CL_CORNER_NARROW , CL_CORNER_NARROW ,
CL_CORNER_NARROW , CL_CORNER_NARROW ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_clip_rectangle ( & r , area ) ;
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
}
else if ( DETAIL ( " trough " ) & &
( GTK_IS_VSCALE ( widget ) | | GTK_IS_HSCALE ( widget ) ) )
{
GdkGC * inner = clearlooks_style - > shade_gc [ 3 ] ,
* outer = clearlooks_style - > shade_gc [ 5 ] ,
* shadow = clearlooks_style - > shade_gc [ 4 ] ;
GdkColor upper_color = * clearlooks_get_spot_color ( CLEARLOOKS_RC_STYLE ( style - > rc_style ) ) ,
lower_color ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
GtkAdjustment * adjustment = gtk_range_get_adjustment ( GTK_RANGE ( widget ) ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
GtkOrientation orientation = GTK_RANGE ( widget ) - > orientation ;
2015-10-05 10:17:49 -04:00
2015-10-04 14:51:05 -04:00
gint fill_size = ( orientation ? height : width ) *
( 1 / ( ( adjustment - > upper - adjustment - > lower ) /
2008-12-12 09:43:24 -05:00
( adjustment - > value - adjustment - > lower ) ) ) ;
if ( orientation = = GTK_ORIENTATION_HORIZONTAL )
{
y + = ( height - SCALE_SIZE ) / 2 ;
height = SCALE_SIZE ;
}
else
{
x + = ( width - SCALE_SIZE ) / 2 ;
width = SCALE_SIZE ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( state_type = = GTK_STATE_INSENSITIVE )
{
outer = clearlooks_style - > shade_gc [ 4 ] ;
inner = clearlooks_style - > shade_gc [ 2 ] ;
shadow = clearlooks_style - > shade_gc [ 3 ] ;
}
2015-10-05 10:17:49 -04:00
2015-10-04 14:51:05 -04:00
cl_rectangle_init ( & r , inner , outer , CL_CORNER_NONE , CL_CORNER_NONE ,
2008-12-12 09:43:24 -05:00
CL_CORNER_NONE , CL_CORNER_NONE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . topleft = shadow ;
2015-10-05 10:17:49 -04:00
cl_rectangle_set_clip_rectangle ( & r , area ) ;
2008-12-12 09:43:24 -05:00
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
cl_draw_shadow ( window , widget , style , x , y , width , height , & r ) ;
2015-10-05 10:17:49 -04:00
cl_rectangle_reset_clip_rectangle ( & r ) ;
2008-12-12 09:43:24 -05:00
/* DRAW FILL */
shade ( & upper_color , & lower_color , 1.3 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . bordergc = clearlooks_style - > spot3_gc ;
r . fillgc = style - > bg_gc [ state_type ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . gradient_type = ( orientation = = GTK_ORIENTATION_HORIZONTAL ) ? CL_GRADIENT_VERTICAL
: CL_GRADIENT_HORIZONTAL ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_gradient ( & r . fill_gradient , & upper_color , & lower_color ) ;
2015-10-05 10:17:49 -04:00
cl_rectangle_set_clip_rectangle ( & r , area ) ;
2008-12-12 09:43:24 -05:00
if ( orientation = = GTK_ORIENTATION_HORIZONTAL & & fill_size > 1 )
{
if ( gtk_range_get_inverted ( GTK_RANGE ( widget ) ) ! = ( get_direction ( widget ) = = GTK_TEXT_DIR_RTL ) )
cl_draw_rectangle ( window , widget , style , x + width - fill_size , y , fill_size , height , & r ) ;
else
2015-10-05 10:17:49 -04:00
cl_draw_rectangle ( window , widget , style , x , y , fill_size , height , & r ) ;
2008-12-12 09:43:24 -05:00
}
else if ( fill_size > 1 )
{
if ( gtk_range_get_inverted ( GTK_RANGE ( widget ) ) )
cl_draw_rectangle ( window , widget , style , x , y + height - fill_size , width , fill_size , & r ) ;
else
2015-10-05 10:17:49 -04:00
cl_draw_rectangle ( window , widget , style , x , y , width , fill_size , & r ) ;
2008-12-12 09:43:24 -05:00
}
2015-10-05 10:17:49 -04:00
cl_rectangle_reset_clip_rectangle ( & r ) ;
2008-12-12 09:43:24 -05:00
}
else if ( DETAIL ( " trough " ) )
{
GdkGC * inner = clearlooks_style - > shade_gc [ 3 ] ,
2015-10-05 10:17:49 -04:00
* outer = clearlooks_style - > shade_gc [ 5 ] ;
2015-10-04 14:51:05 -04:00
cl_rectangle_init ( & r , inner , outer , CL_CORNER_NONE , CL_CORNER_NONE ,
2008-12-12 09:43:24 -05:00
CL_CORNER_NONE , CL_CORNER_NONE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( GTK_RANGE ( widget ) - > orientation = = GTK_ORIENTATION_VERTICAL )
{
y + = 1 ;
height - = 2 ;
}
else
{
x + = 1 ;
width - = 2 ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_clip_rectangle ( & r , area ) ;
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
}
else if ( detail & & ( ! strcmp ( detail , " vscrollbar " ) | |
! strcmp ( detail , " hscrollbar " ) | |
! strcmp ( detail , " stepper " ) ) )
{
ClScrollButtonType button_type = CL_SCROLLBUTTON_OTHER ;
gboolean horizontal = TRUE ;
if ( GTK_IS_VSCROLLBAR ( widget ) )
{
if ( y = = widget - > allocation . y )
button_type = CL_SCROLLBUTTON_BEGIN ;
else if ( y + height = = widget - > allocation . y + widget - > allocation . height )
button_type = CL_SCROLLBUTTON_END ;
horizontal = FALSE ;
}
else if ( GTK_IS_HSCROLLBAR ( widget ) )
{
if ( x = = widget - > allocation . x )
button_type = CL_SCROLLBUTTON_BEGIN ;
else if ( x + width = = widget - > allocation . x + widget - > allocation . width )
button_type = CL_SCROLLBUTTON_END ;
}
cl_rectangle_set_button ( & r , style , state_type , FALSE , FALSE , 0 , 0 , 0 , 0 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_gradient ( & r . fill_gradient , NULL , NULL ) ;
cl_rectangle_set_gradient ( & r . fill_gradient , & clearlooks_style - > inset_light [ state_type ] ,
& clearlooks_style - > inset_dark [ state_type ] ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . gradient_type = horizontal ? CL_GRADIENT_VERTICAL
: CL_GRADIENT_HORIZONTAL ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . bottomright = clearlooks_style - > shade_gc [ 1 ] ;
r . border_gradient . to = r . border_gradient . from ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( button_type = = CL_SCROLLBUTTON_OTHER )
{
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
}
else if ( button_type = = CL_SCROLLBUTTON_BEGIN )
{
if ( horizontal )
cl_rectangle_set_corners ( & r , CL_CORNER_ROUND , CL_CORNER_NONE ,
CL_CORNER_ROUND , CL_CORNER_NONE ) ;
else
cl_rectangle_set_corners ( & r , CL_CORNER_ROUND , CL_CORNER_ROUND ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
}
else
{
if ( horizontal )
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_ROUND ,
CL_CORNER_NONE , CL_CORNER_ROUND ) ;
else
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_ROUND , CL_CORNER_ROUND ) ;
}
2015-10-05 10:17:49 -04:00
cl_rectangle_set_clip_rectangle ( & r , area ) ;
2008-12-12 09:43:24 -05:00
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
cl_draw_shadow ( window , widget , style , x , y , width , height , & r ) ;
2015-10-05 10:17:49 -04:00
cl_rectangle_reset_clip_rectangle ( & r ) ;
2008-12-12 09:43:24 -05:00
}
else if ( DETAIL ( " slider " ) )
{
if ( DETAIL ( " slider " ) & & widget & & GTK_IS_RANGE ( widget ) )
{
GtkAdjustment * adj = GTK_RANGE ( widget ) - > adjustment ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( adj - > value < = adj - > lower & &
( GTK_RANGE ( widget ) - > has_stepper_a | | GTK_RANGE ( widget ) - > has_stepper_b ) )
{
if ( GTK_IS_VSCROLLBAR ( widget ) )
{
y - = 1 ;
height + = 1 ;
}
else if ( GTK_IS_HSCROLLBAR ( widget ) )
{
x - = 1 ;
width + = 1 ;
}
}
if ( adj - > value > = adj - > upper - adj - > page_size & &
( GTK_RANGE ( widget ) - > has_stepper_c | | GTK_RANGE ( widget ) - > has_stepper_d ) )
{
if ( GTK_IS_VSCROLLBAR ( widget ) )
height + = 1 ;
else if ( GTK_IS_HSCROLLBAR ( widget ) )
width + = 1 ;
}
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_button ( & r , style , state_type , FALSE , GTK_WIDGET_HAS_FOCUS ( widget ) ,
CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . gradient_type = GTK_IS_HSCROLLBAR ( widget ) ? CL_GRADIENT_VERTICAL
: CL_GRADIENT_HORIZONTAL ;
cl_rectangle_set_gradient ( & r . fill_gradient , & clearlooks_style - > inset_light [ state_type ] ,
& clearlooks_style - > inset_dark [ state_type ] ) ;
r . bottomright = clearlooks_style - > shade_gc [ 1 ] ;
r . border_gradient . to = r . border_gradient . from ;
2015-10-05 10:17:49 -04:00
cl_rectangle_set_clip_rectangle ( & r , area ) ;
2008-12-12 09:43:24 -05:00
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
cl_draw_shadow ( window , widget , style , x , y , width , height , & r ) ;
2015-10-05 10:17:49 -04:00
cl_rectangle_reset_clip_rectangle ( & r ) ;
2008-12-12 09:43:24 -05:00
}
else if ( detail & & ! strcmp ( detail , " optionmenu " ) ) /* supporting deprecated */
{
cl_draw_optionmenu ( style , window , state_type , shadow_type , area , widget , detail , x , y , width , height ) ;
}
else if ( DETAIL ( " menuitem " ) )
{
if ( clearlooks_style - > menuitemstyle = = 0 )
{
cl_draw_menuitem_flat ( window , widget , style , area , state_type ,
2015-10-05 10:17:49 -04:00
x , y , width , height , & r ) ;
2008-12-12 09:43:24 -05:00
}
else if ( clearlooks_style - > menuitemstyle = = 1 )
{
cl_draw_menuitem_gradient ( window , widget , style , area , state_type ,
x , y , width , height , & r ) ;
}
else
{
cl_draw_menuitem_button ( window , widget , style , area , state_type ,
x , y , width , height , & r ) ;
}
}
else if ( DETAIL ( " menubar " ) & & ( clearlooks_style - > sunkenmenubar | | clearlooks_style - > menubarstyle > 0 ) )
{
GdkGC * dark = clearlooks_style - > shade_gc [ 2 ] ;
GdkColor upper_color , lower_color ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* don't draw sunken menubar on gnome panel
IT ' S A HACK ! HORRIBLE HACK ! HIDEOUS HACK !
BUT IT WORKS FOR ME ( tm ) ! */
if ( widget - > parent & &
strcmp ( G_OBJECT_TYPE_NAME ( widget - > parent ) , " PanelWidget " ) = = 0 )
return ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
shade ( & style - > bg [ state_type ] , & upper_color , 1.0 ) ;
shade ( & style - > bg [ state_type ] , & lower_color , 0.95 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . fillgc = style - > bg_gc [ state_type ] ;
r . bordergc = clearlooks_style - > shade_gc [ 2 ] ;
r . gradient_type = CL_GRADIENT_VERTICAL ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_gradient ( & r . border_gradient , & clearlooks_style - > shade [ 2 ] ,
& clearlooks_style - > shade [ 3 ] ) ;
cl_rectangle_set_gradient ( & r . fill_gradient , & upper_color , & lower_color ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* make vertical and top borders invisible for style 2 */
if ( clearlooks_style - > menubarstyle = = 2 ) {
x - - ; width + = 2 ;
y - - ; height + = 1 ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_clip_rectangle ( & r , area ) ;
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
}
else if ( DETAIL ( " menu " ) & & widget - > parent & &
GDK_IS_WINDOW ( widget - > parent - > window ) )
2015-10-05 10:17:49 -04:00
{
2008-12-12 09:43:24 -05:00
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . bordergc = clearlooks_style - > border_gc [ CL_BORDER_UPPER ] ;
r . topleft = style - > light_gc [ state_type ] ;
r . bottomright = clearlooks_style - > shade_gc [ 1 ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_clip_rectangle ( & r , area ) ;
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
cl_draw_shadow ( window , widget , style , x , y , width , height , & r ) ;
2015-10-05 10:17:49 -04:00
cl_rectangle_reset_clip_rectangle ( & r ) ;
2008-12-12 09:43:24 -05:00
return ;
}
else if ( DETAIL ( " bar " ) & & widget & & GTK_IS_PROGRESS_BAR ( widget ) )
{
GdkColor upper_color = * clearlooks_get_spot_color ( CLEARLOOKS_RC_STYLE ( style - > rc_style ) ) ,
lower_color ,
prev_foreground ;
gboolean activity_mode = GTK_PROGRESS ( widget ) - > activity_mode ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
# ifdef HAVE_ANIMATION
if ( ! activity_mode & & gtk_progress_bar_get_fraction ( widget ) ! = 1.0 & &
! cl_progressbar_known ( ( gconstpointer ) widget ) )
{
cl_progressbar_add ( ( gpointer ) widget ) ;
}
2015-10-05 10:17:49 -04:00
# endif
2008-12-12 09:43:24 -05:00
cl_progressbar_fill ( window , widget , style , style - > black_gc ,
x , y , width , height ,
# ifdef HAVE_ANIMATION
activity_mode ? 0 : pboffset ,
# else
2015-10-05 10:17:49 -04:00
0 ,
2008-12-12 09:43:24 -05:00
# endif
area ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
r . bordergc = clearlooks_style - > spot3_gc ;
r . topleft = clearlooks_style - > spot2_gc ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
prev_foreground = cl_gc_set_fg_color_shade ( clearlooks_style - > spot2_gc ,
style - > colormap ,
& clearlooks_style - > spot2 ,
1.2 ) ;
cl_rectangle_set_clip_rectangle ( & r , area ) ;
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
cl_draw_shadow ( window , widget , style , x , y , width , height , & r ) ;
cl_rectangle_reset_clip_rectangle ( & r ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_gc_set_foreground ( clearlooks_style - > spot2_gc , & prev_foreground ) ;
}
else if ( widget & & ( DETAIL ( " menubar " ) | | DETAIL ( " toolbar " ) | | DETAIL ( " dockitem_bin " ) | | DETAIL ( " handlebox_bin " ) ) & & shadow_type ! = GTK_SHADOW_NONE ) /* Toolbars and menus */
{
if ( area )
{
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 0 ] , area ) ;
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 3 ] , area ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gtk_style_apply_default_background ( style , window ,
widget & & ! GTK_WIDGET_NO_WINDOW ( widget ) ,
state_type , area , x , y , width , height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* we only want the borders on horizontal toolbars */
2015-10-04 14:51:05 -04:00
if ( DETAIL ( " menubar " ) | | height < 2 * width ) {
2008-12-12 09:43:24 -05:00
if ( ! DETAIL ( " menubar " ) )
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 0 ] ,
x , y , x + width , y ) ; /* top */
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 3 ] ,
x , y + height - 1 , x + width , y + height - 1 ) ; /* bottom */
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 0 ] , NULL ) ;
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 3 ] , NULL ) ;
}
}
else
{
parent_class - > draw_box ( style , window , state_type , shadow_type , area ,
widget , detail , x , y , width , height ) ;
}
}
/**************************************************************************/
static void
ensure_check_pixmaps ( GtkStyle * style ,
GtkStateType state ,
GdkScreen * screen ,
gboolean treeview )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
ClearlooksRcStyle * clearlooks_rc = CLEARLOOKS_RC_STYLE ( style - > rc_style ) ;
GdkPixbuf * check , * base , * inconsistent , * composite ;
GdkColor * spot_color = clearlooks_get_spot_color ( clearlooks_rc ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( clearlooks_style - > check_pixmap_nonactive [ state ] ! = NULL )
return ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( state = = GTK_STATE_ACTIVE | | state = = GTK_STATE_SELECTED ) {
check = generate_bit ( check_alpha , & style - > text [ GTK_STATE_NORMAL ] , 1.0 ) ;
inconsistent = generate_bit ( check_inconsistent_alpha , & style - > text [ GTK_STATE_NORMAL ] , 1.0 ) ;
} else {
check = generate_bit ( check_alpha , & style - > text [ state ] , 1.0 ) ;
inconsistent = generate_bit ( check_inconsistent_alpha , & style - > text [ state ] , 1.0 ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( state = = GTK_STATE_ACTIVE & & ! treeview )
base = generate_bit ( check_base_alpha , & style - > bg [ state ] , 1.0 ) ;
else
base = generate_bit ( check_base_alpha , & style - > base [ GTK_STATE_NORMAL ] , 1.0 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( treeview )
composite = generate_bit ( NULL , & clearlooks_style - > shade [ 6 ] , 1.0 ) ;
else
composite = generate_bit ( NULL , & clearlooks_style - > shade [ 5 ] , 1.0 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_pixbuf_composite ( base , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
clearlooks_style - > check_pixmap_nonactive [ state ] =
pixbuf_to_pixmap ( style , composite , screen ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_pixbuf_composite ( check , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
clearlooks_style - > check_pixmap_active [ state ] =
pixbuf_to_pixmap ( style , composite , screen ) ;
g_object_unref ( composite ) ;
composite = generate_bit ( NULL , & clearlooks_style - > shade [ 6 ] , 1.0 ) ;
gdk_pixbuf_composite ( base , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
gdk_pixbuf_composite ( inconsistent , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
clearlooks_style - > check_pixmap_inconsistent [ state ] =
pixbuf_to_pixmap ( style , composite , screen ) ;
g_object_unref ( composite ) ;
g_object_unref ( base ) ;
g_object_unref ( check ) ;
g_object_unref ( inconsistent ) ;
}
static void
draw_check ( DRAW_ARGS )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
GdkGC * gc = style - > base_gc [ state_type ] ;
GdkPixmap * pixmap ;
gboolean treeview ;
if ( DETAIL ( " check " ) ) /* Menu item */
{
parent_class - > draw_check ( style , window , state_type , shadow_type , area ,
widget , detail , x , y , width , height ) ;
return ;
}
treeview = widget & & GTK_IS_TREE_VIEW ( widget ) ;
ensure_check_pixmaps ( style , state_type , gtk_widget_get_screen ( widget ) , treeview ) ;
if ( area )
gdk_gc_set_clip_rectangle ( gc , area ) ;
if ( shadow_type = = GTK_SHADOW_IN )
pixmap = clearlooks_style - > check_pixmap_active [ state_type ] ;
else if ( shadow_type = = GTK_SHADOW_ETCHED_IN ) /* inconsistent */
pixmap = clearlooks_style - > check_pixmap_inconsistent [ state_type ] ;
else
pixmap = clearlooks_style - > check_pixmap_nonactive [ state_type ] ;
x + = ( width - CHECK_SIZE ) / 2 ;
y + = ( height - CHECK_SIZE ) / 2 ;
gdk_draw_drawable ( window , gc , pixmap , 0 , 0 , x , y , CHECK_SIZE , CHECK_SIZE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
gdk_gc_set_clip_rectangle ( gc , NULL ) ;
}
/**************************************************************************/
static void
draw_slider ( DRAW_ARGS , GtkOrientation orientation )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
GdkGC * shade_gc = clearlooks_style - > shade_gc [ 4 ] ;
GdkGC * white_gc = clearlooks_style - > shade_gc [ 0 ] ;
int x1 , y1 ;
# if DEBUG
printf ( " draw_slider: %s %d %d %d %d \n " , detail , x , y , width , height ) ;
# endif
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
sanitize_size ( window , & width , & height ) ;
gtk_paint_box ( style , window , state_type , shadow_type ,
area , widget , detail , x , y , width , height ) ;
if ( ( orientation = = GTK_ORIENTATION_VERTICAL & & height < 20 ) | |
( orientation = = GTK_ORIENTATION_HORIZONTAL & & width < 20 ) )
return ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( detail & & strcmp ( " slider " , detail ) = = 0 )
{
if ( area )
{
gdk_gc_set_clip_rectangle ( shade_gc , area ) ;
gdk_gc_set_clip_rectangle ( white_gc , area ) ;
}
if ( orientation = = GTK_ORIENTATION_HORIZONTAL )
{
x1 = x + width / 2 - 4 ;
y1 = y + ( height - 6 ) / 2 ;
gdk_draw_line ( window , shade_gc , x1 , y1 , x1 , y1 + 6 ) ;
gdk_draw_line ( window , white_gc , x1 + 1 , y1 , x1 + 1 , y1 + 6 ) ;
gdk_draw_line ( window , shade_gc , x1 + 3 , y1 , x1 + 3 , y1 + 6 ) ;
gdk_draw_line ( window , white_gc , x1 + 3 + 1 , y1 , x1 + 3 + 1 , y1 + 6 ) ;
gdk_draw_line ( window , shade_gc , x1 + 3 * 2 , y1 , x1 + 3 * 2 , y1 + 6 ) ;
gdk_draw_line ( window , white_gc , x1 + 3 * 2 + 1 , y1 , x1 + 3 * 2 + 1 , y1 + 6 ) ;
}
else
{
x1 = x + ( width - 6 ) / 2 ;
y1 = y + height / 2 - 4 ;
gdk_draw_line ( window , shade_gc , x1 + 6 , y1 , x1 , y1 ) ;
gdk_draw_line ( window , white_gc , x1 + 6 , y1 + 1 , x1 , y1 + 1 ) ;
gdk_draw_line ( window , shade_gc , x1 + 6 , y1 + 3 , x1 , y1 + 3 ) ;
gdk_draw_line ( window , white_gc , x1 + 6 , y1 + 3 + 1 , x1 , y1 + 3 + 1 ) ;
gdk_draw_line ( window , shade_gc , x1 + 6 , y1 + 3 * 2 , x1 , y1 + 3 * 2 ) ;
gdk_draw_line ( window , white_gc , x1 + 6 , y1 + 3 * 2 + 1 , x1 , y1 + 3 * 2 + 1 ) ;
}
if ( area )
{
gdk_gc_set_clip_rectangle ( shade_gc , NULL ) ;
gdk_gc_set_clip_rectangle ( white_gc , NULL ) ;
}
}
else if ( detail & & ( strcmp ( " hscale " , detail ) = = 0 | | strcmp ( " vscale " , detail ) = = 0 ) )
{
if ( area )
{
gdk_gc_set_clip_rectangle ( shade_gc , area ) ;
gdk_gc_set_clip_rectangle ( white_gc , area ) ;
}
if ( orientation = = GTK_ORIENTATION_HORIZONTAL )
{
x1 = x + width / 2 - 3 ;
y1 = y + ( height - 7 ) / 2 ;
gdk_draw_line ( window , shade_gc , x1 + 0 , y1 + 5 , x1 + 0 , y1 + 1 ) ;
gdk_draw_line ( window , white_gc , x1 + 1 , y1 + 5 , x1 + 1 , y1 + 1 ) ;
gdk_draw_line ( window , shade_gc , x1 + 3 , y1 + 5 , x1 + 3 , y1 + 1 ) ;
gdk_draw_line ( window , white_gc , x1 + 4 , y1 + 5 , x1 + 4 , y1 + 1 ) ;
gdk_draw_line ( window , shade_gc , x1 + 6 , y1 + 5 , x1 + 6 , y1 + 1 ) ;
gdk_draw_line ( window , white_gc , x1 + 7 , y1 + 5 , x1 + 7 , y1 + 1 ) ;
}
else
{
x1 = x + ( width - 7 ) / 2 ;
y1 = y + height / 2 - 3 ;
gdk_draw_line ( window , shade_gc , x1 + 5 , y1 + 0 , x1 + 1 , y1 + 0 ) ;
gdk_draw_line ( window , white_gc , x1 + 5 , y1 + 1 , x1 + 1 , y1 + 1 ) ;
gdk_draw_line ( window , shade_gc , x1 + 5 , y1 + 3 , x1 + 1 , y1 + 3 ) ;
gdk_draw_line ( window , white_gc , x1 + 5 , y1 + 4 , x1 + 1 , y1 + 4 ) ;
gdk_draw_line ( window , shade_gc , x1 + 5 , y1 + 6 , x1 + 1 , y1 + 6 ) ;
gdk_draw_line ( window , white_gc , x1 + 5 , y1 + 7 , x1 + 1 , y1 + 7 ) ;
}
if ( area )
{
gdk_gc_set_clip_rectangle ( shade_gc , NULL ) ;
gdk_gc_set_clip_rectangle ( white_gc , NULL ) ;
}
}
}
/**************************************************************************/
static void
ensure_radio_pixmaps ( GtkStyle * style ,
GtkStateType state ,
GdkScreen * screen )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
ClearlooksRcStyle * clearlooks_rc = CLEARLOOKS_RC_STYLE ( style - > rc_style ) ;
GdkPixbuf * dot , * circle , * outline , * inconsistent , * composite ;
GdkColor * spot_color = clearlooks_get_spot_color ( clearlooks_rc ) ;
GdkColor * composite_color ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( clearlooks_style - > radio_pixmap_nonactive [ state ] ! = NULL )
return ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( state = = GTK_STATE_ACTIVE | | state = = GTK_STATE_SELECTED ) {
dot = colorize_bit ( dot_intensity , dot_alpha , & style - > text [ GTK_STATE_NORMAL ] ) ;
inconsistent = generate_bit ( inconsistent_alpha , & style - > text [ GTK_STATE_NORMAL ] , 1.0 ) ;
} else {
dot = colorize_bit ( dot_intensity , dot_alpha , & style - > text [ state ] ) ;
inconsistent = generate_bit ( inconsistent_alpha , & style - > text [ state ] , 1.0 ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
outline = generate_bit ( outline_alpha , & clearlooks_style - > shade [ 5 ] , 1.0 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( clearlooks_style - > radio_pixmap_mask = = NULL )
{
gdk_pixbuf_render_pixmap_and_mask ( outline ,
NULL ,
& clearlooks_style - > radio_pixmap_mask ,
1 ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( state = = GTK_STATE_ACTIVE )
{
composite_color = & style - > bg [ GTK_STATE_PRELIGHT ] ;
circle = generate_bit ( circle_alpha , & style - > bg [ state ] , 1.0 ) ;
}
else
{
composite_color = & style - > bg [ state ] ;
circle = generate_bit ( circle_alpha , & style - > base [ GTK_STATE_NORMAL ] , 1.0 ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
composite = generate_bit ( NULL , composite_color , 1.0 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_pixbuf_composite ( outline , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_pixbuf_composite ( circle , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
clearlooks_style - > radio_pixmap_nonactive [ state ] =
pixbuf_to_pixmap ( style , composite , screen ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_pixbuf_composite ( dot , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
clearlooks_style - > radio_pixmap_active [ state ] =
pixbuf_to_pixmap ( style , composite , screen ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
g_object_unref ( composite ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
composite = generate_bit ( NULL , composite_color , 1.0 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_pixbuf_composite ( outline , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
gdk_pixbuf_composite ( circle , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
gdk_pixbuf_composite ( inconsistent , composite ,
0 , 0 , RADIO_SIZE , RADIO_SIZE , 0 , 0 ,
1.0 , 1.0 , GDK_INTERP_NEAREST , 255 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
clearlooks_style - > radio_pixmap_inconsistent [ state ] =
pixbuf_to_pixmap ( style , composite , screen ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
g_object_unref ( composite ) ;
g_object_unref ( circle ) ;
g_object_unref ( dot ) ;
g_object_unref ( inconsistent ) ;
g_object_unref ( outline ) ;
}
static void
draw_option ( DRAW_ARGS )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
GdkGC * gc = style - > base_gc [ state_type ] ;
GdkPixmap * pixmap ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( DETAIL ( " option " ) ) /* Menu item */
{
parent_class - > draw_option ( style , window , state_type , shadow_type ,
area , widget , detail , x , y , width , height ) ;
return ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
ensure_radio_pixmaps ( style , state_type , gtk_widget_get_screen ( widget ) ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
gdk_gc_set_clip_rectangle ( gc , area ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( shadow_type = = GTK_SHADOW_IN )
pixmap = clearlooks_style - > radio_pixmap_active [ state_type ] ;
else if ( shadow_type = = GTK_SHADOW_ETCHED_IN ) /* inconsistent */
pixmap = clearlooks_style - > radio_pixmap_inconsistent [ state_type ] ;
else
pixmap = clearlooks_style - > radio_pixmap_nonactive [ state_type ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
x + = ( width - RADIO_SIZE ) / 2 ;
y + = ( height - RADIO_SIZE ) / 2 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
# ifndef GTKOSX
gdk_gc_set_clip_mask ( gc , clearlooks_style - > radio_pixmap_mask ) ;
gdk_gc_set_clip_origin ( gc , x , y ) ;
# endif
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_drawable ( window , gc , pixmap , 0 , 0 , x , y ,
RADIO_SIZE , RADIO_SIZE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
# ifndef GTKOSX
gdk_gc_set_clip_origin ( gc , 0 , 0 ) ;
gdk_gc_set_clip_mask ( gc , NULL ) ;
# endif
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
gdk_gc_set_clip_rectangle ( gc , NULL ) ;
}
/**************************************************************************/
2015-10-04 14:51:05 -04:00
static void
2008-12-12 09:43:24 -05:00
draw_shadow_gap ( DRAW_ARGS ,
GtkPositionType gap_side ,
gint gap_x ,
gint gap_width )
{
/* I need to improve this function. */
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
CLRectangle r ;
2015-10-04 14:51:05 -04:00
GdkRegion * area_region = NULL ,
2008-12-12 09:43:24 -05:00
* gap_region = NULL ;
# if DEBUG
printf ( " draw_shadow_gap: %s %d %d %d %d \n " , detail , x , y , width , height ) ;
# endif
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
sanitize_size ( window , & width , & height ) ;
cl_rectangle_reset ( & r , style ) ;
cl_rectangle_set_corners ( & r , CL_CORNER_NONE , CL_CORNER_NONE ,
CL_CORNER_NONE , CL_CORNER_NONE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
area_region = gdk_region_rectangle ( area ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
switch ( gap_side )
{
case GTK_POS_TOP :
{
GdkRectangle rect = { x + gap_x , y , gap_width , 2 } ;
gap_region = gdk_region_rectangle ( & rect ) ;
break ;
}
case GTK_POS_BOTTOM :
{
GdkRectangle rect = { x + gap_x , y + height - 2 , gap_width , 2 } ;
gap_region = gdk_region_rectangle ( & rect ) ;
break ;
}
case GTK_POS_LEFT :
{
GdkRectangle rect = { x , y + gap_x , 2 , gap_width } ;
gap_region = gdk_region_rectangle ( & rect ) ;
break ;
2015-10-05 10:17:49 -04:00
}
2008-12-12 09:43:24 -05:00
case GTK_POS_RIGHT :
{
GdkRectangle rect = { x + width - 2 , y + gap_x , 2 , gap_width } ;
gap_region = gdk_region_rectangle ( & rect ) ;
break ;
2015-10-05 10:17:49 -04:00
}
2008-12-12 09:43:24 -05:00
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_region_subtract ( area_region , gap_region ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( shadow_type = = GTK_SHADOW_ETCHED_IN | |
shadow_type = = GTK_SHADOW_ETCHED_OUT )
{
GdkGC * a ;
GdkGC * b ;
if ( shadow_type = = GTK_SHADOW_ETCHED_IN )
{
a = style - > light_gc [ state_type ] ;
b = clearlooks_style - > shade_gc [ 3 ] ;
}
else
{
a = clearlooks_style - > shade_gc [ 3 ] ;
b = style - > light_gc [ state_type ] ;
}
2015-10-05 10:17:49 -04:00
gdk_gc_set_clip_region ( a , area_region ) ;
gdk_gc_set_clip_region ( b , area_region ) ;
2008-12-12 09:43:24 -05:00
r . bordergc = a ;
cl_draw_rectangle ( window , widget , style , x + 1 , y + 1 , width - 1 , height - 1 , & r ) ;
r . bordergc = b ;
cl_draw_rectangle ( window , widget , style , x , y , width - 1 , height - 1 , & r ) ;
2015-10-05 10:17:49 -04:00
gdk_gc_set_clip_region ( a , NULL ) ;
gdk_gc_set_clip_region ( b , NULL ) ;
2008-12-12 09:43:24 -05:00
}
else if ( shadow_type = = GTK_SHADOW_IN | | shadow_type = = GTK_SHADOW_OUT )
{
r . topleft = ( shadow_type = = GTK_SHADOW_OUT ) ? style - > light_gc [ state_type ] : clearlooks_style - > shade_gc [ 1 ] ;
r . bottomright = ( shadow_type = = GTK_SHADOW_OUT ) ? clearlooks_style - > shade_gc [ 1 ] : style - > light_gc [ state_type ] ;
r . bordergc = clearlooks_style - > shade_gc [ 5 ] ;
2015-10-05 10:17:49 -04:00
gdk_gc_set_clip_region ( r . bordergc , area_region ) ;
gdk_gc_set_clip_region ( r . topleft , area_region ) ;
gdk_gc_set_clip_region ( r . bottomright , area_region ) ;
2008-12-12 09:43:24 -05:00
cl_draw_rectangle ( window , widget , style , x , y , width , height , & r ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
cl_draw_shadow ( window , widget , style , x , y , width , height , & r ) ;
gdk_gc_set_clip_region ( r . bordergc , NULL ) ;
gdk_gc_set_clip_region ( r . topleft , NULL ) ;
gdk_gc_set_clip_region ( r . bottomright , NULL ) ;
}
if ( area_region )
gdk_region_destroy ( area_region ) ;
}
/**************************************************************************/
static void
draw_hline ( GtkStyle * style ,
GdkWindow * window ,
GtkStateType state_type ,
GdkRectangle * area ,
GtkWidget * widget ,
const gchar * detail ,
gint x1 ,
gint x2 ,
gint y )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
# if DEBUG
printf ( " draw_hline \n " ) ;
# endif
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 2 ] , area ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( detail & & ! strcmp ( detail , " label " ) )
{
if ( state_type = = GTK_STATE_INSENSITIVE )
gdk_draw_line ( window , style - > light_gc [ state_type ] , x1 + 1 , y + 1 , x2 + 1 , y + 1 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_line ( window , style - > fg_gc [ state_type ] , x1 , y , x2 , y ) ;
}
else
{
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 2 ] , x1 , y , x2 , y ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* if (DETAIL ("menuitem")) */
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 0 ] , x1 , y + 1 , x2 , y + 1 ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 2 ] , NULL ) ;
}
/**************************************************************************/
static void
draw_vline ( GtkStyle * style ,
GdkWindow * window ,
GtkStateType state_type ,
GdkRectangle * area ,
GtkWidget * widget ,
const gchar * detail ,
gint y1 ,
gint y2 ,
gint x )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
gint thickness_light ;
gint thickness_dark ;
# if DEBUG
printf ( " draw_vline \n " ) ;
# endif
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
thickness_light = style - > xthickness / 2 ;
thickness_dark = style - > xthickness - thickness_light ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 2 ] , area ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 2 ] , x , y1 , x , y2 - 1 ) ;
gdk_draw_line ( window , clearlooks_style - > shade_gc [ 0 ] , x + 1 , y1 , x + 1 , y2 - 1 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
gdk_gc_set_clip_rectangle ( clearlooks_style - > shade_gc [ 2 ] , NULL ) ;
}
/**************************************************************************/
static void
draw_focus ( GtkStyle * style ,
GdkWindow * window ,
GtkStateType state_type ,
GdkRectangle * area ,
GtkWidget * widget ,
const gchar * detail ,
gint x ,
gint y ,
gint width ,
gint height )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
GdkPoint points [ 5 ] ;
GdkGC * gc ;
gboolean free_dash_list = FALSE ;
gint line_width = 1 ;
gchar * dash_list = " \1 \1 " ;
gint dash_len ;
# if DEBUG
printf ( " draw_focus: %s %d %d %d %d \n " , detail , x , y , width , height ) ;
# endif
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gc = clearlooks_style - > shade_gc [ 6 ] ;
2015-10-05 10:17:49 -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 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
free_dash_list = TRUE ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
sanitize_size ( window , & width , & height ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
gdk_gc_set_clip_rectangle ( gc , area ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_gc_set_line_attributes ( gc , line_width ,
dash_list [ 0 ] ? GDK_LINE_ON_OFF_DASH : GDK_LINE_SOLID ,
GDK_CAP_BUTT , GDK_JOIN_MITER ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( detail & & ! strcmp ( detail , " add-mode " ) )
{
if ( free_dash_list )
g_free ( dash_list ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
dash_list = " \4 \4 " ;
free_dash_list = FALSE ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
points [ 0 ] . x = x + line_width / 2 ;
points [ 0 ] . y = y + line_width / 2 ;
points [ 1 ] . x = x + width - line_width + line_width / 2 ;
points [ 1 ] . y = y + line_width / 2 ;
points [ 2 ] . x = x + width - line_width + line_width / 2 ;
points [ 2 ] . y = y + height - line_width + line_width / 2 ;
points [ 3 ] . x = x + line_width / 2 ;
points [ 3 ] . y = y + height - line_width + line_width / 2 ;
points [ 4 ] = points [ 0 ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( ! dash_list [ 0 ] )
{
gdk_draw_lines ( window , gc , points , 5 ) ;
}
else
{
dash_len = strlen ( dash_list ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( dash_list [ 0 ] )
gdk_gc_set_dashes ( gc , 0 , dash_list , dash_len ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_lines ( window , gc , points , 3 ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
points [ 2 ] . x + = 1 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( dash_list [ 0 ] )
{
gint dash_pixels = 0 ;
gint i ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* Adjust the dash offset for the bottom and left so we
* match up at the upper left .
*/
for ( i = 0 ; i < dash_len ; i + + )
dash_pixels + = dash_list [ i ] ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( dash_len % 2 = = 1 )
dash_pixels * = 2 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_gc_set_dashes ( gc ,
dash_pixels - ( width + height - 2 * line_width ) % dash_pixels ,
dash_list , dash_len ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_lines ( window , gc , points + 2 , 3 ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_gc_set_line_attributes ( gc , 0 , GDK_LINE_SOLID , GDK_CAP_BUTT , GDK_JOIN_MITER ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
gdk_gc_set_clip_rectangle ( gc , NULL ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( free_dash_list )
g_free ( dash_list ) ;
}
static void
draw_layout ( GtkStyle * style ,
GdkWindow * window ,
GtkStateType state_type ,
gboolean use_text ,
GdkRectangle * area ,
GtkWidget * widget ,
const gchar * detail , gint x , gint y , PangoLayout * layout )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
parent_class - > draw_layout ( style , window , state_type , use_text ,
area , widget , detail , x , y , layout ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
}
/**************************************************************************/
static void
draw_resize_grip ( GtkStyle * style ,
GdkWindow * window ,
GtkStateType state_type ,
GdkRectangle * area ,
GtkWidget * widget ,
const gchar * detail ,
GdkWindowEdge edge ,
gint x ,
gint y ,
gint width ,
gint height )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
g_return_if_fail ( GTK_IS_STYLE ( style ) ) ;
g_return_if_fail ( window ! = NULL ) ;
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
gdk_gc_set_clip_rectangle ( style - > light_gc [ state_type ] , area ) ;
gdk_gc_set_clip_rectangle ( style - > dark_gc [ state_type ] , area ) ;
gdk_gc_set_clip_rectangle ( style - > bg_gc [ state_type ] , area ) ;
}
switch ( edge )
{
case GDK_WINDOW_EDGE_NORTH_WEST :
/* make it square */
if ( width < height )
{
height = width ;
}
else if ( height < width )
{
width = height ;
}
break ;
case GDK_WINDOW_EDGE_NORTH :
if ( width < height )
{
height = width ;
}
break ;
case GDK_WINDOW_EDGE_NORTH_EAST :
/* make it square, aligning to top right */
if ( width < height )
{
height = width ;
}
else if ( height < width )
{
x + = ( width - height ) ;
width = height ;
}
break ;
case GDK_WINDOW_EDGE_WEST :
if ( height < width )
{
width = height ;
}
break ;
case GDK_WINDOW_EDGE_EAST :
/* aligning to right */
if ( height < width )
{
x + = ( width - height ) ;
width = height ;
}
break ;
case GDK_WINDOW_EDGE_SOUTH_WEST :
/* make it square, aligning to bottom left */
if ( width < height )
{
y + = ( height - width ) ;
height = width ;
}
else if ( height < width )
{
width = height ;
}
break ;
case GDK_WINDOW_EDGE_SOUTH :
/* align to bottom */
if ( width < height )
{
y + = ( height - width ) ;
height = width ;
}
break ;
case GDK_WINDOW_EDGE_SOUTH_EAST :
/* make it square, aligning to bottom right */
if ( width < height )
{
y + = ( height - width ) ;
height = width ;
}
else if ( height < width )
{
x + = ( width - height ) ;
width = height ;
}
break ;
default :
g_assert_not_reached ( ) ;
}
/* Clear background */
gtk_style_apply_default_background ( style , window , FALSE ,
state_type , area ,
2015-10-04 14:51:05 -04:00
x , y , width , height ) ;
2008-12-12 09:43:24 -05:00
switch ( edge )
{
case GDK_WINDOW_EDGE_WEST :
case GDK_WINDOW_EDGE_EAST :
{
gint xi ;
xi = x ;
while ( xi < x + width )
{
gdk_draw_line ( window ,
style - > light_gc [ state_type ] ,
xi , y ,
xi , y + height ) ;
xi + + ;
gdk_draw_line ( window ,
clearlooks_style - > shade_gc [ 4 ] ,
xi , y ,
xi , y + height ) ;
xi + = 2 ;
}
}
break ;
case GDK_WINDOW_EDGE_NORTH :
case GDK_WINDOW_EDGE_SOUTH :
{
gint yi ;
yi = y ;
while ( yi < y + height )
{
gdk_draw_line ( window ,
style - > light_gc [ state_type ] ,
x , yi ,
x + width , yi ) ;
yi + + ;
gdk_draw_line ( window ,
clearlooks_style - > shade_gc [ 4 ] ,
x , yi ,
x + width , yi ) ;
yi + = 2 ;
}
}
break ;
case GDK_WINDOW_EDGE_NORTH_WEST :
{
gint xi , yi ;
xi = x + width ;
yi = y + height ;
while ( xi > x + 3 )
{
gdk_draw_line ( window ,
clearlooks_style - > shade_gc [ 4 ] ,
xi , y ,
x , yi ) ;
- - xi ;
- - yi ;
gdk_draw_line ( window ,
style - > light_gc [ state_type ] ,
xi , y ,
x , yi ) ;
xi - = 3 ;
yi - = 3 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
}
}
break ;
case GDK_WINDOW_EDGE_NORTH_EAST :
{
gint xi , yi ;
xi = x ;
yi = y + height ;
while ( xi < ( x + width - 3 ) )
{
gdk_draw_line ( window ,
style - > light_gc [ state_type ] ,
xi , y ,
2015-10-04 14:51:05 -04:00
x + width , yi ) ;
2008-12-12 09:43:24 -05:00
+ + xi ;
- - yi ;
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_line ( window ,
clearlooks_style - > shade_gc [ 4 ] ,
xi , y ,
x + width , yi ) ;
xi + = 3 ;
yi - = 3 ;
}
}
break ;
case GDK_WINDOW_EDGE_SOUTH_WEST :
{
gint xi , yi ;
xi = x + width ;
yi = y ;
while ( xi > x + 3 )
{
gdk_draw_line ( window ,
clearlooks_style - > shade_gc [ 4 ] ,
x , yi ,
xi , y + height ) ;
- - xi ;
+ + yi ;
gdk_draw_line ( window ,
style - > light_gc [ state_type ] ,
x , yi ,
xi , y + height ) ;
xi - = 3 ;
yi + = 3 ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
}
}
break ;
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
case GDK_WINDOW_EDGE_SOUTH_EAST :
{
gint xi , yi ;
xi = x ;
yi = y ;
while ( xi < ( x + width - 3 ) )
{
gdk_draw_line ( window ,
style - > light_gc [ state_type ] ,
xi , y + height ,
2015-10-04 14:51:05 -04:00
x + width , yi ) ;
2008-12-12 09:43:24 -05:00
+ + xi ;
+ + yi ;
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
gdk_draw_line ( window ,
clearlooks_style - > shade_gc [ 4 ] ,
xi , y + height ,
2015-10-04 14:51:05 -04:00
x + width , yi ) ;
2008-12-12 09:43:24 -05:00
xi + = 3 ;
yi + = 3 ;
}
}
break ;
default :
g_assert_not_reached ( ) ;
break ;
}
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
if ( area )
{
gdk_gc_set_clip_rectangle ( style - > light_gc [ state_type ] , NULL ) ;
gdk_gc_set_clip_rectangle ( style - > dark_gc [ state_type ] , NULL ) ;
gdk_gc_set_clip_rectangle ( style - > bg_gc [ state_type ] , NULL ) ;
}
}
/**************************************************************************/
static void
clearlooks_style_init_from_rc ( GtkStyle * style ,
GtkRcStyle * rc_style )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
GdkColor * spot_color ;
double shades [ ] = { 1.065 , 0.93 , 0.896 , 0.85 , 0.768 , 0.665 , 0.4 , 0.205 } ;
int i ;
double contrast ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
parent_class - > init_from_rc ( style , rc_style ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
contrast = CLEARLOOKS_RC_STYLE ( rc_style ) - > contrast ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
clearlooks_style - > sunkenmenubar = CLEARLOOKS_RC_STYLE ( rc_style ) - > sunkenmenubar ;
clearlooks_style - > progressbarstyle = CLEARLOOKS_RC_STYLE ( rc_style ) - > progressbarstyle ;
clearlooks_style - > menubarstyle = CLEARLOOKS_RC_STYLE ( rc_style ) - > menubarstyle ;
clearlooks_style - > menuitemstyle = CLEARLOOKS_RC_STYLE ( rc_style ) - > menuitemstyle ;
clearlooks_style - > listviewitemstyle = CLEARLOOKS_RC_STYLE ( rc_style ) - > listviewitemstyle ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* Lighter to darker */
for ( i = 0 ; i < 8 ; i + + )
{
shade ( & style - > bg [ GTK_STATE_NORMAL ] , & clearlooks_style - > shade [ i ] ,
( shades [ i ] - 0.7 ) * contrast + 0.7 ) ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
spot_color = clearlooks_get_spot_color ( CLEARLOOKS_RC_STYLE ( rc_style ) ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
clearlooks_style - > spot_color = * spot_color ;
shade ( & clearlooks_style - > spot_color , & clearlooks_style - > spot1 , 1.42 ) ;
shade ( & clearlooks_style - > spot_color , & clearlooks_style - > spot2 , 1.05 ) ;
shade ( & clearlooks_style - > spot_color , & clearlooks_style - > spot3 , 0.65 ) ;
shade ( & style - > bg [ GTK_STATE_NORMAL ] , & clearlooks_style - > border [ CL_BORDER_UPPER ] , 0.5 ) ;
shade ( & style - > bg [ GTK_STATE_NORMAL ] , & clearlooks_style - > border [ CL_BORDER_LOWER ] , 0.62 ) ;
shade ( & style - > bg [ GTK_STATE_ACTIVE ] , & clearlooks_style - > border [ CL_BORDER_UPPER_ACTIVE ] , 0.5 ) ;
shade ( & style - > bg [ GTK_STATE_ACTIVE ] , & clearlooks_style - > border [ CL_BORDER_LOWER_ACTIVE ] , 0.55 ) ;
}
static GdkGC *
realize_color ( GtkStyle * style ,
GdkColor * color )
{
GdkGCValues gc_values ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gdk_colormap_alloc_color ( style - > colormap , color , FALSE , TRUE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gc_values . foreground = * color ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
return gtk_gc_get ( style - > depth , style - > colormap , & gc_values , GDK_GC_FOREGROUND ) ;
}
static void
clearlooks_style_realize ( GtkStyle * style )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
int i ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
parent_class - > realize ( style ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
for ( i = 0 ; i < 8 ; i + + )
clearlooks_style - > shade_gc [ i ] = realize_color ( style , & clearlooks_style - > shade [ i ] ) ;
for ( i = 0 ; i < CL_BORDER_COUNT ; i + + )
clearlooks_style - > border_gc [ i ] = realize_color ( style , & clearlooks_style - > border [ i ] ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
clearlooks_style - > spot1_gc = realize_color ( style , & clearlooks_style - > spot1 ) ;
clearlooks_style - > spot2_gc = realize_color ( style , & clearlooks_style - > spot2 ) ;
clearlooks_style - > spot3_gc = realize_color ( style , & clearlooks_style - > spot3 ) ;
/* set light inset color */
for ( i = 0 ; i < 5 ; i + + )
{
shade ( & style - > bg [ i ] , & clearlooks_style - > inset_dark [ i ] , 0.93 ) ;
gdk_rgb_find_color ( style - > colormap , & clearlooks_style - > inset_dark [ i ] ) ;
shade ( & style - > bg [ i ] , & clearlooks_style - > inset_light [ i ] , 1.055 ) ;
gdk_rgb_find_color ( style - > colormap , & clearlooks_style - > inset_light [ i ] ) ;
shade ( & style - > bg [ i ] , & clearlooks_style - > listview_bg [ i ] , 1.015 ) ;
gdk_rgb_find_color ( style - > colormap , & clearlooks_style - > listview_bg [ i ] ) ;
2015-10-05 10:17:49 -04:00
/* CREATE GRADIENT FOR BUTTONS */
2008-12-12 09:43:24 -05:00
shade ( & style - > bg [ i ] , & clearlooks_style - > button_g1 [ i ] , 1.055 ) ;
gdk_rgb_find_color ( style - > colormap , & clearlooks_style - > button_g1 [ i ] ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
shade ( & style - > bg [ i ] , & clearlooks_style - > button_g2 [ i ] , 1.005 ) ;
gdk_rgb_find_color ( style - > colormap , & clearlooks_style - > button_g2 [ i ] ) ;
shade ( & style - > bg [ i ] , & clearlooks_style - > button_g3 [ i ] , 0.98 ) ;
gdk_rgb_find_color ( style - > colormap , & clearlooks_style - > button_g3 [ i ] ) ;
shade ( & style - > bg [ i ] , & clearlooks_style - > button_g4 [ i ] , 0.91 ) ;
gdk_rgb_find_color ( style - > colormap , & clearlooks_style - > button_g4 [ i ] ) ;
}
}
static void
clearlooks_style_unrealize ( GtkStyle * style )
{
ClearlooksStyle * clearlooks_style = CLEARLOOKS_STYLE ( style ) ;
int i ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
/* We don't free the colors, because we don't know if
* gtk_gc_release ( ) actually freed the GC . FIXME - need
* a way of ref ' ing colors explicitely so GtkGC can
* handle things properly .
*/
for ( i = 0 ; i < 8 ; i + + )
gtk_gc_release ( clearlooks_style - > shade_gc [ i ] ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
gtk_gc_release ( clearlooks_style - > spot1_gc ) ;
gtk_gc_release ( clearlooks_style - > spot2_gc ) ;
gtk_gc_release ( clearlooks_style - > spot3_gc ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
for ( i = 0 ; i < 5 ; i + + )
{
if ( clearlooks_style - > radio_pixmap_nonactive [ i ] ! = NULL )
{
g_object_unref ( clearlooks_style - > radio_pixmap_nonactive [ i ] ) ;
clearlooks_style - > radio_pixmap_nonactive [ i ] = NULL ;
g_object_unref ( clearlooks_style - > radio_pixmap_active [ i ] ) ;
clearlooks_style - > radio_pixmap_active [ i ] = NULL ;
g_object_unref ( clearlooks_style - > radio_pixmap_inconsistent [ i ] ) ;
clearlooks_style - > radio_pixmap_inconsistent [ i ] = NULL ;
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( clearlooks_style - > check_pixmap_nonactive [ i ] ! = NULL )
{
g_object_unref ( clearlooks_style - > check_pixmap_nonactive [ i ] ) ;
clearlooks_style - > check_pixmap_nonactive [ i ] = NULL ;
g_object_unref ( clearlooks_style - > check_pixmap_active [ i ] ) ;
clearlooks_style - > check_pixmap_active [ i ] = NULL ;
g_object_unref ( clearlooks_style - > check_pixmap_inconsistent [ i ] ) ;
clearlooks_style - > check_pixmap_inconsistent [ i ] = NULL ;
}
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( clearlooks_style - > radio_pixmap_mask ! = NULL )
g_object_unref ( clearlooks_style - > radio_pixmap_mask ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
clearlooks_style - > radio_pixmap_mask = NULL ;
while ( progressbars = g_list_first ( progressbars ) )
cl_progressbar_remove ( progressbars - > data ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
if ( timer_id ! = 0 )
{
g_source_remove ( timer_id ) ;
2015-10-05 10:17:49 -04:00
timer_id = 0 ;
2008-12-12 09:43:24 -05:00
}
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
parent_class - > unrealize ( style ) ;
}
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 ) ;
for ( y = 0 ; y < height ; y + + ) {
for ( x = 0 ; x < width ; x + + ) {
/* 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-12-12 09:43:24 -05: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 ) & &
height = = gdk_pixbuf_get_height ( src ) ) {
return g_object_ref ( src ) ;
} else {
return gdk_pixbuf_scale_simple ( src ,
width , height ,
GDK_INTERP_BILINEAR ) ;
}
}
static GdkPixbuf *
render_icon ( GtkStyle * style ,
const GtkIconSource * source ,
GtkTextDirection direction ,
GtkStateType state ,
GtkIconSize size ,
GtkWidget * widget ,
const char * detail )
{
int width = 1 ;
int height = 1 ;
GdkPixbuf * scaled ;
GdkPixbuf * stated ;
GdkPixbuf * base_pixbuf ;
GdkScreen * screen ;
GtkSettings * settings ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05: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-12-12 09:43:24 -05:00
base_pixbuf = gtk_icon_source_get_pixbuf ( source ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05: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 ) ) {
screen = gtk_widget_get_screen ( widget ) ;
settings = gtk_settings_get_for_screen ( screen ) ;
} else if ( style - > colormap ) {
screen = gdk_colormap_get_screen ( style - > colormap ) ;
settings = gtk_settings_get_for_screen ( screen ) ;
} else {
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 ) ) {
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-12-12 09:43:24 -05:00
/* If the state was wildcarded, then generate a state. */
if ( gtk_icon_source_get_state_wildcarded ( source ) ) {
if ( state = = GTK_STATE_INSENSITIVE ) {
stated = set_transparency ( scaled , 0.3 ) ;
#if 0
stated =
gdk_pixbuf_composite_color_simple ( scaled ,
gdk_pixbuf_get_width ( scaled ) ,
gdk_pixbuf_get_height ( scaled ) ,
GDK_INTERP_BILINEAR , 128 ,
gdk_pixbuf_get_width ( scaled ) ,
style - > bg [ state ] . pixel ,
style - > bg [ state ] . pixel ) ;
# endif
gdk_pixbuf_saturate_and_pixelate ( stated , stated ,
0.1 , FALSE ) ;
2015-10-05 10:17:49 -04:00
2008-12-12 09:43:24 -05:00
g_object_unref ( scaled ) ;
} 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-12-12 09:43:24 -05:00
g_object_unref ( scaled ) ;
} else {
stated = scaled ;
}
}
else
stated = scaled ;
2015-10-04 14:51:05 -04:00
2008-12-12 09:43:24 -05:00
return stated ;
}
static void
clearlooks_style_init ( ClearlooksStyle * style )
{
}
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
parent_class = g_type_class_peek_parent ( klass ) ;
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_focus = draw_focus ;
style_class - > draw_resize_grip = draw_resize_grip ;
style_class - > draw_handle = draw_handle ;
style_class - > draw_vline = draw_vline ;
style_class - > draw_hline = draw_hline ;
style_class - > draw_slider = draw_slider ;
style_class - > draw_shadow_gap = draw_shadow_gap ;
style_class - > draw_arrow = clearlooks_draw_arrow ;
style_class - > draw_check = draw_check ;
style_class - > draw_tab = draw_tab ;
style_class - > draw_box = draw_box ;
style_class - > draw_shadow = draw_shadow ;
style_class - > draw_box_gap = draw_box_gap ;
style_class - > draw_extension = draw_extension ;
style_class - > draw_option = draw_option ;
2015-10-05 10:17:49 -04:00
style_class - > draw_layout = draw_layout ;
2008-12-12 09:43:24 -05:00
style_class - > render_icon = render_icon ;
style_class - > draw_flat_box = draw_flat_box ;
}
GType clearlooks_type_style = 0 ;
void
clearlooks_style_register_type ( GTypeModule * module )
{
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 ) ;
}