#ifndef __colour_h
#define __colour_h


typedef struct {
  ObjectId win;
  ComponentId display;
  ComponentId popup;
  unsigned int *dest;
} swatch;

void colour_init(void);
void colour_add(ObjectId win,ComponentId display,ComponentId popup,unsigned int *dest);
void colour_show(ObjectId win,ComponentId c);

#endif
