Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
DYNSPLITTERWND.H
Package: 1matlab.rar [view]
Upload User: jjlianmen
Upload Date: 2022-08-03
Package Size: 157k
Code Size: 2k
Category:
Special Effects
Development Platform:
Matlab
- //
- // SAGA Incorporated (saga@gis.net) MFC Goodies
- // Developed by Andrew Slivker for www.codeguru.com
- //
- //
- // CDynSplitterWnd.h : header file
- //
- // Version: 1.0
- // Revision: 02/03/98
- #ifndef _DYN_SPLITTER_H
- #define _DYN_SPLITTER_H
- // DynSplitterWnd.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CDynSplitterWnd window
- class CDynSplitterWnd : public CSplitterWnd
- {
- // Construction
- public:
- CDynSplitterWnd();
- // Attributes
- public:
- BOOL IsDynamic()
- { return m_bDynSplit; }
- void SetDynamic(BOOL bDynSplit = TRUE)
- { m_bDynSplit = bDynSplit; }
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CDynSplitterWnd)
- virtual void OnInvertTracker(const CRect& rect);
- virtual void StartTracking(int ht);
- virtual void StopTracking(BOOL bAccept);
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CDynSplitterWnd();
- protected:
- CPoint m_OldPoint;
- BOOL m_bDynSplit;
- enum HitTestValue
- {
- noHit = 0,
- vSplitterBox = 1,
- hSplitterBox = 2,
- bothSplitterBox = 3, // just for keyboard
- vSplitterBar1 = 101,
- vSplitterBar15 = 115,
- hSplitterBar1 = 201,
- hSplitterBar15 = 215,
- splitterIntersection1 = 301,
- splitterIntersection225 = 525
- };
- // Generated message map functions
- protected:
- //{{AFX_MSG(CDynSplitterWnd)
- afx_msg void OnMouseMove(UINT nFlags, CPoint point);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////
- #endif // _DYN_SPLITTER_H