BSOne.SFC/Tocsg.Module/RemoteSupport/RemoteGateway/DRmtGwMain.dfm

159 lines
3.6 KiB
Plaintext

object DlgRmtGwMain: TDlgRmtGwMain
Left = 0
Top = 0
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'RemoteGateway'
ClientHeight = 263
ClientWidth = 256
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Position = poScreenCenter
TextHeight = 13
object pnBottom: TPanel
Left = 0
Top = 234
Width = 256
Height = 29
Align = alBottom
BevelOuter = bvNone
TabOrder = 0
object lbMsg: TLabel
Left = 11
Top = 7
Width = 81
Height = 13
Caption = #51456#48708#46104#50632#49845#45768#45796'.'
end
end
object pcMain: TPageControl
Left = 0
Top = 0
Width = 256
Height = 234
ActivePage = tabActive
Align = alClient
TabOrder = 1
object tabSetting: TTabSheet
Caption = #49444#51221
object Label2: TLabel
Left = 11
Top = 32
Width = 67
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = #47196#52972' '#54252#53944' :'
end
object Label7: TLabel
Left = 11
Top = 68
Width = 67
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = #48372#50504#53412' :'
end
object edPort: TEdit
Left = 96
Top = 28
Width = 73
Height = 21
Hint = 'Enter the TCP Port you want to use'
NumbersOnly = True
TabOrder = 0
end
object edSecureKey: TEdit
Left = 96
Top = 64
Width = 129
Height = 21
Hint =
'Enter the Secure Key you want to use. Hosts, Viewers and Control' +
's will need to use the same.'
PasswordChar = '*'
TabOrder = 1
end
object xSSL: TCheckBox
Left = 180
Top = 28
Width = 45
Height = 21
TabStop = False
Caption = 'SSL'
Enabled = False
TabOrder = 2
Visible = False
end
object btnStart: TButton
Left = 24
Top = 160
Width = 201
Height = 29
Caption = #49884#51089
TabOrder = 3
OnClick = btnStartClick
end
end
object tabActive: TTabSheet
Caption = #54876#49457
ImageIndex = 1
object btnStop: TButton
Left = 24
Top = 160
Width = 201
Height = 29
Caption = #51473#51648
TabOrder = 0
OnClick = btnStopClick
end
object lxUser: TListBox
Left = 24
Top = 16
Width = 201
Height = 138
ItemHeight = 13
TabOrder = 1
end
end
end
object HttpServer: TRtcHttpServer
MultiThreaded = True
Timeout.AfterConnecting = 300
OnListenLost = HttpServerListenLost
OnListenError = HttpServerListenError
FixupRequest.RemovePrefix = True
MaxRequestSize = 16000
MaxHeaderSize = 64000
Left = 144
Top = 229
end
object Gateway: TRtcPortalGateway
Server = HttpServer
WriteLog = True
AutoRegisterUsers = True
AutoSaveInfo = True
OnUserLogin = GatewayUserLogin
OnUserLogout = GatewayUserLogout
AutoSyncUserEvents = True
EncryptionKey = 16
ForceEncryption = True
AutoSessionsLive = 600
AutoSessions = True
ModuleFileName = '/$rdgate'
Left = 184
Top = 229
end
object RtcGateTestProvider: TRtcDataProvider
Server = HttpServer
OnCheckRequest = RtcGateTestProviderCheckRequest
OnDataReceived = RtcGateTestProviderDataReceived
Left = 224
Top = 229
end
end