/* * mooscript-zenity.h * * Copyright (C) 2004-2006 by Yevgen Muntyan * * 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. * * See COPYING file that comes with this distribution. */ #ifndef __MOO_SCRIPT_ZENITY_H__ #define __MOO_SCRIPT_ZENITY_H__ #include G_BEGIN_DECLS /* Entry(entry_text = none, dialog_text = none, hide_text = false) */ MSFunc *ms_zenity_entry (void); /* HistoryEntry(entry_text = none, user_id = none, dialog_text = none) */ MSFunc *ms_zenity_history_entry (void); /* Text(text = none, dialog_text = none) */ MSFunc *ms_zenity_text (void); MSFunc *ms_zenity_info (void); /* Info(text = none) */ MSFunc *ms_zenity_error (void); /* Error(text = none) */ MSFunc *ms_zenity_question (void); /* Question(text = none) */ MSFunc *ms_zenity_warning (void); /* Warning(text = none) */ MSFunc *ms_zenity_choose_file (void); /* ChooseFile(title = none, start = none) */ MSFunc *ms_zenity_choose_files (void); /* ChooseFile(title = none, start = none) */ MSFunc *ms_zenity_choose_dir (void); /* ChooseDir(title = none, start = none) */ MSFunc *ms_zenity_choose_file_save (void); /* ChooseFileSave(title = none, start = none) */ G_END_DECLS #endif /* __MOO_SCRIPT_ZENITY_H__ */