#include "wx/defs.h"
-#ifdef __WXMSW__
-#define __GOOD_COMPILER__
-#endif
-
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/dc.h"
m_printPreview = preview;
SetBackgroundColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_APPWORKSPACE));
- SetScrollbars(40, 40, 100, 100);
+ SetScrollbars(15, 18, 100, 100);
}
wxPreviewCanvas::~wxPreviewCanvas()
void wxPreviewCanvas::OnPaint(wxPaintEvent& WXUNUSED(event))
{
wxPaintDC dc(this);
+ PrepareDC( dc );
if (m_printPreview)
{
void wxPreviewControlBar::CreateButtons()
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
SetSize(0, 0, 400, 40);
#ifdef __WXMSW__
#endif
wxFont buttonFont(fontSize, wxSWISS, wxNORMAL, wxBOLD);
- SetButtonFont(buttonFont);
+ SetFont(buttonFont);
int buttonWidth = 65;
- int buttonHeight = 24;
+#ifdef __WXGTK__
+ int buttonHeight = -1;
+#else
+ int buttonHeight = 24;
+#endif
int x = 5;
int y = 5;
x += gap + buttonWidth;
}
- static wxString choices[] = { "10%", "20%", "25%", "30%", "35%", "40%", "45%", "50%", "55%", "60%",
- "65%", "70%", "75%", "80%", "85%", "90%", "95%", "100%", "110%", "120%", "150%", "200%" };
- int n = 22;
+ // Yes, this look stupid, but this is because gcc gives up otherwise.
+ wxString *choices = new wxString[23];
+ choices[0] = "10%";
+ choices[1] = "15%";
+ choices[2] = "20%";
+ choices[3] = "25%";
+ choices[4] = "30%";
+ choices[5] = "35%";
+ choices[6] = "40%";
+ choices[7] = "45%";
+ choices[8] = "50%";
+ choices[9] = "55%";
+ choices[10] = "60%";
+ choices[11] = "65%";
+ choices[12] = "70%";
+ choices[13] = "75%";
+ choices[14] = "80%";
+ choices[15] = "85%";
+ choices[16] = "90%";
+ choices[17] = "95%";
+ choices[18] = "100%";
+ choices[19] = "110%";
+ choices[20] = "120%";
+ choices[21] = "150%";
+ choices[22] = "200%";
+
+ int n = 23;
if (m_buttonFlags & wxPREVIEW_ZOOM)
{
m_zoomControl = new wxChoice(this, wxID_PREVIEW_ZOOM, wxPoint(x, y),
SetZoomControl(m_printPreview->GetZoom());
}
+ delete[] choices;
+
m_closeButton->SetDefault();
-
-#endif
}
void wxPreviewControlBar::SetZoomControl(int zoom)
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
char buf[20];
sprintf(buf, "%d%%", zoom);
if (m_zoomControl)
m_zoomControl->SetStringSelection(buf);
-#endif
}
int wxPreviewControlBar::GetZoomControl()
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
char buf[20];
if (m_zoomControl && m_zoomControl->GetStringSelection())
{
return (int)atoi(buf);
}
else return 0;
-#else
- return 0;
-#endif
}
const wxPoint& pos, const wxSize& size, long style, const wxString& name):
wxFrame(parent, -1, title, pos, size, style, name)
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
m_printPreview = preview;
m_controlBar = NULL;
m_previewCanvas = NULL;
-#endif
}
wxPreviewFrame::~wxPreviewFrame()
bool wxPreviewFrame::OnClose()
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
MakeModal(FALSE);
// Need to delete the printout and the print preview
}
delete m_printPreview;
return TRUE;
-#else
- return FALSE;
-#endif
}
void wxPreviewFrame::Initialize()
{
-
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
CreateStatusBar();
CreateCanvas();
// int w, h;
// m_controlBar->GetSize(&w, &h);
int h;
-#ifdef __WXMSW__
+#if (defined(__WXMSW__) || defined(__WXGTK__))
h = 40;
#else
h = 60;
MakeModal(TRUE);
Layout();
-
-#endif
}
void wxPreviewFrame::CreateCanvas()
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
m_previewCanvas = new wxPreviewCanvas(m_printPreview, this);
-
-#endif
}
void wxPreviewFrame::CreateControlBar()
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
long buttons = wxPREVIEW_DEFAULT;
if (m_printPreview->GetPrintoutForPrinting())
buttons |= wxPREVIEW_PRINT;
m_controlBar = new wxPreviewControlBar(m_printPreview, buttons, this, wxPoint(0, 0), wxSize(400, 40));
m_controlBar->CreateButtons();
-#endif
}
/*
wxPrintPreviewBase::wxPrintPreviewBase(wxPrintout *printout, wxPrintout *printoutForPrinting, wxPrintData *data)
{
-
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
m_isOk = TRUE;
m_previewPrintout = printout;
if (m_previewPrintout)
// Get some parameters from the printout, if defined
int selFrom, selTo;
printout->GetPageInfo(&m_minPage, &m_maxPage, &selFrom, &selTo);
-
-#endif
}
wxPrintPreviewBase::~wxPrintPreviewBase()
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
if (m_previewPrintout)
delete m_previewPrintout;
if (m_previewBitmap)
delete m_previewBitmap;
if (m_printPrintout)
delete m_printPrintout;
-
-#endif
}
bool wxPrintPreviewBase::SetCurrentPage(int pageNum)
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
if (m_currentPage == pageNum)
return TRUE;
RenderPage(pageNum);
m_previewCanvas->Refresh();
}
-
-#endif
return TRUE;
}
bool wxPrintPreviewBase::PaintPage(wxWindow *canvas, wxDC& dc)
{
-
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
DrawBlankPage(canvas, dc);
if (!m_previewBitmap)
double actualWidth = (zoomScale*m_pageWidth*m_previewScale);
// float actualHeight = (float)(zoomScale*m_pageHeight*m_previewScale);
- int x = ((canvasWidth - actualWidth)/2.0);
+ int x = (int) ((canvasWidth - actualWidth)/2.0);
if (x < m_leftMargin)
x = m_leftMargin;
int y = m_topMargin;
temp_dc.SelectObject(wxNullBitmap);
-#endif
-
return TRUE;
}
{
int canvasWidth, canvasHeight;
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
if (!m_previewCanvas)
{
wxMessageBox(_("wxPrintPreviewBase::RenderPage: must use wxPrintPreviewBase::SetCanvas to let me know about the canvas!"),
m_previewPrintout->SetDC(NULL);
memoryDC.SelectObject(wxNullBitmap);
-#endif
char buf[200];
if (m_maxPage != 0)
bool wxPrintPreviewBase::DrawBlankPage(wxWindow *canvas, wxDC& dc)
{
-
-#ifdef __GOOD_COMPILER__ // Robert Roebling
-
int canvasWidth, canvasHeight;
canvas->GetSize(&canvasWidth, &canvasHeight);
int shadowOffset = 4;
dc.SetPen(*wxBLACK_PEN);
dc.SetBrush(*wxBLACK_BRUSH);
- dc.DrawRectangle(x-1 + shadowOffset, y-1 + shadowOffset, actualWidth+2, actualHeight+2);
+/*
+ dc.DrawRectangle((int)(x-1 + shadowOffset), (int)(y-1 + shadowOffset), (int)(actualWidth+2), (int)(actualHeight+2));
+*/
+ dc.DrawRectangle((int)(x + shadowOffset), (int)(y + actualHeight+1), (int)(actualWidth), shadowOffset);
+ dc.DrawRectangle((int)(x + actualWidth), (int)(y + shadowOffset), shadowOffset, (int)(actualHeight));
// Draw blank page allowing for 1-pixel border AROUND the actual page
dc.SetPen(*wxBLACK_PEN);
dc.SetBrush(*wxWHITE_BRUSH);
-
- dc.DrawRectangle(x-1, y-1, actualWidth+2, actualHeight+2);
+/*
+ wxRegion update_region = canvas->GetUpdateRegion();
+ wxRect r = update_region.GetBox();
+
+ printf( "x: %d y: %d w: %d h: %d.\n", (int)r.x, (int)r.y, (int)r.width, (int)r.height );
+*/
+
+ dc.DrawRectangle((int)(x-2), (int)(y-1), (int)(actualWidth+3), (int)(actualHeight+2));
-#endif
-
return TRUE;
}
void wxPrintPreviewBase::SetZoom(int percent)
{
-#ifdef __GOOD_COMPILER__ // Robert Roebling
if (m_currentZoom == percent)
return;
m_previewCanvas->Clear();
m_previewCanvas->Refresh();
}
-#endif
-
}