mirror of
https://github.com/n5ac/mmtty.git
synced 2025-12-06 04:12:03 +01:00
68 lines
3.1 KiB
C++
68 lines
3.1 KiB
C++
//Copyright+LGPL
|
|
|
|
//-----------------------------------------------------------------------------------------------------------------------------------------------
|
|
// Copyright 2000-2013 Makoto Mori, Nobuyuki Oba
|
|
//-----------------------------------------------------------------------------------------------------------------------------------------------
|
|
// This file is part of MMTTY.
|
|
|
|
// MMTTY 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.
|
|
|
|
// MMTTY 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/>.
|
|
//-----------------------------------------------------------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
#include <vcl.h>
|
|
#pragma hdrstop
|
|
|
|
#include "VerDsp.h"
|
|
#include "ComLib.h"
|
|
//---------------------------------------------------------------------
|
|
#pragma resource "*.dfm"
|
|
//TVerDspDlg *VerDspDlg;
|
|
//---------------------------------------------------------------------
|
|
__fastcall TVerDspDlg::TVerDspDlg(TComponent* AOwner)
|
|
: TForm(AOwner)
|
|
{
|
|
IconImage->Picture->Assign(Application->Icon);
|
|
FormStyle = ((TForm *)AOwner)->FormStyle;
|
|
Font->Name = ((TForm *)AOwner)->Font->Name;
|
|
Font->Charset = ((TForm *)AOwner)->Font->Charset;
|
|
// Version->Font->Name = ((TForm *)AOwner)->Font->Name;
|
|
// Version->Font->Charset = ((TForm *)AOwner)->Font->Charset;
|
|
LFree->Font->Name = ((TForm *)AOwner)->Font->Name;
|
|
LFree->Font->Charset = ((TForm *)AOwner)->Font->Charset;
|
|
if( Font->Charset != SHIFTJIS_CHARSET ){
|
|
Caption = "Version Information";
|
|
LFree->Caption = "Free Software";
|
|
LTNX->Font->Size = LTNX->Font->Size - 1;
|
|
}
|
|
Version->Caption = VERTTL;
|
|
LTNX->Caption =
|
|
"------ Programming ------\r\n"
|
|
"Dave, AA6YQ (updated 1.65D -> 1.66G)\r\n"
|
|
"------ Help, FAQ and Remote mode, etc... ------\r\n"
|
|
"Jan, KX2A Ken, VE5KC Bill, KB4IJ Andy, K3UK(KB2EOQ)\r\n"
|
|
"Bill, K5YG Phil, GU0SUP, Josef, OK2WO Oba, JA7UDE\r\n"
|
|
"Bill, W7TI Ed, K4SB Eddie, W6/G0AZT Geoff, G3NPA\r\n"
|
|
"Bob, K4CY Eike, DM3ML Antonio, EA1MV Edoardo, I5PAC\r\n"
|
|
"Joe, W4TV\r\n"
|
|
"------ Japanese friends ------\r\n"
|
|
"Fumio, JA1IQV Nori, JA1WSK Oba, JA7UDE\r\n"
|
|
"Kaz, 7L1CUH Nobu, JA2BQX Hiro, JH1BIH, Isao JK1IQK\r\n"
|
|
"------ Reflector and Web sites ------\r\n"
|
|
"MMTTY User's group http://groups.yahoo.com/group/MMTTY/\r\n"
|
|
"MMTTY-Web http://mmhamsoft.amateur-radio.ca/\r\n"
|
|
"JARTS-Web http://jarts.web.fc2.com/\r\n"
|
|
"\r\nAll friends of Radio Amateurs\r\n"
|
|
"And my wife Midori, JI3IVL, for her invisible help."
|
|
;
|
|
}
|
|
//---------------------------------------------------------------------
|