diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-10-06 19:23:04 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-10-06 19:23:04 +0000 |
commit | 8efc51aefbfcc6a41d9acabe9383a337500b0049 (patch) | |
tree | 8d86530327e674d551cf61580d1daaf2a07d9262 /protocols/Tox/res | |
parent | cea7fc1a7e6b72703914d7a92763bb4236976db6 (diff) |
Tox: - password dialog for encrypted profile
git-svn-id: http://svn.miranda-ng.org/main/trunk@10713 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/res')
-rw-r--r-- | protocols/Tox/res/resource.rc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/protocols/Tox/res/resource.rc b/protocols/Tox/res/resource.rc index a01dba23c3..b489530e70 100644 --- a/protocols/Tox/res/resource.rc +++ b/protocols/Tox/res/resource.rc @@ -147,6 +147,19 @@ BEGIN EDITTEXT IDC_DNS_ID,2,13,217,14,ES_AUTOHSCROLL
END
+IDD_PASSWORD DIALOGEX 0, 0, 225, 86
+STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
+EXSTYLE WS_EX_TOOLWINDOW | WS_EX_APPWINDOW
+CAPTION "Enter password"
+FONT 8, "MS Shell Dlg", 0, 0, 0x1
+BEGIN
+ EDITTEXT IDC_PASSWORD,7,28,213,12,ES_PASSWORD | ES_AUTOHSCROLL
+ CONTROL "Save password",IDC_SAVEPERMANENTLY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,7,45,213,12
+ DEFPUSHBUTTON "OK",IDOK,117,67,50,14
+ PUSHBUTTON "Cancel",IDCANCEL,170,67,50,14
+ LTEXT "Tox profile is encrypted. To continue, enter the password below and click OK.",IDC_STATIC,7,5,213,19
+END
+
/////////////////////////////////////////////////////////////////////////////
//
@@ -200,6 +213,13 @@ BEGIN VERTGUIDE, 2
VERTGUIDE, 219
END
+
+ IDD_PASSWORD, DIALOG
+ BEGIN
+ RIGHTMARGIN, 220
+ VERTGUIDE, 7
+ BOTTOMMARGIN, 81
+ END
END
#endif // APSTUDIO_INVOKED
|