#include "wx/radiobox.h"
#include "wx/filedlg.h"
#include "wx/choice.h"
+ #include "wx/combobox.h"
#include <wx/intl.h>
#endif
return TRUE;
}
-wxChoice *wxGenericPrintSetupDialog::CreatePaperTypeChoice(int *x, int *y)
+wxComboBox *wxGenericPrintSetupDialog::CreatePaperTypeChoice(int *x, int *y)
{
/* Should not be necessary
if (!wxThePrintPaperDatabase)
int width = 250;
- wxChoice *choice = new wxChoice(this, wxPRINTID_PAPERSIZE, wxPoint(*x, *y), wxSize(width, -1), n,
+ wxComboBox *choice = new wxComboBox(this, wxPRINTID_PAPERSIZE,
+ _("Paper Size"),
+ wxPoint(*x, *y), wxSize(width, -1), n,
choices);
// SetFont(thisFont);
return TRUE;
}
-wxChoice *wxGenericPageSetupDialog::CreatePaperTypeChoice(int *x, int *y)
+wxComboBox *wxGenericPageSetupDialog::CreatePaperTypeChoice(int *x, int *y)
{
/*
if (!wxThePrintPaperDatabase)
(void) new wxStaticText(this, wxPRINTID_STATIC, _("Paper size"), wxPoint(*x, *y));
*y += 25;
- wxChoice *choice = new wxChoice(this, wxPRINTID_PAPERSIZE, wxPoint(*x, *y), wxSize(300, -1), n,
+ wxComboBox *choice = new wxComboBox(this, wxPRINTID_PAPERSIZE,
+ _("Paper Size"),
+ wxPoint(*x, *y), wxSize(300, -1), n,
choices);
*y += 35;
delete[] choices;