Add documentation for wxPrintAbortDialog since it is now documented as a return value type.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72310 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -905,3 +905,23 @@ public:
|
|||||||
void SetLogicalOrigin(wxCoord x, wxCoord y);
|
void SetLogicalOrigin(wxCoord x, wxCoord y);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
@class wxPrintAbortDialog
|
||||||
|
|
||||||
|
The dialog created by default by the print framework that enables aborting
|
||||||
|
the printing process.
|
||||||
|
*/
|
||||||
|
class wxPrintAbortDialog: public wxDialog
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxPrintAbortDialog(wxWindow *parent,
|
||||||
|
const wxString& documentTitle,
|
||||||
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
|
const wxSize& size = wxDefaultSize,
|
||||||
|
long style = wxDEFAULT_DIALOG_STYLE,
|
||||||
|
const wxString& name = wxT("dialog"));
|
||||||
|
|
||||||
|
void SetProgress(int currentPage, int totalPages,
|
||||||
|
int currentCopy, int totalCopies);
|
||||||
|
};
|
||||||
|
Reference in New Issue
Block a user