Develop and Download Open Source Software

Browse Subversion Repository

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10521 - (hide annotations) (download) (as text)
Fri Jan 20 16:03:38 2023 UTC (14 months, 2 weeks ago) by zmatsuo
File MIME type: text/x-chdr
File size: 3528 byte(s)
add communication test tool
1 doda 6806 /*
2 nmaya 9048 * (C) 2008- TeraTerm Project
3 doda 6806 * All rights reserved.
4     *
5 doda 6841 * Redistribution and use in source and binary forms, with or without
6     * modification, are permitted provided that the following conditions
7     * are met:
8 doda 6806 *
9 doda 6841 * 1. Redistributions of source code must retain the above copyright
10     * notice, this list of conditions and the following disclaimer.
11     * 2. Redistributions in binary form must reproduce the above copyright
12     * notice, this list of conditions and the following disclaimer in the
13     * documentation and/or other materials provided with the distribution.
14     * 3. The name of the author may not be used to endorse or promote products
15     * derived from this software without specific prior written permission.
16 doda 6806 *
17 doda 6841 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
18     * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19     * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20     * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
21     * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22     * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23     * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24     * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25     * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26     * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 doda 6806 */
28    
29 maya 3227 #pragma once
30    
31 zmatsuo 7525 #include "tmfc.h"
32 zmatsuo 9883 #include "tmfc_propdlg.h"
33 maya 3227 #include "tt_res.h"
34 yutakapon 6119 #include "teraterm.h"
35 yasuhide 8143 #include "tipwin.h"
36 maya 3227
37     typedef struct {
38 zmatsuo 7525 const char *name;
39 maya 3227 LPCTSTR id;
40     } mouse_cursor_t;
41    
42 zmatsuo 7525 extern const mouse_cursor_t MouseCursor[];
43 maya 3227
44 maya 3777 // Control Sequence Page
45 zmatsuo 7525 class CSequencePropPageDlg : public TTCPropertyPage
46 maya 3777 {
47     public:
48 zmatsuo 8761 CSequencePropPageDlg(HINSTANCE inst);
49 maya 3777 virtual ~CSequencePropPageDlg();
50 zmatsuo 7525 private:
51     void OnInitDialog();
52 maya 3777 void OnOK();
53     enum { IDD = IDD_TABSHEET_SEQUENCE };
54 zmatsuo 7525 BOOL OnCommand(WPARAM wParam, LPARAM lParam);
55 zmatsuo 8017 void OnHelp();
56 maya 3227 };
57    
58     // Copypaste Page
59 zmatsuo 7525 class CCopypastePropPageDlg : public TTCPropertyPage
60 maya 3227 {
61     public:
62 zmatsuo 8761 CCopypastePropPageDlg(HINSTANCE inst);
63 maya 3227 virtual ~CCopypastePropPageDlg();
64 zmatsuo 7525 private:
65     void OnInitDialog();
66 maya 3227 void OnOK();
67     enum { IDD = IDD_TABSHEET_COPYPASTE };
68 zmatsuo 7525 BOOL OnCommand(WPARAM wParam, LPARAM lParam);
69 zmatsuo 8017 void OnHelp();
70 maya 3227 };
71    
72     // Cygwin Page
73 zmatsuo 10179 extern "C" {
74     typedef struct cygterm {
75     char term[128];
76     char term_type[80];
77     char port_start[80];
78     char port_range[80];
79     char shell[80];
80     char env1[128];
81     char env2[128];
82     BOOL login_shell;
83     BOOL home_chdir;
84     BOOL agent_proxy;
85     } cygterm_t;
86    
87     void ReadCygtermConfFile(const char *homedir, cygterm_t *psettings);
88     BOOL WriteCygtermConfFile(const char *homedir, cygterm_t *psettings);
89     BOOL CmpCygtermConfFile(const cygterm_t *a, const cygterm_t *b);
90     }
91    
92 zmatsuo 7525 class CCygwinPropPageDlg : public TTCPropertyPage
93 maya 3227 {
94     public:
95 zmatsuo 8761 CCygwinPropPageDlg(HINSTANCE inst);
96 maya 3227 virtual ~CCygwinPropPageDlg();
97 zmatsuo 7525 private:
98     void OnInitDialog();
99 maya 3227 void OnOK();
100     enum { IDD = IDD_TABSHEET_CYGWIN };
101     cygterm_t settings;
102 zmatsuo 7525 BOOL OnCommand(WPARAM wParam, LPARAM lParam);
103 zmatsuo 8017 void OnHelp();
104 maya 3227 };
105    
106 zmatsuo 9882 // AddSetting Property Sheet
107     class CAddSettingPropSheetDlg: public TTCPropSheetDlg
108     {
109     public:
110     CAddSettingPropSheetDlg(HINSTANCE hInstance, HWND hParentWnd);
111     ~CAddSettingPropSheetDlg();
112 zmatsuo 10059 enum Page {
113     DefaultPage,
114     FontPage,
115     };
116     void SetStartPage(Page page);
117 zmatsuo 9882
118     private:
119     int m_PageCountCPP;
120     TTCPropertyPage *m_Page[7];
121     };

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