Skip to content

Commit

Permalink
jumping to the matome site
Browse files Browse the repository at this point in the history
  • Loading branch information
katahiromz committed Jun 23, 2018
1 parent 7f9e04d commit 789d6ad
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
8 changes: 4 additions & 4 deletions READMEJP.txt
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,12 @@
言語の扱いをさらに改良。
「言語の一覧」ダイアログを修正。
ツールバーを刷新。
2018.XX.YY ver.5.0.0
フランス語とドイツ語とスペイン語に特別な言語サポートを追加。
最終的かつ完璧な言語サポート。
2018.06.24 ver.5.0.0
「ダイアログの編集」においてコントロールの位置とサイズの変更を高速化。
名前/言語の変更においてチェックを厳格に。
コントロールの位置とサイズの変更を高速化
言語の解釈をさらに改良
ツールバーアイコンを改良。
「ヘルプ」メニューでまとめサイトへジャンプできるようにした。

/////////////////////////////////////////////////////
// 片山博文MZ (katahiromz) [A.N.T.]
Expand Down
12 changes: 12 additions & 0 deletions src/RisohEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2167,6 +2167,7 @@ class MMainWnd : public MWindowBase
void OnClone(HWND hwnd);
void OnAddBang(HWND hwnd, NMTOOLBAR *pToolBar);
void OnExtractBang(HWND hwnd);
void OnJumpToMatome(HWND hwnd);

LRESULT OnCompileCheck(HWND hwnd, WPARAM wParam, LPARAM lParam);
LRESULT OnMoveSizeReport(HWND hwnd, WPARAM wParam, LPARAM lParam);
Expand Down Expand Up @@ -8906,6 +8907,14 @@ void MMainWnd::OnClone(HWND hwnd)
}
}

void MMainWnd::OnJumpToMatome(HWND hwnd)
{
static const WCHAR szURL[] =
L"http://www.geocities.jp/katayama_hirofumi_mz/risoheditor";

ShellExecuteW(hwnd, NULL, szURL, NULL, NULL, SW_SHOWNORMAL);
}

void MMainWnd::OnExtractBang(HWND hwnd)
{
auto entry = g_res.get_entry();
Expand Down Expand Up @@ -9413,6 +9422,9 @@ void MMainWnd::OnCommand(HWND hwnd, int id, HWND hwndCtl, UINT codeNotify)
case ID_EXTRACTBANG:
OnExtractBang(hwnd);
break;
case ID_JUMPTOMATOME:
OnJumpToMatome(hwnd);
break;
default:
bUpdateStatus = FALSE;
break;
Expand Down
1 change: 1 addition & 0 deletions src/lang/ja-JP.rc
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ IDR_MAINMENU MENU
{
MENUITEM "&README.txtを開く", ID_OPENREADME
MENUITEM "README&JP.txtを開く", ID_OPENREADMEJP
MENUITEM "まとめサイトへジャンプ(&J)", ID_JUMPTOMATOME
MENUITEM SEPARATOR
MENUITEM "&HYOJUNKA.txtを開く", ID_OPENHYOJUNKA
MENUITEM SEPARATOR
Expand Down
1 change: 1 addition & 0 deletions src/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@
#define ID_CLONE 242
#define ID_ADDBANG 243
#define ID_EXTRACTBANG 245
#define ID_JUMPTOMATOME 246

#define IDD_REPLACERES 100
#define IDD_ADDICON 101
Expand Down

0 comments on commit 789d6ad

Please sign in to comment.