/ gwnotebookmanagment.h / Content
/*  GWhere.
 *  Copyright (C) 2000  Sébastien LECACHEUR
 *
 *  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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */





#ifndef GW_GUI_GW_NOTEBOOK_MANAGMENT_H
#define GW_GUI_GW_NOTEBOOK_MANAGMENT_H



GtkWidget * gw_notebook_managment_create ( GtkWindow *w);



GtkWidget * gw_notebook_managment_create_and_add ( GtkWindow *w, GtkNotebook *parent);



gint gw_notebook_managment_set_device_dir ( GtkWindow *w, gchar *device_dir);



gint gw_notebook_managment_set_device_name ( GtkWindow *w, gchar *device_name);



gint gw_notebook_managment_set_device_number ( GtkWindow *w, gchar *device_number);



gint gw_notebook_managment_set_device_category ( GtkWindow *w, gchar *device_category);



gint gw_notebook_managment_set_option_automount ( GtkWindow *w, gboolean b);



gint gw_notebook_managment_set_option_display_info ( GtkWindow *w, gboolean b);



gint gw_notebook_managment_set_option_eject ( GtkWindow *w, gboolean b);



gint gw_notebook_managment_set_option_category_recursive ( GtkWindow *w, gboolean b);



gint gw_notebook_managment_set_option_explore_tree_structure ( GtkWindow *w, gboolean b);



gint gw_notebook_managment_set_option_explore_archive ( GtkWindow *w, gboolean b);



gint gw_notebook_managment_set_option_make_description ( GtkWindow *w, gboolean b);



gint gw_notebook_managment_set_option_use_pattern ( GtkWindow *w, gboolean b);



gint gw_notebook_managment_set_option_use_disk_label ( GtkWindow *w, gboolean b);



gchar * gw_notebook_managment_get_device_dir ( GtkWindow *w);



gchar * gw_notebook_managment_get_device_name ( GtkWindow *w);



gchar * gw_notebook_managment_get_device_number ( GtkWindow *w);



gchar * gw_notebook_managment_get_device_category ( GtkWindow *w);



gboolean gw_notebook_managment_get_option_display_info ( GtkWindow *w);



gboolean gw_notebook_managment_get_option_automount ( GtkWindow *w);



gboolean gw_notebook_managment_get_option_eject ( GtkWindow *w);



gboolean gw_notebook_managment_get_option_category_recursive ( GtkWindow *w);



gboolean gw_notebook_managment_get_option_explore_tree_structure ( GtkWindow *w);



gboolean gw_notebook_managment_get_option_explore_archive ( GtkWindow *w);



gboolean gw_notebook_managment_get_option_make_description ( GtkWindow *w);



gboolean gw_notebook_managment_get_option_use_pattern ( GtkWindow *w);



gboolean gw_notebook_managment_get_option_use_disk_label ( GtkWindow *w);



GtkHBox * gw_notebook_managment_get_combo_box_categories ( GtkWindow *w);



GtkCombo * gw_notebook_managment_get_combo_box_device ( GtkWindow *w);



GtkLabel * gw_notebook_managment_get_label_device_info ( GtkWindow *w);



GtkLabel * gw_notebook_managment_get_label_device_type ( GtkWindow *w);



GtkLabel * gw_notebook_managment_get_label_device_mounted ( GtkWindow *w);



GtkLabel * gw_notebook_managment_get_label_device_volume ( GtkWindow *w);



GtkLabel * gw_notebook_managment_get_label_device_serial_number ( GtkWindow *w);



GtkLabel * gw_notebook_managment_get_label_device_capacity ( GtkWindow *w);



GtkLabel * gw_notebook_managment_get_label_device_free_space ( GtkWindow *w);


#endif