Updated Spanish translation
[anjuta-git-plugin.git] / plugins / debug-manager / chunk_view.h
blobdf40d9687ff98b7f657b3c21681ee2a2c2b9383b
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3 chunk_view.h
4 Copyright (C) 2006 Sebastien Granjoux
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef _CHUNK_VIEW_H
22 #define _CHUNK_VIEW_H
24 #include <gtk/gtk.h>
26 #define DMA_CHUNK_VIEW_TYPE (dma_chunk_view_get_type ())
27 #define DMA_CHUNK_VIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), DMA_CHUNK_VIEW_TYPE, DmaChunkView))
28 #define DMA_CHUNK_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), DMA_CHUNK_VIEW_TYPE, DmaChunkViewClass))
29 #define IS_DMA_CHUNK_VIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), DMA_CHUNK_VIEW_TYPE))
30 #define IS_DMA_CHUNK_VIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), DMA_CHUNK_VIEW_TYPE))
31 #define GET_DMA_CHUNK_VIEW_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), DMA_CHUNK_VIEW_TYPE, DmaChunkViewClass))
33 typedef struct _DmaChunkView DmaChunkView;
34 typedef struct _DmaChunkViewClass DmaChunkViewClass;
36 GType dma_chunk_view_get_type (void);
38 GtkWidget *dma_chunk_view_new (void);
39 void dma_chunk_view_free (DmaChunkView *this);
41 void dma_chunk_view_set_scroll_adjustment (DmaChunkView *this, GtkAdjustment* hadjustment);
43 #endif /* _CHUNK_VIEW_H */