blob: abcb62e9f2796c7f606e218d7b13add41c7a7b16 (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
/*
* format-window-operation.h
*
* Copyright (C) 2008-2009 Red Hat, Inc.
*
* This library 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 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 General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Author: Tomas Bzatek <tbzatek@redhat.com>
*
*/
#ifndef FORMAT_WINDOW_OPERATION_H
#define FORMAT_WINDOW_OPERATION_H
#include <gtk/gtk.h>
#include <gdu/gdu.h>
#include "format-window.h"
G_BEGIN_DECLS
typedef struct {
FormatDialogPrivate *priv;
char *encrypt_passphrase;
gboolean save_in_keyring;
gboolean save_in_keyring_session;
char *fslabel;
const char *fstype;
GduDevice *device;
GduPresentable *presentable;
gboolean take_ownership;
const char *recommended_part_type;
const char *scheme;
guint job_progress_pulse_timer_id;
PolKitAction *pk_unmount_action;
PolKitGnomeAction *unmount_action;
PolKitAction *pk_format_action;
PolKitGnomeAction *format_action;
PolKitAction *pk_part_modify_action;
PolKitGnomeAction *part_modify_action;
PolKitAction *pk_part_table_new_action;
PolKitGnomeAction *part_table_new_action;
PolKitAction *pk_part_new_action;
PolKitGnomeAction *part_new_action;
PolKitAction *pk_luks_lock_action;
PolKitGnomeAction *luks_lock_action;
} FormatProcessData;
/* update UI controls when operation is in progress */
void update_ui_progress (FormatDialogPrivate *priv,
FormatProcessData *data,
gboolean working);
/* start the format operation */
void do_format (FormatDialogPrivate *priv);
G_END_DECLS
#endif
|