Skip to content

Commit

Permalink
rtklib 2.4.3 b19
Browse files Browse the repository at this point in the history
  • Loading branch information
tomojitakasu committed Aug 29, 2016
1 parent fd12c37 commit 3b0ffcb
Show file tree
Hide file tree
Showing 82 changed files with 4,021 additions and 3,190 deletions.
10 changes: 5 additions & 5 deletions app/appcmn/aboutdlg.dfm
Expand Up @@ -4,9 +4,9 @@ object AboutDialog: TAboutDialog
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'About'
ClientHeight = 101
ClientHeight = 95
ClientWidth = 299
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down Expand Up @@ -6262,10 +6262,10 @@ object AboutDialog: TAboutDialog
end
end
object BtnOk: TButton
Left = 257
Top = 72
Left = 255
Top = 66
Width = 41
Height = 28
Height = 27
Caption = '&OK'
ModalResult = 1
TabOrder = 1
Expand Down
2 changes: 1 addition & 1 deletion app/appcmn/cmdoptdlg.dfm
Expand Up @@ -6,7 +6,7 @@ object CmdOptDialog: TCmdOptDialog
Caption = 'Serial/TCP Commands'
ClientHeight = 270
ClientWidth = 318
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down
4 changes: 2 additions & 2 deletions app/appcmn/confdlg.dfm
Expand Up @@ -44,7 +44,7 @@ object ConfDialog: TConfDialog
Left = 82
Top = 65
Width = 75
Height = 27
Height = 29
Caption = '&Overwrite'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Expand All @@ -59,7 +59,7 @@ object ConfDialog: TConfDialog
Left = 158
Top = 65
Width = 75
Height = 27
Height = 29
Caption = '&Cancel'
Default = True
ModalResult = 2
Expand Down
7 changes: 1 addition & 6 deletions app/appcmn/console.dfm
Expand Up @@ -5,7 +5,7 @@ object Console: TConsole
Caption = 'Console'
ClientHeight = 415
ClientWidth = 623
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down Expand Up @@ -177,7 +177,6 @@ object Console: TConsole
Align = alRight
BevelOuter = bvNone
TabOrder = 0
ExplicitTop = 0
object BtnClose: TButton
Left = 0
Top = 0
Expand All @@ -187,8 +186,6 @@ object Console: TConsole
Caption = '&Close'
TabOrder = 0
OnClick = BtnCloseClick
ExplicitLeft = 1
ExplicitWidth = 51
end
end
end
Expand All @@ -209,7 +206,5 @@ object Console: TConsole
TabOrder = 1
TabStop = False
OnChange = ScrollChange
ExplicitTop = 22
ExplicitHeight = 393
end
end
2 changes: 1 addition & 1 deletion app/appcmn/fileoptdlg.dfm
Expand Up @@ -6,7 +6,7 @@ object FileOptDialog: TFileOptDialog
Caption = 'File Options'
ClientHeight = 73
ClientWidth = 384
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down
2 changes: 1 addition & 1 deletion app/appcmn/ftpoptdlg.dfm
Expand Up @@ -6,7 +6,7 @@ object FtpOptDialog: TFtpOptDialog
Caption = 'FTP Options'
ClientHeight = 141
ClientWidth = 365
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down
4 changes: 4 additions & 0 deletions app/appcmn/graph.cpp
Expand Up @@ -557,18 +557,22 @@ int TGraph::ClipPoint(TPoint *p0, int area, TPoint *p1)
{
int x,y,xmin=X,xmax=X+Width-1,ymin=Y,ymax=Y+Height-1;
if (area&1) { // left
if (p0->x==p1->x) return 0;
y=p0->y+(p1->y-p0->y)*(xmin-p0->x)/(p1->x-p0->x);
if (ymin<=y&&y<=ymax) {p0->x=xmin; p0->y=y; return 1;}
}
if (area&2) { // right
if (p0->x==p1->x) return 0;
y=p0->y+(p1->y-p0->y)*(xmax-p0->x)/(p1->x-p0->x);
if (ymin<=y&&y<=ymax) {p0->x=xmax; p0->y=y; return 1;}
}
if (area&4) { // upper
if (p0->y==p1->y) return 0;
x=p0->x+(p1->x-p0->x)*(ymin-p0->y)/(p1->y-p0->y);
if (xmin<=x&&x<=xmax) {p0->x=x; p0->y=ymin; return 1;}
}
if (area&8) { // lower
if (p0->y==p1->y) return 0;
x=p0->x+(p1->x-p0->x)*(ymax-p0->y)/(p1->y-p0->y);
if (xmin<=x&&x<=xmax) {p0->x=x; p0->y=ymax; return 1;}
}
Expand Down
2 changes: 1 addition & 1 deletion app/appcmn/keydlg.dfm
Expand Up @@ -5,7 +5,7 @@ object KeyDialog: TKeyDialog
Caption = 'Keyword Replacement in File Path'
ClientHeight = 133
ClientWidth = 316
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down
5 changes: 1 addition & 4 deletions app/appcmn/refdlg.dfm
Expand Up @@ -5,7 +5,7 @@ object RefDialog: TRefDialog
Caption = 'Stations'
ClientHeight = 443
ClientWidth = 433
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down Expand Up @@ -40,7 +40,6 @@ object RefDialog: TRefDialog
TabOrder = 0
OnDblClick = StaListDblClick
OnMouseDown = StaListMouseDown
ExplicitHeight = 420
ColWidths = (
31
78
Expand All @@ -58,8 +57,6 @@ object RefDialog: TRefDialog
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
ExplicitLeft = -1
ExplicitTop = 411
object BtnLoad: TButton
Left = 2
Top = 2
Expand Down
8 changes: 4 additions & 4 deletions app/appcmn/serioptdlg.dfm
Expand Up @@ -6,7 +6,7 @@ object SerialOptDialog: TSerialOptDialog
Caption = 'Serial Options'
ClientHeight = 139
ClientWidth = 310
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down Expand Up @@ -63,7 +63,7 @@ object SerialOptDialog: TSerialOptDialog
Left = 127
Top = 109
Width = 87
Height = 27
Height = 29
Caption = '&OK'
ModalResult = 1
TabOrder = 1
Expand All @@ -73,7 +73,7 @@ object SerialOptDialog: TSerialOptDialog
Left = 217
Top = 109
Width = 87
Height = 27
Height = 29
Caption = '&Cancel'
ModalResult = 2
TabOrder = 0
Expand Down Expand Up @@ -169,7 +169,7 @@ object SerialOptDialog: TSerialOptDialog
Left = 9
Top = 109
Width = 87
Height = 27
Height = 29
Caption = '&Commands...'
TabOrder = 8
Visible = False
Expand Down
8 changes: 4 additions & 4 deletions app/appcmn/tcpoptdlg.dfm
Expand Up @@ -6,7 +6,7 @@ object TcpOptDialog: TTcpOptDialog
Caption = 'TCP Options'
ClientHeight = 150
ClientWidth = 318
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down Expand Up @@ -63,7 +63,7 @@ object TcpOptDialog: TTcpOptDialog
Left = 224
Top = 120
Width = 87
Height = 27
Height = 29
Caption = '&Cancel'
ModalResult = 2
TabOrder = 0
Expand All @@ -72,7 +72,7 @@ object TcpOptDialog: TTcpOptDialog
Left = 130
Top = 120
Width = 87
Height = 27
Height = 29
Caption = '&OK'
ModalResult = 1
TabOrder = 1
Expand Down Expand Up @@ -129,7 +129,7 @@ object TcpOptDialog: TTcpOptDialog
Left = 8
Top = 120
Width = 75
Height = 27
Height = 29
Caption = '&Ntrip...'
TabOrder = 2
OnClick = BtnNtripClick
Expand Down
10 changes: 5 additions & 5 deletions app/appcmn/timedlg.dfm
Expand Up @@ -6,7 +6,7 @@ object TimeDialog: TTimeDialog
Caption = 'Time'
ClientHeight = 143
ClientWidth = 170
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand All @@ -27,10 +27,10 @@ object TimeDialog: TTimeDialog
Caption = 'message'
end
object BtnOk: TButton
Left = 138
Top = 122
Width = 31
Height = 21
Left = 134
Top = 118
Width = 35
Height = 25
Caption = 'OK'
ModalResult = 1
TabOrder = 0
Expand Down
11 changes: 5 additions & 6 deletions app/appcmn/tspandlg.dfm
Expand Up @@ -6,7 +6,7 @@ object SpanDialog: TSpanDialog
Caption = 'Time Span/Interval'
ClientHeight = 114
ClientWidth = 289
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down Expand Up @@ -37,18 +37,18 @@ object SpanDialog: TSpanDialog
end
object BtnCancel: TButton
Left = 196
Top = 88
Top = 85
Width = 75
Height = 23
Height = 29
Caption = '&Cancel'
ModalResult = 2
TabOrder = 1
end
object BtnOk: TButton
Left = 118
Top = 88
Top = 85
Width = 75
Height = 23
Height = 29
Caption = '&OK'
ModalResult = 1
TabOrder = 0
Expand Down Expand Up @@ -163,7 +163,6 @@ object SpanDialog: TSpanDialog
Width = 83
Height = 21
DropDownCount = 16
ItemHeight = 13
TabOrder = 13
Text = '1'
Items.Strings = (
Expand Down
4 changes: 1 addition & 3 deletions app/appcmn/viewer.dfm
Expand Up @@ -4,7 +4,7 @@ object TextViewer: TTextViewer
Caption = 'TEXT VIEWER'
ClientHeight = 415
ClientWidth = 624
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand All @@ -30,7 +30,6 @@ object TextViewer: TTextViewer
AutoSize = True
BevelOuter = bvNone
TabOrder = 0
ExplicitLeft = 400
object BtnReload: TSpeedButton
Left = 0
Top = 0
Expand Down Expand Up @@ -79,7 +78,6 @@ object TextViewer: TTextViewer
Caption = '&Option...'
TabOrder = 2
OnClick = BtnOptClick
ExplicitLeft = 92
end
end
object FindStr: TEdit
Expand Down
6 changes: 3 additions & 3 deletions app/appcmn/vieweropt.dfm
Expand Up @@ -6,7 +6,7 @@ object ViewerOptDialog: TViewerOptDialog
Caption = 'Viewer Options'
ClientHeight = 110
ClientWidth = 190
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down Expand Up @@ -49,7 +49,7 @@ object ViewerOptDialog: TViewerOptDialog
Left = 11
Top = 78
Width = 79
Height = 27
Height = 29
Caption = '&OK'
ModalResult = 1
TabOrder = 0
Expand All @@ -59,7 +59,7 @@ object ViewerOptDialog: TViewerOptDialog
Left = 106
Top = 78
Width = 79
Height = 27
Height = 29
Caption = '&Cancel'
ModalResult = 2
TabOrder = 1
Expand Down
2 changes: 1 addition & 1 deletion app/rnx2rtkp/bcc_win64/_rnx2rtkp_win64.cbproj.local
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<BorlandProject>
<Transactions>
<Transaction>2016/08/20 18:24:30.000.412,D:\proj\RTKLIB\app\rnx2rtkp\bcc_win64\_rnx2rtkp_win64.cbproj=D:\proj\RTKLIB\app\rnx2rtkp\bcc_win64\_rnx2rtkp.cbproj</Transaction>
<Transaction>2016/08/20 18:24:30.000.412,D:\proj\RTKLIB\app\rnx2rtkp\bcc_win64\_rnx2rtkp.cbproj=D:\proj\RTKLIB\app\rnx2rtkp\bcc_win64\_rnx2rtkp_win64.cbproj</Transaction>
</Transactions>
</BorlandProject>
2 changes: 1 addition & 1 deletion app/rtkconv/codeopt.dfm
Expand Up @@ -5,7 +5,7 @@ object CodeOptDialog: TCodeOptDialog
Caption = 'Signal Mask'
ClientHeight = 333
ClientWidth = 397
Color = clBtnFace
Color = clWhite
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Expand Down

0 comments on commit 3b0ffcb

Please sign in to comment.