blob: 147b17060a0dde145c0c2fb2257f5a40a2607da8 [file] [log] [blame]
/*
parted - a frontend to libparted
Copyright (C) 1999, 2000, 2001, 2007 Free Software Foundation, 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 St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef UI_H_INCLUDED
#define UI_H_INCLUDED
#include "strlist.h"
extern char* prog_name;
extern int init_ui ();
extern int non_interactive_mode (PedDevice** dev, Command* cmd_list[],
int argc, char* argv[]);
extern int interactive_mode (PedDevice** dev, Command* cmd_list[]);
extern void done_ui ();
extern int screen_width ();
extern void wipe_line ();
extern void command_line_push_word (const char* word);
extern char* command_line_pop_word ();
extern char* command_line_peek_word ();
extern void command_line_flush ();
extern int command_line_get_word_count ();
extern void command_line_prompt_words (const char* prompt, const char* def,
const StrList* possibilities,
int multi_word);
extern char* command_line_get_word (const char* prompt, const char* def,
const StrList* possibilities,
int multi_word);
extern int command_line_get_integer (const char* prompt, int* value);
extern int command_line_get_sector (const char* prompt, PedDevice* dev,
PedSector* value, PedGeometry** range);
extern int command_line_get_state (const char* prompt, int* value);
extern int command_line_get_device (const char* prompt, PedDevice** value);
extern int command_line_get_disk (const char* prompt, PedDisk** value);
extern int command_line_get_partition (const char* prompt, PedDisk* disk,
PedPartition** value);
extern int command_line_get_fs_type (const char* prompt,
const PedFileSystemType*(* value));
extern int command_line_get_disk_type (const char* prompt,
const PedDiskType*(* value));
extern int command_line_get_part_flag (const char* prompt,
const PedPartition* part,
PedPartitionFlag* flag);
extern int command_line_get_part_type (const char* prompt, const PedDisk* disk,
PedPartitionType* type);
extern PedExceptionOption command_line_get_ex_opt (const char* prompt,
PedExceptionOption options);
extern int command_line_get_unit (const char* prompt, PedUnit* unit);
extern int command_line_is_integer ();
extern int command_line_is_sector ();
extern void help_msg ();
extern void print_using_dev (PedDevice* dev);
/* in parted.c */
extern int opt_script_mode;
extern int pretend_input_tty;
extern void print_options_help ();
extern void print_commands_help ();
#endif /* UI_H_INCLUDED */