1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#include "ImageHeaderDialog.h"
#include "FitsHeader.h"
#include "wx/bookctrl.h"
ImageHeaderDialog::ImageHeaderDialog(wxWindow* parent)
{
//ctor
Create(parent, wxID_ANY, _("Image Header"), wxDefaultPosition, wxDefaultSize,
wxDEFAULT_DIALOG_STYLE|wxPROPSHEET_SHRINKTOFIT |wxRESIZE_BORDER
);
FitsHeader* fh = new FitsHeader(GetBookCtrl());
m_pages.push_back(fh );
GetBookCtrl()->AddPage(fh, wxT("FITS Header (Manual)"));
CreateButtons(wxOK|wxCANCEL);
LayoutDialog();
}
ImageHeaderDialog::~ImageHeaderDialog()
{
//dtor
}
|