annotate src/win32/GBMapView.h @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
rev   line source
rlm@1 1 #if !defined(AFX_GBMAPVIEW_H__4CD23D38_F2CD_4B95_AE76_2781591DD077__INCLUDED_)
rlm@1 2 #define AFX_GBMAPVIEW_H__4CD23D38_F2CD_4B95_AE76_2781591DD077__INCLUDED_
rlm@1 3
rlm@1 4 #if _MSC_VER > 1000
rlm@1 5 #pragma once
rlm@1 6 #endif // _MSC_VER > 1000
rlm@1 7 // -*- C++ -*-
rlm@1 8 // GBMapView.h : header file
rlm@1 9 //
rlm@1 10
rlm@1 11 #include "BitmapControl.h"
rlm@1 12 #include "ColorControl.h"
rlm@1 13 #include "ZoomControl.h"
rlm@1 14 #include "ResizeDlg.h"
rlm@1 15 #include "IUpdate.h"
rlm@1 16
rlm@1 17 /////////////////////////////////////////////////////////////////////////////
rlm@1 18 // GBMapView dialog
rlm@1 19
rlm@1 20 class GBMapView : public ResizeDlg, IUpdateListener
rlm@1 21 {
rlm@1 22 private:
rlm@1 23 BITMAPINFO bmpInfo;
rlm@1 24 u8 * data;
rlm@1 25 int bank;
rlm@1 26 int bg;
rlm@1 27 int w;
rlm@1 28 int h;
rlm@1 29 BitmapControl mapView;
rlm@1 30 ZoomControl mapViewZoom;
rlm@1 31 ColorControl color;
rlm@1 32 bool autoUpdate;
rlm@1 33 // Construction
rlm@1 34 public:
rlm@1 35 afx_msg LRESULT OnColInfo(WPARAM wParam, LPARAM lParam);
rlm@1 36 afx_msg LRESULT OnMapInfo(WPARAM wParam, LPARAM lParam);
rlm@1 37 u32 GetClickAddress(int x, int y);
rlm@1 38 void update();
rlm@1 39 void paint();
rlm@1 40 void render();
rlm@1 41 void savePNG(const char *name);
rlm@1 42 void saveBMP(const char *name);
rlm@1 43 ~GBMapView();
rlm@1 44 GBMapView(CWnd*pParent = NULL); // standard constructor
rlm@1 45
rlm@1 46 // Dialog Data
rlm@1 47 //{{AFX_DATA(GBMapView)
rlm@1 48 enum { IDD = IDD_GB_MAP_VIEW };
rlm@1 49 // NOTE: the ClassWizard will add data members here
rlm@1 50 //}}AFX_DATA
rlm@1 51
rlm@1 52 // Overrides
rlm@1 53 // ClassWizard generated virtual function overrides
rlm@1 54 //{{AFX_VIRTUAL(GBMapView)
rlm@1 55 protected:
rlm@1 56 virtual void DoDataExchange(CDataExchange*pDX); // DDX/DDV support
rlm@1 57 virtual void PostNcDestroy();
rlm@1 58 //}}AFX_VIRTUAL
rlm@1 59
rlm@1 60 // Implementation
rlm@1 61 protected:
rlm@1 62 // Generated message map functions
rlm@1 63 //{{AFX_MSG(GBMapView)
rlm@1 64 afx_msg void OnSave();
rlm@1 65 afx_msg void OnRefresh();
rlm@1 66 virtual BOOL OnInitDialog();
rlm@1 67 afx_msg void OnBg0();
rlm@1 68 afx_msg void OnBg1();
rlm@1 69 afx_msg void OnBank0();
rlm@1 70 afx_msg void OnBank1();
rlm@1 71 afx_msg void OnStretch();
rlm@1 72 afx_msg void OnAutoUpdate();
rlm@1 73 afx_msg void OnClose();
rlm@1 74 //}}AFX_MSG
rlm@1 75 DECLARE_MESSAGE_MAP()
rlm@1 76 };
rlm@1 77
rlm@1 78 //{{AFX_INSERT_LOCATION}}
rlm@1 79 // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
rlm@1 80
rlm@1 81 #endif // !defined(AFX_GBMAPVIEW_H__4CD23D38_F2CD_4B95_AE76_2781591DD077__INCLUDED_)