#ifndef _DIALOGSHOW_
#define _DIALOGSHOW_

#ifdef __BORLANDC__
#pragma hdrstop
#endif

#include <wx/wx.h>
#include <wx/dialog.h>

class DialogShowChapter : public wxDialog
{
 public:
  DialogShowChapter(wxWindow* parent,  wxWindowID id, const wxString& titulo);
  void OnChangeChapter(wxCommandEvent& event);
  size_t Process();

 private:
  wxButton *ok;
  wxButton *cancel;
  wxStaticText *labelchapter;
  wxComboBox *chapter;
  wxComboBox *subchapter;

  DECLARE_EVENT_TABLE()
};

class DialogShowExample : public wxDialog
{
 public:
  DialogShowExample(wxWindow* parent,  wxWindowID id, const wxString& titulo);
  void OnChangeChapter(wxCommandEvent& event);
  size_t Process();
  int Example();
 private:
  wxButton *ok;
  wxButton *cancel;
  wxStaticText *labelchapter;
  wxComboBox *chapter;
  wxListBox *subchapter;

  wxCheckBox *image;
  DECLARE_EVENT_TABLE()
};

#endif