#ifndef _DIALOGEXPORT_
#define _DIALOGEXPORT_

#ifdef __BORLANDC__
#pragma hdrstop
#endif

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

class DialogExport: public wxDialog
{
 public:
  DialogExport(wxWindow* parent, wxWindowID id, const wxString& titulo);
  void OnChangeChapter(wxCommandEvent& event);
  void OnAddFile(wxCommandEvent& event);
  void OnDeleteFile(wxCommandEvent& event);
  void OnCheckedComplete(wxCommandEvent& event);

  void Process();

 private:
  wxButton *ok;
  wxButton *cancel;
  
  wxBitmapButton *add;
  wxBitmapButton *del;
  wxStaticText *labelchapter;
  wxComboBox *chapter;
  wxStaticText *listsubchapter;
  wxComboBox *subchapter;
  wxStaticText *labellistfiles;
  wxListBox *listfile;
  
  wxCheckBox *complete;
  wxCheckBox *example;

  DECLARE_EVENT_TABLE()
};

#endif