From c399f4c0f8248ffaff4805d824280a1a31dc483b Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Tue, 6 Jul 1999 06:07:57 +0000 Subject: [PATCH] stuff rom rob browning I forgot to commit git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1809 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/ui-callbacks.h | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/ui-callbacks.h b/src/ui-callbacks.h index 096caefd30..972240e2b3 100644 --- a/src/ui-callbacks.h +++ b/src/ui-callbacks.h @@ -30,10 +30,20 @@ void refreshMainWindow( void ); -gncBoolean verifyBox( const char *text ); + +/* Only implemented in GNOME version right now. */ +int queryBox(const char *text, + int default_answer, + gncBoolean yes_allowed, + gncBoolean ok_allowed, + gncBoolean no_allowed, + gncBoolean cancel_allowed); + +/* deprecated... replaced by queryBox in GNOME version */ +gncBoolean verifyBox(const char *text); + void errorBox( const char *message ); void setBusyCursor( gncUIWidget w ); void unsetBusyCursor( gncUIWidget w ); #endif -