-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathLogSet.h
More file actions
131 lines (115 loc) · 3.73 KB
/
Copy pathLogSet.h
File metadata and controls
131 lines (115 loc) · 3.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
//Copyright+LGPL
//-----------------------------------------------------------------------------------------------------------------------------------------------
// Copyright 2000-2013 Makoto Mori, Nobuyuki Oba
//-----------------------------------------------------------------------------------------------------------------------------------------------
// This file is part of MMVARI.
// MMVARI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
// MMVARI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
// You should have received a copy of the GNU Lesser General Public License along with MMTTY. If not, see
// <http://www.gnu.org/licenses/>.
//-----------------------------------------------------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------
#ifndef LogSetH
#define LogSetH
//----------------------------------------------------------------------------
/* JA7UDE 0428
#include <vcl\System.hpp>
#include <vcl\Windows.hpp>
#include <vcl\SysUtils.hpp>
#include <vcl\Classes.hpp>
#include <vcl\Graphics.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\Controls.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\ExtCtrls.hpp>
#include <vcl\ComCtrls.hpp>
*/
//----------------------------------------------------------------------------
#include "LogFile.h"
#include "MMLink.h"
#include <Classes.hpp>
#include <ComCtrls.hpp>
#include <Controls.hpp>
#include <ExtCtrls.hpp>
#include <StdCtrls.hpp>
//----------------------------------------------------------------------------
class TLogSetDlg : public TForm
{
__published:
TButton *OKBtn;
TButton *CancelBtn;
TPageControl *Page;
TTabSheet *TabFlag;
TGroupBox *GrpConv;
TCheckBox *UpperName;
TCheckBox *UpperQTH;
TCheckBox *UpperREM;
TCheckBox *UpperQSL;
TGroupBox *GrpCopy;
TCheckBox *CopyName;
TCheckBox *CopyQTH;
TCheckBox *CopyREM;
TCheckBox *CopyQSL;
TRadioGroup *CopyHis;
TRadioGroup *CopyFreq;
TGroupBox *GB5;
TCheckBox *DefMyRST;
TRadioGroup *TimeZone;
TTabSheet *TabConv;
TGroupBox *GB1;
TGroupBox *GB2;
TCheckBox *ClipRSTADIF;
TTabSheet *TabMisc;
TGroupBox *GTime;
TEdit *TimeOff;
TUpDown *UDOffset;
TRadioGroup *DateType;
TEdit *MinOff;
TUpDown *UDMin;
TLabel *Label4;
TLabel *Label5;
TButton *ClearOff;
TCheckBox *AutoSave;
TCheckBox *AutoZone;
TGroupBox *GB3;
TRadioGroup *RGLink;
TCheckBox *CBPoll;
TRadioGroup *THTZ;
TRadioGroup *RGDupe;
TLabel *LLink;
TCheckBox *CBRemC;
TComboBox *CBMMLink;
TLabel *LT;
TCheckBox *CBBackup;
TLabel *LH;
TCheckBox *CBPTT;
TGroupBox *GB9;
TLabel *Label2;
TEdit *THRTTY;
TLabel *Label3;
TEdit *THSSTV;
TLabel *L10;
TEdit *THGMSK;
void __fastcall ClearOffClick(TObject *Sender);
void __fastcall AutoZoneClick(TObject *Sender);
void __fastcall RGLinkClick(TObject *Sender);
private:
int m_DisEvent;
TNotifyEvent m_fnHintProc;
// AnsiString m_MacroStr[5];
// WORD m_MacroKey[5];
CMMList m_MMList;
void __fastcall MacroBtnClick(int n);
void __fastcall UpdateUI(void);
public:
virtual __fastcall TLogSetDlg(TComponent* AOwner);
void __fastcall DisplayHint(TObject *Sender);
int __fastcall Execute(void);
};
//----------------------------------------------------------------------------
//extern TLogSetDlg *LogSetDlg;
//----------------------------------------------------------------------------
#endif