-
Notifications
You must be signed in to change notification settings - Fork 309
/
Copy pathnemo-application.h
108 lines (87 loc) · 4.75 KB
/
nemo-application.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/*
* nemo-application: main Nemo application class.
*
* Copyright (C) 2000 Red Hat, Inc.
* Copyright (C) 2010 Cosimo Cecchi <[email protected]>
*
* 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,
* Boston, MA 02110-1335, USA.
*/
#ifndef __NEMO_APPLICATION_H__
#define __NEMO_APPLICATION_H__
#include <gdk/gdk.h>
#include <gio/gio.h>
#include <gtk/gtk.h>
#include <libnemo-private/nemo-undo-manager.h>
#include "nemo-window.h"
#define NEMO_TYPE_APPLICATION nemo_application_get_type()
#define NEMO_APPLICATION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NEMO_TYPE_APPLICATION, NemoApplication))
#define NEMO_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NEMO_TYPE_APPLICATION, NemoApplicationClass))
#define NEMO_IS_APPLICATION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NEMO_TYPE_APPLICATION))
#define NEMO_IS_APPLICATION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NEMO_TYPE_APPLICATION))
#define NEMO_APPLICATION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NEMO_TYPE_APPLICATION, NemoApplicationClass))
typedef struct _NemoApplicationPriv NemoApplicationPriv;
typedef struct NemoApplicationClass NemoApplicationClass;
typedef struct {
GtkApplication parent;
NemoUndoManager *undo_manager;
NemoApplicationPriv *priv;
} NemoApplication;
struct NemoApplicationClass {
GtkApplicationClass parent_class;
void (* continue_startup) (NemoApplication *application);
void (* continue_quit) (NemoApplication *application);
void (* open_location) (NemoApplication *application,
GFile *location,
GFile *selection,
const char *startup_id,
const gboolean open_in_tabs);
NemoWindow * (* create_window) (NemoApplication *application,
GdkScreen *screen);
void (* notify_unmount_done) (NemoApplication *application,
const gchar *message);
void (* notify_unmount_show) (NemoApplication *application,
const gchar *message);
void (* close_all_windows) (NemoApplication *application);
};
GType nemo_application_get_type (void);
NemoApplication *nemo_application_initialize_singleton (GType object_type,
const gchar *first_property_name,
...);
NemoApplication *nemo_application_get_singleton (void);
void nemo_application_quit (NemoApplication *self);
NemoWindow * nemo_application_create_window (NemoApplication *application,
GdkScreen *screen);
void nemo_application_open_location (NemoApplication *application,
GFile *location,
GFile *selection,
const char *startup_id,
const gboolean open_in_tabs);
void nemo_application_close_all_windows (NemoApplication *self);
void nemo_application_notify_unmount_show (NemoApplication *application,
const gchar *message);
void nemo_application_notify_unmount_done (NemoApplication *application,
const gchar *message);
gboolean nemo_application_check_required_directory (NemoApplication *application,
gchar *path);
void nemo_application_check_thumbnail_cache (NemoApplication *application);
gboolean nemo_application_get_cache_bad (NemoApplication *application);
void nemo_application_clear_cache_flag (NemoApplication *application);
void nemo_application_set_cache_flag (NemoApplication *application);
void nemo_application_ignore_cache_problem (NemoApplication *application);
gboolean nemo_application_get_cache_problem_ignored (NemoApplication *application);
gboolean nemo_application_get_show_desktop (NemoApplication *application);
#endif /* __NEMO_APPLICATION_H__ */