diff src/win32/GBPaletteView.h @ 1:f9f4f1b99eed

importing src directory
author Robert McIntyre <rlm@mit.edu>
date Sat, 03 Mar 2012 10:31:27 -0600
parents
children
line wrap: on
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/win32/GBPaletteView.h	Sat Mar 03 10:31:27 2012 -0600
     1.3 @@ -0,0 +1,72 @@
     1.4 +#if !defined(AFX_GBPALETTEVIEW_H__F909FF55_3021_4301_B017_0C2C9D8D8C08__INCLUDED_)
     1.5 +#define AFX_GBPALETTEVIEW_H__F909FF55_3021_4301_B017_0C2C9D8D8C08__INCLUDED_
     1.6 +
     1.7 +#if _MSC_VER > 1000
     1.8 +#pragma once
     1.9 +#endif // _MSC_VER > 1000
    1.10 +// -*- C++ -*-
    1.11 +// GBPaletteView.h : header file
    1.12 +//
    1.13 +
    1.14 +#include "ColorControl.h"
    1.15 +#include "IUpdate.h"
    1.16 +#include "PaletteViewControl.h"
    1.17 +#include "ResizeDlg.h"
    1.18 +
    1.19 +class GBPaletteViewControl : public PaletteViewControl
    1.20 +{
    1.21 +public:
    1.22 +	virtual void updatePalette();
    1.23 +};
    1.24 +
    1.25 +/////////////////////////////////////////////////////////////////////////////
    1.26 +// GBPaletteView dialog
    1.27 +
    1.28 +class GBPaletteView : public ResizeDlg, IUpdateListener
    1.29 +{
    1.30 +private:
    1.31 +	GBPaletteViewControl paletteView;
    1.32 +	GBPaletteViewControl paletteViewOBJ;
    1.33 +	ColorControl         colorControl;
    1.34 +	bool autoUpdate;
    1.35 +	// Construction
    1.36 +public:
    1.37 +	void save(int which);
    1.38 +	GBPaletteView(CWnd*pParent = NULL);  // standard constructor
    1.39 +	virtual ~GBPaletteView();
    1.40 +
    1.41 +	// Dialog Data
    1.42 +	//{{AFX_DATA(GBPaletteView)
    1.43 +	enum { IDD = IDD_GB_PALETTE_VIEW };
    1.44 +	// NOTE: the ClassWizard will add data members here
    1.45 +	//}}AFX_DATA
    1.46 +
    1.47 +	// Overrides
    1.48 +	// ClassWizard generated virtual function overrides
    1.49 +	//{{AFX_VIRTUAL(GBPaletteView)
    1.50 +protected:
    1.51 +	virtual void DoDataExchange(CDataExchange*pDX);   // DDX/DDV support
    1.52 +	virtual void PostNcDestroy();
    1.53 +	//}}AFX_VIRTUAL
    1.54 +
    1.55 +	virtual void update();
    1.56 +
    1.57 +	// Implementation
    1.58 +protected:
    1.59 +	afx_msg virtual LRESULT OnPalInfo(WPARAM wParam, LPARAM lParam);
    1.60 +	// Generated message map functions
    1.61 +	//{{AFX_MSG(GBPaletteView)
    1.62 +	virtual BOOL OnInitDialog();
    1.63 +	afx_msg void OnSaveBg();
    1.64 +	afx_msg void OnSaveObj();
    1.65 +	afx_msg void OnRefresh2();
    1.66 +	afx_msg void OnAutoUpdate();
    1.67 +	afx_msg void OnClose();
    1.68 +	//}}AFX_MSG
    1.69 +	DECLARE_MESSAGE_MAP()
    1.70 +};
    1.71 +
    1.72 +//{{AFX_INSERT_LOCATION}}
    1.73 +// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
    1.74 +
    1.75 +#endif // !defined(AFX_GBPALETTEVIEW_H__F909FF55_3021_4301_B017_0C2C9D8D8C08__INCLUDED_)