-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathImagePanel.cpp
More file actions
215 lines (196 loc) · 3.65 KB
/
ImagePanel.cpp
File metadata and controls
215 lines (196 loc) · 3.65 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#include <wx/wx.h>
#include <wx/image.h>
#include "ImagePanel.h"
BEGIN_EVENT_TABLE(ImagePanel, wxPanel)
EVT_PAINT(ImagePanel::OnPaint)
EVT_SIZE(ImagePanel::OnResize)
END_EVENT_TABLE()
ImagePanel::ImagePanel(wxWindow *parent,
wxWindowID id,
const wxPoint &pos,
const wxSize &size,
long style,
const wxString &name):wxPanel(parent,
id,
pos,
size,
style,
name)
{
painting=false;
currentScale=1.0;
}
ImagePanel::ImagePanel(wxWindow *parent,
wxWindowID id,
const wxPoint &pos,
const wxSize &size,
long style,
const wxString &name,
wxImage &imageIn):wxPanel(parent,
id,
pos,
size,
style,
name)
{
image=imageIn;
}
void ImagePanel::SetImage(wxImage &imageIn)
{
image.Destroy();
image=imageIn.Copy();
DrawImage();
}
void ImagePanel::Maximise()
{
wxSize panelSize;
int panelWidth;
int panelHeight;
int imageWidth;
int imageHeight;
float xscale;
float yscale;
bool growing;
float smallestScale;
float largestScale;
panelSize=GetSize();
panelWidth=panelSize.GetWidth();
panelHeight=panelSize.GetHeight();
imageWidth=image.GetWidth();
imageHeight=image.GetHeight();
if ((imageWidth==0)||(imageHeight==0))
{
currentScale=1.0;
}
else
{
if ((imageWidth>panelWidth)||(imageHeight>panelHeight))
{
growing=false;
}
else
{
growing=true;
}
xscale=(float)panelWidth/(float)imageWidth;
yscale=(float)panelHeight/(float)imageHeight;
smallestScale=yscale;
largestScale=xscale;
if (xscale<yscale)
{
smallestScale=xscale;
largestScale=yscale;
}
if (growing)
{
currentScale=smallestScale;
}
else
{
currentScale=smallestScale;
}
}
}
void ImagePanel::Scale(float scaleIn)
{
currentScale=scaleIn;
}
void ImagePanel::DrawImage()
{
wxPaintDC pdc(this);
wxClientDC wdc(this);
wxDC *dc;
int imageWidth;
int imageHeight;
int newHeight;
int newWidth;
wxImage newImage;
if (painting)
{
dc=&pdc;
}
else
{
dc=&wdc;
}
//dc=&pdc;
imageWidth=image.GetWidth();
imageHeight=image.GetHeight();
newHeight=(int)((float)imageHeight*currentScale);
newWidth=(int)((float)imageWidth*currentScale);
newImage=image.Rescale(newWidth,newHeight);
wxBitmap bitmap(newImage);
PrepareDC(*dc);
dc->Clear();
dc->DrawBitmap(bitmap,0,0);
}
void ImagePanel::Clear()
{
wxClientDC dc(this);
dc.Clear();
}
void ImagePanel::Proportion(int maxWidth,int maxHeight)
{
int imageWidth;
int imageHeight;
float widthRatio;
float heightRatio;
float newRatio;
float smallestScale;
float largestScale;
bool growing;
wxString msg;
imageWidth=image.GetWidth();
imageHeight=image.GetHeight();
if ((imageWidth==0)||(imageHeight==0))
{
return;
}
widthRatio =(float)maxWidth/(float)imageWidth;
heightRatio =(float)maxHeight/(float)imageHeight;
// msg.Printf("[%d][%d] [%d][%d] [%.2f][%.2f]",maxWidth,maxHeight,imageWidth,imageHeight,widthRatio,heightRatio);wxMessageBox(msg);
if ((imageWidth>maxWidth)||(imageHeight>maxHeight))
{
growing=false;
}
else
{
growing=true;
}
smallestScale =widthRatio;
largestScale =heightRatio;
if (widthRatio>heightRatio)
{
smallestScale =heightRatio;
largestScale =widthRatio;
}
if (growing)
{
newRatio=smallestScale;
}
else
{
newRatio=smallestScale;
}
//msg.Printf("newRatio [%.2f] [%.2f][%.2f]",newRatio,
// (float)imageWidth * newRatio,
// (float)imageHeight * newRatio);wxMessageBox(msg);
Scale(newRatio);
DrawImage();
}
void ImagePanel::OnPaint(wxPaintEvent &event)
{
painting=true;
DrawImage();
painting=false;
}
ImagePanel::~ImagePanel()
{
}
void ImagePanel::OnResize(wxSizeEvent &event)
{
//Maximise();
//
painting=false;
DrawImage();
}