JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
vThumbNailDoc.h
Go to the documentation of this file.
1#pragma once
2
28#include "RwGRDoc.h"
29
30
31#define THUMBNAIL_SIZE 128
32
33
34//
35namespace jbxwl {
36
37
39// CvThumbNailDoc ドキュメント
40
41class CvThumbNailDoc : public CRwGRDoc //public CDocument
42{
43protected:
44 CvThumbNailDoc(); // 動的生成に使用されるプロテクト コンストラクタ.
46
47// アトリビュート
48public:
49 int tNailBorder; // サムネイル間のボーダサイズ(ピクセル)
50
51 int xTNailSize; // サムネイルの Xサイズ(ピクセル)
52 int yTNailSize; // サムネイルの Yサイズ(ピクセル)
53
54 int xTNailOrder; // ウィンドウの初期 Xサイズ(サムネイルの個数で指定)
55 int yTNailOrder; // ウィンドウの初期 Yサイズ(サムネイルの個数で指定)
56
57 int xClientSize; // クライントウィンドウの初期 Xサイズ(ピクセル)
58 int yClientSize; // クライントウィンドウの初期 Yサイズ(ピクセル)
59
60 int yMaxOrder; // クライントウィンドウの最大 Yサイズ(サムネイルの個数で指定)
61 int yMaxClientSize; // クライントウィンドウの最大 Yサイズ(ピクセル).作業メモリに関係する.
62
63// オペレーション
64public:
65// virtual BOOL MakeViewData();
66 virtual CmnHead TranslateData();
67
68 void SetSize(int txs, int tys, int bds, int vrs, int hrs, int ymx);
69 int GetTNailNum(POINT pt);
70
71// virtual void MouseCommand(POINT pt);
72
73// オーバーライド
74 //{{AFX_VIRTUAL(CvThumbNailDoc)
75 public:
76 virtual void Serialize(CArchive& ar);
77 //}}AFX_VIRTUAL
78
79// インプリメンテーション
80public:
81 virtual ~CvThumbNailDoc();
82#ifdef _DEBUG
83 virtual void AssertValid() const;
84 virtual void Dump(CDumpContext& dc) const;
85#endif
86
87protected:
88 //{{AFX_MSG(CvThumbNailDoc)
89 //}}AFX_MSG
91public:
92
93};
94
95
96//{{AFX_INSERT_LOCATION}}
97
98
99} // namespace
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()