Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gtk/engine/sugar-info.h
blob: ea6a6b46db045fa5b7ec5858d33232fa0138c016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/*
 * Copyright (C) 2007, Benjamin Berg
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#ifndef __SUGAR_INFO_H
#define __SUGAR_INFO_H

#include <gtk/gtkwidget.h>
#include <cairo.h>
#include "sugar-style.h"
#include "sugar-rc-style.h"

typedef enum
{
    CORNER_NONE        = 0,
    CORNER_TOPLEFT     = 1,
    CORNER_TOPRIGHT    = 2,
    CORNER_BOTTOMLEFT  = 4,
    CORNER_BOTTOMRIGHT = 8,
    CORNER_ALL         = 15
} SugarCorners;

typedef enum {
    EDGE_NONE      = 0,
    EDGE_TOP       = 1 << 0,
    EDGE_BOTTOM    = 1 << 1,
    EDGE_LEFT      = 1 << 2,
    EDGE_RIGHT     = 1 << 3,
    EDGE_ALL       = 0xf
} SugarEdges;

typedef struct {
    gdouble x;
    gdouble y;
    gdouble width;
    gdouble height;
} SugarRectangle;

typedef struct {
    GtkPositionType side;
    gdouble start;
    gdouble size;
} SugarGapInfo;

typedef struct {
    GtkWidget *widget;
    GtkStyle *style;
    SugarRcStyle *rc_style;
    GtkStateType  state;
    GtkShadowType shadow;
    gboolean  ltr;
    SugarRectangle pos;
    SugarCorners corners;
    const gchar *detail;
    gdouble max_radius;
    SugarEdges  cont_edges;
} SugarInfo;


typedef struct {
    SugarInfo info;
    GtkOrientation orientation;
    gboolean focused;
    gboolean trough_fill;
} SugarRangeInfo;

typedef struct {
    SugarInfo info;
    GtkArrowType dir;
    gboolean filled_triangle;
} SugarArrowInfo;

G_GNUC_INTERNAL void sugar_info_get_style_property (SugarInfo *info, const gchar *property, gpointer dest);
G_GNUC_INTERNAL void sugar_fill_arrow_info (SugarArrowInfo *arrow_info, GtkArrowType arrow_type);
G_GNUC_INTERNAL void sugar_fill_generic_info (SugarInfo *info, GtkStyle *style, GtkStateType state_type, GtkShadowType shadow_type, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height);
G_GNUC_INTERNAL void sugar_fill_range_info (SugarRangeInfo *range_info, gboolean trough);
G_GNUC_INTERNAL void sugar_remove_corners (SugarCorners *corners, SugarEdges edge);
G_GNUC_INTERNAL void sugar_clip_gap (cairo_t *cr, SugarInfo *info, SugarGapInfo *gap, gdouble padding, gdouble size);

#endif /* __SUGAR_INFO_H */