File: cinnamon-mount-operation.h

package info (click to toggle)
cinnamon 3.2.7-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 11,624 kB
  • sloc: ansic: 33,269; python: 18,048; xml: 1,504; makefile: 780; sh: 90; cpp: 54
file content (64 lines) | stat: -rw-r--r-- 2,596 bytes parent folder | download | duplicates (4)
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
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
/*
 * Copyright (C) 2011 Red Hat, Inc.
 *
 * This program 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.
 *
 * This program 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.
 *
 * Author: Cosimo Cecchi <cosimoc@redhat.com>
 *
 */

#ifndef __CINNAMON_MOUNT_OPERATION_H__
#define __CINNAMON_MOUNT_OPERATION_H__

#include <gio/gio.h>

G_BEGIN_DECLS

#define CINNAMON_TYPE_MOUNT_OPERATION         (cinnamon_mount_operation_get_type ())
#define CINNAMON_MOUNT_OPERATION(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), CINNAMON_TYPE_MOUNT_OPERATION, CinnamonMountOperation))
#define CINNAMON_MOUNT_OPERATION_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST((k), CINNAMON_TYPE_MOUNT_OPERATION, CinnamonMountOperationClass))
#define CINNAMON_IS_MOUNT_OPERATION(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), CINNAMON_TYPE_MOUNT_OPERATION))
#define CINNAMON_IS_MOUNT_OPERATION_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), CINNAMON_TYPE_MOUNT_OPERATION))
#define CINNAMON_MOUNT_OPERATION_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CINNAMON_TYPE_MOUNT_OPERATION, CinnamonMountOperationClass))

typedef struct _CinnamonMountOperation         CinnamonMountOperation;
typedef struct _CinnamonMountOperationClass    CinnamonMountOperationClass;
typedef struct _CinnamonMountOperationPrivate  CinnamonMountOperationPrivate;

struct _CinnamonMountOperation
{
  GMountOperation parent_instance;

  CinnamonMountOperationPrivate *priv;
};

struct _CinnamonMountOperationClass
{
  GMountOperationClass parent_class;
};


GType            cinnamon_mount_operation_get_type   (void);
GMountOperation *cinnamon_mount_operation_new        (void);

GArray * cinnamon_mount_operation_get_show_processes_pids (CinnamonMountOperation *self);
gchar ** cinnamon_mount_operation_get_show_processes_choices (CinnamonMountOperation *self);
gchar * cinnamon_mount_operation_get_show_processes_message (CinnamonMountOperation *self);

G_END_DECLS

#endif /* __CINNAMON_MOUNT_OPERATION_H__ */