/*
**    Name: chcs.h
**
**    Date: Fri Nov  7 14:57:38 2003
**
*/


#ifndef CHCS_H
#define CHCS_H

#include "toolbox.h"
#include "event.h"

#define CHOICES_QUITTIME 0x2
#define CHOICES_NICE     0x4

/* Events */

#define choices_OK 0x150

/* Create the window */

osbool choices_create(void);

osbool choices_close_window(wimp_event_no event_code,
                         wimp_block *poll_block,
                         toolbox_block *block,
                         void *handle);

osbool choices_window_dialogue_completed(bits event_code,
                                      toolbox_action *action,
                                      toolbox_block *block,
                                      void *handle);

osbool choices_ok(bits event_code,
                  toolbox_action *action,
                  toolbox_block *block,
                  void *handle);

extern toolbox_o choices_window;

#endif
