Fix missing and broken interface items for Phoenix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71247 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -6,6 +6,37 @@
|
|||||||
// Licence: wxWindows licence
|
// Licence: wxWindows licence
|
||||||
/////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
enum wxPrinterError
|
||||||
|
{
|
||||||
|
wxPRINTER_NO_ERROR = 0,
|
||||||
|
wxPRINTER_CANCELLED,
|
||||||
|
wxPRINTER_ERROR
|
||||||
|
};
|
||||||
|
|
||||||
|
#define wxPREVIEW_PRINT 1
|
||||||
|
#define wxPREVIEW_PREVIOUS 2
|
||||||
|
#define wxPREVIEW_NEXT 4
|
||||||
|
#define wxPREVIEW_ZOOM 8
|
||||||
|
#define wxPREVIEW_FIRST 16
|
||||||
|
#define wxPREVIEW_LAST 32
|
||||||
|
#define wxPREVIEW_GOTO 64
|
||||||
|
|
||||||
|
#define wxPREVIEW_DEFAULT (wxPREVIEW_PREVIOUS|wxPREVIEW_NEXT|wxPREVIEW_ZOOM\
|
||||||
|
|wxPREVIEW_FIRST|wxPREVIEW_GOTO|wxPREVIEW_LAST)
|
||||||
|
|
||||||
|
// Ids for controls
|
||||||
|
#define wxID_PREVIEW_CLOSE 1
|
||||||
|
#define wxID_PREVIEW_NEXT 2
|
||||||
|
#define wxID_PREVIEW_PREVIOUS 3
|
||||||
|
#define wxID_PREVIEW_PRINT 4
|
||||||
|
#define wxID_PREVIEW_ZOOM 5
|
||||||
|
#define wxID_PREVIEW_FIRST 6
|
||||||
|
#define wxID_PREVIEW_LAST 7
|
||||||
|
#define wxID_PREVIEW_GOTO 8
|
||||||
|
#define wxID_PREVIEW_ZOOM_IN 9
|
||||||
|
#define wxID_PREVIEW_ZOOM_OUT 10
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@class wxPreviewControlBar
|
@class wxPreviewControlBar
|
||||||
|
|
||||||
@@ -282,8 +313,8 @@ public:
|
|||||||
the preview frame so that the user can print directly from the preview interface.
|
the preview frame so that the user can print directly from the preview interface.
|
||||||
|
|
||||||
@remarks
|
@remarks
|
||||||
Do not explicitly delete the printout objects once this destructor has been
|
Do not explicitly delete the printout objects once this constructor has been
|
||||||
called, since they will be deleted in the wxPrintPreview constructor.
|
called, since they will be deleted in the wxPrintPreview destructor.
|
||||||
The same does not apply to the @a data argument.
|
The same does not apply to the @a data argument.
|
||||||
|
|
||||||
Use IsOk() to check whether the wxPrintPreview object was created correctly.
|
Use IsOk() to check whether the wxPrintPreview object was created correctly.
|
||||||
@@ -291,6 +322,9 @@ public:
|
|||||||
wxPrintPreview(wxPrintout* printout,
|
wxPrintPreview(wxPrintout* printout,
|
||||||
wxPrintout* printoutForPrinting = NULL,
|
wxPrintout* printoutForPrinting = NULL,
|
||||||
wxPrintDialogData* data = NULL);
|
wxPrintDialogData* data = NULL);
|
||||||
|
wxPrintPreview(wxPrintout* printout,
|
||||||
|
wxPrintout* printoutForPrinting,
|
||||||
|
wxPrintData* data);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Destructor.
|
Destructor.
|
||||||
@@ -298,7 +332,7 @@ public:
|
|||||||
Deletes both print preview objects, so do not destroy these objects
|
Deletes both print preview objects, so do not destroy these objects
|
||||||
in your application.
|
in your application.
|
||||||
*/
|
*/
|
||||||
~wxPrinter();
|
~wxPrintPreview();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Gets the preview window used for displaying the print preview image.
|
Gets the preview window used for displaying the print preview image.
|
||||||
|
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
@see @ref overview_printing, @ref overview_cmndlg_print
|
@see @ref overview_printing, @ref overview_cmndlg_print
|
||||||
*/
|
*/
|
||||||
class wxPrintDialog : public wxDialog
|
class wxPrintDialog : public wxObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
@@ -30,6 +30,7 @@ public:
|
|||||||
@see wxPrintDialogData
|
@see wxPrintDialogData
|
||||||
*/
|
*/
|
||||||
wxPrintDialog(wxWindow* parent, wxPrintDialogData* data = NULL);
|
wxPrintDialog(wxWindow* parent, wxPrintDialogData* data = NULL);
|
||||||
|
wxPrintDialog(wxWindow *parent, wxPrintData* data);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Destructor.
|
Destructor.
|
||||||
@@ -54,6 +55,12 @@ public:
|
|||||||
*/
|
*/
|
||||||
virtual wxPrintDialogData& GetPrintDialogData();
|
virtual wxPrintDialogData& GetPrintDialogData();
|
||||||
|
|
||||||
|
/**
|
||||||
|
Returns the @ref overview_printing_printdata "print data" associated
|
||||||
|
with the print dialog.
|
||||||
|
*/
|
||||||
|
virtual wxPrintData& GetPrintData();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Shows the dialog, returning @c wxID_OK if the user pressed OK, and @c
|
Shows the dialog, returning @c wxID_OK if the user pressed OK, and @c
|
||||||
wxID_CANCEL otherwise.
|
wxID_CANCEL otherwise.
|
||||||
@@ -89,7 +96,7 @@ public:
|
|||||||
|
|
||||||
@see @ref overview_printing, wxPrintDialog, wxPageSetupDialogData
|
@see @ref overview_printing, wxPrintDialog, wxPageSetupDialogData
|
||||||
*/
|
*/
|
||||||
class wxPageSetupDialog : public wxDialog
|
class wxPageSetupDialog : public wxObject
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user