]> www.fi.muni.cz Git - evince.git/blob - cut-n-paste/evmountoperation/ev-mount-operation.h
Add GtkMountOperation (renamed to avoid conflicts) to be able to open
[evince.git] / cut-n-paste / evmountoperation / ev-mount-operation.h
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) Christian Kellner <gicmo@gnome.org>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
25  */
26
27 #ifndef __EV_MOUNT_OPERATION_H__
28 #define __EV_MOUNT_OPERATION_H__
29
30 #include <glib.h>
31 #include <gio/gio.h>
32 #include <gdk/gdkscreen.h>
33 #include <gtk/gtkwindow.h>
34
35 G_BEGIN_DECLS
36
37 #define EV_TYPE_MOUNT_OPERATION         (ev_mount_operation_get_type ())
38 #define EV_MOUNT_OPERATION(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_MOUNT_OPERATION, EvMountOperation))
39 #define EV_MOUNT_OPERATION_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_MOUNT_OPERATION, EvMountOperationClass))
40 #define EV_IS_MOUNT_OPERATION(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_MOUNT_OPERATION))
41 #define EV_IS_MOUNT_OPERATION_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_MOUNT_OPERATION))
42 #define EV_MOUNT_OPERATION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EV_TYPE_MOUNT_OPERATION, EvMountOperationClass))
43
44 typedef struct EvMountOperation         EvMountOperation;
45 typedef struct EvMountOperationClass    EvMountOperationClass;
46 typedef struct EvMountOperationPrivate  EvMountOperationPrivate;
47
48 struct EvMountOperation
49 {
50   GMountOperation parent_instance;
51
52   EvMountOperationPrivate *priv;
53 };
54
55 struct EvMountOperationClass
56 {
57   GMountOperationClass parent_class;
58
59   /* Padding for future expansion */
60   void (*_gtk_reserved1) (void);
61   void (*_gtk_reserved2) (void);
62   void (*_gtk_reserved3) (void);
63   void (*_gtk_reserved4) (void);
64 };
65
66
67 GType            ev_mount_operation_get_type   (void);
68 GMountOperation *ev_mount_operation_new        (GtkWindow         *parent);
69 gboolean         ev_mount_operation_is_showing (EvMountOperation *op);
70 void             ev_mount_operation_set_parent (EvMountOperation *op,
71                                                 GtkWindow         *parent);
72 GtkWindow *      ev_mount_operation_get_parent (EvMountOperation *op);
73 void             ev_mount_operation_set_screen (EvMountOperation *op,
74                                                 GdkScreen         *screen);
75 GdkScreen       *ev_mount_operation_get_screen (EvMountOperation *op);
76
77 G_END_DECLS
78
79 #endif /* __EV_MOUNT_OPERATION_H__ */
80