/////////////////////////////////////////////////////////////////////////////
-// Name: print.cpp
+// Name: src/os2/print.cpp
// Purpose: Print framework
// Author: David Webster
// Modified by:
#include "wx/wxprec.h"
+#if wxUSE_PRINTING_ARCHITECTURE
+
#ifndef WX_PRECOMP
-#include <stdio.h>
-#include "wx/setup.h"
-#include "wx/list.h"
-#include "wx/utils.h"
-#include "wx/app.h"
+ #include <stdio.h>
+ #include "wx/list.h"
+ #include "wx/utils.h"
+ #include "wx/app.h"
#endif
-#if wxUSE_PRINTING_ARCHITECTURE
-
#include "wx/os2/printos2.h"
#include "wx/generic/prntdlgg.h"
{
}
-bool wxOS2Printer::Print(wxWindow *parent, wxPrintout *printout, bool prompt)
+bool wxOS2Printer::Print(wxWindow *WXUNUSED(parent),
+ wxPrintout *WXUNUSED(printout),
+ bool WXUNUSED(prompt))
{
// TODO. See wxPostScriptPrinter::Print for hints.
- return FALSE;
+ return false;
}
-wxDC* wxOS2Printer::PrintDialog(wxWindow *parent)
+wxDC* wxOS2Printer::PrintDialog(wxWindow *WXUNUSED(parent))
{
// TODO:
/*
return NULL;
}
-bool wxOS2Printer::Setup(wxWindow *parent)
+bool wxOS2Printer::Setup(wxWindow *WXUNUSED(parent))
{
// TODO:
/*
wxPrintDialog dialog(parent, & m_printData);
- dialog.GetPrintData().SetSetupDialog(TRUE);
return (dialog.ShowModal() == wxID_OK);
*/
- return FALSE;
+ return false;
}
/*
{
}
-bool wxOS2PrintPreview::Print(bool interactive)
+bool wxOS2PrintPreview::Print(bool WXUNUSED(interactive))
{
if (!m_printPrintout)
- return FALSE;
+ return false;
// wxOS2Printer printer(&m_printData);
// return printer.Print(m_previewFrame, m_printPrintout, interactive);
- return FALSE;
+ return false;
}
void wxOS2PrintPreview::DetermineScaling()