diff options
Diffstat (limited to 'src/messagebox.h')
-rw-r--r-- | src/messagebox.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/messagebox.h b/src/messagebox.h index 313d395..72b703f 100644 --- a/src/messagebox.h +++ b/src/messagebox.h @@ -50,14 +50,17 @@ typedef enum { MSG_YES, MSG_NO, MSG_CANCEL, - MSG_OK + MSG_OK, + MSG_MAYBE } msg_val; typedef enum { TYPE_OK, TYPE_OK_CANCEL, TYPE_YES_NO, + TYPE_YES_NO_MAYBE, TYPE_YES_NO_CANCEL, + TYPE_YES_NO_MAYBE_CANCEL, } msg_type; @@ -65,9 +68,10 @@ typedef enum { * Textstrings */ #define TXT_OK "Ok" -#define TXT_CANCEL "Annuler" +#define TXT_CANCEL "Annulér" #define TXT_YES "Ja" #define TXT_NO "Nej" +#define TXT_MAYBE "Mĺske" /** * Images @@ -94,6 +98,7 @@ public slots: void bcancel_clicked(); void byes_clicked(); void bno_clicked(); + void bmaybe_clicked(); private: QPixmap *pix_icon; |