~darkxst/ubuntu/saucy/gdm/lp1212408

« back to all changes in this revision

Viewing changes to daemon/errorgui.h

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2008-09-02 10:37:20 UTC
  • mfrom: (1.4.27 upstream)
  • mto: This revision was merged to the branch mainline in revision 261.
  • Revision ID: james.westby@ubuntu.com-20080902103720-p810vv530hqj45wg
Tags: 2.20.7-3
* Install the debian-moreblue-orbit theme, thanks Andre Luiz Rodrigues 
  Ferreira. Closes: #497440.
* 35_gdm.conf.patch: make it the default.
* copyright: fix encoding.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include "gdm.h"
23
23
#include <gtk/gtkmessagedialog.h>
24
24
 
25
 
void            gdm_error_box_full      (GdmDisplay *d,
26
 
                                         GtkMessageType type,
27
 
                                         const char *error,
28
 
                                         const char *details_label,
29
 
                                         const char *details_file,
30
 
                                         /* zero doesn't mean root,
31
 
                                            we never wish to run as root,
32
 
                                            zero means use the gdm user */
33
 
                                         uid_t uid,
34
 
                                         gid_t gid);
35
 
 
36
 
void            gdm_error_box           (GdmDisplay *d,
37
 
                                         GtkMessageType type,
38
 
                                         const char *error);
39
 
 
40
 
char *          gdm_failsafe_question   (GdmDisplay *d,
41
 
                                         const char *question,
42
 
                                         gboolean echo);
43
 
 
44
 
gboolean        gdm_failsafe_yesno      (GdmDisplay *d,
45
 
                                         const char *question);
46
 
int             gdm_failsafe_ask_buttons (GdmDisplay *d,
47
 
                                          const char *question,
48
 
                                          char **but);
 
25
void            gdm_errorgui_error_box_full     (GdmDisplay *d,
 
26
                                                 GtkMessageType type,
 
27
                                                 const char *error,
 
28
                                                 const char *details_label,
 
29
                                                 const char *details_file,
 
30
                                                 /* zero doesn't mean root,
 
31
                                                    we never wish to run as root,
 
32
                                                    zero means use the gdm user */
 
33
                                                 uid_t uid,
 
34
                                                 gid_t gid);
 
35
 
 
36
void            gdm_errorgui_error_box          (GdmDisplay *d,
 
37
                                                 GtkMessageType type,
 
38
                                                 const char *error);
 
39
 
 
40
char *          gdm_errorgui_failsafe_question  (GdmDisplay *d,
 
41
                                                 const char *question,
 
42
                                                 gboolean echo);
 
43
 
 
44
gboolean        gdm_errorgui_failsafe_yesno     (GdmDisplay *d,
 
45
                                                 const char *question);
 
46
int             gdm_errorgui_failsafe_ask_buttons (GdmDisplay *d,
 
47
                                                   const char *question,
 
48
                                                   char **but);
49
49
 
50
50
#endif /* GDM_ERRORGUI_H */
51
51