ShaderEditorDlg.h
资源名称:bfyy.rar [点击查看]
上传用户:tangyu_668
上传日期:2014-02-27
资源大小:678k
文件大小:2k
源码类别:
多媒体编程
开发平台:
Visual C++
- #pragma once
- #include "....subpicISubPic.h"
- #include "LineNumberEdit.h"
- #include "ShaderAutoCompleteDlg.h"
- #include "mplayerc.h"
- // Q174667
- class CShaderLabelComboBox : public CComboBox
- {
- public:
- CEdit m_edit;
- DECLARE_MESSAGE_MAP()
- afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
- afx_msg void OnDestroy();
- };
- class CShaderEdit : public CLineNumberEdit
- {
- int m_nEndChar;
- UINT m_nIDEvent;
- public:
- CShaderEdit();
- ~CShaderEdit();
- CShaderAutoCompleteDlg m_acdlg;
- DECLARE_MESSAGE_MAP()
- afx_msg void OnUpdate();
- afx_msg void OnKillFocus(CWnd* pNewWnd);
- afx_msg void OnTimer(UINT nIDEvent);
- virtual BOOL PreTranslateMessage(MSG* pMsg);
- };
- // CShaderEditorDlg dialog
- class CPixelShaderCompiler;
- class CShaderEditorDlg : public CResizableDialog
- {
- private:
- UINT m_nIDEventShader;
- bool m_fSplitterGrabbed;
- bool HitTestSplitter(CPoint p);
- CPixelShaderCompiler* m_pPSC;
- AppSettings::Shader* m_pShader;
- public:
- CShaderEditorDlg(); // standard constructor
- virtual ~CShaderEditorDlg();
- BOOL Create(CWnd* pParent = NULL);
- // Dialog Data
- enum { IDD = IDD_SHADEREDITOR_DLG };
- CShaderLabelComboBox m_labels;
- CComboBox m_targets;
- CShaderEdit m_srcdata;
- CEdit m_output;
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- virtual BOOL PreTranslateMessage(MSG* pMsg);
- virtual void OnOK() {}
- virtual void OnCancel() {}
- DECLARE_MESSAGE_MAP()
- public:
- afx_msg void OnCbnSelchangeCombo1();
- afx_msg void OnBnClickedButton2();
- afx_msg void OnTimer(UINT nIDEvent);
- afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
- afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
- afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
- afx_msg void OnKillFocus(CWnd* pNewWnd);
- };