-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathnemo-previewer.h
67 lines (55 loc) · 2.11 KB
/
nemo-previewer.h
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
/*
* nemo-previewer: nemo previewer DBus wrapper
*
* Copyright (C) 2011, Red Hat, Inc.
*
* Nemo 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.
*
* Nemo 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., 51 Franklin Street, Suite 500, MA 02110-1335, USA.
*
* Author: Cosimo Cecchi <[email protected]>
*
*/
#ifndef __NEMO_PREVIEWER_H__
#define __NEMO_PREVIEWER_H__
#include <glib-object.h>
G_BEGIN_DECLS
#define NEMO_TYPE_PREVIEWER nemo_previewer_get_type()
#define NEMO_PREVIEWER(obj) \
(G_TYPE_CHECK_INSTANCE_CAST ((obj), NEMO_TYPE_PREVIEWER, NemoPreviewer))
#define NEMO_PREVIEWER_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST ((klass), NEMO_TYPE_PREVIEWER, NemoPreviewerClass))
#define NEMO_IS_PREVIEWER(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE ((obj), NEMO_TYPE_PREVIEWER))
#define NEMO_IS_PREVIEWER_CLASS(klass) \
(G_TYPE_CHECK_CLASS_TYPE ((klass), NEMO_TYPE_PREVIEWER))
#define NEMO_PREVIEWER_GET_CLASS(obj) \
(G_TYPE_INSTANCE_GET_CLASS ((obj), NEMO_TYPE_PREVIEWER, NemoPreviewerClass))
typedef struct _NemoPreviewerPriv NemoPreviewerPriv;
typedef struct {
GObject parent;
/* private */
NemoPreviewerPriv *priv;
} NemoPreviewer;
typedef struct {
GObjectClass parent_class;
} NemoPreviewerClass;
GType nemo_previewer_get_type (void);
NemoPreviewer *nemo_previewer_get_singleton (void);
void nemo_previewer_call_show_file (NemoPreviewer *previewer,
const gchar *uri,
guint xid,
gboolean close_if_already_visible);
void nemo_previewer_call_close (NemoPreviewer *previewer);
G_END_DECLS
#endif /* __NEMO_PREVIEWER_H__ */