mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
111 lines
3.4 KiB
111 lines
3.4 KiB
/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
|
|
/*
|
|
* gog-grid.c
|
|
*
|
|
* Copyright (C) 2003-2004 Jody Goldberg (jody@gnome.org)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of version 2 of the GNU General Public
|
|
* License as published by the Free Software Foundation.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA
|
|
*/
|
|
|
|
#include <goffice/goffice-config.h>
|
|
#include <goffice/graph/gog-grid.h>
|
|
#include <goffice/graph/gog-styled-object.h>
|
|
#include <goffice/graph/gog-style.h>
|
|
#include <goffice/graph/gog-view.h>
|
|
#include <goffice/graph/gog-theme.h>
|
|
#include <goffice/graph/gog-renderer.h>
|
|
|
|
// #include <src/gui-util.h>
|
|
#include <gui-util.h>
|
|
#include <glib/gi18n.h>
|
|
|
|
#include <gsf/gsf-impl-utils.h>
|
|
|
|
struct _GogGrid {
|
|
GogStyledObject base;
|
|
};
|
|
typedef GogStyledObjectClass GogGridClass;
|
|
|
|
|
|
static GType gog_grid_view_get_type (void);
|
|
static GogViewClass *gview_parent_klass;
|
|
|
|
static void
|
|
gog_grid_init_style (GogStyledObject *gso, GogStyle *style)
|
|
{
|
|
style->interesting_fields = GOG_STYLE_FILL | GOG_STYLE_OUTLINE;
|
|
gog_theme_fillin_style (gog_object_get_theme (GOG_OBJECT (gso)),
|
|
style, GOG_OBJECT (gso), 0, FALSE);
|
|
}
|
|
|
|
static void
|
|
gog_grid_class_init (GogGridClass *klass)
|
|
{
|
|
GogObjectClass *gog_klass = (GogObjectClass *) klass;
|
|
GogStyledObjectClass *style_klass = (GogStyledObjectClass *) klass;
|
|
|
|
gog_klass->view_type = gog_grid_view_get_type ();
|
|
style_klass->init_style = gog_grid_init_style;
|
|
}
|
|
|
|
GSF_CLASS (GogGrid, gog_grid,
|
|
gog_grid_class_init, NULL,
|
|
GOG_STYLED_OBJECT_TYPE)
|
|
|
|
/************************************************************************/
|
|
|
|
typedef GogView GogGridView;
|
|
typedef GogViewClass GogGridViewClass;
|
|
|
|
#define GOG_GRID_VIEW_TYPE (gog_grid_view_get_type ())
|
|
#define GOG_GRID_VIEW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GOG_GRID_VIEW_TYPE, GogGridView))
|
|
#define IS_GOG_GRID_VIEW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GOG_GRID_VIEW_TYPE))
|
|
|
|
static void
|
|
gog_grid_view_render (GogView *view, GogViewAllocation const *bbox)
|
|
{
|
|
GogGrid *grid = GOG_GRID (view->model);
|
|
ArtVpath path[6];
|
|
|
|
path[0].code = ART_MOVETO;
|
|
path[1].code = ART_LINETO;
|
|
path[2].code = ART_LINETO;
|
|
path[3].code = ART_LINETO;
|
|
path[4].code = ART_LINETO;
|
|
path[5].code = ART_END;
|
|
path[0].x = path[1].x = path[4].x = view->allocation.x;
|
|
path[2].x = path[3].x = path[0].x + view->allocation.w;
|
|
path[0].y = path[3].y = path[4].y = view->allocation.y;
|
|
path[1].y = path[2].y = path[0].y + view->allocation.h;
|
|
|
|
gog_renderer_push_style (view->renderer, grid->base.style);
|
|
gog_renderer_draw_sharp_polygon (view->renderer, path, FALSE, NULL);
|
|
gog_renderer_pop_style (view->renderer);
|
|
(gview_parent_klass->render) (view, bbox);
|
|
}
|
|
|
|
static void
|
|
gog_grid_view_class_init (GogGridViewClass *gview_klass)
|
|
{
|
|
GogViewClass *view_klass = (GogViewClass *) gview_klass;
|
|
|
|
gview_parent_klass = g_type_class_peek_parent (gview_klass);
|
|
view_klass->render = gog_grid_view_render;
|
|
}
|
|
|
|
static GSF_CLASS (GogGridView, gog_grid_view,
|
|
gog_grid_view_class_init, NULL,
|
|
GOG_VIEW_TYPE)
|