File: dispreview.cpp

package info (click to toggle)
munipack 0.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 33,104 kB
  • sloc: cpp: 29,677; sh: 4,909; f90: 2,872; makefile: 278; python: 140; xml: 72; awk: 12
file content (133 lines) | stat: -rw-r--r-- 3,450 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*

  xmunipack - preview

  Copyright © 2021-2022 F.Hroch (hroch@physics.muni.cz)

  This file is part of Munipack.

  Munipack is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  Munipack is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with Munipack.  If not, see <http://www.gnu.org/licenses/>.

*/

#include "dispreview.h"
#include "zoomer.h"
#include "types.h"
#include "event.h"
#include <wx/wx.h>
#include <vector>

#ifdef __WXDEBUG__
#include <wx/debug.h>
#endif

MuniDisplayPreview::MuniDisplayPreview(wxWindow *w, const MuniConfig *config):
  wxWindow(w,wxID_ANY), shrink(0),xoff(0), yoff(0), width(0), height(0),
  display_size(wxDefaultSize)
{
  SetBackgroundColour(config->display_bgcolour);
  Bind(wxEVT_PAINT,&MuniDisplayPreview::OnPaint,this);
  Bind(wxEVT_SIZE,&MuniDisplayPreview::OnSize,this);
}

void MuniDisplayPreview::OnSize(wxSizeEvent& event)
{
  wxSize size(event.GetSize());
  if( size != display_size ) {
    wxLogDebug("MuniDisplayPreview::OnSize changed %dx%d",size.GetWidth(),size.GetHeight());
    display_size = size;

    MuniSizeChangedEvent event(EVT_SIZE_CHANGED);
    event.size = size;
    wxQueueEvent(GetParent(),event.Clone());
  }
  event.Skip();
}

void MuniDisplayPreview::OnPaint(wxPaintEvent& event)
{
  if( canvas.IsOk() ) {
    wxPaintDC dc(this);
    dc.DrawBitmap(wxBitmap(canvas),xoff,yoff);
  }
}

void MuniDisplayPreview::InitCanvas()
{
  const wxSize size(GetSize());
  wxASSERT(width > 0 && height > 0 && size.GetWidth() > 0 && size.GetHeight() > 0 &&
	   shrink > 0);

  MuniZoomSet zset;
  double z = zset.SetBestFitZoom(size,wxSize(width,height));
  if( z < 1.0 )
    shrink = int(1.0 / z + 0.5);
  else
    shrink = 1;

  int w = wxMax(width / shrink,1);
  int h = wxMax(height / shrink,1);

  wxASSERT(w > 0 && h > 0);
  canvas = wxImage(w,h);
  xoff = wxMax(size.GetWidth() - w,0)/2;
  yoff = wxMax(size.GetHeight() - h,0)/2;

  //  wxLogDebug("%d %d %d %d %d %d %d %d %d",shrink,w,h,width,height,xoff,yoff,
  //	     size.GetWidth(),size.GetHeight());
  wxASSERT(xoff >= 0 && yoff >= 0);
  // what about removing of the negative poisitons from the image?
}

void MuniDisplayPreview::RefreshCanvas(int crow, const wxImage& subwin)
{
  if( ! (subwin.GetWidth() > 0 && subwin.GetHeight() > 0) )
    return;

  wxASSERT(canvas.GetWidth() > 0 && canvas.GetHeight() > 0);
  int y = canvas.GetHeight() - crow / shrink;
  canvas.Paste(subwin,0,y);
  RefreshRect(wxRect(xoff+0,yoff+y,subwin.GetWidth(),subwin.GetHeight()));
}

wxImage MuniDisplayPreview::GetCanvas() const
{
  return canvas;
}

void MuniDisplayPreview::SetZoom(double zoom)
{
  wxASSERT(zoom > 0);

  if( zoom < 1.01 )
    shrink = int(1.0/zoom + 0.5);
  else
    shrink = 1;
}


void MuniDisplayPreview::SetImageSize(const wxSize& size)
{
  wxASSERT(size.IsFullySpecified());
  width = size.GetWidth();
  height = size.GetHeight();
  InitCanvas();
}

void MuniDisplayPreview::SetZoom(double zoom, const wxSize& size)
{
  if( shrink > 0 ) return;
  SetZoom(zoom);
  SetImageSize(size);
}