summaryrefslogtreecommitdiff
path: root/libnautilus/nautilus-scroll-positionable.h
blob: ac0267de135b2a17d19df769499c3d597c9bd806 (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */

/* nautilus-scroll-positionable.h - public interface for objects that implement
 *                                  scroll positioning
 *
 * Copyright (C) 2003 Red Hat, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Author: Alexander Larsson <alexl@redhat.com>
 */

#ifndef NAUTILUS_SCROLL_POSITIONABLE_H
#define NAUTILUS_SCROLL_POSITIONABLE_H

#include <libnautilus/nautilus-view-component.h>
#include <bonobo/bonobo-object.h>

G_BEGIN_DECLS

#define NAUTILUS_TYPE_SCROLL_POSITIONABLE        (nautilus_scroll_positionable_get_type ())
#define NAUTILUS_SCROLL_POSITIONABLE(o)          (G_TYPE_CHECK_INSTANCE_CAST ((o), NAUTILUS_TYPE_SCROLL_POSITIONABLE, NautilusScrollPositionable))
#define NAUTILUS_SCROLL_POSITIONABLE_CLASS(k)    (G_TYPE_CHECK_CLASS_CAST((k), NAUTILUS_TYPE_SCROLL_POSITIONABLE, NautilusScrollPositionableClass))
#define BONOBO_IS_POSITIONABLE(o)                (G_TYPE_CHECK_INSTANCE_TYPE ((o), NAUTILUS_TYPE_SCROLL_POSITIONABLE))
#define BONOBO_IS_POSITIONABLE_CLASS(k)          (G_TYPE_CHECK_CLASS_TYPE ((k), NAUTILUS_TYPE_SCROLL_POSITIONABLE))
#define NAUTILUS_SCROLL_POSITIONABLE_GET_CLASS(o)(G_TYPE_INSTANCE_GET_CLASS ((o), NAUTILUS_TYPE_SCROLL_POSITIONABLE, NautilusScrollPositionableClass))

typedef struct _NautilusScrollPositionablePrivate	NautilusScrollPositionablePrivate;

typedef struct {
        BonoboObject		object;
} NautilusScrollPositionable;

typedef struct {
	BonoboObjectClass	parent;
	POA_Nautilus_ScrollPositionable__epv epv;

	char * (*get_first_visible_file)  (NautilusScrollPositionable *positionable);
	void   (*scroll_to_file)	  (NautilusScrollPositionable *positionable,
					   const char                 *uri);

	gpointer dummy[4];
} NautilusScrollPositionableClass;

GType		 nautilus_scroll_positionable_get_type                       (void) G_GNUC_CONST;

NautilusScrollPositionable	*nautilus_scroll_positionable_new	(void);

#endif /* NAUTILUS_SCROLL_POSITIONABLE_H */