oneDlg.cpp 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. // oneDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "one.h"
  5. #include "oneDlg.h"
  6. #include "Picture.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. extern COneApp theApp;//james???
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CAboutDlg dialog used for App About
  15. class CAboutDlg : public CDialog
  16. {
  17. public:
  18. CAboutDlg();
  19. // Dialog Data
  20. //{{AFX_DATA(CAboutDlg)
  21. enum { IDD = IDD_ABOUTBOX };
  22. //}}AFX_DATA
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CAboutDlg)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. //{{AFX_MSG(CAboutDlg)
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  35. {
  36. //{{AFX_DATA_INIT(CAboutDlg)
  37. //}}AFX_DATA_INIT
  38. }
  39. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CDialog::DoDataExchange(pDX);
  42. //{{AFX_DATA_MAP(CAboutDlg)
  43. //}}AFX_DATA_MAP
  44. }
  45. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  46. //{{AFX_MSG_MAP(CAboutDlg)
  47. // No message handlers
  48. //}}AFX_MSG_MAP
  49. END_MESSAGE_MAP()
  50. /////////////////////////////////////////////////////////////////////////////
  51. // COneDlg dialog
  52. COneDlg::COneDlg(CWnd* pParent /*=NULL*/)
  53. : CDialog(COneDlg::IDD, pParent)
  54. {
  55. //{{AFX_DATA_INIT(COneDlg)
  56. // NOTE: the ClassWizard will add member initialization here
  57. //}}AFX_DATA_INIT
  58. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  59. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  60. }
  61. void COneDlg::DoDataExchange(CDataExchange* pDX)
  62. {
  63. CDialog::DoDataExchange(pDX);
  64. //{{AFX_DATA_MAP(COneDlg)
  65. // NOTE: the ClassWizard will add DDX and DDV calls here
  66. //}}AFX_DATA_MAP
  67. }
  68. BEGIN_MESSAGE_MAP(COneDlg, CDialog)
  69. //{{AFX_MSG_MAP(COneDlg)
  70. ON_WM_SYSCOMMAND()
  71. ON_WM_PAINT()
  72. ON_WM_QUERYDRAGICON()
  73. ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
  74. ON_BN_CLICKED(IDC_BUTTON2, OnButton2)
  75. ON_BN_CLICKED(IDC_BUTTON3, OnButton3)
  76. ON_BN_CLICKED(IDC_BUTTON4, OnButton4)
  77. //}}AFX_MSG_MAP
  78. END_MESSAGE_MAP()
  79. /////////////////////////////////////////////////////////////////////////////
  80. // COneDlg message handlers
  81. BOOL COneDlg::OnInitDialog()
  82. {
  83. CDialog::OnInitDialog();
  84. // Add "About..." menu item to system menu.
  85. // IDM_ABOUTBOX must be in the system command range.
  86. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  87. ASSERT(IDM_ABOUTBOX < 0xF000);
  88. CMenu* pSysMenu = GetSystemMenu(FALSE);
  89. if (pSysMenu != NULL)
  90. {
  91. CString strAboutMenu;
  92. strAboutMenu.LoadString(IDS_ABOUTBOX);
  93. if (!strAboutMenu.IsEmpty())
  94. {
  95. pSysMenu->AppendMenu(MF_SEPARATOR);
  96. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  97. }
  98. }
  99. // Set the icon for this dialog. The framework does this automatically
  100. // when the application's main window is not a dialog
  101. SetIcon(m_hIcon, TRUE); // Set big icon
  102. SetIcon(m_hIcon, FALSE); // Set small icon
  103. // TODO: Add extra initialization here
  104. //----------------------------------------------------
  105. try
  106. {
  107. m_pRecordset.CreateInstance("ADODB.Recordset");
  108. m_pRecordset->Open("SELECT * FROM jlab ORDER BY id",_variant_t((IDispatch*)theApp.m_pConnection,true),adOpenStatic,adLockOptimistic,adCmdText);
  109. }
  110. catch(_com_error e)///捕捉异常
  111. {
  112. AfxMessageBox("读取数据库失败!");///显示错误信息
  113. }
  114. //-----------------------------------------------------
  115. return TRUE; // return TRUE unless you set the focus to a control
  116. }
  117. void COneDlg::OnSysCommand(UINT nID, LPARAM lParam)
  118. {
  119. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  120. {
  121. CAboutDlg dlgAbout;
  122. dlgAbout.DoModal();
  123. }
  124. else
  125. {
  126. CDialog::OnSysCommand(nID, lParam);
  127. }
  128. }
  129. // If you add a minimize button to your dialog, you will need the code below
  130. // to draw the icon. For MFC applications using the document/view model,
  131. // this is automatically done for you by the framework.
  132. void COneDlg::OnPaint()
  133. {
  134. if (IsIconic())
  135. {
  136. CPaintDC dc(this); // device context for painting
  137. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  138. // Center icon in client rectangle
  139. int cxIcon = GetSystemMetrics(SM_CXICON);
  140. int cyIcon = GetSystemMetrics(SM_CYICON);
  141. CRect rect;
  142. GetClientRect(&rect);
  143. int x = (rect.Width() - cxIcon + 1) / 2;
  144. int y = (rect.Height() - cyIcon + 1) / 2;
  145. // Draw the icon
  146. dc.DrawIcon(x, y, m_hIcon);
  147. }
  148. else
  149. {
  150. CClientDC dc(this);
  151. m_Pic.UpdateSizeOnDC(&dc); // Get Picture Dimentions In Pixels
  152. m_Pic.Show(&dc, CRect(0,50,m_Pic.m_Width,50+m_Pic.m_Height) );
  153. CDialog::OnPaint();
  154. }
  155. }
  156. // The system calls this to obtain the cursor to display while the user drags
  157. // the minimized window.
  158. HCURSOR COneDlg::OnQueryDragIcon()
  159. {
  160. return (HCURSOR) m_hIcon;
  161. }
  162. void COneDlg::OnButton1() //-----------jpg存入库并显示-------------
  163. {
  164. // TODO: Add your control notification handler code here
  165. CFile f;
  166. CString FilePathName;
  167. CFileException e;
  168. CFileDialog dlg(TRUE,NULL,NULL,0,"jpg Files (*.jpg)|*.jpg||",this);///TRUE为OPEN对话框,FALSE为SAVE AS对话框
  169. if(dlg.DoModal()==IDOK)
  170. {
  171. FilePathName=dlg.GetPathName();
  172. if(m_Pic.m_IPicture != NULL) m_Pic.FreePictureData(); // Important - Avoid Leaks...
  173. if(f.Open(FilePathName, CFile::modeRead | CFile::typeBinary, &e)) //打开了一个jpg文件
  174. {
  175. int nSize = f.GetLength(); //先得到jpg文件长度
  176. BYTE * pBuffer = new BYTE [nSize]; //按文件的大小在堆上申请一块内存
  177. if (f.Read(pBuffer, nSize) > 0 ) //把jpg文件读到pBuffer(堆上申请一块内存)
  178. { // +----------------------------------------------
  179. BYTE *pBuf = pBuffer; ///下面这一大段是把pBuffer里的jpg数据放到库中
  180. VARIANT varBLOB;
  181. SAFEARRAY *psa;
  182. SAFEARRAYBOUND rgsabound[1];
  183. m_pRecordset->AddNew();
  184. if(pBuf)
  185. {
  186. rgsabound[0].lLbound = 0;
  187. rgsabound[0].cElements = nSize;
  188. psa = SafeArrayCreate(VT_UI1, 1, rgsabound);
  189. for (long i = 0; i < (long)nSize; i++)
  190. SafeArrayPutElement (psa, &i, pBuf++);
  191. varBLOB.vt = VT_ARRAY | VT_UI1;
  192. varBLOB.parray = psa;
  193. m_pRecordset->GetFields()->GetItem("j")->AppendChunk(varBLOB);
  194. }
  195. m_pRecordset->Update();
  196. // +----------------------------------------------
  197. (m_Pic.LoadPictureData(pBuffer, nSize));//接作调用函数读pBuffer的jpg数据准备显示
  198. delete [] pBuffer; //删掉堆上申请的那一块内存
  199. pBuf=0; //以防二次乱用
  200. }
  201. f.Close();
  202. }
  203. CClientDC dc(this);
  204. m_Pic.UpdateSizeOnDC(&dc); // Get Picture Dimentions In Pixels
  205. m_Pic.Show(&dc, CRect(0,50,m_Pic.m_Width,50+m_Pic.m_Height) ); //显示出来看看
  206. }
  207. //Invalidate();
  208. }
  209. void COneDlg::OnButton2() //----------------从库中提取并显示------------
  210. {
  211. try
  212. {
  213. //m_pRecordset->MoveFirst();
  214. long nSize = m_pRecordset->GetFields()->GetItem("j")->ActualSize;
  215. if(nSize > 0)
  216. {
  217. _variant_t varBLOB;
  218. varBLOB = m_pRecordset->GetFields()->GetItem("j")->GetChunk(nSize);
  219. if(varBLOB.vt == (VT_ARRAY | VT_UI1))
  220. {
  221. if(BYTE *pBuffer = new BYTE [nSize+1]) ///重新申请必要的存储空间
  222. {
  223. char *pBuf = NULL;
  224. SafeArrayAccessData(varBLOB.parray,(void **)&pBuf);
  225. memcpy(pBuffer,pBuf,nSize); ///复制数据到缓冲区m_pBMPBuffer
  226. SafeArrayUnaccessData (varBLOB.parray);
  227. // int nSize = lDataSize;
  228. (m_Pic.LoadPictureData(pBuffer, nSize));
  229. delete [] pBuffer;
  230. pBuf=0;
  231. ///生成BITMAP对象
  232. CClientDC dc(this);
  233. m_Pic.UpdateSizeOnDC(&dc); // Get Picture Dimentions In Pixels
  234. m_Pic.Show(&dc, CRect(0,50,m_Pic.m_Width,50+m_Pic.m_Height) );
  235. }
  236. }
  237. }
  238. }
  239. catch (_com_error e)
  240. {
  241. }
  242. }
  243. void COneDlg::OnButton3()
  244. {
  245. try
  246. {
  247. if(m_pRecordset->adoEOF)
  248. {
  249. m_pRecordset->MovePrevious(); //选上一个jpg
  250. m_pRecordset->MovePrevious(); //选上一个jpg
  251. OnButton2();
  252. }
  253. else
  254. {
  255. m_pRecordset->MovePrevious(); //选上一个jpg
  256. OnButton2();
  257. }
  258. }
  259. catch (_com_error e)
  260. {
  261. e.Description();
  262. }
  263. }
  264. void COneDlg::OnButton4()
  265. {
  266. try
  267. {
  268. if(m_pRecordset->BOF)
  269. {
  270. m_pRecordset->MoveNext(); //选上一个jpg
  271. m_pRecordset->MoveNext(); //选上一个jpg
  272. OnButton2();
  273. }
  274. else
  275. {
  276. m_pRecordset->MoveNext(); //选上一个jpg
  277. OnButton2();
  278. }
  279. }
  280. catch (_com_error e) {
  281. }
  282. }