#ifndef BUTTONPANEL01TEST_H
#define BUTTONPANEL01TEST_H

#include <buttonpanel01.h>
#include <zprmouse.h>

/*!
\brief
*/
class buttonpanel01test
{
public:

  /** Brief description of each test. */
  static string doc[];

  /** Global graphics stream. */
  gobjContainer xGraphics;

  /** */ 
  buttonpanel01test(int argc, char** argv);

  ~buttonpanel01test();

  zpr* zz;

  zprmouse* zm;

  buttonpanel01* bp;

  /** Default keyboard handler - ESC to quit. */
  static void keyboard01(unsigned char key, int x, int y);
  /** Displays the gobj::global with double buffering. */
  static void display01();

};

#endif


