Authenticate.dfm 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. object AuthenticateForm: TAuthenticateForm
  2. Left = 304
  3. Top = 113
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_authenticate'
  6. BorderIcons = [biSystemMenu]
  7. BorderStyle = bsDialog
  8. Caption = 'AuthenticateForm'
  9. ClientHeight = 380
  10. ClientWidth = 416
  11. Color = clBtnFace
  12. Constraints.MinHeight = 200
  13. Constraints.MinWidth = 280
  14. Font.Charset = DEFAULT_CHARSET
  15. Font.Color = clWindowText
  16. Font.Height = -12
  17. Font.Name = 'Segoe UI'
  18. Font.Style = []
  19. Position = poOwnerFormCenter
  20. OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
  21. OnResize = FormResize
  22. OnShow = FormShow
  23. TextHeight = 15
  24. object TopPanel: TPanel
  25. Left = 0
  26. Top = 0
  27. Width = 416
  28. Height = 63
  29. Align = alClient
  30. BevelOuter = bvNone
  31. TabOrder = 0
  32. object LogView: TListBox
  33. Left = 48
  34. Top = 0
  35. Width = 368
  36. Height = 63
  37. Style = lbOwnerDrawVariable
  38. Align = alClient
  39. BevelInner = bvNone
  40. BevelOuter = bvNone
  41. BorderStyle = bsNone
  42. DoubleBuffered = True
  43. ParentDoubleBuffered = False
  44. ParentShowHint = False
  45. ShowHint = True
  46. TabOrder = 0
  47. OnDrawItem = LogViewDrawItem
  48. OnMeasureItem = LogViewMeasureItem
  49. OnMouseMove = LogViewMouseMove
  50. end
  51. object LeftPanel: TPanel
  52. Left = 0
  53. Top = 0
  54. Width = 48
  55. Height = 63
  56. Align = alLeft
  57. BevelOuter = bvNone
  58. Color = clWindow
  59. ParentBackground = False
  60. TabOrder = 1
  61. object AnimationPaintBox: TPaintBox
  62. Left = 8
  63. Top = 11
  64. Width = 32
  65. Height = 32
  66. end
  67. end
  68. end
  69. object PasswordPanel: TPanel
  70. Left = 0
  71. Top = 63
  72. Width = 416
  73. Height = 235
  74. Align = alBottom
  75. AutoSize = True
  76. BevelOuter = bvNone
  77. TabOrder = 1
  78. Visible = False
  79. object PromptEditPanel: TPanel
  80. Left = 0
  81. Top = 0
  82. Width = 416
  83. Height = 144
  84. Align = alTop
  85. BevelOuter = bvNone
  86. TabOrder = 0
  87. DesignSize = (
  88. 416
  89. 144)
  90. object InstructionsLabel: TLabel
  91. Left = 8
  92. Top = 6
  93. Width = 400
  94. Height = 39
  95. Anchors = [akLeft, akTop, akRight]
  96. AutoSize = False
  97. Caption =
  98. 'Instructions for authentication. Please fill in your credentials' +
  99. ' carefully. Enter all required information, including your sessi' +
  100. 'on username and session password.X'
  101. FocusControl = PromptEdit1
  102. WordWrap = True
  103. end
  104. object PromptLabel1: TLabel
  105. Left = 8
  106. Top = 56
  107. Width = 401
  108. Height = 15
  109. Anchors = [akLeft, akTop, akRight]
  110. AutoSize = False
  111. Caption = '&UsernameX:'
  112. FocusControl = PromptEdit1
  113. WordWrap = True
  114. end
  115. object PromptLabel2: TLabel
  116. Left = 8
  117. Top = 103
  118. Width = 401
  119. Height = 15
  120. Anchors = [akLeft, akTop, akRight]
  121. AutoSize = False
  122. Caption = '&PasswordX:'
  123. FocusControl = PromptEdit2
  124. WordWrap = True
  125. end
  126. object PromptEdit1: TPasswordEdit
  127. Left = 8
  128. Top = 74
  129. Width = 400
  130. Height = 23
  131. Anchors = [akLeft, akTop, akRight]
  132. MaxLength = 250
  133. TabOrder = 0
  134. end
  135. object PromptEdit2: TPasswordEdit
  136. Left = 8
  137. Top = 121
  138. Width = 400
  139. Height = 23
  140. Anchors = [akLeft, akTop, akRight]
  141. MaxLength = 250
  142. TabOrder = 1
  143. end
  144. end
  145. object SavePasswordPanel: TPanel
  146. Left = 0
  147. Top = 169
  148. Width = 416
  149. Height = 25
  150. Align = alTop
  151. BevelOuter = bvNone
  152. TabOrder = 2
  153. object SavePasswordCheck: TCheckBox
  154. Left = 14
  155. Top = 6
  156. Width = 275
  157. Height = 19
  158. Caption = '&Change stored password to this one'
  159. Checked = True
  160. State = cbChecked
  161. TabOrder = 0
  162. end
  163. end
  164. object ButtonsPanel: TPanel
  165. Left = 0
  166. Top = 194
  167. Width = 416
  168. Height = 41
  169. Align = alTop
  170. BevelOuter = bvNone
  171. TabOrder = 3
  172. DesignSize = (
  173. 416
  174. 41)
  175. object PasswordOKButton: TButton
  176. Left = 156
  177. Top = 8
  178. Width = 80
  179. Height = 25
  180. Anchors = [akTop, akRight]
  181. Caption = 'OK'
  182. ModalResult = 1
  183. TabOrder = 0
  184. end
  185. object PasswordCancelButton: TButton
  186. Left = 242
  187. Top = 8
  188. Width = 80
  189. Height = 25
  190. Anchors = [akTop, akRight]
  191. Caption = 'Cancel'
  192. ModalResult = 2
  193. TabOrder = 1
  194. end
  195. object PasswordHelpButton: TButton
  196. Left = 328
  197. Top = 8
  198. Width = 80
  199. Height = 25
  200. Anchors = [akTop, akRight]
  201. Caption = '&Help'
  202. TabOrder = 2
  203. OnClick = HelpButtonClick
  204. end
  205. end
  206. object SessionRememberPasswordPanel: TPanel
  207. Left = 0
  208. Top = 144
  209. Width = 416
  210. Height = 25
  211. Align = alTop
  212. BevelOuter = bvNone
  213. TabOrder = 1
  214. object SessionRememberPasswordCheck: TCheckBox
  215. Left = 14
  216. Top = 6
  217. Width = 275
  218. Height = 19
  219. Caption = '&Remember password for this session'
  220. Checked = True
  221. State = cbChecked
  222. TabOrder = 0
  223. end
  224. end
  225. end
  226. object BannerPanel: TPanel
  227. Left = 0
  228. Top = 298
  229. Width = 416
  230. Height = 82
  231. Align = alBottom
  232. BevelOuter = bvNone
  233. TabOrder = 2
  234. Visible = False
  235. DesignSize = (
  236. 416
  237. 82)
  238. object BannerMemo: TMemo
  239. Left = 8
  240. Top = 8
  241. Width = 400
  242. Height = 35
  243. Anchors = [akLeft, akTop, akRight, akBottom]
  244. Color = clBtnFace
  245. PopupMenu = BannerPopupMenu
  246. ReadOnly = True
  247. ScrollBars = ssVertical
  248. TabOrder = 0
  249. WantReturns = False
  250. OnContextPopup = BannerMemoContextPopup
  251. end
  252. object NeverShowAgainCheck: TCheckBox
  253. Left = 14
  254. Top = 55
  255. Width = 229
  256. Height = 17
  257. Anchors = [akLeft, akRight, akBottom]
  258. Caption = '&Never show this banner again'
  259. TabOrder = 1
  260. end
  261. object BannerCloseButton: TButton
  262. Left = 243
  263. Top = 49
  264. Width = 80
  265. Height = 25
  266. Anchors = [akRight, akBottom]
  267. Caption = 'Continue'
  268. ModalResult = 1
  269. TabOrder = 2
  270. end
  271. object BannerHelpButton: TButton
  272. Left = 328
  273. Top = 49
  274. Width = 80
  275. Height = 25
  276. Anchors = [akRight, akBottom]
  277. Caption = '&Help'
  278. TabOrder = 3
  279. OnClick = HelpButtonClick
  280. end
  281. end
  282. object ActionList: TActionList
  283. Left = 32
  284. Top = 304
  285. object EditCopyAction: TEditCopy
  286. Category = 'Banner'
  287. Caption = '&Copy'
  288. ImageIndex = 0
  289. ShortCut = 16451
  290. end
  291. object EditSelectAllAction: TEditSelectAll
  292. Category = 'Banner'
  293. Caption = 'Select &All'
  294. ImageIndex = 1
  295. ShortCut = 16449
  296. end
  297. object BannerMonospacedFontAction: TAction
  298. Category = 'Banner'
  299. Caption = 'Use &Monospaced Font'
  300. OnExecute = BannerMonospacedFontActionExecute
  301. end
  302. object LabelCopyAction: TAction
  303. Category = 'Label'
  304. Caption = '&Copy'
  305. OnExecute = LabelCopyActionExecute
  306. end
  307. object LabelOpenLinkAction2: TAction
  308. Category = 'Label'
  309. Caption = '&Open Link'
  310. OnExecute = LabelOpenLinkAction2Execute
  311. end
  312. end
  313. object BannerPopupMenu: TPopupMenu
  314. Left = 144
  315. Top = 304
  316. object CopyItem: TMenuItem
  317. Action = EditCopyAction
  318. end
  319. object SelectAllItem: TMenuItem
  320. Action = EditSelectAllAction
  321. end
  322. object N1: TMenuItem
  323. Caption = '-'
  324. end
  325. object AdjustWindowItem: TMenuItem
  326. Action = BannerMonospacedFontAction
  327. end
  328. end
  329. object LabelPopupMenu: TPopupMenu
  330. Left = 56
  331. Top = 72
  332. object Copy1: TMenuItem
  333. Action = LabelCopyAction
  334. end
  335. object N2: TMenuItem
  336. Caption = '-'
  337. end
  338. object Open1: TMenuItem
  339. Action = LabelOpenLinkAction2
  340. Default = True
  341. end
  342. end
  343. end