JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
CvThumbNailFrame Class Reference

#include <vThumbNailFrame.h>

Inheritance diagram for CvThumbNailFrame:
Collaboration diagram for CvThumbNailFrame:

Public Member Functions

virtual void onLButtonDBLClick ()
 
- Public Member Functions inherited from CExFrame
virtual BOOL Create (LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle=WS_CHILD|WS_VISIBLE|WS_OVERLAPPEDWINDOW|WS_CLIPCHILDREN, const RECT &rect=rectDefault, CMDIFrameWnd *pParentWnd=NULL, CCreateContext *pContext=NULL)
 
virtual ~CExFrame ()
 
afx_msg LRESULT OnEnterSizeMove (WPARAM wParam, LPARAM lParam)
 
afx_msg LRESULT OnExitSizeMove (WPARAM wParam, LPARAM lParam)
 
afx_msg BOOL OnEraseBkgnd (CDC *pDC)
 
afx_msg void OnSizing (UINT fwSide, LPRECT pRect)
 

Protected Member Functions

 CvThumbNailFrame ()
 
virtual ~CvThumbNailFrame ()
 
- Protected Member Functions inherited from CExFrame
 CExFrame ()
 

Additional Inherited Members

- Public Attributes inherited from CExFrame
CString Title
 
CString preTitle
 
int colorMode
 
CExDocumentpDoc
 
CExViewpView
 
CAppCallBackpApp
 
CMultiDocTemplate * pTempl
 
void * anyData
 
CExToolBartoolBar
 
CScrollBar * hScrollBar
 
CScrollBar * vScrollBar
 
bool doneErrorMessage
 
bool cancelOperation
 
bool reSizeMoving
 

Detailed Description

Definition at line 22 of file vThumbNailFrame.h.

Constructor & Destructor Documentation

◆ CvThumbNailFrame()

CvThumbNailFrame ( )
protected

Definition at line 25 of file vThumbNailFrame.cpp.

26{
27}

◆ ~CvThumbNailFrame()

~CvThumbNailFrame ( )
protectedvirtual

Definition at line 31 of file vThumbNailFrame.cpp.

32{
33}

Member Function Documentation

◆ onLButtonDBLClick()

void onLButtonDBLClick ( )
virtual

Reimplemented from CExFrame.

Definition at line 51 of file vThumbNailFrame.cpp.

52{
53 POINT pt = pView->GetMousePos();
54 if (pt.x<0 || pt.y<0) return;
55 pt.y = pt.y + pView->vSBpos;
56
57 int n = ((CvThumbNailDoc*)pDoc)->GetTNailNum(pt) - 1;
58
59 if (n>=0) {
61
62 // Plane毎に色が分かれている場合は Plane(8bit)毎に表示
64 if (colorMode==GRAPH_COLOR_RGB || colorMode==GRAPH_COLOR_BGR ||
65 colorMode==GRAPH_COLOR_XRGB || colorMode==GRAPH_COLOR_ARGB || colorMode==GRAPH_COLOR_RGBA ||
66 colorMode==GRAPH_COLOR_XBGR || colorMode==GRAPH_COLOR_ABGR || colorMode==GRAPH_COLOR_BGRA) {
67 colorMode = GRAPH_COLOR_MONO; // Plane毎に色が分かれている場合は Plane(8bit)毎に表示
68 }
69
70 CMultiDocTemplate* ptemp = pApp->GetMultiDocTemplate(APP_TEMPL_VTHUMBNAILFRAME);
71 ExecTemplate(ptemp, &pDoc->msGraph, NULL, this, n);
72
73 /*
74 pApp->callMSGraph.setup(pDoc->msGraph.xs, pDoc->msGraph.ys, 1);
75 if (pApp->callMSGraph.isNull()) return;
76 for (int i=0; i<pDoc->msGraph.xs*pDoc->msGraph.ys; i++) {
77 pApp->callMSGraph.gp[i] = pDoc->msGraph.gp[(n-1)*pDoc->msGraph.xs*pDoc->msGraph.ys + i];
78 }
79 pApp->TemplateCallBack(this, APP_CALLBACK_2D);
80 pApp->callMSGraph.init();
81 */
82 }
83}
#define APP_TEMPL_VTHUMBNAILFRAME
Definition appCallBack.h:16
virtual CMultiDocTemplate * GetMultiDocTemplate(int mode)
Definition ExClass.h:57
ExMSGraph< sWord > msGraph
Definition ExDocument.h:52
CExView * pView
Definition ExFrame.h:42
CAppCallBack * pApp
Definition ExFrame.h:43
CExDocument * pDoc
Definition ExFrame.h:41
POINT GetMousePos()
Definition ExView.cpp:303
int ExecTemplate(CMultiDocTemplate *ptemp, ExMSGraph< sWord > *pmsGraph=NULL, ExCmnHead *pcmnHead=NULL, CExFrame *prntFrm=NULL, int vPoint=0)
Definition ExClass.cpp:187

References APP_TEMPL_VTHUMBNAILFRAME, CExFrame::colorMode, and jbxwl::ExecTemplate().

Here is the call graph for this function:

The documentation for this class was generated from the following files: