#ifndef TDialogOptions_h_included
#define TDialogOptions_h_included
#include <owl/treewind.h>
#include "source/dlg_btn.h"
#include "source/dlg_list.h"
#include "source/dlg_rich.h"

struct TreeDataStruct
{
  int Page;
};

class TDialogOptions : public TDialog  {
 public:
  TDialogOptions(TWindow* parent, TResId resId);
  ~TDialogOptions();
  void    SetupWindow();
  DECLARE_RESPONSE_TABLE(TDialogOptions);

 protected:

  TTreeWindow *tree;
//  TImageList   *imageList;

  void    EvTreeSelChanged(TTwNotify& );
  void     TreeSetIndex(TTreeNode &treenode, int page);
  struct   TreeDataStruct *treeStruct[100];

  TDilaogButtons      *DilaogButtons;
  TDilaogListWindow    *DilaogListWindow;
  TDilaogRichEdit     *DilaogRichEdit;

};
#endif