summaryrefslogtreecommitdiff
path: root/libnautilus-extensions/nautilus-canvas-note-item.h
blob: 1aab47b0493f0d4543908b7b3df945cf8f96d770 (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-

   nautilus-canvas-note-item.h: annotation canvas item for Nautilus
  
   Copyright (C) 2001 Eazel, Inc.
  
   This program is free software; you can redistribute it and/or
   modify it under the terms of the GNU General Public License as
   published by the Free Software Foundation; either version 2 of the
   License, or (at your option) any later version.
  
   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.
  
   based on gnome_canvas_rect_item by Federico Mena Quintero
   
   Author: Andy Hertzfeld <andy@eazel.com>
*/

#ifndef NAUTILUS_CANVAS_NOTE_ITEM_H
#define NAUTILUS_CANVAS_NOTE_ITEM_H

#include <libgnome/gnome-defs.h>
#include <libgnomeui/gnome-canvas.h>

#include <libart_lgpl/art_svp.h>

BEGIN_GNOME_DECLS

#define NAUTILUS_TYPE_CANVAS_NOTE_ITEM	(nautilus_canvas_note_item_get_type ())
#define NAUTILUS_CANVAS_NOTE_ITEM(obj)	(GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_CANVAS_NOTE_ITEM, NautilusCanvasNoteItem))
#define NAUTILUS_CANVAS_NOTE_ITEM_CLASS(klass)    (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_CANVAS_NOTE_ITEM, NautilusCanvasNoteItemClass))
#define NAUTILUS_IS_CANVAS_NOTE_ITEM(obj)         (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_CANVAS_NOTE_ITEM))
#define NAUTILUS_IS_CANVAS_NOTE_ITEM_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_CANVAS_NOTE_ITEM))


typedef struct _NautilusCanvasNoteItem      NautilusCanvasNoteItem;
typedef struct _NautilusCanvasNoteItemClass NautilusCanvasNoteItemClass;

struct _NautilusCanvasNoteItem {
	GnomeCanvasItem item;

	double x1, y1, x2, y2;		/* Corners of item */
	double width;			/* Outline width */

	guint fill_color;		/* Fill color, RGBA */
	guint outline_color;		/* Outline color, RGBA */

	gulong fill_pixel;		/* Fill color */
	gulong outline_pixel;		/* Outline color */

	GdkBitmap *fill_stipple;	/* Stipple for fill */
	GdkBitmap *outline_stipple;	/* Stipple for outline */

	GdkGC *fill_gc;			/* GC for filling */
	GdkGC *outline_gc;		/* GC for outline */

	/* text message */
	char *note_text;		/* text for annotation */
	
	/* Antialiased specific stuff follows */
	ArtSVP *fill_svp;		/* The SVP for the filled shape */
	ArtSVP *outline_svp;		/* The SVP for the outline shape */

	/* Configuration flags */
	unsigned int fill_set : 1;	/* Is fill color set? */
	unsigned int outline_set : 1;	/* Is outline color set? */
	unsigned int width_pixels : 1;	/* Is outline width specified in pixels or units? */
};

struct _NautilusCanvasNoteItemClass {
	GnomeCanvasItemClass parent_class;
};

/* Standard Gtk function */
GtkType nautilus_canvas_note_item_get_type (void);


END_GNOME_DECLS

#endif