2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1998-11-24 16:15:46 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
1998-11-24 04:45:29 +00:00
|
|
|
*
|
1998-11-24 16:15:46 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-11-24 16:15:46 +00:00
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1998-11-24 16:15:46 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-11-24 16:15:46 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* GtkLayout: Widget for scrolling of arbitrary-sized areas.
|
|
|
|
*
|
|
|
|
* Copyright Owen Taylor, 1998
|
1998-11-24 04:45:29 +00:00
|
|
|
*/
|
|
|
|
|
1999-02-24 07:37:18 +00:00
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-05-28 15:35:43 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GTK_H_INSIDE__) && !defined (GTK_COMPILATION)
|
2008-05-28 15:07:04 +00:00
|
|
|
#error "Only <gtk/gtk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
#ifndef __GTK_LAYOUT_H__
|
|
|
|
#define __GTK_LAYOUT_H__
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2008-10-30 15:58:06 +00:00
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
#include <gtk/gtkcontainer.h>
|
|
|
|
#include <gtk/gtkadjustment.h>
|
|
|
|
|
2008-10-30 15:58:06 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_BEGIN_DECLS
|
2000-02-13 08:16:48 +00:00
|
|
|
|
1998-11-28 01:56:09 +00:00
|
|
|
#define GTK_TYPE_LAYOUT (gtk_layout_get_type ())
|
2002-10-13 20:44:18 +00:00
|
|
|
#define GTK_LAYOUT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_LAYOUT, GtkLayout))
|
|
|
|
#define GTK_LAYOUT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_LAYOUT, GtkLayoutClass))
|
|
|
|
#define GTK_IS_LAYOUT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_LAYOUT))
|
|
|
|
#define GTK_IS_LAYOUT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_LAYOUT))
|
|
|
|
#define GTK_LAYOUT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_LAYOUT, GtkLayoutClass))
|
2000-02-13 08:16:48 +00:00
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2010-08-26 17:15:37 +00:00
|
|
|
typedef struct _GtkLayout GtkLayout;
|
|
|
|
typedef struct _GtkLayoutPrivate GtkLayoutPrivate;
|
|
|
|
typedef struct _GtkLayoutClass GtkLayoutClass;
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2002-02-23 20:22:05 +00:00
|
|
|
struct _GtkLayout
|
|
|
|
{
|
2010-06-28 02:22:50 +00:00
|
|
|
GtkContainer container;
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2010-10-26 04:35:10 +00:00
|
|
|
/*< private >*/
|
2010-08-26 17:15:37 +00:00
|
|
|
GtkLayoutPrivate *priv;
|
1998-11-24 04:45:29 +00:00
|
|
|
};
|
|
|
|
|
2002-02-23 20:22:05 +00:00
|
|
|
struct _GtkLayoutClass
|
|
|
|
{
|
1998-11-24 04:45:29 +00:00
|
|
|
GtkContainerClass parent_class;
|
|
|
|
|
2002-02-23 20:22:05 +00:00
|
|
|
/* Padding for future expansion */
|
|
|
|
void (*_gtk_reserved1) (void);
|
|
|
|
void (*_gtk_reserved2) (void);
|
|
|
|
void (*_gtk_reserved3) (void);
|
|
|
|
void (*_gtk_reserved4) (void);
|
1998-11-24 04:45:29 +00:00
|
|
|
};
|
|
|
|
|
2002-10-13 20:44:18 +00:00
|
|
|
GType gtk_layout_get_type (void) G_GNUC_CONST;
|
1998-11-24 04:45:29 +00:00
|
|
|
GtkWidget* gtk_layout_new (GtkAdjustment *hadjustment,
|
|
|
|
GtkAdjustment *vadjustment);
|
2008-06-20 11:06:46 +00:00
|
|
|
GdkWindow* gtk_layout_get_bin_window (GtkLayout *layout);
|
2008-05-28 15:35:43 +00:00
|
|
|
void gtk_layout_put (GtkLayout *layout,
|
|
|
|
GtkWidget *child_widget,
|
|
|
|
gint x,
|
1998-11-24 04:45:29 +00:00
|
|
|
gint y);
|
2008-05-28 15:35:43 +00:00
|
|
|
|
|
|
|
void gtk_layout_move (GtkLayout *layout,
|
|
|
|
GtkWidget *child_widget,
|
|
|
|
gint x,
|
1998-11-24 04:45:29 +00:00
|
|
|
gint y);
|
2008-05-28 15:35:43 +00:00
|
|
|
|
|
|
|
void gtk_layout_set_size (GtkLayout *layout,
|
1998-11-24 04:45:29 +00:00
|
|
|
guint width,
|
|
|
|
guint height);
|
2001-06-24 15:34:48 +00:00
|
|
|
void gtk_layout_get_size (GtkLayout *layout,
|
|
|
|
guint *width,
|
|
|
|
guint *height);
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2010-10-29 01:28:24 +00:00
|
|
|
#if !defined (GTK_DISABLE_DEPRECATED) || defined (GTK_COMPILATION)
|
2010-10-18 04:21:39 +00:00
|
|
|
|
1998-11-24 04:45:29 +00:00
|
|
|
GtkAdjustment* gtk_layout_get_hadjustment (GtkLayout *layout);
|
|
|
|
GtkAdjustment* gtk_layout_get_vadjustment (GtkLayout *layout);
|
|
|
|
void gtk_layout_set_hadjustment (GtkLayout *layout,
|
|
|
|
GtkAdjustment *adjustment);
|
|
|
|
void gtk_layout_set_vadjustment (GtkLayout *layout,
|
|
|
|
GtkAdjustment *adjustment);
|
|
|
|
|
2010-10-18 04:21:39 +00:00
|
|
|
#endif
|
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
G_END_DECLS
|
1998-11-24 04:45:29 +00:00
|
|
|
|
2005-03-20 07:01:23 +00:00
|
|
|
#endif /* __GTK_LAYOUT_H__ */
|