medit/moo/mooscript/mooscript-zenity.h

43 lines
1.5 KiB
C
Raw Normal View History

2006-05-21 16:11:05 -07:00
/*
2006-02-26 01:31:29 -08:00
* mooscript-zenity.h
*
2007-06-24 10:56:20 -07:00
* Copyright (C) 2004-2007 by Yevgen Muntyan <muntyan@math.tamu.edu>
2006-02-26 01:31:29 -08:00
*
2007-06-24 10:56:20 -07:00
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
2006-02-26 01:31:29 -08:00
*
* See COPYING file that comes with this distribution.
*/
#ifndef MOO_SCRIPT_ZENITY_H
#define MOO_SCRIPT_ZENITY_H
2006-02-26 01:31:29 -08:00
#include <mooscript/mooscript-func.h>
2006-02-26 01:31:29 -08:00
G_BEGIN_DECLS
2006-03-03 17:28:28 -08:00
/* Entry(entry_text = none, dialog_text = none, hide_text = false) */
2006-02-26 23:29:05 -08:00
MSFunc *ms_zenity_entry (void);
2006-04-16 22:02:52 -07:00
/* HistoryEntry(entry_text = none, user_id = none, dialog_text = none) */
MSFunc *ms_zenity_history_entry (void);
2006-02-26 23:29:05 -08:00
/* 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) */
2006-02-26 02:00:18 -08:00
2006-02-26 01:31:29 -08:00
G_END_DECLS
#endif /* MOO_SCRIPT_ZENITY_H */