⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 slidwin.h

📁 miXo is a buzz machine (www.buzzmachines.com) - a plugin for the freely available jeskola buzz track
💻 H
字号:
// SlidWin.h: interface for the CSlidWin class.
// virtual base class for slider windows
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SLIDWIN_H__B3177000_4350_11D5_8DCF_F012B2B42227__INCLUDED_)
#define AFX_SLIDWIN_H__B3177000_4350_11D5_8DCF_F012B2B42227__INCLUDED_

#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000

#include "AbWin.h"
class CColGen;
class CSlidWin : public CAbWin  
{
public:
	CSlidWin();
	CSlidWin(const char *,CColGen*);
	CSlidWin(const CSlidWin &c);
	virtual const char *GetName() const { return "CSlidWin"; }
	virtual bool SetValue(float f) {return false;};
	virtual float GetValue() const {return 0.0;}
	virtual bool SetSmValue(float f){return false;};
	virtual bool DoUpdate() {return false;};
	virtual void ForceUpdate() {}
	virtual ~CSlidWin();
//	virtual bool OnWMPaint(HDC) {return false;};
	virtual DWORD GetClassStyle() const { return (CS_GLOBALCLASS|CS_BYTEALIGNCLIENT|CS_DBLCLKS|CS_PARENTDC); }
	virtual const char *GetTitle() const { return "SlidWin"; };
	virtual const char *GetClassName() const { return "CSlidWin"; };
	virtual DWORD GetExWinStyle() const { return (0);}
	virtual DWORD GetWinStyle() const { return (WS_VISIBLE|WS_CHILD|WS_CLIPSIBLINGS); }
	virtual HBRUSH GetBgBrush() const { return (HBRUSH)(COLOR_BACKGROUND + 1); } 
	virtual void SetGray(bool b) { }
	virtual bool GetGray() const { return false; }
	virtual void SetColorGen(CColGen *pcg) { }
	virtual void SetMonitor(bool b) { }
	virtual CColGen *GetColorGen() const { throw CAbException(::GetLastError(),__FILE__,__LINE__); return NULL; }
	virtual CSlidWin *New(const char *sz,CColGen *cg) { return new CSlidWin(sz,cg); }
	virtual CSlidWin *New() { return new CSlidWin(*this); }
//	virtual LRESULT WindowProc(HWND hWnd,UINT uMsg,WPARAM wParam,LPARAM lParam);
};

#endif // !defined(AFX_SLIDWIN_H__B3177000_4350_11D5_8DCF_F012B2B42227__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -