diff options
author | George Hazan <ghazan@miranda.im> | 2020-05-07 18:08:02 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-05-07 18:08:02 +0300 |
commit | 042fd8c584790a418df57e36da5c734f272c3962 (patch) | |
tree | ec5cd7cc765b1e2bd5061d7c51348f343f4d341a /plugins/MirOTR/res | |
parent | c970f5a11e85c4efe5a27783c7c8d994c55daf8b (diff) |
MirOTR:
- context menu item added to copy a fingerprint;
- DlgProcMirOTROptsFinger -> UI classes
Diffstat (limited to 'plugins/MirOTR/res')
-rw-r--r-- | plugins/MirOTR/res/resource.rc | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/plugins/MirOTR/res/resource.rc b/plugins/MirOTR/res/resource.rc index 04d547ec16..b6b419e54d 100644 --- a/plugins/MirOTR/res/resource.rc +++ b/plugins/MirOTR/res/resource.rc @@ -105,11 +105,8 @@ STYLE DS_SETFONT | DS_FIXEDSYS | WS_CHILD EXSTYLE WS_EX_CONTROLPARENT
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- LTEXT "View & Modify status of known fingerprints",IDC_STC_FINGER1,3,3,291,12,SS_NOPREFIX | NOT WS_GROUP
- CONTROL "",IDC_LV_FINGER_LIST,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_SORTASCENDING | WS_BORDER | WS_TABSTOP,0,18,296,179
- PUSHBUTTON "Set verified",IDC_BTN_FINGER_TRUST,4,202,66,18
- PUSHBUTTON "Set unknown",IDC_BTN_FINGER_DONTTRUST,72,202,66,18
- PUSHBUTTON "Forget",IDC_BTN_FINGER_FORGET,225,202,66,18
+ LTEXT "View & Modify status of known fingerprints",IDC_STATIC,3,3,291,12,SS_NOPREFIX | NOT WS_GROUP
+ CONTROL "",IDC_LV_FINGER_LIST,"SysListView32",LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_SORTASCENDING | WS_BORDER | WS_TABSTOP,0,18,296,210
END
IDD_SMP_PROGRESS DIALOGEX 10, 10, 200, 100
@@ -164,6 +161,18 @@ BEGIN END
END
+IDR_OPT_FINGER MENU
+BEGIN
+ POPUP ""
+ BEGIN
+ MENUITEM "Set verified", IDM_OPT_FINGER_TRUST
+ MENUITEM "Set unknown", IDM_OPT_FINGER_DONTTRUST
+ MENUITEM SEPARATOR
+ MENUITEM "Copy", IDM_OPT_COPY
+ MENUITEM SEPARATOR
+ MENUITEM "Forget", IDM_OPT_FINGER_FORGET
+ END
+END
#ifdef APSTUDIO_INVOKED
/////////////////////////////////////////////////////////////////////////////
@@ -206,19 +215,10 @@ BEGIN IDD_OPT_GENERAL, DIALOG
BEGIN
RIGHTMARGIN, 296
- VERTGUIDE, 12
- VERTGUIDE, 23
- VERTGUIDE, 138
- VERTGUIDE, 144
- VERTGUIDE, 290
END
IDD_OPT_PROTO, DIALOG
BEGIN
- VERTGUIDE, 3
- VERTGUIDE, 155
- VERTGUIDE, 162
- VERTGUIDE, 285
BOTTOMMARGIN, 220
END
@@ -230,7 +230,6 @@ BEGIN IDD_OPT_FINGER, DIALOG
BEGIN
BOTTOMMARGIN, 220
- HORZGUIDE, 203
END
IDD_SMP_INPUT, DIALOG
|