2011-06-11 01:57:57 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 2011 Benjamin Otte <otte@gnome.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2011-06-11 01:57:57 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_ROUNDED_BOX_PRIVATE_H__
|
|
|
|
#define __GTK_ROUNDED_BOX_PRIVATE_H__
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
#include <gtk/gtkenums.h>
|
2014-06-16 02:28:06 +00:00
|
|
|
#include <gtk/gtktypes.h>
|
2011-06-11 01:57:57 +00:00
|
|
|
|
|
|
|
#include "gtkcsstypesprivate.h"
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _GtkRoundedBox GtkRoundedBox;
|
2012-01-15 05:26:08 +00:00
|
|
|
typedef struct _GtkRoundedBoxCorner GtkRoundedBoxCorner;
|
|
|
|
|
|
|
|
struct _GtkRoundedBoxCorner {
|
|
|
|
double horizontal;
|
|
|
|
double vertical;
|
|
|
|
};
|
2011-06-11 01:57:57 +00:00
|
|
|
|
|
|
|
struct _GtkRoundedBox {
|
|
|
|
/*< private >*/
|
2012-01-02 01:39:20 +00:00
|
|
|
cairo_rectangle_t box;
|
2012-01-15 05:26:08 +00:00
|
|
|
GtkRoundedBoxCorner corner[4];
|
2011-06-11 01:57:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void _gtk_rounded_box_init_rect (GtkRoundedBox *box,
|
|
|
|
double x,
|
|
|
|
double y,
|
|
|
|
double width,
|
|
|
|
double height);
|
|
|
|
|
2015-01-17 04:16:01 +00:00
|
|
|
void _gtk_rounded_box_apply_border_radius_for_style (GtkRoundedBox *box,
|
|
|
|
GtkCssStyle *style,
|
2011-06-11 01:57:57 +00:00
|
|
|
GtkJunctionSides junction);
|
2012-02-08 21:27:39 +00:00
|
|
|
|
2015-01-17 04:16:01 +00:00
|
|
|
void _gtk_rounded_box_apply_outline_radius_for_style (GtkRoundedBox *box,
|
|
|
|
GtkCssStyle *style,
|
|
|
|
GtkJunctionSides junction);
|
2014-05-01 16:12:35 +00:00
|
|
|
|
2012-10-02 17:27:25 +00:00
|
|
|
void _gtk_rounded_box_grow (GtkRoundedBox *box,
|
|
|
|
double top,
|
|
|
|
double right,
|
|
|
|
double bottom,
|
|
|
|
double left);
|
2011-06-11 01:57:57 +00:00
|
|
|
void _gtk_rounded_box_shrink (GtkRoundedBox *box,
|
|
|
|
double top,
|
|
|
|
double right,
|
|
|
|
double bottom,
|
|
|
|
double left);
|
|
|
|
void _gtk_rounded_box_move (GtkRoundedBox *box,
|
|
|
|
double dx,
|
|
|
|
double dy);
|
|
|
|
|
2012-01-08 00:17:48 +00:00
|
|
|
double _gtk_rounded_box_guess_length (const GtkRoundedBox *box,
|
|
|
|
GtkCssSide side);
|
|
|
|
|
2011-06-11 01:57:57 +00:00
|
|
|
void _gtk_rounded_box_path (const GtkRoundedBox *box,
|
|
|
|
cairo_t *cr);
|
2012-01-08 00:17:48 +00:00
|
|
|
void _gtk_rounded_box_path_side (const GtkRoundedBox *box,
|
|
|
|
cairo_t *cr,
|
|
|
|
GtkCssSide side);
|
2011-06-13 03:04:44 +00:00
|
|
|
void _gtk_rounded_box_path_top (const GtkRoundedBox *outer,
|
|
|
|
const GtkRoundedBox *inner,
|
|
|
|
cairo_t *cr);
|
|
|
|
void _gtk_rounded_box_path_right (const GtkRoundedBox *outer,
|
|
|
|
const GtkRoundedBox *inner,
|
|
|
|
cairo_t *cr);
|
|
|
|
void _gtk_rounded_box_path_bottom (const GtkRoundedBox *outer,
|
|
|
|
const GtkRoundedBox *inner,
|
|
|
|
cairo_t *cr);
|
|
|
|
void _gtk_rounded_box_path_left (const GtkRoundedBox *outer,
|
|
|
|
const GtkRoundedBox *inner,
|
|
|
|
cairo_t *cr);
|
2011-06-11 01:57:57 +00:00
|
|
|
void _gtk_rounded_box_clip_path (const GtkRoundedBox *box,
|
|
|
|
cairo_t *cr);
|
2014-12-02 13:26:36 +00:00
|
|
|
gboolean _gtk_rounded_box_intersects_rectangle (const GtkRoundedBox *box,
|
|
|
|
gdouble x1,
|
|
|
|
gdouble y1,
|
|
|
|
gdouble x2,
|
|
|
|
gdouble y2);
|
|
|
|
gboolean _gtk_rounded_box_contains_rectangle (const GtkRoundedBox *box,
|
|
|
|
gdouble x1,
|
|
|
|
gdouble y1,
|
|
|
|
gdouble x2,
|
|
|
|
gdouble y2);
|
2011-06-11 01:57:57 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __GTK_ROUNDED_BOX_PRIVATE_H__ */
|