summaryrefslogtreecommitdiffstats
path: root/src/format-window.h
blob: f3c993e47eaa971a889d09550a39ed065b80b7bb (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
78
79
80
81
82
83
84
85
86
/*
 *  format-window.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_H
#define FORMAT_WINDOW_H

#include <gtk/gtk.h>
#include <gdu/gdu.h>
#include <polkit-gnome/polkit-gnome.h>


G_BEGIN_DECLS

typedef struct {
  GtkDialog *dialog;
  GtkWidget *close_button;
  GtkWidget *icon_image;
  GtkWidget *name_label;
  GtkWidget *details1_label;
  GtkWidget *details2_label;
  GtkWidget *details3_label;
  GtkWidget *details4_label;
  GtkWidget *mount_warning;
  GtkWidget *readonly_warning;
  GtkWidget *no_media_warning;
  GtkWidget *label_entry;
  GtkWidget *part_type_combo_box;
  GtkWidget *part_flag_boot_check_button;
  GtkWidget *part_flag_required_check_button;
  GtkWidget *encrypted_check_button;
  GtkWidget *take_ownership_of_fs_check_button;
  GtkWidget *progress_bar;
  GtkWidget *progress_bar_box;
  GtkWidget *controls_box;
  GtkWidget *partition_label;
  GtkWidget *volume_selector;

  GduPresentable *presentable;
  GduPool *pool;
  gboolean standalone_mode;
  gboolean selector_mode;

  gboolean job_running;
  gboolean job_cancelled;
} FormatDialogPrivate;



/*  pass presentable=NULL and standalone_mode=TRUE to display volume selector   */
/*  we do ref presentable ourselves                                             */
void  nautilus_gdu_spawn_dialog  (GduPresentable  *presentable,
                                  gboolean         standalone_mode);


/*  update sensitivity of main controls, action buttons etc.  */
void  update_ui_controls         (FormatDialogPrivate *priv);


/*  we do ref presentable ourselves  */
void  select_new_presentable     (FormatDialogPrivate *priv,
                                  GduPresentable *presentable);

G_END_DECLS

#endif