From 02dc4b49ff1d2384ddca4c50e87148235bb9efc7 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 14 Nov 2023 12:57:15 +0300 Subject: =?UTF-8?q?fixes=20#3920=20(NewStory:=20=D0=BE=D1=82=D1=81=D1=83?= =?UTF-8?q?=D1=82=D1=81=D1=82=D0=B2=D1=83=D0=B5=D1=82=20=D0=B2=D0=BE=D0=B7?= =?UTF-8?q?=D0=BC=D0=BE=D0=B6=D0=BD=D0=BE=D1=81=D1=82=D1=8C=20=D0=BF=D0=BE?= =?UTF-8?q?=D0=BF=D0=B0=D1=81=D1=82=D1=8C=20=D0=B2=20=D0=BC=D0=B5=D0=BD?= =?UTF-8?q?=D1=8E=20=D0=BA=D0=BE=D0=BC=D0=BD=D0=B0=D1=82=D1=8B,=20=D0=B5?= =?UTF-8?q?=D1=81=D0=BB=D0=B8=20=D0=B2=20=D1=87=D0=B0=D1=82=D0=B5=20=D0=BD?= =?UTF-8?q?=D0=B5=D1=82=20=D0=B8=D1=81=D1=82=D0=BE=D1=80=D0=B8=D0=B8)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/NewStory/src/history_control.cpp | 8 ++------ plugins/NewStory/src/history_menus.cpp | 34 ++++++++++++++++++++------------ 2 files changed, 23 insertions(+), 19 deletions(-) (limited to 'plugins/NewStory') diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp index 7fdd524050..74d1e76197 100644 --- a/plugins/NewStory/src/history_control.cpp +++ b/plugins/NewStory/src/history_control.cpp @@ -66,11 +66,7 @@ NewstoryListData::NewstoryListData(HWND _1) : void NewstoryListData::OnContextMenu(int index, POINT pt) { - ItemData *item = LoadItem(index); - if (item == nullptr) - return; - - HMENU hMenu = NSMenu_Build(this, item); + HMENU hMenu = NSMenu_Build(this, LoadItem(index)); if (pMsgDlg != nullptr && pMsgDlg->isChat()) Chat_CreateMenu(hMenu, pMsgDlg->getChat(), nullptr); @@ -1008,8 +1004,8 @@ LRESULT CALLBACK NewstoryListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM data->SetCaret(idx); if (!data->HasSelection()) data->SetSelection(idx, idx); - data->OnContextMenu(idx, pt); } + data->OnContextMenu(idx, pt); break; case WM_KILLFOCUS: diff --git a/plugins/NewStory/src/history_menus.cpp b/plugins/NewStory/src/history_menus.cpp index b82194ce3b..48d747b0f1 100644 --- a/plugins/NewStory/src/history_menus.cpp +++ b/plugins/NewStory/src/history_menus.cpp @@ -33,27 +33,35 @@ static HGENMENU hmiEdit, hmiBookmark, hmiDelete; HMENU NSMenu_Build(NewstoryListData *data, ItemData *item) { - if (item->m_bOfflineFile) { - Menu_ModifyItem(hmiCopyUrl, (item->m_bOfflineDownloaded) ? TranslateT("Copy file path") : TranslateT("Copy URL")); - Menu_ShowItem(hmiCopyUrl, true); - Menu_ShowItem(hmiSaveAs, true); - Menu_ShowItem(hmiDownload, !item->m_bOfflineDownloaded); + Menu_ShowItem(hmiQuote, data->pMsgDlg != nullptr); + Menu_ShowItem(hmiSaveAs, false); + Menu_ShowItem(hmiCopyUrl, false); + Menu_ShowItem(hmiDownload, false); + + bool bShowEventActions; + if (item != nullptr) { + if (item->m_bOfflineFile) { + Menu_ModifyItem(hmiCopyUrl, (item->m_bOfflineDownloaded) ? TranslateT("Copy file path") : TranslateT("Copy URL")); + Menu_ShowItem(hmiCopyUrl, true); + Menu_ShowItem(hmiSaveAs, true); + Menu_ShowItem(hmiDownload, !item->m_bOfflineDownloaded); + } + + bShowEventActions = item->hEvent != 0; + + NotifyEventHooks(hEventPreBuildMenu, item->hContact, (LPARAM)&item->dbe); } else { - Menu_ShowItem(hmiCopyUrl, false); - Menu_ShowItem(hmiSaveAs, false); - Menu_ShowItem(hmiDownload, false); - } + bShowEventActions = false; - Menu_ShowItem(hmiQuote, data->pMsgDlg != nullptr); + DB::EventInfo dbei; + NotifyEventHooks(hEventPreBuildMenu, 0, (LPARAM)&dbei); + } - bool bShowEventActions = item->hEvent != 0; Menu_ShowItem(hmiEdit, bShowEventActions); Menu_ShowItem(hmiDelete, bShowEventActions); Menu_ShowItem(hmiBookmark, bShowEventActions); - NotifyEventHooks(hEventPreBuildMenu, item->hContact, (LPARAM)&item->dbe); - HMENU hMenu = CreatePopupMenu(); Menu_Build(hMenu, hMenuObject); return hMenu; -- cgit v1.2.3