JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
DxGraphDoc.cpp
Go to the documentation of this file.
1//
2// CDxGraphDoc.cpp : インプリメンテーション ファイル
3//
4
5#include "MFCBase.h"
6#include "DxGraphDoc.h"
7
8
9#ifdef _DEBUG
10#define new DEBUG_NEW
11#undef THIS_FILE
12static char THIS_FILE[] = __FILE__;
13#endif
14
15
16using namespace jbxwl;
17
18
20// CDxGraphDoc
21
22IMPLEMENT_DYNCREATE(CDxGraphDoc, CExDocument)
23
24//
28
29
30//
34
35
36BEGIN_MESSAGE_MAP(CDxGraphDoc, CExDocument)
37 //{{AFX_MSG_MAP(CDxGraphDoc)
38 // メモ - ClassWizard はこの位置にマッピング用のマクロを追加または削除します.
39 //}}AFX_MSG_MAP
40END_MESSAGE_MAP()
41
42
43
44
45// CDxGraphDoc 診断
46
47#ifdef _DEBUG
52
53//
54void CDxGraphDoc::Dump(CDumpContext& dc) const
55{
57}
58#endif //_DEBUG
59
60
61
63// CDxGraphDoc シリアライズ
64
65void CDxGraphDoc::Serialize(CArchive& ar)
66{
67 if (ar.IsStoring())
68 {
69 // TODO: この位置に保存用のコードを追加してください
70 }
71 else
72 {
73 // TODO: この位置に読み込み用のコードを追加してください
74 }
75}
76
77
78
80// CDxGraphDoc コマンド
81
97{
98 char* fname = ts2mbs(str);
100 ::free(fname);
102
103 if (cmnHead.kind==HEADER_NONE) return FALSE;
104 return TRUE;
105}
106
107
109{
110// int kind = cmnHead.kind;
111// int chk = kind & 0x00ff;
112
113 if (!msGraph.isNull()) {
115
116 int mode = 0;
117 if (msGraph.color==GRAPH_COLOR_MONO || msGraph.color==GRAPH_COLOR_MONO16 || // 表示は 8bit
121 // 8bit/pixcel
123 }
124 if (ctrlCntrst || msGraph.color==GRAPH_COLOR_MONO16) {
126 }
127
128 //
130
131 //
132 cMax = vMax = msGraph.max;
133 cMin = vMin = msGraph.min;
135 // 16bit/pixcel
136 //vMax = cMax = UWORDMAX;
137 //vMin = cMin = 0;
138 }
139 else if (!ctrlCntrst && cMin>=0 && cMax<=VIEW_8_MAX) {
140 vMax = cMax = VIEW_8_MAX;
141 vMin = cMin = 0;
142 }
143 }
144
145 else { // DirectX9 サポートデータ(DirectX9に任せる)
148 if (FAILED(hr)) {
149 freeNull(cmnHead.grptr);
150 cmnHead.kind = HEADER_NONE;
151 return FALSE;
152 }
153 cmnHead.xsize = imgInfo.Width;
154 cmnHead.ysize = imgInfo.Height;
155 cmnHead.zsize = 1;
156 cmnHead.depth = imgInfo.Format;
157 cmnHead.bsize = sizeof(D3DXIMAGE_INFO);
158 cmnHead.buf = (uByte*)malloc(cmnHead.bsize);
159 if (cmnHead.buf==NULL) {
161 return FALSE;
162 }
163 bcopy((char*)&imgInfo, (char*)cmnHead.buf, cmnHead.bsize);
164 }
165 return TRUE;
166}
167
static char THIS_FILE[]
#define VIEW_8_MAX
Definition ExView.h:39
BOOL ReadDataFile(LPCTSTR fname)
virtual ~CDxGraphDoc()
virtual void Serialize(CArchive &ar)
virtual void AssertValid() const
virtual void Dump(CDumpContext &dc) const
ExCmnHead cmnHead
Definition ExDocument.h:53
ExMSGraph< sWord > msGraph
Definition ExDocument.h:52
virtual void AssertValid() const
virtual void Dump(CDumpContext &dc) const
char * ts2mbs(LPCTSTR str)
Definition WinTools.h:57