~jil26/fabathome-model1/FabInterpreter

« back to all changes in this revision

Viewing changes to software/projects/FabStudio v0/Fab@Home Studio/scbarcf.h

  • Committer: jil26
  • Date: 2010-03-17 09:27:31 UTC
  • Revision ID: svn-v4:02918aed-e80b-b844-b231-15c4a9332dc2:trunk:7
Added FabStudio v0 to the repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/////////////////////////////////////////////////////////////////////////
 
2
//
 
3
// CSizingControlBarCF          Version 2.44
 
4
// 
 
5
// Created: Dec 21, 1998        Last Modified: March 31, 2002
 
6
//
 
7
// See the official site at www.datamekanix.com for documentation and
 
8
// the latest news.
 
9
//
 
10
/////////////////////////////////////////////////////////////////////////
 
11
// Copyright (C) 1998-2002 by Cristi Posea. All rights reserved.
 
12
//
 
13
// This code is free for personal and commercial use, providing this 
 
14
// notice remains intact in the source files and all eventual changes are
 
15
// clearly marked with comments.
 
16
//
 
17
// You must obtain the author's consent before you can include this code
 
18
// in a software library.
 
19
//
 
20
// No warrantee of any kind, express or implied, is included with this
 
21
// software; use at your own risk, responsibility for damages (if any) to
 
22
// anyone resulting from the use of this software rests entirely with the
 
23
// user.
 
24
//
 
25
// Send bug reports, bug fixes, enhancements, requests, flames, etc. to
 
26
// cristi@datamekanix.com or post them at the message board at the site.
 
27
/////////////////////////////////////////////////////////////////////////
 
28
 
 
29
#if !defined(__SCBARCF_H__)
 
30
#define __SCBARCF_H__
 
31
 
 
32
#if _MSC_VER >= 1000
 
33
#pragma once
 
34
#endif // _MSC_VER >= 1000
 
35
// scbarcf.h : header file
 
36
//
 
37
 
 
38
/////////////////////////////////////////////////////////////////////////
 
39
// CSizingControlBarCF
 
40
 
 
41
#ifndef baseCSizingControlBarCF
 
42
#define baseCSizingControlBarCF CSizingControlBarG
 
43
#endif
 
44
 
 
45
class CSizingControlBarCF : public baseCSizingControlBarCF
 
46
{
 
47
    DECLARE_DYNAMIC(CSizingControlBarCF)
 
48
        
 
49
// Construction
 
50
public:
 
51
    CSizingControlBarCF();
 
52
 
 
53
// Overridables
 
54
    virtual void OnUpdateCmdUI(CFrameWnd* pTarget, BOOL bDisableIfNoHndler);
 
55
 
 
56
// Implementation
 
57
protected:
 
58
    // implementation helpers
 
59
    virtual void NcPaintGripper(CDC* pDC, CRect rcClient);
 
60
 
 
61
protected:
 
62
    BOOL    m_bActive; // a child has focus
 
63
    CString m_sFontFace;
 
64
 
 
65
// Generated message map functions
 
66
protected:
 
67
    //{{AFX_MSG(CSizingControlBarCF)
 
68
    //}}AFX_MSG
 
69
    afx_msg LRESULT OnSetText(WPARAM wParam, LPARAM lParam);
 
70
 
 
71
    DECLARE_MESSAGE_MAP()
 
72
};
 
73
 
 
74
/////////////////////////////////////////////////////////////////////////
 
75
 
 
76
#endif // !defined(__SCBARCF_H__)