JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
vThumbNailDoc.cpp
Go to the documentation of this file.
1//
2// CvThumbNailDoc.cpp : インプリメンテーション ファイル
3//
4
5#include "MFCBase.h"
6#include "vThumbNailDoc.h"
7#include "ProgressBarDLG.h"
8
9
10#ifdef _DEBUG
11#define new DEBUG_NEW
12#undef THIS_FILE
13static char THIS_FILE[] = __FILE__;
14#endif
15
16
17using namespace jbxl;
18using namespace jbxwl;
19
20
22// CvThumbNailDoc
23
24IMPLEMENT_DYNCREATE(CvThumbNailDoc, CExDocument)
25
27{
28 SetSize(THUMBNAIL_SIZE, THUMBNAIL_SIZE, 4, 2, 4, 12);
29}
30
31
35
36
37
38BEGIN_MESSAGE_MAP(CvThumbNailDoc, CRwGRDoc)
39 //{{AFX_MSG_MAP(CvThumbNailDoc)
40 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
41 //}}AFX_MSG_MAP
42END_MESSAGE_MAP()
43
44
45
46
47// CvThumbNailDoc 診断
48
49#ifdef _DEBUG
54
55
56//
57void CvThumbNailDoc::Dump(CDumpContext& dc) const
58{
60}
61#endif //_DEBUG
62
63
64
66// CvThumbNailDoc シリアライズ
67
68void CvThumbNailDoc::Serialize(CArchive& ar)
69{
70 if (ar.IsStoring())
71 {
72 // TODO: この位置に保存用のコードを追加してください
73 }
74 else
75 {
76 // TODO: この位置に読み込み用のコードを追加してください
77 }
78}
79
80
81
83// CvThumbNailDoc コマンド
84
86{
87 int i, j, k;
89
90 // サムネイルのサイズの再計算
91 if (msGraph.xs>0 && msGraph.ys>0) {
92 if (msGraph.xs>msGraph.ys) {
93 int ysize = THUMBNAIL_SIZE*msGraph.ys/msGraph.xs;
94 SetSize(0, ysize, 0, 0, 0, 0); // 0 の箇所は変化なし
95 }
96 else {
97 int xsize = THUMBNAIL_SIZE*msGraph.xs/msGraph.ys;
98 SetSize(xsize, 0, 0, 0, 0, 0); // 0 の箇所は変化なし
99 }
100 }
101
102 colorMode = msGraph.color;
103 chd.kind = CT_DATA;
104 chd.xsize = xClientSize;
105 chd.ysize = Max(((msGraph.zs+1)/2+1)*(yTNailSize+tNailBorder), yClientSize);
106 chd.zsize = yClientSize;
107 chd.depth = 8;
108 chd.bsize = 0;
109 chd.buf = NULL;
110 chd.lsize = chd.xsize*chd.ysize;
111 chd.grptr = (uByte*)malloc(chd.lsize);
112 if (chd.grptr==NULL) {
114 chd.xsize = -2;
115 return chd;
116 }
117 for (i=0; i<chd.xsize*chd.ysize; i++) chd.grptr[i] = VIEW_8_MAX; // バックを白にする
118
119 // カウンタ
120 CVCounter* counter = NULL; // カウンタはここでは,delete禁止
121 if (chd.zsize>10) {
123 if (counter!=NULL) counter->SetMax(msGraph.zs*2/10);
124 }
125
126 // コントラスト調整のための最大値と最小値
127 int min = SINTMAX;
128 int max = SINTMIN;
129 int ks, js;
130 for (k=0; k<msGraph.zs; k++) {
131 ks = k*msGraph.xs*msGraph.ys;
132 for (j=0; j<msGraph.ys; j++) {
133 js = j*msGraph.xs;
134 for (i=0; i<msGraph.xs; i++) {
135 min = Min((int)msGraph.gp[i+js+ks], min);
136 max = Max((int)msGraph.gp[i+js+ks], max);
137 }
138 }
139 if (counter!=NULL && k%10==0) {
140 counter->StepIt();
141 if (counter->isCanceled()) { // キャンセル
143 chd.xsize = -3;
144 return chd;
145 }
146 }
147 }
148
149 if (min>=0 && max<=VIEW_8_MAX && !ctrlCntrst) {
150 max = VIEW_8_MAX;
151 min = 0;
152 }
153 msGraph.max = (sWord)max;
154 msGraph.min = (sWord)min;
155
156 RECT rect;
157 int ii, jj;
158 for (k=0; k<msGraph.zs; k++) {
159 rect.left = (k%2)*(xTNailSize + tNailBorder) + 1;
160 rect.right = rect.left + xTNailSize - 1;
161 rect.top = (k/2)*(yTNailSize + tNailBorder) + 1;
162 rect.bottom = rect.top + yTNailSize - 1;
163
164 for (i=rect.left-1; i<=rect.right +1; i++) CmnHeadBytePoint(chd, i, rect.top-1) = 0;
165 for (i=rect.left-1; i<=rect.right +1; i++) CmnHeadBytePoint(chd, i, rect.bottom+1) = 0;
166 for (j=rect.top-1; j<=rect.bottom+1; j++) CmnHeadBytePoint(chd, rect.left -1, j) = 0;
167 for (j=rect.top-1; j<=rect.bottom+1; j++) CmnHeadBytePoint(chd, rect.right+1, j) = 0;
168
169 for (j=0; j<yTNailSize; j++) {
170 jj = j*(msGraph.ys-1)/(yTNailSize-1);
171 for (i=0; i<xTNailSize; i++) {
172 ii = i*(msGraph.xs-1)/(xTNailSize-1);
173 CmnHeadBytePoint(chd, rect.left+i, rect.top+j) = (uByte)((float)(msGraph.point(ii, jj, k)-min)/(max-min)*VIEW_8_MAX);
174 }
175 }
176 if (counter!=NULL && k%10==0) {
177 counter->StepIt();
178 if (counter->isCanceled()) { // キャンセル
180 chd.xsize = -3;
181 return chd;
182 }
183 }
184 }
185
186 // 表示はモノクロ固定
189
190 return chd;
191}
192
193
203void CvThumbNailDoc::SetSize(int txs, int tys, int bds, int hrs, int vrs, int ymx)
204{
205 if (txs>0) xTNailSize = txs;
206 if (tys>0) yTNailSize = tys;
207 if (bds>0) tNailBorder = bds;
208 if (hrs>0) xTNailOrder = hrs;
209 if (vrs>0) yTNailOrder = vrs;
210 if (ymx>0) yMaxOrder = Max(yTNailOrder, ymx);
211
215}
216
217
219{
220 int xx = pt.x/(xTNailSize+ tNailBorder) + 1;
221 int yy = pt.y/(yTNailSize+ tNailBorder) + 1;
222 int ret = (yy - 1)*2 + xx;
223
224 if (ret<0 || ret>msGraph.zs) ret = -1;
225 return ret;
226}
#define VIEW_8_MAX
Definition ExView.h:39
再帰定義可能なプログレスバーカウンタ
ExMSGraph< sWord > msGraph
Definition ExDocument.h:52
virtual void AssertValid() const
Definition RwGRDoc.cpp:52
virtual void Dump(CDumpContext &dc) const
Definition RwGRDoc.cpp:59
void SetSize(int txs, int tys, int bds, int vrs, int hrs, int ymx)
virtual void Serialize(CArchive &ar)
virtual void AssertValid() const
virtual void Dump(CDumpContext &dc) const
virtual CmnHead TranslateData()
static char THIS_FILE[]
#define THUMBNAIL_SIZE