Develop and Download Open Source Software

Browse Subversion Repository

Annotation of /branches/ttcomtester/teraterm/teraterm/tekwin.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6841 - (hide annotations) (download) (as text)
Tue Jul 4 15:02:28 2017 UTC (6 years, 9 months ago) by doda
Original Path: trunk/teraterm/teraterm/tekwin.h
File MIME type: text/x-chdr
File size: 4225 byte(s)
TeraTerm Project としてのライセンス表記を追加

・Tera Term 本体分を横 80 桁に収まるように改行位置を調整
・ttssh 関連の分を追加
1 doda 6806 /*
2     * Copyright (C) 1994-1998 T. Teranishi
3     * (C) 2006-2017 TeraTerm Project
4     * All rights reserved.
5     *
6 doda 6841 * Redistribution and use in source and binary forms, with or without
7     * modification, are permitted provided that the following conditions
8     * are met:
9 doda 6806 *
10 doda 6841 * 1. Redistributions of source code must retain the above copyright
11     * notice, this list of conditions and the following disclaimer.
12     * 2. Redistributions in binary form must reproduce the above copyright
13     * notice, this list of conditions and the following disclaimer in the
14     * documentation and/or other materials provided with the distribution.
15     * 3. The name of the author may not be used to endorse or promote products
16     * derived from this software without specific prior written permission.
17 doda 6806 *
18 doda 6841 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
19     * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20     * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21     * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22     * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23     * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24     * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25     * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26     * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27     * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 doda 6806 */
29 maya 3227
30     /* TERATERM.EXE, TEK window */
31    
32     /////////////////////////////////////////////////////////////////////////////
33     // CTEKWindow
34    
35     class CTEKWindow : public CFrameWnd
36     {
37     private:
38     TTEKVar tk;
39     #ifndef NO_I18N
40     HMENU MainMenu, EditMenu, WinMenu,
41     FileMenu, SetupMenu, HelpMenu;
42     #else
43     HMENU MainMenu, EditMenu, WinMenu;
44     #endif
45    
46     public:
47     CTEKWindow();
48     int Parse();
49     void RestoreSetup();
50     void InitMenu(HMENU *Menu);
51     void InitMenuPopup(HMENU SubMenu);
52    
53     protected:
54    
55     public:
56     //{{AFX_VIRTUAL(CTEKWindow)
57     protected:
58     virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
59     virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
60     //}}AFX_VIRTUAL
61    
62     protected:
63     //{{AFX_MSG(CTEKWindow)
64     afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
65     afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
66     afx_msg void OnDestroy();
67 doda 6801 afx_msg void OnGetMinMaxInfo(MINMAXINFO *lpMMI);
68 maya 3227 afx_msg void OnInitMenuPopup(CMenu* pPopupMenu, UINT nIndex, BOOL bSysMenu);
69     afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
70     afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
71     afx_msg void OnKillFocus(CWnd* pNewWnd);
72     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
73     afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
74     afx_msg void OnMButtonUp(UINT nFlags, CPoint point);
75     afx_msg int OnMouseActivate(CWnd* pDesktopWnd, UINT nHitTest, UINT message);
76     afx_msg void OnMouseMove(UINT nFlags, CPoint point);
77     afx_msg void OnMove(int x, int y);
78     afx_msg void OnPaint();
79     afx_msg void OnRButtonUp(UINT nFlags, CPoint point);
80     afx_msg void OnSetFocus(CWnd* pOldWnd);
81     afx_msg void OnSize(UINT nType, int cx, int cy);
82     afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
83     afx_msg void OnSysKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
84     afx_msg void OnSysKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
85     afx_msg void OnTimer(UINT nIDEvent);
86     afx_msg LONG OnAccelCommand(UINT wParam, LONG lParam);
87     afx_msg LONG OnChangeMenu(UINT wParam, LONG lParam);
88     afx_msg LONG OnChangeTBar(UINT wParam, LONG lParam);
89     afx_msg LONG OnDlgHelp(UINT wParam, LONG lParam);
90     afx_msg LONG OnGetSerialNo(UINT wParam, LONG lParam);
91     afx_msg void OnFilePrint();
92     afx_msg void OnFileExit();
93     afx_msg void OnEditCopy();
94     afx_msg void OnEditCopyScreen();
95     afx_msg void OnEditPaste();
96     afx_msg void OnEditPasteCR();
97     afx_msg void OnEditClearScreen();
98     afx_msg void OnSetupWindow();
99     afx_msg void OnSetupFont();
100     afx_msg void OnVTWin();
101     afx_msg void OnWindowWindow();
102     afx_msg void OnHelpIndex();
103     afx_msg void OnHelpUsing();
104     afx_msg void OnHelpAbout();
105     //}}AFX_MSG
106     DECLARE_MESSAGE_MAP()
107     };

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26