JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
ContrastDLG.cpp
Go to the documentation of this file.
1//
2// ContrastDLG.cpp : インプリメンテーション ファイル
3//
4
12#include "ContrastDLG.h"
13
14
15#ifdef _DEBUG
16#define new DEBUG_NEW
17#undef THIS_FILE
18static char THIS_FILE[] = __FILE__;
19#endif
20
21
22using namespace jbxl;
23using namespace jbxwl;
24
25
27// CContrastDLG ダイアログ
28
29CContrastDLG::CContrastDLG(CExView* pview, BOOL rndr, CWnd* pParent /*=NULL*/)
30 : CDialog(CContrastDLG::IDD, pParent)
31{
32 //{{AFX_DATA_INIT(CContrastDLG)
33 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
34 //}}AFX_DATA_INIT
35
36 pView = pview;
37 render = rndr;
38
39 oMin = cMin = pView->cMin;
40 oMax = cMax = pView->cMax;
41 vMin = pView->vMin;
42 vMax = pView->vMax;
43 base = pView->pDoc->base + TempBase;
44}
45
46
47void CContrastDLG::DoDataExchange(CDataExchange* pDX)
48{
49 CDialog::DoDataExchange(pDX);
50 //{{AFX_DATA_MAP(CContrastDLG)
51 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
52 //}}AFX_DATA_MAP
53}
54
55
56
57BEGIN_MESSAGE_MAP(CContrastDLG, CDialog)
58 //{{AFX_MSG_MAP(CContrastDLG)
59 ON_EN_CHANGE(IDC_CNT_CNTMIN, OnChangeCntCntMin)
60 ON_EN_CHANGE(IDC_CNT_CNTMAX, OnChangeCntCntMax)
61 ON_WM_HSCROLL()
62 //}}AFX_MSG_MAP
63END_MESSAGE_MAP()
64
65
66
68// CContrastDLG メッセージ ハンドラ
69
70BOOL CContrastDLG::OnInitDialog()
71{
72 TCHAR buf[LNAME];
73
74 cMinEBox = (CEdit*)GetDlgItem(IDC_CNT_CNTMIN);
75 cMaxEBox = (CEdit*)GetDlgItem(IDC_CNT_CNTMAX);
76 cMinSldr = (CSliderCtrl*)GetDlgItem(IDC_CNT_SLIDER_CNTMIN);
77 cMaxSldr = (CSliderCtrl*)GetDlgItem(IDC_CNT_SLIDER_CNTMAX);
78
79 cMinSldr->SetRange(vMin-base, vMax-base);
80 cMaxSldr->SetRange(vMin-base, vMax-base);
81 if (cMin-base==0) cMinSldr->SetPos(1); // for スライダーバグ
82 if (cMax-base==0) cMaxSldr->SetPos(1); // 値が0の場合にスライダーの位置がおかしくなるバグ
83 cMinSldr->SetPos(cMin-base);
84 cMaxSldr->SetPos(cMax-base);
85
86 sntprintf(buf, LNAME, _T("%d"), oMin-base);
87 cMinEBox->SetWindowText(buf);
88
89 sntprintf(buf, LNAME, _T("%d"), oMax-base);
90 cMaxEBox->SetWindowText(buf);
91
92 return TRUE;
93}
94
95
96
98{
99 TCHAR buf[LNAME];
100
101 cMinEBox->GetWindowText(buf, LNAME);
102 cMin = ttoi(buf) + base;
103
104// if (cMin<vMin || cMin>=vMax) {
105// if (cMin<vMin) cMin = vMin;
106// if (cMin>=vMax) cMin = vMax - 1;
107// if (cMin==cMax) cMin = cMax - 1;
109 if (cMin<vMin) cMin = vMin;
110 if (cMin>vMax) cMin = vMax;
111 if (cMin==cMax) cMin = cMax - 1;
112 sntprintf(buf, LNAME, _T("%d"), cMin-base);
113 cMinEBox->SetWindowText(buf);
114 cMinEBox->UpdateWindow();
115 }
116
117 cMinSldr->SetPos(cMin-base);
118 pView->cMin = cMin;
119
120 if (render) {
121 pView->prevSBpos = -1;
123 pView->ExecRender();
124 }
125}
126
127
128
130{
131 TCHAR buf[LNAME];
132
133 cMaxEBox->GetWindowText(buf, LNAME);
134 cMax = ttoi(buf) + base;
135
136 //if (cMax<=vMin || cMax>vMax) {
137 // if (cMax>vMax) cMax = vMax;
138 // if (cMax<=vMin) cMax = vMin + 1;
139 // if (cMax==cMin) cMax = cMin + 1;
141 if (cMax>vMax) cMax = vMax;
142 if (cMax<vMin) cMax = vMin;
143 if (cMax==cMin) cMax = cMin + 1;
144 sntprintf(buf, LNAME, _T("%d"), cMax-base);
145 cMaxEBox->SetWindowText(buf);
146 cMaxEBox->UpdateWindow();
147 }
148
149 cMaxSldr->SetPos(cMax-base);
150 pView->cMax = cMax;
151
152 if (render) {
153 pView->prevSBpos = -1;
155 pView->ExecRender();
156 }
157}
158
159
160
161void CContrastDLG::OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar)
162{
163 TCHAR buf[LNAME];
164
166 cMax= cMaxSldr->GetPos() + base;
167 pView->cMax = cMax;
168 sntprintf(buf, LNAME, _T("%d"), cMax-base);
169 cMaxEBox->SetWindowText(buf);
170 cMaxEBox->UpdateWindow();
171 }
172 else { //if (cMaxSldr==(CSliderCtrl*)pScrollBar) {
173 cMin = cMinSldr->GetPos() + base;
174 pView->cMin = cMin;
175 sntprintf(buf, LNAME, _T("%d"), cMin-base);
176 cMinEBox->SetWindowText(buf);
177 cMinEBox->UpdateWindow();
178 }
179
180 /*
181 if (render) {
182 pView->prevSBpos = -1;
183 pView->SetNewSurface(0);
184 pView->ExecRender();
185 }*/
186
187// CDialog::OnHScroll(nSBCode, nPos, pScrollBar);
188}
189
190
191
193{
194 // TODO: この位置にその他の検証用のコードを追加してください
195 CDialog::OnOK();
196
197 if (render) {
198 pView->prevSBpos = -1;
200 pView->ExecRender();
201 }
202}
203
204
205
207{
208 CDialog::OnCancel();
209
210 pView->cMax = oMax;
211 pView->cMin = oMin;
212
213 if (render) {
214 pView->prevSBpos = -1;
216 pView->ExecRender();
217 }
218}
219
static char THIS_FILE[]
コントラスト調整ダイアログ
afx_msg void OnChangeCntCntMax()
afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar *pScrollBar)
virtual void OnCancel()
CSliderCtrl * cMaxSldr
Definition ContrastDLG.h:43
afx_msg void OnChangeCntCntMin()
virtual void OnOK()
CSliderCtrl * cMinSldr
Definition ContrastDLG.h:44
virtual void DoDataExchange(CDataExchange *pDX)
CContrastDLG(CExView *pview, BOOL rndr=TRUE, CWnd *pParent=NULL)
CExDocument * pDoc
Definition ExView.h:76
virtual void ExecRender()
Definition ExView.h:144
virtual BOOL SetNewSurface(int ovsbpos=0)
Definition ExView.h:141
#define IDC_CNT_SLIDER_CNTMAX
Definition resource.h:23
#define IDC_CNT_CNTMAX
Definition resource.h:24
#define IDC_CNT_SLIDER_CNTMIN
Definition resource.h:25
#define IDC_CNT_CNTMIN
Definition resource.h:26