├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── README_CN.md ├── ReadMe.txt ├── help ├── en-us │ ├── ToC.hhc │ ├── contents │ │ ├── 01.html │ │ ├── 02.html │ │ ├── 03.html │ │ ├── 04.html │ │ ├── FontSel.PNG │ │ ├── icon.png │ │ ├── noMeiryoUI.PNG │ │ └── noMeiryoUI.css │ └── help_en.hhp ├── ja-jp │ ├── ToC.hhc │ ├── contents │ │ ├── 01.html │ │ ├── 02.html │ │ ├── 03.html │ │ ├── 04.html │ │ ├── FontSel.PNG │ │ ├── icon.png │ │ ├── noMeiryoUI.PNG │ │ └── noMeiryoUI.css │ └── help_ja-jp.hhp ├── ko-kr │ ├── ToC.hhc │ ├── contents │ │ ├── 01.html │ │ ├── 02.html │ │ ├── 03.html │ │ ├── 04.html │ │ ├── FontSel.png │ │ ├── icon.png │ │ ├── noMeiryoUI.css │ │ └── noMeiryoUI.png │ └── help_ko-kr.hhp ├── pt-br │ ├── ToC.hhc │ ├── contents │ │ ├── 01.html │ │ ├── 02.html │ │ ├── 03.html │ │ ├── 04.html │ │ ├── FontSel.PNG │ │ ├── icon.png │ │ ├── noMeiryoUI.PNG │ │ └── noMeiryoUI.css │ └── help_br.hhp ├── zh-cn │ ├── ToC.hhc │ ├── contents │ │ ├── 01.html │ │ ├── 02.html │ │ ├── 03.html │ │ ├── 04.html │ │ ├── FontSel.PNG │ │ ├── icon.png │ │ ├── noMeiryoUI.PNG │ │ └── noMeiryoUI.css │ └── help_zh-cn.hhp └── zh-tw │ ├── ToC.hhc │ ├── contents │ ├── 01.html │ ├── 02.html │ ├── 03.html │ ├── 04.html │ ├── FontSel.PNG │ ├── icon.png │ ├── noMeiryoUI.PNG │ └── noMeiryoUI.css │ └── help_zh-tw.hhp ├── lang ├── default.lng ├── en.lng ├── ja-JP.lng ├── ko-KR.lng ├── pt-BR.lng ├── zh-CN.lng └── zh-TW.lng ├── program ├── FontSel.cpp ├── FontSel.h ├── TWR │ ├── AppliBase.h │ ├── BaseDialog.cpp │ ├── BaseDialog.h │ ├── DialogAppliBase.cpp │ ├── DialogAppliBase.h │ ├── ModelessDialog.cpp │ ├── ModelessDialog.h │ ├── NCFileDialog.cpp │ ├── NCFileDialog.h │ ├── TwrCheckbox.cpp │ ├── TwrCheckbox.h │ ├── TwrCombobox.cpp │ ├── TwrCombobox.h │ ├── TwrCore.cpp │ ├── TwrCore.h │ ├── TwrMenu.cpp │ ├── TwrMenu.h │ ├── TwrWnd.cpp │ ├── TwrWnd.h │ ├── stdafx.h │ └── tstring.h ├── country │ ├── default.cpp │ ├── default.h │ ├── japan.cpp │ ├── japan.h │ ├── korea.cpp │ └── korea.h ├── iniReader.cpp ├── iniReader.h ├── langresource.cpp ├── langresource.h ├── noMeiryoUI.cpp ├── noMeiryoUI.exe.manifest ├── noMeiryoUI.h ├── noMeiryoUI.ico ├── noMeiryoUI.rc ├── noMeiryoUI.sln ├── noMeiryoUI.vcproj ├── noMeiryoUI.vcxproj ├── noMeiryoUI.vcxproj.filters ├── noMeiryoUI_2008.sln ├── noMeiryoUI_2008.vcproj ├── noMeiryoUI_2012.vcxproj ├── noMeiryoUI_2012.vcxproj.filters ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h ├── util.cpp └── util.h └── util ├── RESTOREreg.bat ├── SAVEreg.bat ├── localetest.c └── localetest.exe /.gitignore: -------------------------------------------------------------------------------- 1 | # noMeiryoUI (C) 2005,2012-2022 Tatsuhiko Shoji 2 | # The sources for noMeiryoUI are distributed under the MIT open source license 3 | 4 | /program/.vs 5 | /program/Debug 6 | /program/Debug_2008 7 | /program/Debug_2012 8 | /program/Release 9 | /program/Release_2008 10 | /program/Release_2012 11 | /program/ipch 12 | /program/noMeiryoUI.aps 13 | /program/noMeiryoUI.VC.db 14 | /.vs 15 | /help/*/*.chm 16 | /program/*.aps 17 | /program/*.suo 18 | /program/*.ncb 19 | /program/*.user 20 | /util/*.obj 21 | /program/noMeiryoUI.opensdf 22 | /program/noMeiryoUI.sdf 23 | /program/UpgradeLog.htm 24 | /files 25 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to contribute 2 | 3 | ## Release process 4 | 5 | To avoid contamination and gather translations 6 | 7 | 1. I or people who want to contribute open issue about new version. 8 | 2. On any trigger for release such as new translations, new code release process starts. 9 | 3. Review process write in below starts. 10 | 4. On all review process ends and software runs well I release it. 11 | 5. If no translation come, I release software without translation. 12 | 13 | ## How to include translations 14 | 15 | If you modify translations, you must follow this process. 16 | 17 | ### By GitHub 18 | 19 | 1. Create pull request. 20 | 2. Write message about pull request on issue about next version. 21 | 3. Review on pull request. 22 | 4. When translations come to arrive an agreement I merge in master. 23 | 24 | ### By e-mail 25 | 26 | 1. Send e-mail for me. 27 | 2. I exchange GitHub user and author. 28 | 3. Process goes on GitHub. 29 | 30 | ## How to merge code 31 | 32 | If you modify program, you must follow this process. 33 | 34 | 1. Create pull request. 35 | 2. Write message about pull request on issue about next version. 36 | 3. Review on pull request. 37 | 4. When code come to to arrive an agreement I merge in master. 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2005,2012-2018 Tatsuhiko Syoji 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | ROOT_DIR = . 2 | 3 | .IGNORE: 4 | 5 | .\files\default.chm : .\help\en-us\contents\* .\files\utils\SAVEreg.bat 6 | cd .\help\en-us 7 | hhc help_en.hhp 8 | cd ..\.. 9 | copy .\help\en-us\en.chm .\files\default.chm 10 | 11 | .\files\en.chm : .\help\en-us\contents\* .\files\utils\SAVEreg.bat 12 | cd .\help\en-us 13 | hhc help_en.hhp 14 | cd ..\.. 15 | copy .\help\en-us\en.chm .\files 16 | 17 | .\files\ja-JP.chm : .\help\ja-jp\contents\* .\files\utils\SAVEreg.bat 18 | cd .\help\ja-jp 19 | hhc .\help_ja-jp.hhp 20 | cd ..\.. 21 | copy .\help\ja-JP\ja-JP.chm .\files 22 | 23 | .\files\ko-KR.chm : .\help\ko-kr\contents\* .\files\utils\SAVEreg.bat 24 | cd .\help\ko-kr 25 | hhc help_ko-kr.hhp 26 | cd ..\.. 27 | copy .\help\ko-kr\ko-KR.chm .\files 28 | 29 | .\files\pt-BR.chm : .\help\pt-br\contents\* .\files\utils\SAVEreg.bat 30 | cd .\help\pt-br 31 | hhc help_br.hhp 32 | cd ..\.. 33 | copy .\help\pt-br\pt-BR.chm .\files 34 | 35 | .\files\zh-CN.chm : .\help\zh-cn\contents\* .\files\utils\SAVEreg.bat 36 | cd .\help\zh-cn 37 | hhc help_zh-cn.hhp 38 | cd ..\.. 39 | copy .\help\zh-cn\zh-CN.chm .\files 40 | 41 | .\files\zh-TW.chm : .\help\zh-tw\contents\* .\files\utils\SAVEreg.bat 42 | cd .\help\zh-tw 43 | hhc help_zh-tw.hhp 44 | cd ..\.. 45 | copy .\help\zh-tw\zh-TW.chm .\files 46 | 47 | !CMDSWITCHES 48 | 49 | .\files\utils\SAVEreg.bat : 50 | mkdir .\files\utils 51 | copy .\util\SAVEreg.bat .\files\utils\SAVEreg.bat 52 | 53 | .\files\default.lng : .\lang\default.lng .\files\utils\SAVEreg.bat 54 | copy .\lang\default.lng .\files 55 | 56 | .\files\en.lng : .\lang\en.lng .\files\utils\SAVEreg.bat 57 | copy .\lang\en.lng .\files 58 | 59 | .\files\ja-JP.lng : .\lang\ja-JP.lng .\files\utils\SAVEreg.bat 60 | copy .\lang\ja-JP.lng .\files 61 | 62 | .\files\ko-KR.lng : .\lang\ko-KR.lng .\files\utils\SAVEreg.bat 63 | copy .\lang\ko-KR.lng .\files 64 | 65 | .\files\pt-BR.lng : .\lang\pt-BR.lng .\files\utils\SAVEreg.bat 66 | copy .\lang\pt-BR.lng .\files 67 | 68 | .\files\zh-CN.lng : .\lang\zh-CN.lng .\files\utils\SAVEreg.bat 69 | copy .\lang\zh-CN.lng .\files 70 | 71 | .\files\zh-TW.lng : .\lang\zh-TW.lng .\files\utils\SAVEreg.bat 72 | copy .\lang\zh-TW.lng .\files 73 | 74 | .\files\utils\RESTOREreg.bat : .\util\RESTOREreg.bat .\files\utils\SAVEreg.bat 75 | copy .\util\RESTOREreg.bat .\files\utils 76 | 77 | composition : \ 78 | .\files\utils\SAVEreg.bat \ 79 | .\files\default.chm \ 80 | .\files\en.chm \ 81 | .\files\ja-JP.chm \ 82 | .\files\ko-KR.chm \ 83 | .\files\pt-BR.chm \ 84 | .\files\zh-CN.chm \ 85 | .\files\zh-TW.chm \ 86 | .\files\default.lng \ 87 | .\files\en.lng \ 88 | .\files\ja-JP.lng \ 89 | .\files\ko-KR.lng \ 90 | .\files\pt-BR.lng \ 91 | .\files\zh-CN.lng \ 92 | .\files\zh-TW.lng \ 93 | .\files\utils\RESTOREreg.bat 94 | 95 | #en-us 96 | #ja-jp 97 | #ko-kr 98 | #pt-br 99 | #zh-cn 100 | #zh-tw 101 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 中文版请查看[README_CN.md](https://github.com/Tatsu-syo/noMeiryoUI/blob/master/README_CN.md) 2 | 3 | # No!! MeiryoUI 4 | 5 | No!! MeiryoUI ("Meiryo UI mo daikkirai!!" in Japanese) brings back the capability to customize the user interface font on Windows, a feature that was removed since Windows 8.1. 6 | 7 | No!! MeiryoUI has some limitations on Windows 11 22H2, 8 | 9 | If you have some ideas check [discussions](https://github.com/Tatsu-syo/noMeiryoUI/discussions) for support. 10 | 11 | ## Requirements 12 | 13 | - Windows 8 or newer. 14 | - While No!! MeiryoUI should work on Windows Vista, it is not actively tested for compatibility. 15 | 16 | ## Installation 17 | 18 | > [!IMPORTANT] 19 | > No!! MeiryoUI makes changes to registry. It is recommanded to backup your registry before applying any changes. 20 | > 21 | > ``` 22 | > reg save "HKCU\Control Panel" .\reset_font.reg /y 23 | > ``` 24 | 25 | - Download zip archive from [GitHub Releases](https://github.com/Tatsu-syo/noMeiryoUI/releases/latest). 26 | - Extract the archive and run "noMeiryoUI.exe". 27 | 28 | ## Known Limitations 29 | 30 | - No!! MeiryoUI does not work with: 31 | - Windows taskbar. 32 | - Preinstalled UWP Apps (e.g. Settings, Paint, etc.). 33 | - Applications that ignore the system font settings. 34 | 35 | - No!! MeiryoUI cannot modify the titlebar font on Windows 11. 36 | - No!! MeiryoUI might be detected as Trojan/virus software by some antivirus software because No!! MeiryoUI changes system font settings. 37 | 38 | ## Documentations 39 | 40 | You can find detailed documentation on the [wiki](https://github.com/Tatsu-syo/noMeiryoUI/wiki). 41 | 42 | ## License 43 | 44 | Licensed under [the MIT License](https://github.com/Tatsu-syo/noMeiryoUI/blob/master/LICENSE). 45 | -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- 1 | # No!! MeiryoUI 2 | 3 | No!! MeiryoUI重新启用了自定义Windows用户界面字体的功能,该功能自Windows 8.1以来已被删除。 4 | 5 | No!! MeiryoUI 在Windows 11 22H2上有一些局限性, 6 | 7 | 如果您有一些想法或问题,请点击[discussions](https://github.com/tatsu-syo/nomeiryoui/discussions)。 8 | 9 | ## 使用需求 10 | 11 | - Windows 8 或以上。 12 | - 虽然NoMeiryoUI能在Windows Vista上工作,但并不会积极测试Bug并确保兼容性,建议使用系统设置。 13 | 14 | ## 使用注意 15 | 16 | > [!IMPORTANT] 17 | > No!! MeiryoUI 会对注册表进行更改。建议在应用任何更改之前备份注册表。 18 | > 19 | > ``` batchfile 20 | > reg save "HKCU\Control Panel" .\reset_font.reg /y 21 | > ``` 22 | 23 | - 从[GitHub Releases](https://github.com/tatsu-syo/nomeiryoui/releases/latest)下载zip文件。 24 | - 全部解压至一个文件夹并运行"nomeiryoui.exe".。 25 | 26 | ## 已知问题 27 | 28 | - No!! MeiryoUI 无法工作在: 29 | - Windows 任务栏。 30 | - 系统自带的 UWP 应用(例如“设置”、“画图”)。 31 | - 忽略系统字体设置的应用程序。 32 | - No!! MeiryoUI 无法修改Windows 11的窗口标题字体。 33 | 34 | ## 说明文档 35 | 36 | 您可以在[Wiki](https://github.com/tatsu-syo/nomeiryoui/wiki)上找到详细的说明文档。 37 | 38 | ## 许可证书 39 | 40 | 使用[MIT License](https://github.com/tatsu-syo/nomeiryoui/blob/master/license)。 41 | -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- 1 | Meiryo UIも大っきらい!! source file package 2 | By Tatsuhiko Syoji(Tatsu) 2005,2012-2022 3 | 4 | [必要となるプログラム] 5 | ・Visual Studio 2008/2015以降(VC++) 6 | 7 | [ファイル] 8 | ReadMe.txt:本ファイルです。 9 | LICENSE.txt : MITライセンスの条文です。 10 | 11 | ・programフォルダ配下のファイル 12 | noMeiryoUI_2008.sln : Visual Studio 2008用ソリューションファイルです。 13 | noMeiryoUI_2008.vcproj : Visual Studio 2008用プロジェクトファイルです。 14 | noMeiryoUI.sln : Visual Studio 2015用ソリューションファイルです。 15 | noMeiryoUI.vcxproj : Visual Studio 2015用プロジェクトファイルです。 16 | noMeiryoUI.vcxproj.filters : Visual Studio 2015用プロジェクトファイルです。 17 | TWRフォルダ配下のファイル : GUI構築に使用したファイルです。 18 | その他のファイル : Meiryo UIも大っきらい!!自身のソースファイルです。 19 | 20 | ・helpフォルダ配下のファイル 21 | ja-jpフォルダ配下のファイル : 日本語版ヘルプファイルのソースファイルです。 22 | en-usフォルダ配下のファイル : 英語版ヘルプファイルのソースファイルです。 23 | zh-cnフォルダ配下のファイル : 簡体字中国語版ヘルプファイルのソースファイルです。 24 | zh-twフォルダ配下のファイル : 繁体字中国語版ヘルプファイルのソースファイルです。 25 | pt-brフォルダ配下のファイル : ポルトガル語(ブラジル)版ヘルプファイルのソースファイルです。 26 | ko-krフォルダ配下のファイル : 韓国語版ヘルプファイルのソースファイルです。 27 | 28 | ・langフォルダ配下のファイル 29 | English.lng : 英語の言語ファイルです。 30 | Chinese (Simplified)_China.lng : 簡体字中国語の言語ファイルです。 31 | Chinese (Traditional)_Taiwan.lng : 繁体字中国語の言語ファイルです。 32 | Portuguese_Brazil.lng : ポルトガル語(ブラジル)の言語ファイルです。 33 | Korean.lng : 韓国語の言語ファイルです。 34 | default.lng : 言語ファイルのサンプルを兼ねた言語に合う言語ファイルがないときに使用される言語ファイルです。 35 | 36 | [使い方] 37 | ・プログラムのビルド 38 | 1.まず、本アーカイブをディレクトリ付きで展開します。 39 | 2.programフォルダのnoMeiryoUI_2008.sln(Visual Studio 2008)か 40 |  noMeiryoUI.sln(Visual Studio 2015以降)を開きます。 41 | 3.ビルドを行うと実行ファイルがデバッグ版はDebugフォルダに、リリース版は 42 |  Releaseフォルダに生成されます。 43 | 44 | ・ヘルプの訳 45 | 1.編集元となるヘルプファイルをhelpフォルダの下のフォルダごとコピーしてください。 46 | 2.contentsフォルダ内のHTMLファイルを訳してください。 47 | 3..hhpファイルをHTML Helo workshopで開いて編集し、ヘルプファイルを作成してください。 48 | 49 | ・言語ファイルの訳 50 | 1.helpフォルダ内の言語ファイルをコピーしてください。 51 | 2.[RESOURCE]と書かれた行のキー=値となっている部分の値の部分を変更します。 52 |  FONT_FACE=System 53 |  とある行が表示に使用するフォント名になるので=の後ろにフォント名を書いてください。 54 |  FONT_CHARSET=1 55 |  とある行は表示に使用するフォントの文字セットになりますので、文字セットに対応する数値を指定してください。 56 |  上記以外はメッセージとなりますので、画面の表示と照らし合わせて訳してください。 57 |  例) 58 |  DLG_ALL_FONT=All fonts 59 | 60 |  文字セットに対応する数値は以下の通りとなります。 61 |  ANSI文字セット(通常はこれを指定します。):0 62 |  デフォルト文字セット:1 63 |  シンボル:2 64 |  日本語(SHift-JIS):128 65 |  ハングル文字:129 66 |  簡体字中国語(GB2312):134 67 |  繁体字中国語(BIG5):136 68 |  OEM文字セット:255 69 |  組合型符号化文字集合ハングル文字:130 70 |  ヘブライ語:177 71 |  アラビア語:178 72 |  ギリシア語:161 73 |  トルコ語:162 74 |  ベトナム語:163 75 |  タイ語:222 76 |  東欧文字セット:238 77 |  ロシア語文字セット:204 78 |  MAC文字セット:77 79 |  バルト文字セット:186 80 | 81 | 3.[PRESET]と書かれた行以下の内容はプリセットメニューのフォントの情報です。 82 |  各OSの初期状態のフォント名とフォントサイズを記述してください。 83 |  CAPTIONで始まる行はタイトルバーのフォント情報です。 84 |  ICONで始まる行はアイコンのフォント情報です。 85 |  SMALLCAPTIONで始まる行はパレットのフォント情報です。 86 |  STATUSで始まる行はステータスバー・ヒントのフォント情報です。 87 |  MESSAGEで始まる行はメッセージボックスのフォント情報です。 88 |  MENUで始まる行はメニューのフォント情報です。 89 |   90 |  FACEが入る行にはフォント名を記述してください。 91 |  SIZEが入る行にはフォントサイズを記述してください。 92 |  CHARSETが入る行には文字セットを記述してください。 93 |  後ろが_8で終わる行にはWindows 8/8.1の、_10で終わる行はWindows 10の 94 |  フォントの情報を記述してください。 95 |  例)タイトルバーがSegoe UIの11ポイント、文字セットデフォルト、Windows 8.1の場合 96 |  CAPTION_FACE_8=Segoe UI 97 |  CAPTION_SIZE_8=11 98 |  CAPTION_CHARSET_8=1 99 | 100 | 4.最後に、Meiryo UIも大っきらい!!が言語ファイルを読み込めるように 101 |  言語ファイル・ヘルプファイルをリネームします。 102 |  utilディレクトリのlocaletest.exeをコマンドプロンプトから 103 |  実行すると 言語名_国名.コードページ の形式で現在のWindowsの表示等の 104 |  言語が表示されます。 105 |  言語名で表示する場合は'_'より前の文字列にそれぞれのファイルの拡張子を 106 |  つけた名前に言語ファイルとヘルプファイルの名前を変更してください。 107 |  言語名と国に合わせた表示を行う場合は'.'より前の文字列にそれぞれのファイルの 108 |  拡張子をつけた名前に言語ファイルとヘルプファイルの名前を変更してください。 109 |  ファイル名の変更が終わったらnoMeiryoUI.exeと同じフォルダに置くことで 110 |  言語ファイルが読み込まれ、ヘルプファイルが表示されます。 111 | 112 |  ただし、default.lng、default.hlpは表示する言語の言語ファイルがない場合に 113 |  使用するので、残すようにしてください。 114 | 115 | 例) 116 | ・英語(国を問わない)の場合 117 | English_United States.437 118 | などと出るので、'_'の前のEnglishにそれぞれの拡張子を付けた名前に 119 | ファイル名を変更します。 120 | 言語ファイル名はEnglish.lng 121 | ヘルプファイル名はEnglish.chm 122 | となります。 123 | 124 | ・簡体字中国語(中国)の場合 125 | Chinese (Simplified)_China.936 126 | と出るのでChinese (Simplified)_Chinaにそれぞれの拡張子を付けた名前に 127 | ファイル名を変更します。 128 | 言語ファイル名はChinese (Simplified)_China.lng 129 | ヘルプファイル名はChinese (Simplified)_China.chm 130 | となります。 131 | 132 | [ライセンス] 133 | MITライセンス( http://opensource.org/licenses/mit-license.php )に従います。 134 | 135 | [作者] 136 | 庄子 達彦(Tatsu) 137 | E-mail Address tatsu_syo@nifty.com 138 | My Web page http://tatsu.life.coocan.jp/index.html 139 | GitHub project page https://github.com/Tatsu-syo/noMeiryoUI 140 | ------------------------------------------------------------------------ 141 | -------------------------------------------------------------------------------- /help/en-us/ToC.hhc: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 29 | 30 | -------------------------------------------------------------------------------- /help/en-us/contents/01.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 1.Getting started 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

1.Getting started

21 | 22 |
23 |

1.1 What's this?

24 |

25 | This program sets system font setting on Windows 8.1/10.
26 |

27 |
28 |
29 | 30 |
31 |

1.2 Target OS

32 |

33 | This program runs on Windows 8,8.1 and 10.
34 |

35 | 36 |
37 |
38 | 39 |
40 |

1.3 Files

41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 |
File nameContents
noMeiryoUI.exeProgram file
Chinese (Simplified)_China.lngSimplified Chinese message file.
Chinese (Traditional)_Taiwan.lngTraditional Chinese(Taiwan) message file.
English.lngEnglish message file.
Korean.lngKorean message file.
Portuguese_Brazil.lngPortuguese(Brazil) message file.
default.lngDefault message file.
Japanese.chmJapanese help file.
Chinese (Simplified)_China.chmSimplified Chinese help file.
Chinese (Traditional)_Taiwan.chmTraditional Chinese(Taiwan) help file.
English.chmEnglish help file.
Korean.chmKorean help file.
Portuguese_Brazil.chmPortuguese(Brazil) help file.
default.chmDefault help file.
91 |
92 |
93 | 94 |
95 |

1.4 Installation

96 |

Install

97 |

98 | Extruct all files in same folder.
99 |

100 | 101 |

Uninstall

102 |

103 | Delete all files.
104 |

105 |
106 | 107 |
108 |

1.5 Trouble shooting

109 |

Before change system fonts

110 |

111 | If you want to change system fonts by this program, I recommended to backup registry by utils\SAVEreg.bat (required Administrator privilege).
112 | Backup file is created on C:\Users\(user name)\AppData\Local.
113 |

114 | 115 |

If trouble occurred

116 |

117 | If trouble occurred and you took backup by utils\SAVEreg.bat, run utils\RESTOREreg.bat (required Administrator privilege).
118 | You can restore registry data before changing system fonts.
119 |

120 |
121 | 122 | 123 | 124 | -------------------------------------------------------------------------------- /help/en-us/contents/02.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 2.How to use 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

2.How to use

22 | 23 |
24 |

25 | Run noMeiryoUI.exe.
26 | This icon().
27 |

28 | 29 |

30 | And, below window is displayed.
31 |
32 | Push select... button to set user interface element.
33 |

34 | 35 |

36 | Upper group, you can set all userface elements font.
37 | Bottom group, you can set each user interface element font individually.
38 |

39 | 40 |

41 | When you push select... button, this dialog is displayed.
42 |
43 |

44 |

45 | Choice font face, font size, font style, charset, and push OK button. 46 |

47 |

48 | Push Apply and exit button, you can set user interface font and exit.
49 | Push Apply button, you can set user interface font.
50 |

51 | 52 |
53 | 54 |
55 | 56 |
57 |

Options menu

58 | 82 |
83 | 84 |
85 | 86 |
87 |

Command line option.

88 |

89 | Command line format is below.
90 | noMeiryoUI [font_setting_file] [options...]
91 |

92 |

93 | If you specify font setting file, font setting file is loaded when this program started. 94 |

95 | 96 |

Options

97 |

98 | In [options...], you can use these options.
99 | If you use multiple options you must separate option name by space.
100 |

101 | 117 | 118 |
119 | 120 |
121 | 122 |
123 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /help/en-us/contents/03.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 3.History 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

3.History

22 | 23 |
24 |

04/19/2025 Version 3.4.0

25 | 29 |
30 | 31 |
32 | 33 |
34 |

03/03/2024 Version 3.3.0

35 | 40 |
41 | 42 |
43 | 44 |
45 |

02/25/2024 Version 3.3.0

46 | 51 |
52 | 53 |
54 | 55 |
56 |

09/03/2023 Version 3.2.1.1

57 | 60 |
61 | 62 |
63 | 64 |
65 |

09/03/2023 Version 3.2.1

66 | 71 |
72 | 73 |
74 | 75 |
76 |

08/27/2023 Version 3.2.0

77 | 85 |
86 | 87 |
88 | 89 |

09/26/2022 Version 3.1.0.1

90 | 93 | 94 | 95 |
96 | 97 | 98 |

09/21/2022 Version 3.1.0

99 | 104 | 105 | 106 |
107 | 108 |
109 |

06/26/2022 Version 3.0.0.1

110 | 113 |
114 | 115 |
116 | 117 |
118 |

02/13/2022 Version 3.0.0

119 | 125 |
126 | 127 |
128 |
129 |

11/28/2021 Version 2.42(Release only in GitHub)

130 | 134 |
135 | 136 |
137 |
138 |

01/10/2021 Version 2.41

139 | 143 |
144 | 145 |
146 | 147 |
148 |

07/26/2020 Version 2.40.2

149 | 152 |
153 | 154 |
155 | 156 |
157 |

06/28/2020 Version 2.40.1

158 | 161 |
162 | 163 |
164 | 165 |
166 |

05/31/2020 Version 2.40

167 | 172 |
173 | 174 |
175 | 176 |
177 |

01/13/2020 Version 2.36

178 | 184 |
185 | 186 |
187 | 188 |
189 |

04/28/2018 Version 2.35

190 | 197 |
198 |
199 | 200 |
201 |

06/03/2017 Version 2.34

202 | 208 |
209 |
210 | 211 |
212 |

05/14/2017 Version 2.33

213 | 219 |
220 |
221 | 222 |
223 |

10/10/2016 Version 2.32

224 | 233 |
234 |
235 | 236 |
237 |

09/19/2016 Version 2.31

238 | 247 |
248 |
249 | 250 |
251 |

08/19/2016 Version 2.30

252 | 256 |
257 |
258 | 259 |
260 |

261 | To know previous version's changes, please read Japanese version help file. 262 |

263 |
264 | 265 | 266 | 267 | -------------------------------------------------------------------------------- /help/en-us/contents/04.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | License 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

4.License

21 | 22 |
23 |

Copyright

24 |

25 | This program is freeware.
26 | Source files are distributed under the MIT open source license.(http://opensource.org/licenses/mit-license.php)
27 |

28 |
29 |
30 | 31 |
32 |

Author

33 |
34 | Tatsuhiko Syoji(Tatsu)
35 | E-mail Address tatsu_syo@nifty.com
36 | My Web page https://www.tatsu-syo.info/index.html
37 |
38 |
39 |
40 | 41 |
42 |

Translators

43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 |
LanguageAuthor
EnglishTatsu,mon-jai
Simplified Chinese(China)Gekka Tachibana,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadboy
Traditional Chinese(Taiwan)Austin Chang,HSSadboy,abc0922001,jay900604
KoreandeVbug
Portuguese(Brazil)Claudio Mantovani Vieira
JapaneseTatsu
66 |
67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /help/en-us/contents/FontSel.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/en-us/contents/FontSel.PNG -------------------------------------------------------------------------------- /help/en-us/contents/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/en-us/contents/icon.png -------------------------------------------------------------------------------- /help/en-us/contents/noMeiryoUI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/en-us/contents/noMeiryoUI.PNG -------------------------------------------------------------------------------- /help/en-us/contents/noMeiryoUI.css: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | body{ 6 | background-color:white; 7 | color:black; 8 | line-height:1.2em; 9 | } 10 | div.chapter{ 11 | background-color:white; 12 | color:black; 13 | margin:0.5em; 14 | padding:0.5em; 15 | } 16 | h1{ 17 | font-size: 1.3em; 18 | line-height:1.2em; 19 | } 20 | h2 { 21 | font-size: 1.2em; 22 | } 23 | 24 | h3 { 25 | font-size: 1.1em; 26 | /* border-bottom-width:2px; */ 27 | border-style:none none double none; 28 | } 29 | span.button { 30 | background-color:white; 31 | color:black; 32 | margin:1px; 33 | padding:1px; 34 | border-style:outset; 35 | border-width:2px; 36 | } 37 | 38 | span.check { 39 | background-color:white; 40 | color:black; 41 | margin:1px; 42 | padding:1px; 43 | border-style:inset; 44 | border-width:2px; 45 | } 46 | -------------------------------------------------------------------------------- /help/en-us/help_en.hhp: -------------------------------------------------------------------------------- 1 | [OPTIONS] 2 | Compatibility=1.1 or later 3 | Compiled file=en.chm 4 | Contents file=ToC.hhc 5 | Default topic=contents\02.html 6 | Display compile progress=Yes 7 | Language=0x409 8 | Title=No!! Meiryo UI help 9 | 10 | 11 | [FILES] 12 | contents\01.html 13 | contents\02.html 14 | contents\03.html 15 | contents\04.html 16 | 17 | -------------------------------------------------------------------------------- /help/ja-jp/ToC.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/ToC.hhc -------------------------------------------------------------------------------- /help/ja-jp/contents/01.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 1.始めに 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

1.始めに

21 | 22 |
23 |

1.1 本ソフトは何か?

24 |

25 |  本ソフトはWindows 8/8.1/10で画面の各部分のフォントを設定するツールです。
26 |  なぜかWindows 8/8.1/10では標準で画面の各部分のフォントを設定することができなくなっていたので作成しました。
27 |

28 |
29 |
30 | 31 |
32 |

1.2 動作環境

33 |

34 |  本プログラムはWindows 8/8.1/10で動作します。
35 |  デスクトップに表示されたウインドウの各部分のフォントを設定するのでデスクトップアプリです。
36 |

37 |

38 |  Windows Vista,7でも動作しますが、これらのOSでは画面の各部分のフォントを設定することが当たり前にできますので意味がありません。
39 |

40 | 41 |
42 |
43 | 44 |
45 |

1.3 構成ファイル

46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 |
ファイル名内容
noMeiryoUI.exe本ソフトの実行ファイルです。
ja-JP.chm日本語で動作させるときのメッセージを記述したファイルです。
zh-CN.lang簡体字中国語で動作させるときのメッセージを記述したファイルです。
zh-CN.lng繁体字中国語で動作させるときのメッセージを記述したファイルです。
en.lng英語で動作させるときのメッセージを記述したファイルです。
ko-KR.lng韓国語で動作させるときのメッセージを記述したファイルです。
pt-BR.lngポルトガル語(ブラジル)で動作させるときのメッセージを記述したファイルです。
default.lng日本語および上記以外の言語で動作させるときのメッセージを英語で記述したファイルです。
ja-JP.chm日本語版ヘルプファイルです。
zh-CN.chm簡体字中国語版ヘルプファイルです。
zh-TW.chm繁体字中国語版ヘルプファイルです。
en.chm英語版ヘルプファイルです。
ko-KR.chm韓国語版ヘルプファイルです。
default.chm日本語および上記以外の言語で動作させるときのヘルプファイルです。
utils\SAVEreg.batMeiryo UIも大っきらい!!が関連するレジストリをバックアップするファイルです。
utils\RESTOREreg.batMeiryo UIも大っきらい!!が関連するレジストリをリストアするバッチファイルです。
102 |
103 |
104 | 105 |
106 |

1.4 インストール・アンインストール

107 |

インストール

108 |

109 |  インストールする際は本ソフトのアーカイブを全部同じディレクトリに展開してください。
110 |

111 | 112 |

アンインストール

113 |

114 |  アンインストールを行う場合は本ソフトを展開したディレクトリごと消してください。
115 |

116 |
117 | 118 |
119 |

1.5 トラブル対策

120 |

実行前のレジストリバックアップ

121 |

122 |  本プログラムを実行する前にutils\SAVEreg.batを実行してフォント等に関連するレジストリをバックアップしておくことを推奨します(管理者権限が必要です)。
123 |  バックアップファイルはC:\Users\(ユーザー)\AppData\Localの下に格納されます。
124 |

125 | 126 |

トラブルが起きた際の対処

127 |

128 |  本プログラムを実行してトラブルが起きた場合にレジストリバックアップを行っていた場合はutils\RESTOREreg.batを実行する事で元の状態に戻すことができます(管理者権限が必要です)。
129 |

130 |
131 | 132 | 133 | 134 | -------------------------------------------------------------------------------- /help/ja-jp/contents/02.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 2.本ソフトの使い方 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

2.本ソフトの使い方

22 | 23 |
24 |

2.1 始めに

25 |

26 |  エクスプローラーからnoMeiryoUI.exeのアイコン をダブルクリックするなどして、noMeiryoUI.exeを実行してください。
27 |  下記の画面が表示されます。
28 |  Windowsのバージョンは製品名(内部バージョン番号)という形式で表示しております。動作確認、障害報告等にご利用ください。
29 |

30 | 31 |

32 | Meiryo UIも大っきらい!!画面
33 |

34 |
35 |
36 |
37 |

2.2 操作方法

38 |

39 |  画面が表示されると画面の各部分の名称と設定されているフォント名が表示されます。
40 |

41 | 42 |

システムフォントを1つのフォントにすべて設定する

43 |

44 |  上側に表示されている「全体設定」という枠は画面の各部分のフォントを同じフォント・フォントサイズ・書式で設定するための項目です。
45 |

46 |

47 |  「すべてのフォント」と書かれた横には選択されているフォントが表示されます。
48 |  フォント名の横の「選択」ボタンを押下すると、フォント選択ダイアログからフォントを選択できます。
49 |  「一括設定して終了」ボタンを押下すると選択したフォント・フォントサイズ・書式を画面の各部分に設定してプログラムを終了します。
50 |  「適用」ボタンを押下すると選択したフォント・フォントサイズ・書式を画面の各部分に設定します。
51 |

52 | 53 |

画面の各項目のシステムフォントを個別に設定する

54 |

55 |  下側に表示されている「個別設定」という枠は画面の各部分のフォントを個別に設定するための項目です。
56 |

57 |

58 |  フォントを変更する際は変更したい項目のフォント名の横にある「選択」ボタンを押下してください。
59 |  フォント選択ダイアログが表示されるので、フォント・フォントサイズ・書式を好みに合わせて設定してください。
60 |
61 |  設定が終わったら「設定して終了」ボタンを押下すると選択したフォントを画面の各部分に設定してプログラムを終了します。
62 |  「適用」ボタンを押下すると選択したフォントを画面の各部分に設定します。
63 |  「設定せず終了」ボタンを押下するとプログラムを終了します。
64 |

65 |
66 | 67 | 68 | 69 |
70 |
71 |

2.3 フォントの選択

72 |

73 |  フォント名の横にある選択ボタンを押下すると下記のフォント選択ダイアログが表示されます。
74 | フォント選択ダイアログ
75 |

76 |

77 |  フォント選択ダイアログでは以下の指定を行うことができます。
78 |

79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 |
名称機能
フォント名(F)フォントを指定します。
スタイル(Y)フォントのスタイルを指定します。
サイズ(S)フォントサイズを指定します。
太字(B)チェックすると文字を太くします。
斜体(I)チェックすると文字を斜体にします。
下線(U)チェックすると下線を付けます。
取り消し線(T)チェックすると取り消し線をつけます。
文字セット(C)フォントの文字セットを指定します。
108 |

109 |  フォントを選択して「OK」ボタンを押下するとフォントを選択します。
110 |  選択必須の箇所が選択されてない場合、エラーメッセージが表示されますので指示に従って選択を行ってください。
111 |

112 |
113 |
114 |
115 |

2.4 メニュー操作

116 | 192 |
193 |
194 |
195 |

2.5 コマンドラインオプション

196 |

197 |  コマンドラインからオプションを指定することで起動時にフォント設定を読み込むことができるほか、指定したフォント設定で自動的にシステムフォントを設定することができます。
198 |

199 |

200 |  コマンドラインの書式は以下の通りです。
201 | noMeiryoUI フォント設定ファイル名 [options...]
202 |
203 |  フォント設定ファイルには本プログラムでフォント設定を保存したiniファイルを指定します。
204 |  フォント設定ファイル名に空白を含む場合はファイル名を"(ダブルクォーテーション)で囲ってください。
205 |
206 |

207 | 208 |

オプション

209 |

210 | [options...]とある部分にはスペース区切りで次のオプションを指定することができます。 211 |

212 | 228 | 229 |

例1. MySet.iniというフォント設定ファイルを起動時に読み込む場合

230 |

231 |  MySet.iniというフォント設定ファイルを起動時に読み込む場合はコマンドプロンプトなどから以下のように入力します。
232 | noMeiryoUI MySet.ini 233 |

234 | 235 |

例2. Your Settings.iniというフォント設定ファイルの内容でシステムフォントを設定する場合

236 |

237 |  Your Settings.iniというフォント設定ファイルの内容でシステムフォントを設定する場合はコマンドプロンプトなどから以下のように入力します。
238 | noMeiryoUI "Your Settings.ini" -set 239 |

240 | 241 |

例3. 起動後1分後にrestore Settings.iniというフォント設定ファイルの内容でシステムフォントを設定する場合

242 |

243 |  起動後1分後にrestore Settings.iniというフォント設定ファイルにシステムフォントを設定する場合はコマンドプロンプトなどから以下のように入力します。
244 | noMeiryoUI "Your Settings.ini" -set -delay 60 245 |

246 | 247 |
248 | 249 | 250 | 251 | -------------------------------------------------------------------------------- /help/ja-jp/contents/03.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 3.製作履歴 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

3.製作履歴

22 | 23 |
24 |

2025/04/19 Version 3.4.0

25 | 29 |
30 | 31 |
32 |
33 |

2024/03/03 Version 3.3.1

34 | 41 |
42 | 43 |
44 | 45 |
46 |

2024/02/25 Version 3.3.0

47 | 54 |
55 | 56 |
57 | 58 |
59 |

2023/09/03 Version 3.2.1.1

60 | 64 |
65 | 66 |
67 | 68 |
69 |

2023/09/03 Version 3.2.1

70 | 78 |
79 | 80 |
81 | 82 |
83 |

2023/08/27 Version 3.2.0

84 | 91 |
92 |
93 | 94 |
95 |

2022/09/26 Version 3.1.0

96 | 99 |
100 |
101 | 102 |
103 |

2022/09/21 Version 3.1.0

104 | 109 |
110 |
111 | 112 |
113 |

2022/06/26 Version 3.0.0.1

114 | 117 |
118 |
119 | 120 |
121 |

2022/02/13 Version 3.0.0

122 | 128 |
129 | 130 |
131 |
132 |

2021/11/28 Version 2.42(GitHub限定暫定公開)

133 | 137 |
138 | 139 |
140 |
141 |

2021/01/10 Version 2.41

142 | 146 |
147 | 148 |
149 | 150 |
151 |

2020/07/26 Version 2.40.2

152 | 155 |
156 | 157 |
158 | 159 |
160 |

2020/06/28 Version 2.40.1

161 | 164 |
165 | 166 |
167 | 168 |
169 |

2020/05/31 Version 2.40

170 | 175 |
176 | 177 |
178 | 179 |
180 |

2020/01/13 Version 2.36

181 | 187 |
188 | 189 |
190 | 191 |
192 |

2018/04/28 Version 2.35

193 | 200 |
201 |
202 | 203 |
204 |

2017/06/03 Version 2.34

205 | 211 |
212 |
213 | 214 |
215 |

2017/05/14 Version 2.33

216 | 222 |
223 |
224 | 225 |
226 |

2016/10/10 Version 2.32

227 | 232 |
233 |
234 | 235 |
236 |

2016/09/19 Version 2.31

237 | 247 |
248 |
249 | 250 |
251 |

2016/08/19 Version 2.30

252 | 257 |
258 |
259 | 260 |
261 |

2016/06/09 Version 2.20

262 | 266 |
267 |
268 | 269 |
270 |

2016/02/23 Version 2.17

271 | 276 |
277 |
278 | 279 |
280 |

2015/08/16 Version 2.16

281 | 286 |
287 |
288 | 289 |
290 |

2015/07/20 Version 2.15

291 | 301 |
302 |
303 | 304 |
305 |

2015/01/04 Version 2.14

306 | 310 |
311 |
312 | 313 |
314 |

2014/07/13 Version 2.13

315 | 322 |
323 |
324 | 325 |
326 |

2013/10/06 Version 2.12

327 | 331 |
332 |
333 | 334 |
335 |

2013/02/23 Version 2.11

336 | 341 |
342 |
343 | 344 |
345 |

2013/02/17 Version 2.10

346 | 352 |

353 |  起動時のコマンドラインオプションに"noMeiryoUI"(ダブルクォーテーションは不要、大文字小文字は書かれている通りに入力すること。)をつけて起動すると...?
354 |

355 | 356 |
357 |
358 | 359 |
360 |

2013/02/11 Version 2.02

361 |

362 |  選択したフォントの中にフォント名が"@"で始まるフォントが存在する場合、選択したフォントが本当に意図したものかどうかの問い合わせダイアログを表示する条件が誤っていたので修正を行いました。
363 |
364 |  異常終了に対応するため、フォント選択ダイアログが正常に表示されなかったときにダイアログを出すようにした他、フォント選択ダイアログ表示時の初期化処理を見直しました。
365 |  次の版ではフォント選択を共通ダイアログではなく、自分で作成する予定です。
366 |

367 |
368 |
369 | 370 |
371 |

2013/02/03 Version 2.01

372 |

373 |  選択したフォントの中にフォント名が"@"で始まるフォントが存在する場合、選択したフォントが本当に意図したものかどうかの問い合わせダイアログを表示するようにしました。
374 |
375 |  意図せずにフォント名が"@"で始まる縦書き用フォントを指定する事例が多いので事前確認を行うようにしました。
376 |

377 |
378 |
379 | 380 |
381 |

2012/11/18 Version 2.00

382 |

383 |  「Meiryo UIも大っきらい!!」としての初版です。
384 |  画面の各部分のフォントサイズの設定機能を追加しました。
385 |

386 |
387 |
388 | 389 |
390 |

2005/09/25 Version 1.00

391 |

392 |  本ソフトの前身となるソフトウェア、「Tahomaなんて大っきらい!」の初版です。
393 |

394 |
395 | 396 | 397 | 398 | -------------------------------------------------------------------------------- /help/ja-jp/contents/04.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 4.ライセンスと作者について 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

4.ライセンスと作者について

21 | 22 |
23 |

著作権など

24 |

25 |  本ソフトウェアは著作権をTatsuこと庄子達彦が保有するフリーウェアです。
26 |  本ソフトは無料で目的を問わず自由に使ってかまいません。
27 |  が、転載する際には一声いただけると作者が喜びます。
28 |
29 |  作者は本ソフトを利用するにあたってなるべく不具合が出ないよう心がけておりますが、本ソフトの運用結果に対して作者は一切責任を取りません。
30 |
31 |  ご意見・ご感想などありましたら、下記の作者のところに一声いただけるとうれしいです。
32 |

33 | 34 |

35 | ソースファイルについてはMITライセンス(http://opensource.org/licenses/mit-license.php)に従います。
36 |

37 |
38 |
39 | 40 |
41 |

作者

42 |
43 | 庄子 達彦(Tatsu)
44 | E-mail Address tatsu_syo@nifty.com
45 | My Web page https://www.tatsu-syo.info/index.html
46 |
47 |
48 |
49 | 50 |
51 |

翻訳者

52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 |
言語翻訳者
英語Tatsu、mon-jai様
簡体字中国語(中国)立花 月下様、kingofotaku様、icebeam030様、LucidLoli様、Luke Luo様、HSSadboy様
繁体字中国語(台湾)Austin Chang様、HSSadboy様、abc0922001様、jay900604様
韓国語devBug様
ポルトガル語(ブラジル)Claudio Mantovani Vieira様
日本語Tatsu
75 |
76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /help/ja-jp/contents/FontSel.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/contents/FontSel.PNG -------------------------------------------------------------------------------- /help/ja-jp/contents/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/contents/icon.png -------------------------------------------------------------------------------- /help/ja-jp/contents/noMeiryoUI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/contents/noMeiryoUI.PNG -------------------------------------------------------------------------------- /help/ja-jp/contents/noMeiryoUI.css: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | body{ 6 | background-color:white; 7 | color:black; 8 | line-height:1.2em; 9 | } 10 | div.chapter{ 11 | background-color:white; 12 | color:black; 13 | margin:0.5em; 14 | padding:0.5em; 15 | } 16 | h1{ 17 | font-size: 1.3em; 18 | line-height:1.2em; 19 | } 20 | h2 { 21 | font-size: 1.2em; 22 | } 23 | 24 | h3 { 25 | font-size: 1.1em; 26 | /* border-bottom-width:2px; */ 27 | border-style:none none double none; 28 | } 29 | span.button { 30 | background-color:white; 31 | color:black; 32 | margin:1px; 33 | padding:1px; 34 | border-style:outset; 35 | border-width:2px; 36 | } 37 | 38 | span.check { 39 | background-color:white; 40 | color:black; 41 | margin:1px; 42 | padding:1px; 43 | border-style:inset; 44 | border-width:2px; 45 | } 46 | -------------------------------------------------------------------------------- /help/ja-jp/help_ja-jp.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ja-jp/help_ja-jp.hhp -------------------------------------------------------------------------------- /help/ko-kr/ToC.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/ToC.hhc -------------------------------------------------------------------------------- /help/ko-kr/contents/01.html: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 1. 시작하기에 앞서 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

1. 시작하기에 앞서

21 | 22 |
23 |

1.1 이게 뭐죠?

24 |

25 |  이 소프트웨어는 Windows 8/8.1/10의 화면 각 부분의 글꼴을 설정하는 도구입니다.
26 |  어째선지 Windows 8/8.1/10에서 표준 화면의 각 부분의 글꼴을 설정할 수 없게 되었기에 이 프로그램을 만들었습니다.
27 |

28 |
29 |
30 | 31 |
32 |

1.2 작동 환경

33 |

34 |  본 프로그램은 Windows 8, 8.1 그리고 10에서 작동합니다.
35 |  데스크탑에 표시된 윈도우의 각 부분의 글꼴을 설정하기 때문에 데스크탑 응용프로그램입니다.
36 |

37 |

38 |  Windows Vista부터 7까지도 동작은 합니다만, 저 운영체제들은 화면 각 부분의 글꼴을 자체적으로 설정할 수 있기 때문에 의미가 없습니다.
39 |

40 | 41 |
42 |
43 | 44 |
45 |

1.3 파일들

46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 |
파일 이름설명
noMeiryoUI.exe메인 프로그램 파일입니다.
ko-KR.lng한국어 현지화 파일입니다.
zh-CN.lng중국어(간체) 현지화 파일입니다.
en.lng영어 현지화 파일입니다.
default.lng기본 현지화 파일(영어)입니다.
ko-KR.chm한국어 도움말 파일입니다.
ja-JP.chm일본어 도움말 파일입니다.
zh-CN.chm중국어(간체) 도움말 파일입니다.
en.chm영어 도움말 파일입니다.
default.chm기본 도움말 파일(영어)입니다.
84 |
85 |
86 | 87 |
88 |

1.4 설치

89 |

설치

90 |

91 | 모든 파일을 같은 폴더 아래에 압축 해제합니다.
92 |

93 | 94 |

삭제

95 |

96 | 모든 파일을 삭제하세요.
97 |

98 |
99 | 100 |
101 |

1.5 Trouble shooting

102 |

Before change system fonts

103 |

104 | If you want to change system fonts by this program, I recommended to backup registry by utils\SAVEreg.bat (required Administrator privilege).
105 | Backup file is created on C:\Users\(user name)\AppData\Local.
106 |

107 | 108 |

If trouble occurred

109 |

110 | If trouble occurred and you took backup by utils\SAVEreg.bat, run utils\RESTOREreg.bat (required Administrator privilege).
111 | You can restore registry data before changing system fonts.
112 |

113 |
114 | 115 | 116 | 117 | -------------------------------------------------------------------------------- /help/ko-kr/contents/02.html: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 2. 사용 방법 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

2. 사용 방법

22 | 23 |
24 |

2.1 소개

25 |

26 |  탐색기에서 noMeiryoUI.exe의 아이콘()을 더블클릭하는 등, noMeiryoUI.exe를 실행합니다.
27 |  아래 화면이 표시됩니다.
28 |  Windows의 버전은 제품명(내부 버전 번호) 형식으로 표시하고 있습니다. 동작 확인, 오류 보고 등에 사용해주세요.
29 |

30 | 31 |

32 | No!! Meiryo UI 화면
33 |

34 |
35 |
36 |
37 |

2.2 조작 방법

38 |

39 |  화면이 표시되면 화면 각 부분의 명칭과 설정되어 있는 글꼴 이름이 표시됩니다.
40 |  글꼴을 변경하려면 글꼴 이름 옆에 있는 [선택...] 버튼을 누르세요.
41 |
42 |  글꼴 선택 대화상자가 표시되면 글꼴, 글꼴 크기, 서식을 취향에 따라 설정해주세요.
43 |  모든 글꼴 설정을 끝내 [확인] 버튼을 누르면, 선택한 글꼴이 화면의 각 부분에 설정됩니다.
44 |

45 |

46 |  "@"로 시작하는 이름의 세로쓰기용 글꼴은 글꼴 선택 대화상자에서 표시되지 않으며, 따라서 선택할 수 없습니다.
47 |

48 |
49 | 50 |
51 |

2.3 글꼴 [모두 설정]

52 |

53 |  맨 위에 표시되는 [모든 글꼴]이라는 항목은 화면의 각 부분의 글꼴을 모두 같은 글꼴, 글꼴 크기, 서식으로 설정하는 항목입니다.
54 |  글꼴 이름 옆의 [선택...] 버튼을 눌러 글꼴 선택 대화상자에서 글꼴을 선택한 후 [모두 설정] 버튼을 누르면 화면의 각 부분의 글꼴이 모두 같은 글꼴, 글꼴 크기, 서식으로 설정됩니다.
55 |

56 |

57 |  "@"로 시작하는 이름의 세로쓰기용 글꼴은 글꼴 선택 대화상자에서 표시되지 않으며, 따라서 선택할 수 없습니다.
58 |

59 |
60 |
61 |
62 |

2.4 글꼴 선택

63 |

64 |  글꼴 이름 옆에 있는 [선택...] 버튼을 누르면 아래와 같은 글꼴 선택 대화상자가 표시됩니다.
65 | 글꼴 선택 대화상자
66 |

67 |

68 |  글꼴 선택 대화상자에서는 다음과 같은 값을 설정할 수 있습니다.
69 |

70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 |
명칭기능
글꼴 이름(F)글꼴을 지정합니다.
스타일(Y)글꼴의 스타일(굵게, 기울임꼴 등)을 지정합니다.
크기(S)글꼴 크기를 지정합니다.
밑줄(U)체크하면 밑줄이 적용됩니다.
취소선(T)체크하면 취소선이 적용됩니다.
문자 집합(C)문자 집합을 선택합니다.
93 |

94 |  글꼴을 선택하고 [확인] 버튼을 누르면 글꼴이 선택됩니다.
95 |  선택 필수 부분이 선택되지 않은 경우 오류 메시지가 표시되므로 지시에 따라 필수 부분을 선택해주세요.
96 |

97 |
98 |
99 |
100 |

2.5 메뉴

101 | 170 |
171 |
172 |
173 |

2.6 명령줄 옵션

174 |

175 |  명령줄 옵션으로 실행 시에 글꼴 설정을 읽을 수 있고, 지정한 글꼴 설정을 자동으로 시스템 글꼴로 설정하는 것이 가능합니다.
176 |

177 |

178 |  명령줄은 다음과 같은 형식을 따릅니다.
179 | noMeiryoUI 글꼴 설정 파일 이름 [options...]
180 |
181 |  글꼴 설정 파일은 이 프로그램에서 글꼴 설정을 저장한 ini 파일을 의미합니다.
182 |  글꼴 설정 파일 이름에 공백이 있을 경우 파일 이름을 "(쌍따옴표)를 이용해 묶어주세요.
183 |
184 |  글꼴 설정 파일 이름 뒤에 공백을 넣고 -set라고 입력하면 지정한 글꼴 설정 파일의 내용으로 시스템 글꼴을 설정하고 프로그램을 종료합니다.
185 | 배치 파일 등에 사용하면 미리 준비한 글꼴 설정 파일의 내용으로 시스템 글꼴을 한번에 설정하는 것이 가능해 편리합니다. 186 |

187 | 188 |

Options

189 |

190 | In [options...], you can use these options.
191 | If you use multiple options you must separate option name by space.
192 |

193 | 209 | 210 |

예1. MySet.ini라는 글꼴 설정 파일을 실행 시 읽는 경우

211 |

212 |  MySet.ini라는 글꼴 설정 파일을 실행 시에 읽는 경우 명령줄 등에 다음과 같이 입력합니다.
213 | noMeiryoUI MySet.ini 214 |

215 | 216 |

예2. Your Settings.ini라는 글꼴 설정 파일의 내용으로 시스템 글꼴을 설정하는 경우

217 |

218 |  Your Settings.ini라는 글꼴 설정 파일에 따라 시스템 글꼴을 설정하는 경우 명령줄 등에 다음과 같이 입력합니다.
219 | noMeiryoUI "Your Settings.ini" -set 220 |

221 | 222 |
223 | 224 | 225 | 226 | -------------------------------------------------------------------------------- /help/ko-kr/contents/03.html: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 3. 제작 이력 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

3. 제작 이력

22 | 23 |
24 |

04/19/2025 Version 3.4.0

25 | 29 |
30 | 31 |
32 | 33 |
34 |

2024/03/05 Version 3.3.1

35 |
36 |
37 | 38 |
39 |

2024/02/25 Version 3.3.0

40 |
41 |
42 | 43 |
44 |

2023/09/03 Version 3.2.1

45 |
46 |
47 | 48 |
49 |

2023/08/27 Version 3.2.0

50 |
51 |
52 | 53 |
54 |

2022/09/26 Version 3.1.0.1

55 |
56 |
57 | 58 |
59 |

2022/09/21 Version 3.1.0

60 |
61 |
62 | 63 |
64 |

2022/02/13 Version 3.0.0

65 |
66 |
67 | 68 |
69 |

2021/01/10 Version 2.41

70 |
71 |
72 | 73 |
74 |

2020/07/26 Version 2.40.2

75 |

2020/06/28 Version 2.40.1

76 | 79 |
80 |
81 | 82 |
83 |

2020/05/31 Version 2.40

84 | 89 |
90 |
91 | 92 |
93 |

2020/01/13 Version 2.36

94 | 100 |
101 |
102 | 103 |
104 |

2018/04/28 Version 2.35

105 | 111 |
112 |
113 | 114 |
115 |

2017/06/03 Version 2.34

116 | 122 |
123 |
124 | 125 |
126 |

2017/05/14 Version 2.33

127 | 133 |
134 |
135 | 136 |
137 |

2016/10/10 Version 2.32

138 | 143 |
144 |
145 | 146 |
147 |

2016/09/19 Version 2.31

148 | 158 |
159 |
160 | 161 |
162 |

2016/08/19 Version 2.30

163 | 168 |
169 |
170 | 171 |
172 |

2016/06/09 Version 2.20

173 | 177 |
178 |
179 | 180 |
181 |

2016/02/23 Version 2.17

182 | 187 |
188 |
189 | 190 |
191 |

2015/08/16 Version 2.16

192 | 197 |
198 |
199 | 200 |
201 |

2015/07/20 Version 2.15

202 | 212 |
213 |
214 | 215 |
216 |

2015/01/04 Version 2.14

217 | 221 |
222 |
223 | 224 |
225 |

2014/07/13 Version 2.13

226 | 233 |
234 |
235 | 236 |
237 |

2013/10/06 Version 2.12

238 | 242 |
243 |
244 | 245 |
246 |

2013/02/23 Version 2.11

247 | 252 |
253 |
254 | 255 |
256 |

2013/02/17 Version 2.10

257 | 263 |

264 |  프로그램 실행 시 명령줄 옵션에 "noMeiryoUI"(쌍따옴표는 불필요하고 대소문자 주의)를 붙여서 실행하면...?
265 |

266 | 267 |
268 |
269 | 270 |
271 |

2013/02/11 Version 2.02

272 |

273 |  선택한 글꼴의 글꼴 이름이 "@"로 시작하는 경우, 정말 의도하고 선택한 글꼴인지 확인하는 대화상자를 표시할 때 그 조건이 잘못되어 수정하였습니다.
274 |
275 |  이상 종료에 대응하기 위해, 글꼴 선택 대화상자가 정상적으로 표시되지 않은 경우 알림 대화상자를 표시하도록 했고, 글꼴 선택 대화상자 표시 시 초기화 처리를 검토했습니다.
276 |  다음 판에서 글꼴 선택을 공통 대화상자가 아닌 자체 제작으로 대체할 예정입니다.
277 |

278 |
279 |
280 | 281 |
282 |

2013/02/03 Version 2.01

283 |

284 |  선택한 글꼴의 글꼴 이름이 "@"로 시작하는 경우, 정말 의도하고 선택한 글꼴인지 확인하는 대화상자를 표시하도록 했습니다.
285 |
286 |  실수로 글꼴 이름이 "@"로 시작하는 세로쓰기용 글꼴을 선택하는 사례가 많기에 미리 확인을 할 수 있도록 했습니다.
287 |

288 |
289 |
290 | 291 |
292 |

2012/11/18 Version 2.00

293 |

294 |  [Meiryo UI도 정말 싫어!]로 수정된 초판입니다.
295 |  화면 각 부분의 글꼴 크기 설정 기능을 추가했습니다.
296 |

297 |
298 |
299 | 300 |
301 |

2005/09/25 Version 1.00

302 |

303 |  본 프로그램의 전신인 [Tahoma따위 정말 싫어!]의 초판입니다.
304 |

305 |
306 | 307 | 308 | 309 | -------------------------------------------------------------------------------- /help/ko-kr/contents/04.html: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 4. 라이센스와 제작자에 대해 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

4. 라이센스와 제작자에 대해

21 | 22 |
23 |

저작권

24 |

25 |  이 소프트웨어는 Tatsu(庄子 達彦; 타츠히코 쇼지)가 저작권을 보유하는 프리웨어입니다.
26 |  이 소프트웨어는 무료로, 목적을 불문하고 자유롭게 사용해도 상관없습니다.
27 |  하지만, 전재 시 알려주시면 제작자가 기뻐합니다.
28 |
29 |  제작자는 이 소프트웨어를 사용함에 있어 되도록 문제가 발생하지 않도록 유의하고 있습니다만, 이 소프트웨어를 사용하는 중 발생하는 그 어떤 문제에 대해서도 제작자는 일체의 책임을 지지 않습니다.
30 |
31 |  의견, 감상 등이 있으시다면, 아래 기록한 제작자의 연락처로 연락주시기 바랍니다.
32 |

33 | 34 |

35 | 소스 파일은 MIT 라이센스(http://opensource.org/licenses/mit-license.php)를 따릅니다.
36 |

37 |
38 |
39 | 40 |
41 |

제작자

42 |
43 | 庄子 達彦(타츠히코 쇼지; Tatsu)
44 | E-mail Address tatsu_syo@nifty.com
45 | My Web page https://www.tatsu-syo.info/index.html
46 |
47 |
48 |
49 | 50 |
51 |

번역자

52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 |
언어번역자
한국어deVbug,창윤
중국어(간체)Gekka Tachibana,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadboy
일본어Tatsu
영어Tatsu,mon-jai
Traditional ChineseAustin Chang,HSSadboy,abc0922001,jay900604
Portuguese(Brazil)Claudio Mantovani Vieira
75 |
76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /help/ko-kr/contents/FontSel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/contents/FontSel.png -------------------------------------------------------------------------------- /help/ko-kr/contents/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/contents/icon.png -------------------------------------------------------------------------------- /help/ko-kr/contents/noMeiryoUI.css: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | body{ 6 | background-color:white; 7 | color:black; 8 | line-height:1.2em; 9 | } 10 | div.chapter{ 11 | background-color:white; 12 | color:black; 13 | margin:0.5em; 14 | padding:0.5em; 15 | } 16 | h1{ 17 | font-size: 1.3em; 18 | line-height:1.2em; 19 | } 20 | h2 { 21 | font-size: 1.2em; 22 | } 23 | 24 | h3 { 25 | font-size: 1.1em; 26 | /* border-bottom-width:2px; */ 27 | border-style:none none double none; 28 | } 29 | span.button { 30 | background-color:white; 31 | color:black; 32 | margin:1px; 33 | padding:1px; 34 | border-style:outset; 35 | border-width:2px; 36 | } 37 | 38 | span.check { 39 | background-color:white; 40 | color:black; 41 | margin:1px; 42 | padding:1px; 43 | border-style:inset; 44 | border-width:2px; 45 | } 46 | -------------------------------------------------------------------------------- /help/ko-kr/contents/noMeiryoUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/contents/noMeiryoUI.png -------------------------------------------------------------------------------- /help/ko-kr/help_ko-kr.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/ko-kr/help_ko-kr.hhp -------------------------------------------------------------------------------- /help/pt-br/ToC.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/pt-br/ToC.hhc -------------------------------------------------------------------------------- /help/pt-br/contents/01.html: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Getting started 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

1.Iniciando

21 | 22 |
23 |

1.1 O que é isto?

24 |

25 | Este programa define 26 | a configuração das fontes do sistema no Windows 8.1/10.
27 |

28 |
29 |
30 | 31 |
32 |

1.2 Sistema Operacional Alvo

33 |

34 | Este programa roda no Windows 8,8.1 e 10.
35 |

36 | 37 |
38 |
39 | 40 |
41 |

1.3 Arquivos

42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 |
Nome do ArquivoConteúdo
noMeiryoUI.exeArquivo do programa
zh-CN.lngArquivo de mensagem em Chinês Simplificado.
en.lngArquivo de mensagem em Inglês.
ko-KR.lngArquivo de mensagem em Coreano.
default.lngArquivo de mensagem padrão.
ja-JP.chmArquivo de ajuda em Japonês.
zh-CN.chmArquivo de ajuda em Chinês Simplificado.
en.chmArquivo de ajuda em Inglês.
ko-KR.chmArquivo de ajuda em Coreano.
default.chmArquivo de ajuda padrão.
80 |
81 |
82 | 83 |
84 |

1.4 Instalação

85 |

Instalar

86 |

87 | Extraia 88 | todos os arquivos na mesma pasta.
89 |

90 | 91 |

Desinstalação

92 |

93 | Exclua 94 | todos os arquivos.
95 |

96 |
97 | 98 |
99 |

1.5 Trouble shooting

100 |

Before change system fonts

101 |

102 | If you want to change system fonts by this program, I recommended to backup registry by utils\SAVEreg.bat (required Administrator privilege).
103 | Backup file is created on C:\Users\(user name)\AppData\Local.
104 |

105 | 106 |

If trouble occurred

107 |

108 | If trouble occurred and you took backup by utils\SAVEreg.bat, run utils\RESTOREreg.bat (required Administrator privilege).
109 | You can restore registry data before changing system fonts.
110 |

111 |
112 | 113 | 114 | 115 | -------------------------------------------------------------------------------- /help/pt-br/contents/02.html: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | How to use 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

2.Como usar

22 | 23 |
24 |

25 | Rode o noMeiryoUI.exe.
26 | Este 27 | ícone ().
28 |

29 | 30 |

31 | E, 32 | abaixo, a janela é exibida.
33 |
34 | Pressione 35 | o botão Selec. ... 36 | (Selecionar) para definir o elemento da interface do usuário.
37 |

38 | 39 |

40 | Quando você pressionar o botão Selecionar..., esta janela será exibida.
41 |
42 |

43 |

44 | Escolha o nome, o tamanho e o 45 | estilo da fonte, o conjunto de caracteres e pressione o botão OK. 46 |

47 |

48 | Pressione o botão Configurar e você poderá definir a fonte da interface do usuário. 49 |

50 | 51 |
52 | 53 |
54 | 55 |
56 |

Options menu

57 | 81 |
82 | 83 |
84 | 85 |
86 |

Opção linha de comando .

87 |

88 | O formato da 89 | linha de comando está abaixo.
90 | noMeiryoUI [font_setting_file] [-set]
91 |

92 |

93 | Se você especificar o arquivo de configuração da fonte, ele será carregado quando este programa for iniciado. 94 |

95 |

96 | If you use multiple options you must separate option name by space.
97 |

98 | 99 |

Options

100 |

101 | In [options...], you can use these options.
102 | If you use multiple options you must separate option name by space.
103 |

104 | 120 | 121 | 122 |
123 | 124 | 125 | 126 | -------------------------------------------------------------------------------- /help/pt-br/contents/03.html: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | Histórico 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

3.Histórico

22 | 23 |
24 |

04/19/2025 Versão 3.4.0

25 | 29 |
30 | 31 |
32 | 33 |
34 |

03/03/2024 Versão 3.3.1

35 |
36 | 37 |
38 | 39 |
40 |

02/25/2024 Versão 3.3.0

41 |
42 | 43 |
44 | 45 |
46 |

03/09/2023 Versão 3.2.1

47 |
48 | 49 |
50 | 51 |
52 |

27/08/2023 Versão 3.2.0

53 |
54 | 55 |
56 | 57 |
58 |

26/09/2022 Versão 3.1.0.1

59 |
60 | 61 |
62 | 63 |
64 |

21/09/2022 Versão 3.1.0

65 |
66 | 67 |
68 | 69 |
70 |

13/02/2022 Versão 3.0.0

71 |
72 | 73 |
74 | 75 |
76 |

10/01/2020 Versão 2.41

77 | 82 |
83 | 84 |
85 | 86 |
87 |

26/07/2020 Versão 2.40.2

88 |

28/06/2020 Versão 2.40.1

89 |

31/05/2020 Versão 2.40

90 | 97 |
98 | 99 |
100 | 101 |
102 |

13/01/2019 Versão 2.36

103 | 112 |
113 |
114 | 115 |
116 |

28/04/2018 Versão 2.35

117 | 131 |
132 |
133 | 134 |
135 |

03/06/2017 Versão 2.34

136 | 147 |
148 |
149 | 150 |
151 |

14/05/2017 Version 2.33

152 | 162 |
163 |
164 | 165 |
166 |

10/10/2016 Versão 2.32

167 | 173 |
174 |
175 | 176 |
177 |

19/09/2016 Versão 2.31

178 | 184 |
185 |
186 | 187 |
188 |

19/08/2016 Versão 2.30

189 | 193 |
194 |
195 | 196 |
197 |

198 | Para conhecer as modificações de versões 199 | anteriores, por favor, leia a versão do arquivo da ajuda em Japonês 200 |

201 |
202 | 203 | 204 | 205 | -------------------------------------------------------------------------------- /help/pt-br/contents/04.html: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | License 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

4.Licença

21 | 22 |
23 |

Direitos Autorais

24 |

25 | Este programa é gratuito.
26 | Os 27 | arquivos de orígem são distribuídos sob a licença de código aberto MIT. (http://opensource.org/licenses/mit-license.php)
28 |

29 |
30 |
31 | 32 |
33 |

Autor

34 |
35 | Tatsuhiko Syoji(Tatsu)
36 | Endereço 37 | de E-mail tatsu_syo@nifty.com
38 | Minha Página Web https://www.tatsu-syo.info/index.html
39 |
40 |
41 |
42 | 43 |
44 |

Tradutores

45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 |
IdiomaAutor
InglêsTatsu,mon-jai
Chinês SimplificadoGekka Tachibana,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadboy
Chinês TradicionalAustin Chang,HSSadboy,abc0922001,jay900604
CoreanodeVbug
Português BrasileiroClaudio Mantovani Vieira
JaponêsTatsu
68 |
69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /help/pt-br/contents/FontSel.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/pt-br/contents/FontSel.PNG -------------------------------------------------------------------------------- /help/pt-br/contents/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/pt-br/contents/icon.png -------------------------------------------------------------------------------- /help/pt-br/contents/noMeiryoUI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/pt-br/contents/noMeiryoUI.PNG -------------------------------------------------------------------------------- /help/pt-br/contents/noMeiryoUI.css: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | body{ 6 | background-color:white; 7 | color:black; 8 | line-height:1.2em; 9 | } 10 | div.chapter{ 11 | background-color:white; 12 | color:black; 13 | margin:0.5em; 14 | padding:0.5em; 15 | } 16 | h1{ 17 | font-size: 1.3em; 18 | line-height:1.2em; 19 | } 20 | h2 { 21 | font-size: 1.2em; 22 | } 23 | 24 | h3 { 25 | font-size: 1.1em; 26 | /* border-bottom-width:2px; */ 27 | border-style:none none double none; 28 | } 29 | span.button { 30 | background-color:white; 31 | color:black; 32 | margin:1px; 33 | padding:1px; 34 | border-style:outset; 35 | border-width:2px; 36 | } 37 | 38 | span.check { 39 | background-color:white; 40 | color:black; 41 | margin:1px; 42 | padding:1px; 43 | border-style:inset; 44 | border-width:2px; 45 | } 46 | -------------------------------------------------------------------------------- /help/pt-br/help_br.hhp: -------------------------------------------------------------------------------- 1 | [OPTIONS] 2 | Compatibility=1.1 or later 3 | Compiled file=pt-BR.chm 4 | Contents file=ToC.hhc 5 | Default topic=contents\02.html 6 | Display compile progress=No 7 | Language=0x416 8 | Title=No!! Meiryo UI help 9 | 10 | 11 | [FILES] 12 | contents\01.html 13 | contents\02.html 14 | contents\03.html 15 | contents\04.html 16 | 17 | -------------------------------------------------------------------------------- /help/zh-cn/ToC.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/ToC.hhc -------------------------------------------------------------------------------- /help/zh-cn/contents/01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/contents/01.html -------------------------------------------------------------------------------- /help/zh-cn/contents/02.html: -------------------------------------------------------------------------------- 1 |  2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 2.本软件的使用方法 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

2.本软件的使用方法

22 | 23 |
24 |

2.1 首先

25 |

26 |  在文件资源管理器中双击noMeiryoUI.exe的图标 运行软件。
27 |  之后会出现如下界面。
28 |  当前Windows版本信息将以系统名称(内部版本号)的形式在主界面上方显示。当您需要向作者反馈运行情况及BUG时可一并附上。
29 |

30 | 31 |

32 | No!! Meiryo UI的主界面
33 |

34 |
35 |
36 |
37 |

2.2 操作方法

38 |

39 |  当主界面出现后,当前系统界面各个部分所用字体名也会一并显示出来。
40 |

41 | 42 |

设定全局字体

43 |

44 |  上方“全局设定”一栏的作用是将该栏所选字体应用到下方所有系统界面项目中。
45 |

46 |

47 |  位于“所有字体”右侧的框内显示当前已选择的字体。
48 |  当您点击该栏字体名称右侧的“选择”后,即可从弹出的字体选择对话框中选择字体。
49 |  点击“统一设置并退出”即可统一更改所有系统界面所用字体、字体大小与字形并关闭程序。
50 |  点击“应用”则不会在更改后关闭程序。
51 |

52 | 53 |

对系统界面各项目单独设定字体

54 |

55 |  下方“单项设定”一栏的作用是对系统界面各项目的字体进行单独设定。
56 |

57 |

58 |  如要变更字体,请点击对应项目右侧的“选择”
59 |  并在弹出的字体选择对话框中选择您喜欢的字体、字体大小与字形。
60 |
61 |  当您设定好字体后可点击“设置并退出”来将字体应用到系统界面各项目中,并且程序将自动关闭。
62 |  点击“应用”来将字体应用到系统界面各项目中,并且程序将不会自动关闭。
63 |  点击“退出”可关闭程序。
64 |

65 |
66 | 67 | 68 | 69 | 70 |
71 |
72 |

2.3 选择字体

73 |

74 |  点击字体名右侧的“选择”后,软件将会弹出如下字体选择对话框:
75 |

76 | 字体选择对话框
77 |

78 |

79 |  通过字体选择对话框能够进行下列设定:
80 |

81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 |
名称功能
字体名称(F)选择字体。
字形(Y)指定字体的字形。
字体大小(S)指定字体大小。
粗体(B)勾选此项加粗文字。
斜体(I)勾选此项使文字变为斜体。
下划线(U)勾选此项来为文字添加下划线。
删除线(T)勾选此项来为文字添加删除线。
字符集(C)选择字体的字符集。
109 |

110 |  选择完毕后点击“确定”键即可选择该字体。
111 |  当您未选择某些必选项目时软件将会报错,届时请根据错误信息提示来进行操作。
112 |

113 |
114 |
115 |
116 |

2.4 菜单操作

117 | 186 |
187 |
188 |
189 |

2.5 命令行参数

190 |

191 |  利用特定命令行及参数,不仅可以使软件在启动时自动加载指定字体设定配置,更可以做到直接将字体设定配置直接应用在系统界面中。
192 |

193 |

194 |  命令行的写法如下列:
195 | noMeiryoUI 字体设定配置文件名 [-set]
196 |
197 |  请将使用本软件保存的字体设定配置ini文件名填入命令行中对应的位置。
198 |  如字体设定配置文件的文件名或全体路径中包含空格,请用""(半角双括号)将其包括在内。
199 |    若一次使用多个选项,必须用空格分隔每一个选项。
200 |

201 | 202 |

选项

203 |

204 | 在[options...]中,可选择使用下列选项。
205 | 若需使用多个选项,必须用空格分隔每一个选项。
206 |

207 | 222 | 223 |
224 | 225 |

例1. 在启动软件时载入配置文件MySet.ini内的配置。

226 |

227 |  例如您想要在启动软件的同时自动读取MySet.ini内的配置,可在命令提示符等工具内输入如下命令行:
228 | noMeiryoUI MySet.ini 229 |

230 | 231 |

例2. 直接将系统字体设定为 Your Settings.ini 文件内保存的配置。

232 |

233 |  例如您想直接将系统字体按 Your Settings.ini 文件内保存的配置进行设定,可在命令提示符等工具内输入如下命令行:
234 | noMeiryoUI "Your Settings.ini" -set 235 |

例3. 在软件启动一分钟后将系统字体设定为 restore Settings.ini 文件内保存的配置。

236 |

237 |  例如您想在软件启动一分钟后将系统字体按 restore Settings.ini 文件内保存的配置进行设定,可在命令提示符等工具内输入如下命令行:
238 | noMeiryoUI "Your Settings.ini" -set -delay 60 239 |

240 | 241 | 242 | 243 | 244 | 245 | 246 | -------------------------------------------------------------------------------- /help/zh-cn/contents/03.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 3.更新记录 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

3.更新记录

22 | 23 |
24 |

2025/04/19 版本 3.4.0

25 | 29 |
30 | 31 |
32 | 33 |
34 |

2024/03/05 版本 3.3.1

35 | 41 |
42 | 43 |
44 |
45 |

2024/02/25 版本 3.3.0

46 | 53 |
54 | 55 |
56 | 57 |
58 |

2023/09/03 版本 3.2.1

59 |
65 | 66 |
67 | 68 |
69 |

2023/08/27 版本 3.2.0

70 | 77 |
78 |
79 | 80 |
81 |

2022/09/26 版本 3.1.0

82 | 85 |
86 |
87 | 88 |
89 |

2022/09/21 版本 3.1.0

90 | 95 |
96 |
97 | 98 |
99 |

2022/06/26 版本 3.0.0.1

100 | 103 |
104 |
105 | 106 |
107 |

2022/02/13 版本 3.0.0

108 | 114 |
115 | 116 |
117 | 118 |
119 |

2021/11/28 版本 2.42(目前只在 GitHub 上发布)

120 | 124 |
125 | 126 |
127 | 128 |
129 |

2021/01/10 版本 2.41

130 | 134 |
135 | 136 |
137 | 138 |
139 |

2020/07/26 版本 2.40.2

140 | 143 |
144 | 145 |
146 | 147 |
148 |

2020/06/28 版本 2.40.1

149 | 152 |
153 | 154 |
155 | 156 |
157 |

2020/05/31 版本 2.40

158 | 163 |
164 | 165 |
166 | 167 |
168 |

2020/01/13 版本 2.36

169 | 175 |
176 |
177 | 178 |
179 |

2018/04/28 版本 2.35

180 | 187 |
188 |
189 | 190 |
191 |

2017/06/03 版本 2.34

192 | 198 |
199 |
200 | 201 |
202 |

2017/05/14 版本 2.33

203 | 209 |
210 |
211 | 212 |
213 |

2016/10/10 版本 2.32

214 | 223 |
224 |
225 | 226 |
227 |

2016/09/19 版本 2.31

228 | 237 |
238 |
239 | 240 |
241 |

2016/08/19 版本 2.30

242 | 246 |
247 |
248 | 249 |
250 |

251 | 更早的版本更新记录请参阅日文版帮助文档。 252 |

253 |
254 | 255 | 256 | 257 | -------------------------------------------------------------------------------- /help/zh-cn/contents/04.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 4.许可与作者 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |

4.许可与作者

21 | 22 |
23 |

著作权等

24 |

25 |  本软件是一款免费软件,庄子達彦拥有其著作权。
26 |  本软件不收取任何费用,且不限制用途。
27 |  如需转载,请尽可能事先通知作者一声。
28 |
29 |  作者在开发时已尽可能避免本软件在使用时出现意外,且作者不负担由于使用本软件所可能造成的一切后果。
30 |
31 |  若有任何建议&意见,欢迎通过下列联系方式与作者取得联系。
32 |

33 | 34 |

35 | 本软件之源文件遵照MIT许可发布(http://opensource.org/licenses/mit-license.php)。
36 |

37 |
38 |
39 | 40 |
41 |

作者

42 |
43 | 庄子 達彦(Tatsu)
44 | E-mail tatsu_syo@nifty.com
45 | 个人主页 https://www.tatsu-syo.info/index.html
46 |
47 |
48 |
49 | 50 |
51 |

译者

52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 |
语言译者
英语庄子 達彦,mon-jai
简体中文立花 月下,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadboy
繁体中文Austin Chang,HSSadboy,abc0922001,jay900604
韩语deVbug
葡萄牙语(巴西)Claudio Mantovani Vieira
日语庄子 達彦
75 |
76 | 77 | 78 | 79 | -------------------------------------------------------------------------------- /help/zh-cn/contents/FontSel.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/contents/FontSel.PNG -------------------------------------------------------------------------------- /help/zh-cn/contents/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/contents/icon.png -------------------------------------------------------------------------------- /help/zh-cn/contents/noMeiryoUI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/contents/noMeiryoUI.PNG -------------------------------------------------------------------------------- /help/zh-cn/contents/noMeiryoUI.css: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | body{ 6 | background-color:white; 7 | color:black; 8 | line-height:1.2em; 9 | } 10 | div.chapter{ 11 | background-color:white; 12 | color:black; 13 | margin:0.5em; 14 | padding:0.5em; 15 | } 16 | h1{ 17 | font-size: 1.3em; 18 | line-height:1.2em; 19 | } 20 | h2 { 21 | font-size: 1.2em; 22 | } 23 | 24 | h3 { 25 | font-size: 1.1em; 26 | /* border-bottom-width:2px; */ 27 | border-style:none none double none; 28 | } 29 | span.button { 30 | background-color:white; 31 | color:black; 32 | margin:1px; 33 | padding:1px; 34 | border-style:outset; 35 | border-width:2px; 36 | } 37 | 38 | span.check { 39 | background-color:white; 40 | color:black; 41 | margin:1px; 42 | padding:1px; 43 | border-style:inset; 44 | border-width:2px; 45 | } 46 | -------------------------------------------------------------------------------- /help/zh-cn/help_zh-cn.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-cn/help_zh-cn.hhp -------------------------------------------------------------------------------- /help/zh-tw/ToC.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/ToC.hhc -------------------------------------------------------------------------------- /help/zh-tw/contents/01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/01.html -------------------------------------------------------------------------------- /help/zh-tw/contents/02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/02.html -------------------------------------------------------------------------------- /help/zh-tw/contents/03.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 3.版本歷程記錄 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |

3.版本歷程記錄

22 | 23 |
24 |

2025/04/19 版本 3.4.0

25 | 29 |
30 | 31 |
32 | 33 |
34 |

2024/03/05 版本 3.3.1

35 |
36 | 37 |
38 | 39 |
40 |

2024/02/25 版本 3.3.0

41 |
42 | 43 |
44 | 45 |
46 |

2023/09/03 版本 3.2.1

47 |
48 | 49 |
50 | 51 |
52 |

2023/08/27 版本 3.2.0

53 |
54 | 55 |
56 | 57 |
58 |

2022/09/26 版本 3.1.0.1

59 |
60 | 61 |
62 | 63 |
64 |

2022/09/26 版本 3.1.0

65 |
66 | 67 |
68 | 69 |
70 |

2022/02/13 版本 3.0.0

71 |
72 | 73 |
74 | 75 |
76 |

2021/01/10 版本 2.41

77 |
78 | 79 |
80 | 81 |
82 |

2020/07/26 版本 2.40.2

83 |

2020/06/28 版本 2.40.1

84 |

2020/05/31 版本 2.40

85 | 90 |
91 | 92 |
93 | 94 |
95 |

2020/01/13 版本 2.36

96 | 102 |
103 |
104 | 105 |
106 |

2018/04/28 版本 2.35

107 | 114 |
115 |
116 | 117 |
118 |

2017/06/03 版本 2.34

119 | 125 |
126 |
127 | 128 |
129 |

2017/05/14 版本 2.33

130 | 136 |
137 |
138 | 139 |
140 |

2016/10/10 版本 2.32

141 | 150 |
151 |
152 | 153 |
154 |

2016/09/19 版本 2.31

155 | 164 |
165 |
166 | 167 |
168 |

2016/08/19 版本 2.30

169 | 173 |
174 |
175 | 176 |
177 |

178 | 要了解更早版本的變更,請參閱日文版的說明檔案。 179 |

180 |
181 | 182 | 183 | 184 | -------------------------------------------------------------------------------- /help/zh-tw/contents/04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/04.html -------------------------------------------------------------------------------- /help/zh-tw/contents/FontSel.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/FontSel.PNG -------------------------------------------------------------------------------- /help/zh-tw/contents/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/icon.png -------------------------------------------------------------------------------- /help/zh-tw/contents/noMeiryoUI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/help/zh-tw/contents/noMeiryoUI.PNG -------------------------------------------------------------------------------- /help/zh-tw/contents/noMeiryoUI.css: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2016 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | body{ 6 | background-color:white; 7 | color:black; 8 | line-height:1.2em; 9 | } 10 | div.chapter{ 11 | background-color:white; 12 | color:black; 13 | margin:0.5em; 14 | padding:0.5em; 15 | } 16 | h1{ 17 | font-size: 1.3em; 18 | line-height:1.2em; 19 | } 20 | h2 { 21 | font-size: 1.2em; 22 | } 23 | 24 | h3 { 25 | font-size: 1.1em; 26 | /* border-bottom-width:2px; */ 27 | border-style:none none double none; 28 | } 29 | span.button { 30 | background-color:white; 31 | color:black; 32 | margin:1px; 33 | padding:1px; 34 | border-style:outset; 35 | border-width:2px; 36 | } 37 | 38 | span.check { 39 | background-color:white; 40 | color:black; 41 | margin:1px; 42 | padding:1px; 43 | border-style:inset; 44 | border-width:2px; 45 | } 46 | -------------------------------------------------------------------------------- /help/zh-tw/help_zh-tw.hhp: -------------------------------------------------------------------------------- 1 | [OPTIONS] 2 | Compatibility=1.1 or later 3 | Compiled file=zh-TW.chm 4 | Contents file=ToC.hhc 5 | Default topic=contents\02.html 6 | Display compile progress=No 7 | Language=0x404 8 | Title=No!! Meiryo UI Help 9 | 10 | 11 | [FILES] 12 | contents\01.html 13 | contents\02.html 14 | contents\03.html 15 | contents\04.html 16 | 17 | -------------------------------------------------------------------------------- /lang/default.lng: -------------------------------------------------------------------------------- 1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,mon-jai 2 | ; The sources for noMeiryoUI are distributed under the MIT open source license 3 | 4 | ;In RESOURCE section, 5 | ;FONT_FACE key is dialog font name, other key is message. 6 | [RESOURCE] 7 | FONT_FACE=System 8 | FONT_CHARSET=0 9 | TITLE=No!! Meiryo UI 10 | MENU_FILE=&File 11 | MENU_FILE_LOAD=L&oad font settings... 12 | MENU_FILE_SAVE=S&ave font settings... 13 | MENU_FILE_SET_QUIT=&Set system fonts and quit 14 | MENU_FILE_QUIT=E&xit 15 | MENU_PRESET=&Preset 16 | MENU_PRESET_8=Windows 8/8.1 17 | MENU_PRESET_10=Windows 10 18 | MENU_TOOLS=&Tools 19 | MENU_TOOLS_CHOICE_APP_FONT=Choice No!! Meiryo UI application &font 20 | MENU_TOOLS_THREAD=Set system fonts in separated thread 21 | MENU_TOOLS_SEVEN=Calculate font size same as Windows 7 22 | MENU_TOOLS_NO_MULTI_RUN=&Don't run multiply 23 | MENU_FORCE_TITLE_SET=F&orce title bar font change enabled 24 | MENU_HELP=&Help 25 | MENU_HELP_HELP=&Help 26 | MENU_HELP_ABOUT=&About No!! Meiryo UI 27 | DLG_ALL_GROUP=All font setting 28 | DLG_INDIVIDUAL_GROUP=Individual font setting 29 | DLG_ALL_FONT=All fonts 30 | DLG_TITLE_BAR=Title bar 31 | DLG_ICON=Icon 32 | DLG_PALETTE=Palette title 33 | DLG_HINT=Hint 34 | DLG_MESSAGE=Message box 35 | DLG_MENU=Menu 36 | DLG_SELECT=Select... 37 | DLG_SET_ALL=Apply all and exit 38 | DLG_SET=Apply and exit 39 | DLG_EXIT=Exit without Apply 40 | DLG_APPLY=Apply 41 | DLG_FONT_SEL=Font Selection 42 | DLG_FONT_NAME=&Font name 43 | DLG_STYLE=St&yle 44 | DLG_SIZE=&Size 45 | DLG_CHECK_BOLD=&Bold 46 | DLG_CHECK_ITALIC=&Italic 47 | DLG_UNDERLINE=&Under line 48 | DLG_STRIKE=S&trikethrough 49 | DLG_CHARSET=&Character set 50 | DLG_OK=OK 51 | DLG_CANCEL=Cancel 52 | DLG_CHARSET_ANSI=Ansi 53 | DLG_CHARSET_BALTIC=Baltic 54 | DLG_CHARSET_BIG5=Traditional Chinese 55 | DLG_CHARSET_DEFAULT=Default 56 | DLG_CHARSET_EASTEUROPE=East Europe 57 | DLG_CHARSET_GB2312=Simplified Chinese 58 | DLG_CHARSET_GREEK=Greek 59 | DLG_CHARSET_HANGUL=Hangul 60 | DLG_CHARSET_MAC=Mac 61 | DLG_CHARSET_OEM=OEM 62 | DLG_CHARSET_RUSSIAN=Russian 63 | DLG_CHARSET_SHIFTJIS=Japanese 64 | DLG_CHARSET_SYMBOL=Symbol 65 | DLG_CHARSET_TURKISH=Turkish 66 | DLG_CHARSET_VIETNAMESE=Vietnamese 67 | DLG_CHARSET_JOHAB=Johab Korean 68 | DLG_CHARSET_ARABIC=Arabic 69 | DLG_CHARSET_HEBREW=Hebrew 70 | DLG_CHARSET_THAI=Thai 71 | DLG_STYLE_NORMAL=Normal 72 | DLG_STYLE_ITALIC=Italic 73 | DLG_STYLE_BOLD=Bold 74 | DLG_STYLE_BOLD_ITALIC=Bold Italic 75 | DLG_STYLE_MEDIUM=Medium 76 | DLG_STYLE_SEMI_BOLD=Semibold 77 | DLG_STYLE_BOOK=Book 78 | DLG_STYLE_OBLIQUE=Oblique 79 | DLG_STYLE_LIGHT=Light 80 | DLG_STYLE_EXTRA_LIGHT=ExtraLight 81 | DLG_STYLE_SEMI_LIGHT=SemiLight 82 | DLG_STYLE_SLANTED=Slanted 83 | MSG_SETTING_FILE=Font settings file(*.ini) 84 | MSG_ALL_FILE=All file(*.*) 85 | MSG_LOAD_FAIL=Font settings file load failed. 86 | MSG_SAVE_FAIL=Font settings file save failed. 87 | MSG_ERROR=Error 88 | MSG_ABOUT=About No!! Meiryo UI 89 | MSG_NO_FONT=Please select font. 90 | MSG_NO_STYLE=Please select style. 91 | MSG_NO_SIZE=Please select size. 92 | MSG_NO_CHARSET=Please select charset. 93 | MSG_WARNING=Warning 94 | MSG_WIN11_22H2RESTRICTION=On Windows 11 2022 Update(22H2) and later due to Windows reason title bar font can't change. 95 | MSG_FORCE_TITLE_SET=Changeing titlebar font may cause some troubles. 96 | MSG_TRANSLATE=Tatsuhiko Shoji(Tatsu),mon-jai 97 | 98 | 99 | [PRESET] 100 | ; Preset menu setting. 101 | ; Write OS's initial font name and font size. 102 | ; And un comment KEY=VALUE . 103 | 104 | ; For Windows 8.x 105 | ; Font face 106 | CAPTION_FACE_8=Segoe UI 107 | ICON_FACE_8=Segoe UI 108 | SMALLCAPTION_FACE_8=Segoe UI 109 | STATUS_FACE_8=Segoe UI 110 | MESSAGE_FACE_8=Segoe UI 111 | MENU_FACE_8=Segoe UI 112 | 113 | ; Font size 114 | CAPTION_SIZE_8=11 115 | ICON_SIZE_8=9 116 | SMALLCAPTION_SIZE_8=11 117 | STATUS_SIZE_8=9 118 | MESSAGE_SIZE_8=9 119 | MENU_SIZE_8=9 120 | 121 | ; Font charset 122 | CAPTION_CHARSET_8=1 123 | ICON_CHARSET_8=1 124 | SMALLCAPTION_CHARSET_8=1 125 | STATUS_CHARSET_8=1 126 | MESSAGE_CHARSET_8=1 127 | MENU_CHARSET_8=1 128 | 129 | ; For Windows 10 130 | ; Font face 131 | CAPTION_FACE_10=Segoe UI 132 | ICON_FACE_10=Segoe UI 133 | SMALLCAPTION_FACE_10=Segoe UI 134 | STATUS_FACE_10=Segoe UI 135 | MESSAGE_FACE_10=Segoe UI 136 | MENU_FACE_10=Segoe UI 137 | 138 | ; Font size 139 | CAPTION_SIZE_10=9 140 | ICON_SIZE_10=9 141 | SMALLCAPTION_SIZE_10=9 142 | STATUS_SIZE_10=9 143 | MESSAGE_SIZE_10=9 144 | MENU_SIZE_10=9 145 | 146 | ; Font charset 147 | CAPTION_CHARSET_10=1 148 | ICON_CHARSET_10=1 149 | SMALLCAPTION_CHARSET_10=1 150 | STATUS_CHARSET_10=1 151 | MESSAGE_CHARSET_10=1 152 | MENU_CHARSET_10=1 153 | 154 | ; For Windows 11 155 | ; Font face 156 | CAPTION_FACE_11=Segoe UI 157 | ICON_FACE_11=Segoe UI 158 | SMALLCAPTION_FACE_11=Segoe UI 159 | STATUS_FACE_11=Segoe UI 160 | MESSAGE_FACE_11=Segoe UI 161 | MENU_FACE_11=Segoe UI 162 | 163 | ; Font size 164 | CAPTION_SIZE_11=9 165 | ICON_SIZE_11=9 166 | SMALLCAPTION_SIZE_11=9 167 | STATUS_SIZE_11=9 168 | MESSAGE_SIZE_11=9 169 | MENU_SIZE_11=9 170 | 171 | ; Font charset 172 | CAPTION_CHARSET_11=1 173 | ICON_CHARSET_11=1 174 | SMALLCAPTION_CHARSET_11=1 175 | STATUS_CHARSET_11=1 176 | MESSAGE_CHARSET_11=1 177 | MENU_CHARSET_11=1 178 | -------------------------------------------------------------------------------- /lang/en.lng: -------------------------------------------------------------------------------- 1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,mon-jai 2 | ; The sources for noMeiryoUI are distributed under the MIT open source license 3 | 4 | ;In RESOURCE section, 5 | ;FONT_FACE key is dialog font name, other key is message. 6 | [RESOURCE] 7 | FONT_FACE=System 8 | FONT_CHARSET=0 9 | TITLE=No!! Meiryo UI 10 | MENU_FILE=&File 11 | MENU_FILE_LOAD=L&oad font settings... 12 | MENU_FILE_SAVE=S&ave font settings... 13 | MENU_FILE_SET_QUIT=&Set system fonts and quit 14 | MENU_FILE_QUIT=E&xit 15 | MENU_PRESET=&Preset 16 | MENU_PRESET_8=Windows 8/8.1 17 | MENU_PRESET_10=Windows 10 18 | MENU_TOOLS=&Tools 19 | MENU_TOOLS_CHOICE_APP_FONT=Choice No!! Meiryo UI application &font 20 | MENU_TOOLS_THREAD=Set system fonts in separated thread 21 | MENU_TOOLS_SEVEN=Calculate font size same as Windows 7 22 | MENU_TOOLS_NO_MULTI_RUN=&Don't run multiply 23 | MENU_FORCE_TITLE_SET=F&orce title bar font change enabled 24 | MENU_HELP=&Help 25 | MENU_HELP_HELP=&Help 26 | MENU_HELP_ABOUT=&About No!! Meiryo UI 27 | DLG_ALL_GROUP=All font setting 28 | DLG_INDIVIDUAL_GROUP=Individual font setting 29 | DLG_ALL_FONT=All fonts 30 | DLG_TITLE_BAR=Title bar 31 | DLG_ICON=Icon 32 | DLG_PALETTE=Palette title 33 | DLG_HINT=Hint 34 | DLG_MESSAGE=Message box 35 | DLG_MENU=Menu 36 | DLG_SELECT=Select... 37 | DLG_SET_ALL=Apply all and exit 38 | DLG_SET=Apply and exit 39 | DLG_EXIT=Exit without Apply 40 | DLG_APPLY=Apply 41 | DLG_FONT_SEL=Font Selection 42 | DLG_FONT_NAME=&Font name 43 | DLG_STYLE=St&yle 44 | DLG_SIZE=&Size 45 | DLG_CHECK_BOLD=&Bold 46 | DLG_CHECK_ITALIC=&Italic 47 | DLG_UNDERLINE=&Under line 48 | DLG_STRIKE=S&trikethrough 49 | DLG_CHARSET=&Character set 50 | DLG_OK=OK 51 | DLG_CANCEL=Cancel 52 | DLG_CHARSET_ANSI=Ansi 53 | DLG_CHARSET_BALTIC=Baltic 54 | DLG_CHARSET_BIG5=Traditional Chinese 55 | DLG_CHARSET_DEFAULT=Default 56 | DLG_CHARSET_EASTEUROPE=East Europe 57 | DLG_CHARSET_GB2312=Simplified Chinese 58 | DLG_CHARSET_GREEK=Greek 59 | DLG_CHARSET_HANGUL=Hangul 60 | DLG_CHARSET_MAC=Mac 61 | DLG_CHARSET_OEM=OEM 62 | DLG_CHARSET_RUSSIAN=Russian 63 | DLG_CHARSET_SHIFTJIS=Japanese 64 | DLG_CHARSET_SYMBOL=Symbol 65 | DLG_CHARSET_TURKISH=Turkish 66 | DLG_CHARSET_VIETNAMESE=Vietnamese 67 | DLG_CHARSET_JOHAB=Johab Korean 68 | DLG_CHARSET_ARABIC=Arabic 69 | DLG_CHARSET_HEBREW=Hebrew 70 | DLG_CHARSET_THAI=Thai 71 | DLG_STYLE_NORMAL=Normal 72 | DLG_STYLE_ITALIC=Italic 73 | DLG_STYLE_BOLD=Bold 74 | DLG_STYLE_BOLD_ITALIC=Bold Italic 75 | DLG_STYLE_MEDIUM=Medium 76 | DLG_STYLE_SEMI_BOLD=Semibold 77 | DLG_STYLE_BOOK=Book 78 | DLG_STYLE_OBLIQUE=Oblique 79 | DLG_STYLE_LIGHT=Light 80 | DLG_STYLE_EXTRA_LIGHT=ExtraLight 81 | DLG_STYLE_SEMI_LIGHT=SemiLight 82 | DLG_STYLE_SLANTED=Slanted 83 | MSG_SETTING_FILE=Font settings file(*.ini) 84 | MSG_ALL_FILE=All file(*.*) 85 | MSG_LOAD_FAIL=Font settings file load failed. 86 | MSG_SAVE_FAIL=Font settings file save failed. 87 | MSG_ERROR=Error 88 | MSG_ABOUT=About No!! Meiryo UI 89 | MSG_NO_FONT=Please select font. 90 | MSG_NO_STYLE=Please select style. 91 | MSG_NO_SIZE=Please select size. 92 | MSG_NO_CHARSET=Please select charset. 93 | MSG_WARNING=Warning 94 | MSG_WIN11_22H2RESTRICTION=On Windows 11 2022 Update(22H2) and later due to Windows reason title bar font can't change. 95 | MSG_FORCE_TITLE_SET=Changeing titlebar font may cause some troubles. 96 | MSG_TRANSLATE=Tatsuhiko Shoji(Tatsu),mon-jai 97 | 98 | 99 | [PRESET] 100 | ; Preset menu setting. 101 | ; Write OS's initial font name and font size. 102 | ; And un comment KEY=VALUE . 103 | 104 | ; For Windows 8.x 105 | ; Font face 106 | CAPTION_FACE_8=Segoe UI 107 | ICON_FACE_8=Segoe UI 108 | SMALLCAPTION_FACE_8=Segoe UI 109 | STATUS_FACE_8=Segoe UI 110 | MESSAGE_FACE_8=Segoe UI 111 | MENU_FACE_8=Segoe UI 112 | 113 | ; Font size 114 | CAPTION_SIZE_8=11 115 | ICON_SIZE_8=9 116 | SMALLCAPTION_SIZE_8=11 117 | STATUS_SIZE_8=9 118 | MESSAGE_SIZE_8=9 119 | MENU_SIZE_8=9 120 | 121 | ; Font charset 122 | CAPTION_CHARSET_8=1 123 | ICON_CHARSET_8=1 124 | SMALLCAPTION_CHARSET_8=1 125 | STATUS_CHARSET_8=1 126 | MESSAGE_CHARSET_8=1 127 | MENU_CHARSET_8=1 128 | 129 | ; For Windows 10 130 | ; Font face 131 | CAPTION_FACE_10=Segoe UI 132 | ICON_FACE_10=Segoe UI 133 | SMALLCAPTION_FACE_10=Segoe UI 134 | STATUS_FACE_10=Segoe UI 135 | MESSAGE_FACE_10=Segoe UI 136 | MENU_FACE_10=Segoe UI 137 | 138 | ; Font size 139 | CAPTION_SIZE_10=9 140 | ICON_SIZE_10=9 141 | SMALLCAPTION_SIZE_10=9 142 | STATUS_SIZE_10=9 143 | MESSAGE_SIZE_10=9 144 | MENU_SIZE_10=9 145 | 146 | ; Font charset 147 | CAPTION_CHARSET_10=1 148 | ICON_CHARSET_10=1 149 | SMALLCAPTION_CHARSET_10=1 150 | STATUS_CHARSET_10=1 151 | MESSAGE_CHARSET_10=1 152 | MENU_CHARSET_10=1 153 | 154 | ; For Windows 11 155 | ; Font face 156 | CAPTION_FACE_11=Segoe UI 157 | ICON_FACE_11=Segoe UI 158 | SMALLCAPTION_FACE_11=Segoe UI 159 | STATUS_FACE_11=Segoe UI 160 | MESSAGE_FACE_11=Segoe UI 161 | MENU_FACE_11=Segoe UI 162 | 163 | ; Font size 164 | CAPTION_SIZE_11=9 165 | ICON_SIZE_11=9 166 | SMALLCAPTION_SIZE_11=9 167 | STATUS_SIZE_11=9 168 | MESSAGE_SIZE_11=9 169 | MENU_SIZE_11=9 170 | 171 | ; Font charset 172 | CAPTION_CHARSET_11=1 173 | ICON_CHARSET_11=1 174 | SMALLCAPTION_CHARSET_11=1 175 | STATUS_CHARSET_11=1 176 | MESSAGE_CHARSET_11=1 177 | MENU_CHARSET_11=1 178 | -------------------------------------------------------------------------------- /lang/ja-JP.lng: -------------------------------------------------------------------------------- 1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji 2 | ; The sources for noMeiryoUI are distributed under the MIT open source license 3 | 4 | ;In RESOURCE section, 5 | ;FONT_FACE key is dialog font name, other key is message. 6 | [RESOURCE] 7 | FONT_FACE=BIZ UDPゴシック 8 | FONT_CHARSET=1 9 | TITLE=Meiryo UIも大っきらい!! 10 | MENU_FILE=ファイル(&F) 11 | MENU_FILE_LOAD=フォント設定を読み込む(&O)... 12 | MENU_FILE_SAVE=フォント設定を保存する(&A)... 13 | MENU_FILE_SET_QUIT=フォントを設定して終了(&S) 14 | MENU_FILE_QUIT=終了(&X) 15 | MENU_PRESET=プリセット(&P) 16 | MENU_PRESET_8=Windows 8/8.1 17 | MENU_PRESET_10=Windows 10 18 | MENU_TOOLS=ツール(&T) 19 | MENU_TOOLS_CHOICE_APP_FONT=Meiryo UIも大っきらい!! のフォントを選択する(&F) 20 | MENU_TOOLS_THREAD=別スレッドでフォントを変更する(&A) 21 | MENU_TOOLS_SEVEN=フォントサイズをWindows 7と同様に扱う(&7) 22 | MENU_TOOLS_NO_MULTI_RUN=二重起動をしない(&D) 23 | MENU_FORCE_TITLE_SET=タイトルバーのフォントを変更可能にする(&O) 24 | MENU_HELP=ヘルプ(&H) 25 | MENU_HELP_HELP=ヘルプの表示(&C) 26 | MENU_HELP_ABOUT=バージョン情報(&A)... 27 | DLG_ALL_GROUP=全体設定 28 | DLG_INDIVIDUAL_GROUP=個別設定 29 | DLG_ALL_FONT=すべてのフォント 30 | DLG_TITLE_BAR=タイトルバー 31 | DLG_ICON=アイコン 32 | DLG_PALETTE=パレットタイトル 33 | DLG_HINT=ヒント 34 | DLG_MESSAGE=メッセージボックス 35 | DLG_MENU=メニュー/選択項目 36 | DLG_SELECT=選択... 37 | DLG_SET_ALL=一括設定して終了 38 | DLG_SET=設定して終了 39 | DLG_EXIT=設定せず終了 40 | DLG_APPLY=適用 41 | DLG_FONT_SEL=フォント選択 42 | DLG_FONT_NAME=フォント名(&F): 43 | DLG_STYLE=スタイル(&Y): 44 | DLG_SIZE=サイズ(&S): 45 | DLG_CHECK_BOLD=太字(&B) 46 | DLG_CHECK_ITALIC=斜体(&I) 47 | DLG_UNDERLINE=下線(&U) 48 | DLG_STRIKE=取り消し線(&T) 49 | DLG_CHARSET=文字セット(&C): 50 | DLG_OK=OK 51 | DLG_CANCEL=キャンセル 52 | DLG_CHARSET_ANSI=欧文 53 | DLG_CHARSET_BALTIC=バルト諸国言語 54 | DLG_CHARSET_BIG5=繁体字 55 | DLG_CHARSET_DEFAULT=デフォルト言語 56 | DLG_CHARSET_EASTEUROPE=東ヨーロッパ言語 57 | DLG_CHARSET_GB2312=簡体字 58 | DLG_CHARSET_GREEK=ギリシャ文字 59 | DLG_CHARSET_HANGUL=韓国語 60 | DLG_CHARSET_MAC=Mac文字セット 61 | DLG_CHARSET_OEM=OEM文字セット 62 | DLG_CHARSET_RUSSIAN=ロシア語 63 | DLG_CHARSET_SHIFTJIS=日本語 64 | DLG_CHARSET_SYMBOL=シンボル 65 | DLG_CHARSET_TURKISH=トルコ語 66 | DLG_CHARSET_VIETNAMESE=ベトナム語 67 | DLG_CHARSET_JOHAB=韓国語(組合型) 68 | DLG_CHARSET_ARABIC=アラビア語 69 | DLG_CHARSET_HEBREW=ヘブライ語 70 | DLG_CHARSET_THAI=タイ語 71 | DLG_STYLE_NORMAL=標準 72 | DLG_STYLE_ITALIC=斜体 73 | DLG_STYLE_BOLD=太字 74 | DLG_STYLE_BOLD_ITALIC=太字 斜体 75 | DLG_STYLE_MEDIUM=中 76 | DLG_STYLE_SEMI_BOLD=中太 77 | DLG_STYLE_BOOK=標準 78 | DLG_STYLE_OBLIQUE=斜体 79 | DLG_STYLE_LIGHT=細字 80 | DLG_STYLE_EXTRA_LIGHT=特細 81 | DLG_STYLE_SEMI_LIGHT=SemiLight 82 | DLG_STYLE_SLANTED=斜体 83 | MSG_SETTING_FILE=フォント設定ファイル(*.ini) 84 | MSG_ALL_FILE=すべてのファイル(*.*) 85 | MSG_LOAD_FAIL=フォント設定の読み込みに失敗しました。 86 | MSG_SAVE_FAIL=フォント設定の保存に失敗しました。 87 | MSG_ERROR=エラー 88 | MSG_ABOUT=Meiryo UIも大っきらい!!について 89 | MSG_NO_FONT=フォントを選択してください。 90 | MSG_NO_STYLE=スタイルを選択してください。 91 | MSG_NO_SIZE=文字サイズを選択してください。 92 | MSG_NO_CHARSET=文字セットを選択してください。 93 | MSG_WARNING=警告 94 | MSG_WIN11_22H2RESTRICTION=Windows 11 2022 Update(22H2)以降ではWindows側の事情によりタイトルバーのフォントを変更できません。 95 | MSG_FORCE_TITLE_SET=タイトルバーのフォントを変更するとトラブルが発生する可能性があります。 96 | MSG_TRANSLATE=Tatsuhiko Shoji(Tatsu) 97 | 98 | [PRESET] 99 | ; Preset menu setting. 100 | ; Write OS's initial font name and font size. 101 | ; And un comment KEY=VALUE . 102 | 103 | ; For Windows 8.x 104 | ; Font face 105 | CAPTION_FACE_8=Meiryo UI 106 | ICON_FACE_8=Meiryo UI 107 | SMALLCAPTION_FACE_8=Meiryo UI 108 | STATUS_FACE_8=Meiryo UI 109 | MESSAGE_FACE_8=Meiryo UI 110 | MENU_FACE_8=Meiryo UI 111 | 112 | ; Font size 113 | CAPTION_SIZE_8=11 114 | ICON_SIZE_8=9 115 | SMALLCAPTION_SIZE_8=11 116 | STATUS_SIZE_8=9 117 | MESSAGE_SIZE_8=9 118 | MENU_SIZE_8=9 119 | 120 | ; Font charset 121 | CAPTION_CHARSET_8=1 122 | ICON_CHARSET_8=1 123 | SMALLCAPTION_CHARSET_8=1 124 | STATUS_CHARSET_8=1 125 | MESSAGE_CHARSET_8=1 126 | MENU_CHARSET_8=1 127 | 128 | ; For Windows 10 129 | ; Font face 130 | CAPTION_FACE_10=Yu Gothic UI 131 | ICON_FACE_10=Yu Gothic UI 132 | SMALLCAPTION_FACE_10=Yu Gothic UI 133 | STATUS_FACE_10=Yu Gothic UI 134 | MESSAGE_FACE_10=Yu Gothic UI 135 | MENU_FACE_10=Yu Gothic UI 136 | 137 | ; Font size 138 | CAPTION_SIZE_10=9 139 | ICON_SIZE_10=9 140 | SMALLCAPTION_SIZE_10=9 141 | STATUS_SIZE_10=9 142 | MESSAGE_SIZE_10=9 143 | MENU_SIZE_10=9 144 | 145 | ; Font charset 146 | CAPTION_CHARSET_10=1 147 | ICON_CHARSET_10=1 148 | SMALLCAPTION_CHARSET_10=1 149 | STATUS_CHARSET_10=1 150 | MESSAGE_CHARSET_10=1 151 | MENU_CHARSET_10=1 152 | 153 | ; For Windows 11 154 | ; Font face 155 | CAPTION_FACE_11=Yu Gothic UI 156 | ICON_FACE_11=Yu Gothic UI 157 | SMALLCAPTION_FACE_11=Yu Gothic UI 158 | STATUS_FACE_11=Yu Gothic UI 159 | MESSAGE_FACE_11=Yu Gothic UI 160 | MENU_FACE_11=Yu Gothic UI 161 | 162 | ; Font size 163 | CAPTION_SIZE_11=9 164 | ICON_SIZE_11=9 165 | SMALLCAPTION_SIZE_11=9 166 | STATUS_SIZE_11=9 167 | MESSAGE_SIZE_11=9 168 | MENU_SIZE_11=9 169 | 170 | ; Font charset 171 | CAPTION_CHARSET_11=1 172 | ICON_CHARSET_11=1 173 | SMALLCAPTION_CHARSET_11=1 174 | STATUS_CHARSET_11=1 175 | MESSAGE_CHARSET_11=1 176 | MENU_CHARSET_11=1 177 | -------------------------------------------------------------------------------- /lang/ko-KR.lng: -------------------------------------------------------------------------------- 1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji 2 | ; The sources for noMeiryoUI are distributed under the MIT open source license 3 | 4 | ;In RESOURCE section, 5 | ;FONT_FACE key is dialog font name, other key is message. 6 | [RESOURCE] 7 | FONT_FACE=맑은 고딕 8 | FONT_CHARSET=129 9 | TITLE=No!! Meiryo UI 10 | MENU_FILE=파일(&F) 11 | MENU_FILE_LOAD=글꼴 설정 열기(&O)... 12 | MENU_FILE_SAVE=글꼴 설정 저장(&A)... 13 | MENU_FILE_SET_QUIT=시스템 글꼴 설정 및 종료(&S) 14 | MENU_FILE_QUIT=종료(&X) 15 | MENU_PRESET=프리셋(&P) 16 | MENU_PRESET_8=Windows 8/8.1 17 | MENU_PRESET_10=Windows 10 18 | MENU_TOOLS=도구(&T) 19 | MENU_TOOLS_CHOICE_APP_FONT=Choice No!! Meiryo UI application &font 20 | MENU_TOOLS_THREAD=개별 스레드에서 시스템 글꼴 설정(&A) 21 | MENU_TOOLS_SEVEN=Windows 7 방식의 글꼴 크기 계산(&7) 22 | MENU_TOOLS_NO_MULTI_RUN=&Don't run multiply 23 | MENU_FORCE_TITLE_SET=F&orce title bar font change enabled 24 | MENU_HELP=도움말(&H) 25 | MENU_HELP_HELP=도움말(&H) 26 | MENU_HELP_ABOUT=No!! Meiryo UI에 대하여(&A)... 27 | DLG_ALL_GROUP=모든 글꼴 설정 28 | DLG_INDIVIDUAL_GROUP=개별 글꼴 설정 29 | DLG_ALL_FONT=모든 글꼴 30 | DLG_TITLE_BAR=제목 표시줄 31 | DLG_ICON=아이콘 32 | DLG_PALETTE=팔레트 제목 33 | DLG_HINT=힌트 34 | DLG_MESSAGE=메시지 박스 35 | DLG_MENU=메뉴 36 | DLG_SELECT=선택... 37 | DLG_SET_ALL=모두 설정 38 | DLG_SET=설정 39 | DLG_EXIT=종료 40 | DLG_APPLY=적용 41 | DLG_FONT_SEL=글꼴 선택 42 | DLG_FONT_NAME=글꼴 이름(&F) 43 | DLG_STYLE=스타일(&Y) 44 | DLG_SIZE=크기(&S) 45 | DLG_CHECK_BOLD=굵게(&B) 46 | DLG_CHECK_ITALIC=기울임꼴(&I) 47 | DLG_UNDERLINE=밑줄(&U) 48 | DLG_STRIKE=취소선(&T) 49 | DLG_CHARSET=문자 집합(&C) 50 | DLG_OK=확인 51 | DLG_CANCEL=취소 52 | DLG_CHARSET_ANSI=Ansi 53 | DLG_CHARSET_BALTIC=발트어 54 | DLG_CHARSET_BIG5=중국어(번체) 55 | DLG_CHARSET_DEFAULT=기본 56 | DLG_CHARSET_EASTEUROPE=동유럽어 57 | DLG_CHARSET_GB2312=중국어(간체) 58 | DLG_CHARSET_GREEK=그리스어 59 | DLG_CHARSET_HANGUL=한국어 60 | DLG_CHARSET_MAC=Mac 61 | DLG_CHARSET_OEM=OEM 62 | DLG_CHARSET_RUSSIAN=러시아어 63 | DLG_CHARSET_SHIFTJIS=일본어 64 | DLG_CHARSET_SYMBOL=심볼릭 65 | DLG_CHARSET_TURKISH=터키어 66 | DLG_CHARSET_VIETNAMESE=베트남어 67 | DLG_CHARSET_JOHAB=한국어 조합 68 | DLG_CHARSET_ARABIC=아랍어 69 | DLG_CHARSET_HEBREW=히브리어 70 | DLG_CHARSET_THAI=태국어 71 | DLG_STYLE_NORMAL=보통 72 | DLG_STYLE_ITALIC=기울임꼴 73 | DLG_STYLE_BOLD=굵게 74 | DLG_STYLE_BOLD_ITALIC=굵은 기울임꼴 75 | DLG_STYLE_MEDIUM=Medium 76 | DLG_STYLE_SEMI_BOLD=Semibold 77 | DLG_STYLE_BOOK=Book 78 | DLG_STYLE_OBLIQUE=Oblique 79 | DLG_STYLE_LIGHT=Light 80 | DLG_STYLE_EXTRA_LIGHT=ExtraLight 81 | DLG_STYLE_SEMI_LIGHT=SemiLight 82 | DLG_STYLE_SLANTED=Slanted 83 | MSG_SETTING_FILE=글꼴 설정 파일(*.ini) 84 | MSG_ALL_FILE=모든 파일(*.*) 85 | MSG_LOAD_FAIL=글꼴 설정 파일 읽기에 실패하였습니다. 86 | MSG_SAVE_FAIL=글꼴 설정 파일 저장에 실패하였습니다. 87 | MSG_ERROR=에러 88 | MSG_ABOUT=No!! Meiryo UI에 대하여 89 | MSG_NO_FONT=글꼴을 선택하세요. 90 | MSG_NO_STYLE=스타일을 선택하세요. 91 | MSG_NO_SIZE=크기를 선택하세요. 92 | MSG_NO_CHARSET=문자 집합을 선택하세요. 93 | MSG_WARNING=Warning 94 | MSG_WIN11_22H2RESTRICTION=On Windows 11 2022 Update(22H2) and later due to Windows reason title bar font can't change. 95 | MSG_FORCE_TITLE_SET=Changeing titlebar font may cause some troubles. 96 | MSG_TRANSLATE=deVbug,창윤 97 | 98 | [PRESET] 99 | ; Preset menu setting. 100 | ; Write OS's initial font name and font size. 101 | ; And un comment KEY=VALUE . 102 | 103 | ; For Windows 8.x 104 | ; Font face 105 | CAPTION_FACE_8=맑은 고딕 106 | ICON_FACE_8=맑은 고딕 107 | SMALLCAPTION_FACE_8=맑은 고딕 108 | STATUS_FACE_8=맑은 고딕 109 | MESSAGE_FACE_8=맑은 고딕 110 | MENU_FACE_8=맑은 고딕 111 | 112 | ; Font size 113 | CAPTION_SIZE_8=11 114 | ICON_SIZE_8=9 115 | SMALLCAPTION_SIZE_8=11 116 | STATUS_SIZE_8=9 117 | MESSAGE_SIZE_8=9 118 | MENU_SIZE_8=9 119 | 120 | ; Font charset 121 | CAPTION_CHARSET_8=1 122 | ICON_CHARSET_8=1 123 | SMALLCAPTION_CHARSET_8=1 124 | STATUS_CHARSET_8=1 125 | MESSAGE_CHARSET_8=1 126 | MENU_CHARSET_8=1 127 | 128 | ; For Windows 10 129 | ; Font face 130 | CAPTION_FACE_10=맑은 고딕 131 | ICON_FACE_10=맑은 고딕 132 | SMALLCAPTION_FACE_10=맑은 고딕 133 | STATUS_FACE_10=맑은 고딕 134 | MESSAGE_FACE_10=맑은 고딕 135 | MENU_FACE_10=맑은 고딕 136 | 137 | ; Font size 138 | CAPTION_SIZE_10=9 139 | ICON_SIZE_10=9 140 | SMALLCAPTION_SIZE_10=9 141 | STATUS_SIZE_10=9 142 | MESSAGE_SIZE_10=9 143 | MENU_SIZE_10=9 144 | 145 | ; Font charset 146 | CAPTION_CHARSET_10=1 147 | ICON_CHARSET_10=1 148 | SMALLCAPTION_CHARSET_10=1 149 | STATUS_CHARSET_10=1 150 | MESSAGE_CHARSET_10=1 151 | MENU_CHARSET_10=1 152 | 153 | ; For Windows 11 154 | ; Font face 155 | CAPTION_FACE_11=맑은 고딕 156 | ICON_FACE_11=맑은 고딕 157 | SMALLCAPTION_FACE_11=맑은 고딕 158 | STATUS_FACE_11=맑은 고딕 159 | MESSAGE_FACE_11=맑은 고딕 160 | MENU_FACE_11=맑은 고딕 161 | 162 | ; Font size 163 | CAPTION_SIZE_11=9 164 | ICON_SIZE_11=9 165 | SMALLCAPTION_SIZE_11=9 166 | STATUS_SIZE_11=9 167 | MESSAGE_SIZE_11=9 168 | MENU_SIZE_11=9 169 | 170 | ; Font charset 171 | CAPTION_CHARSET_11=1 172 | ICON_CHARSET_11=1 173 | SMALLCAPTION_CHARSET_11=1 174 | STATUS_CHARSET_11=1 175 | MESSAGE_CHARSET_11=1 176 | MENU_CHARSET_11=1 177 | -------------------------------------------------------------------------------- /lang/pt-BR.lng: -------------------------------------------------------------------------------- 1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,Claudio Mantovani Vieira 2 | ; The sources for noMeiryoUI are distributed under the MIT open source license 3 | 4 | ;In RESOURCE section, 5 | ;FONT_FACE key is dialog font name, other key is message. 6 | [RESOURCE] 7 | FONT_FACE=Sistema 8 | FONT_CHARSET=0 9 | TITLE=No!! Meiryo UI 10 | MENU_FILE=&Arquivo 11 | MENU_FILE_LOAD=Carr&egar as definições de fonte... 12 | MENU_FILE_SAVE=Sa&lvar as definições de fonte... 13 | MENU_FILE_SET_QUIT=&Definir as fontes do sistema e sair 14 | MENU_FILE_QUIT=Sa&ir 15 | MENU_PRESET=&Pré-Definição 16 | MENU_PRESET_8=Windows 8/8.1 17 | MENU_PRESET_10=Windows 10 18 | MENU_TOOLS=&Ferramentas 19 | MENU_TOOLS_CHOICE_APP_FONT=Escolha &fonte do aplicativo da UI No!! Meiryo 20 | MENU_TOOLS_THREAD=Definir as fontes do sistema em encadeamentos separados 21 | MENU_TOOLS_SEVEN=Calcular o tamanho das fontes igual ao Windows 7 22 | MENU_TOOLS_NO_MULTI_RUN=&Não executar multiplicar 23 | MENU_FORCE_TITLE_SET=F&orce title bar font change enabled 24 | MENU_HELP=Aju&da 25 | MENU_HELP_HELP=Aju&da 26 | MENU_HELP_ABOUT=&Sobre o No!! Meiryo UI 27 | DLG_ALL_GROUP=Definir Todas as Fontes 28 | DLG_INDIVIDUAL_GROUP=Definir a Fonte Individual 29 | DLG_ALL_FONT=Todas as Fontes 30 | DLG_TITLE_BAR=Barra de Título 31 | DLG_ICON=Ícone 32 | DLG_PALETTE=Título da Paleta 33 | DLG_HINT=Dica 34 | DLG_MESSAGE=Caixa de Mensagem 35 | DLG_MENU=Menu 36 | DLG_SELECT=Selec... 37 | DLG_SET_ALL=Def. Tudo e Sair 38 | DLG_SET=Definir e Sair 39 | DLG_EXIT=Sair Sem Definir 40 | DLG_APPLY=Aplicar 41 | DLG_FONT_SEL=Selecionar a Fonte 42 | DLG_FONT_NAME=Nome da &Fonte 43 | DLG_STYLE=&Estilo 44 | DLG_SIZE=&Tamanho 45 | DLG_CHECK_BOLD=&Negrito 46 | DLG_CHECK_ITALIC=&Itálico 47 | DLG_UNDERLINE=&Sublinhado 48 | DLG_STRIKE=Tac&hado 49 | DLG_CHARSET=&Conjunto de Caracteres 50 | DLG_OK=OK 51 | DLG_CANCEL=Cancelar 52 | DLG_CHARSET_ANSI=Ansi 53 | DLG_CHARSET_BALTIC=Báltico 54 | DLG_CHARSET_BIG5=Chinês Tradicional 55 | DLG_CHARSET_DEFAULT=Padrão 56 | DLG_CHARSET_EASTEUROPE=Leste Europeu 57 | DLG_CHARSET_GB2312=Chinês Simplificado 58 | DLG_CHARSET_GREEK=Grego 59 | DLG_CHARSET_HANGUL=Hangul 60 | DLG_CHARSET_MAC=Mac 61 | DLG_CHARSET_OEM=OEM 62 | DLG_CHARSET_RUSSIAN=Russo 63 | DLG_CHARSET_SHIFTJIS=Japonês 64 | DLG_CHARSET_SYMBOL=Símbolo 65 | DLG_CHARSET_TURKISH=Turco 66 | DLG_CHARSET_VIETNAMESE=Vietnamita 67 | DLG_CHARSET_JOHAB=Coreano Johab 68 | DLG_CHARSET_ARABIC=Árabe 69 | DLG_CHARSET_HEBREW=Hebraico 70 | DLG_CHARSET_THAI=Tailandês 71 | DLG_STYLE_NORMAL=Normal 72 | DLG_STYLE_ITALIC=Itálico 73 | DLG_STYLE_BOLD=Negrito 74 | DLG_STYLE_BOLD_ITALIC=Negrito Itálico 75 | DLG_STYLE_MEDIUM=Medium 76 | DLG_STYLE_SEMI_BOLD=Semibold 77 | DLG_STYLE_BOOK=Book 78 | DLG_STYLE_OBLIQUE=Oblique 79 | DLG_STYLE_LIGHT=Light 80 | DLG_STYLE_EXTRA_LIGHT=ExtraLight 81 | DLG_STYLE_SEMI_LIGHT=SemiLight 82 | DLG_STYLE_SLANTED=Slanted 83 | MSG_SETTING_FILE=Arquivo de Configurações de Fontes (*.ini) 84 | MSG_ALL_FILE=Todos Arquivos (*.*) 85 | MSG_LOAD_FAIL=Falha ao carregar o arquivo das configurações de fontes. 86 | MSG_SAVE_FAIL=Falha ao salvar o arquivo das configurações de fontes. 87 | MSG_ERROR=Erro 88 | MSG_ABOUT=Sobre o No!! Meiryo UI 89 | MSG_NO_FONT=Por favor, selecione a fonte. 90 | MSG_NO_STYLE=Por favor, selecione o estilo. 91 | MSG_NO_SIZE=Por favor, selecione o tamanho. 92 | MSG_NO_CHARSET=Por favor, selecione o conjunto de caracteres. 93 | MSG_WARNING=Warning 94 | MSG_WIN11_22H2RESTRICTION=On Windows 11 2022 Update(22H2) and later due to Windows reason title bar font can't change. 95 | MSG_FORCE_TITLE_SET=Changeing titlebar font may cause some troubles. 96 | MSG_TRANSLATE=Claudio Mantovani Vieira 97 | 98 | [PRESET] 99 | ; Preset menu setting. 100 | ; Write OS's initial font name and font size. 101 | ; And un comment KEY=VALUE . 102 | 103 | ; For Windows 8.x 104 | ; Font face 105 | CAPTION_FACE_8=Segoe UI 106 | ICON_FACE_8=Segoe UI 107 | SMALLCAPTION_FACE_8=Segoe UI 108 | STATUS_FACE_8=Segoe UI 109 | MESSAGE_FACE_8=Segoe UI 110 | MENU_FACE_8=Segoe UI 111 | 112 | ; Font size 113 | CAPTION_SIZE_8=11 114 | ICON_SIZE_8=9 115 | SMALLCAPTION_SIZE_8=11 116 | STATUS_SIZE_8=9 117 | MESSAGE_SIZE_8=9 118 | MENU_SIZE_8=9 119 | 120 | ; Font charset 121 | CAPTION_CHARSET_8=1 122 | ICON_CHARSET_8=1 123 | SMALLCAPTION_CHARSET_8=1 124 | STATUS_CHARSET_8=1 125 | MESSAGE_CHARSET_8=1 126 | MENU_CHARSET_8=1 127 | 128 | ; For Windows 10 129 | ; Font face 130 | CAPTION_FACE_10=Segoe UI 131 | ICON_FACE_10=Segoe UI 132 | SMALLCAPTION_FACE_10=Segoe UI 133 | STATUS_FACE_10=Segoe UI 134 | MESSAGE_FACE_10=Segoe UI 135 | MENU_FACE_10=Segoe UI 136 | 137 | ; Font size 138 | CAPTION_SIZE_10=9 139 | ICON_SIZE_10=9 140 | SMALLCAPTION_SIZE_10=9 141 | STATUS_SIZE_10=9 142 | MESSAGE_SIZE_10=9 143 | MENU_SIZE_10=9 144 | 145 | ; Font charset 146 | CAPTION_CHARSET_10=1 147 | ICON_CHARSET_10=1 148 | SMALLCAPTION_CHARSET_10=1 149 | STATUS_CHARSET_10=1 150 | MESSAGE_CHARSET_10=1 151 | MENU_CHARSET_10=1 152 | 153 | ; For Windows 11 154 | ; Font face 155 | CAPTION_FACE_11=Segoe UI 156 | ICON_FACE_11=Segoe UI 157 | SMALLCAPTION_FACE_11=Segoe UI 158 | STATUS_FACE_11=Segoe UI 159 | MESSAGE_FACE_11=Segoe UI 160 | MENU_FACE_11=Segoe UI 161 | 162 | ; Font size 163 | CAPTION_SIZE_11=9 164 | ICON_SIZE_11=9 165 | SMALLCAPTION_SIZE_11=9 166 | STATUS_SIZE_11=9 167 | MESSAGE_SIZE_11=9 168 | MENU_SIZE_11=9 169 | 170 | ; Font charset 171 | CAPTION_CHARSET_11=1 172 | ICON_CHARSET_11=1 173 | SMALLCAPTION_CHARSET_11=1 174 | STATUS_CHARSET_11=1 175 | MESSAGE_CHARSET_11=1 176 | MENU_CHARSET_11=1 177 | -------------------------------------------------------------------------------- /lang/zh-CN.lng: -------------------------------------------------------------------------------- 1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,Gekka Tachibana,kingofotaku,LucidLoli,Luke Luo,HSSadboy 2 | ; The sources for noMeiryoUI are distributed under the MIT open source license 3 | 4 | [RESOURCE] 5 | FONT_FACE=微软雅黑 6 | FONT_CHARSET=136 7 | TITLE=No!! Meiryo UI 8 | MENU_FILE=文件(&F) 9 | MENU_FILE_LOAD=加载字体配置文件(&O)... 10 | MENU_FILE_SAVE=保存字体配置文件(&A)... 11 | MENU_FILE_SET_QUIT=设定系统字体并退出(&S) 12 | MENU_FILE_QUIT=退出(&X) 13 | MENU_PRESET=恢复系统默认字体(&P) 14 | MENU_PRESET_8=Windows 8/8.1 15 | MENU_PRESET_10=Windows 10 16 | MENU_PRESET_11=Windows 11 17 | MENU_TOOLS=工具(&T) 18 | MENU_TOOLS_CHOICE_APP_FONT=修改 No!! Meiryo UI 的字体 19 | MENU_TOOLS_THREAD=在独立线程中更改系统字体 20 | MENU_TOOLS_SEVEN=采用与 Windows 7 中相同的方法计算文字大小 21 | MENU_TOOLS_NO_MULTI_RUN=只允许运行一个实例(&D) 22 | MENU_FORCE_TITLE_SET=强制修改标题栏字体 23 | MENU_HELP=帮助(&H) 24 | MENU_HELP_HELP=显示帮助(&H) 25 | MENU_HELP_ABOUT=关于 No!! Meiryo UI(&A) 26 | DLG_ALL_GROUP=全局设定 27 | DLG_INDIVIDUAL_GROUP=单项设定 28 | DLG_ALL_FONT=所有字体 29 | DLG_TITLE_BAR=标题栏 30 | DLG_ICON=追随图标的文字 31 | DLG_PALETTE=调色板标题 32 | DLG_HINT=当前焦点文字 33 | DLG_MESSAGE=对话框 34 | DLG_MENU=菜单 35 | DLG_SELECT=选择... 36 | DLG_SET_ALL=设置全部并退出 37 | DLG_SET=设置并退出 38 | DLG_EXIT=退出 39 | DLG_APPLY=应用 40 | DLG_FONT_SEL=字体选择 41 | DLG_FONT_NAME=字体名称(&F) 42 | DLG_STYLE=字形(&Y) 43 | DLG_SIZE=字体大小(&S) 44 | DLG_CHECK_BOLD=粗体(&B) 45 | DLG_CHECK_ITALIC=斜体(&I) 46 | DLG_UNDERLINE=下划线(&U) 47 | DLG_STRIKE=删除线(&T) 48 | DLG_CHARSET=字符集(&C) 49 | DLG_OK=确定 50 | DLG_CANCEL=取消 51 | DLG_CHARSET_ANSI=西欧语言 52 | DLG_CHARSET_BALTIC=波罗的语 53 | DLG_CHARSET_BIG5=繁体中文 54 | DLG_CHARSET_DEFAULT=默认 55 | DLG_CHARSET_EASTEUROPE=东欧语言 56 | DLG_CHARSET_GB2312=简体中文 57 | DLG_CHARSET_GREEK=希腊语 58 | DLG_CHARSET_HANGUL=朝鲜语 59 | DLG_CHARSET_MAC=MAC 60 | DLG_CHARSET_OEM=OEM 61 | DLG_CHARSET_RUSSIAN=西里尔文 62 | DLG_CHARSET_SHIFTJIS=日语 63 | DLG_CHARSET_SYMBOL=符号 64 | DLG_CHARSET_TURKISH=土耳其语 65 | DLG_CHARSET_VIETNAMESE=越南语 66 | DLG_CHARSET_JOHAB=韩文(johab) 67 | DLG_CHARSET_ARABIC=阿拉伯语 68 | DLG_CHARSET_HEBREW=希伯来语 69 | DLG_CHARSET_THAI=泰语 70 | DLG_STYLE_NORMAL=常规 71 | DLG_STYLE_ITALIC=斜体 72 | DLG_STYLE_BOLD=粗体 73 | DLG_STYLE_BOLD_ITALIC=粗偏斜体 74 | DLG_STYLE_MEDIUM=中黑体 75 | DLG_STYLE_SEMI_BOLD=中粗体 76 | DLG_STYLE_BOOK=常规体 77 | DLG_STYLE_OBLIQUE=斜体 78 | DLG_STYLE_LIGHT=细体 79 | DLG_STYLE_EXTRA_LIGHT=极细体 80 | DLG_STYLE_SEMI_LIGHT=准细体 81 | DLG_STYLE_SLANTED=斜体 82 | MSG_SETTING_FILE=字体设定文件(*.ini) 83 | MSG_ALL_FILE=所有文件(*.*) 84 | MSG_LOAD_FAIL=字体配置文件加载失败。 85 | MSG_SAVE_FAIL=字体配置文件保存失败。 86 | MSG_ERROR=错误 87 | MSG_ABOUT=关于 No!! Meiryo UI 88 | MSG_NO_FONT=请选择字体。 89 | MSG_NO_STYLE=请选择字形。 90 | MSG_NO_SIZE=请选择字体大小。 91 | MSG_NO_CHARSET=请选择字符集。 92 | MSG_WARNING=提示 93 | MSG_WIN11_22H2RESTRICTION=在Windows 11 2022 Update(22H2)版本下 由于Windows方面的改动 导致标题栏字体不再允许进行更改。 94 | MSG_FORCE_TITLE_SET=更改标题栏字体可能会导致系统发生问题。 95 | MSG_TRANSLATE=立花 月下,kingofotaku,icebeam030,LucidLoli,Luke Luo,HSSadBoy 96 | 97 | [PRESET] 98 | ; Preset menu setting. 99 | ; Write OS's initial font name and font size. 100 | ; And un comment KEY=VALUE . 101 | 102 | ; For Windows 8.x 103 | ; Font face 104 | CAPTION_FACE_8=Microsoft YaHei UI 105 | ICON_FACE_8=Microsoft YaHei UI 106 | SMALLCAPTION_FACE_8=Microsoft YaHei UI 107 | STATUS_FACE_8=Microsoft YaHei UI 108 | MESSAGE_FACE_8=Microsoft YaHei UI 109 | MENU_FACE_8=Microsoft YaHei UI 110 | 111 | ; Font size 112 | CAPTION_SIZE_8=11 113 | ICON_SIZE_8=9 114 | SMALLCAPTION_SIZE_8=11 115 | STATUS_SIZE_8=9 116 | MESSAGE_SIZE_8=9 117 | MENU_SIZE_8=9 118 | 119 | ; Font charset 120 | CAPTION_CHARSET_8=1 121 | ICON_CHARSET_8=1 122 | SMALLCAPTION_CHARSET_8=1 123 | STATUS_CHARSET_8=1 124 | MESSAGE_CHARSET_8=1 125 | MENU_CHARSET_8=1 126 | 127 | ; For Windows 10 128 | ; Font face 129 | CAPTION_FACE_10=Microsoft YaHei UI 130 | ICON_FACE_10=Microsoft YaHei UI 131 | SMALLCAPTION_FACE_10=Microsoft YaHei UI 132 | STATUS_FACE_10=Microsoft YaHei UI 133 | MESSAGE_FACE_10=Microsoft YaHei UI 134 | MENU_FACE_10=Microsoft YaHei UI 135 | 136 | ; Font size 137 | CAPTION_SIZE_10=9 138 | ICON_SIZE_10=9 139 | SMALLCAPTION_SIZE_10=9 140 | STATUS_SIZE_10=9 141 | MESSAGE_SIZE_10=9 142 | MENU_SIZE_10=9 143 | 144 | ; Font charset 145 | CAPTION_CHARSET_10=1 146 | ICON_CHARSET_10=1 147 | SMALLCAPTION_CHARSET_10=1 148 | STATUS_CHARSET_10=1 149 | MESSAGE_CHARSET_10=1 150 | MENU_CHARSET_10=1 151 | 152 | ; For Windows 11 153 | ; Font face 154 | CAPTION_FACE_11=Microsoft YaHei UI 155 | ICON_FACE_11=Microsoft YaHei UI 156 | SMALLCAPTION_FACE_11=Microsoft Yahei UI 157 | STATUS_FACE_11=Microsoft YaHei UI 158 | MESSAGE_FACE_11=Microsoft YaHei UI 159 | MENU_FACE_11=Microsoft YaHei UI 160 | 161 | ; Font size 162 | CAPTION_SIZE_11=9 163 | ICON_SIZE_11=9 164 | SMALLCAPTION_SIZE_11=9 165 | STATUS_SIZE_11=9 166 | MESSAGE_SIZE_11=9 167 | MENU_SIZE_11=9 168 | 169 | ; Font charset 170 | CAPTION_CHARSET_11=1 171 | ICON_CHARSET_11=1 172 | SMALLCAPTION_CHARSET_11=1 173 | STATUS_CHARSET_11=1 174 | MESSAGE_CHARSET_11=1 175 | MENU_CHARSET_11=1 176 | -------------------------------------------------------------------------------- /lang/zh-TW.lng: -------------------------------------------------------------------------------- 1 | ; noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji,Gekka Tachibana,kingofotaku,Austin Chang,HSSadBoy,abc0922001,hensuu 2 | ; The sources for noMeiryoUI are distributed under the MIT open source license 3 | 4 | [RESOURCE] 5 | FONT_FACE=微軟正黑體 6 | FONT_CHARSET=136 7 | TITLE=No!! Meiryo UI 8 | MENU_FILE=檔案(&F) 9 | MENU_FILE_LOAD=載入字型設定檔(&O) 10 | MENU_FILE_SAVE=儲存字型設定檔(&A) 11 | MENU_FILE_SET_QUIT=設定系統字型並退出(&S) 12 | MENU_FILE_QUIT=結束(&X) 13 | MENU_PRESET=重設為預設設定(&P) 14 | MENU_PRESET_8=Windows 8/8.1 15 | MENU_PRESET_10=Windows 10 16 | MENU_PRESET_11=Windows 11 17 | MENU_TOOLS=工具(&T) 18 | MENU_TOOLS_CHOICE_APP_FONT=選擇 No!! Meiryo UI 應用程式字型(&f) 19 | MENU_TOOLS_THREAD=在另一執行緒中變更字型(&A) 20 | MENU_TOOLS_SEVEN=將字型大小視為與 Windows 7 相同(&7) 21 | MENU_TOOLS_NO_MULTI_RUN=不要重複執行(&D) 22 | MENU_FORCE_TITLE_SET=允許變更標題列字型(&O) 23 | MENU_HELP=說明(&H) 24 | MENU_HELP_HELP=檢視說明(&C) 25 | MENU_HELP_ABOUT=關於 No!! Meiryo UI (&A) 26 | DLG_ALL_GROUP=全部字型設定 27 | DLG_INDIVIDUAL_GROUP=個別字型設定 28 | DLG_ALL_FONT=全部字型 29 | DLG_TITLE_BAR=標題列 30 | DLG_ICON=圖示 31 | DLG_PALETTE=選擇區標題 32 | DLG_HINT=提示 33 | DLG_MESSAGE=訊息方塊 34 | DLG_MENU=選單 35 | DLG_SELECT=選取 36 | DLG_SET_ALL=套用全部並結束 37 | DLG_SET=套用並結束 38 | DLG_EXIT=結束而不套用 39 | DLG_APPLY=套用 40 | DLG_FONT_SEL=字型選取 41 | DLG_FONT_NAME=字型名稱(&F) 42 | DLG_STYLE=字型樣式(&Y) 43 | DLG_SIZE=大小(&S) 44 | DLG_CHECK_BOLD=粗體(&B) 45 | DLG_CHECK_ITALIC=斜體(&I) 46 | DLG_UNDERLINE=底線(&U) 47 | DLG_STRIKE=刪除線(&T) 48 | DLG_CHARSET=字元集(&C) 49 | DLG_OK=確定 50 | DLG_CANCEL=取消 51 | DLG_CHARSET_ANSI=西歐語多 52 | DLG_CHARSET_BALTIC=波羅地海文 53 | DLG_CHARSET_GB2312=簡體中文 54 | DLG_CHARSET_BIG5=正體中文 55 | DLG_CHARSET_DEFAULT=預設 56 | DLG_CHARSET_EASTEUROPE=東歐語系 57 | DLG_CHARSET_GREEK=希臘文 58 | DLG_CHARSET_HANGUL=韓文 59 | DLG_CHARSET_MAC=Mac 60 | DLG_CHARSET_OEM=OEM 61 | DLG_CHARSET_RUSSIAN=俄文 62 | DLG_CHARSET_SHIFTJIS=日文 63 | DLG_CHARSET_SYMBOL=符號 64 | DLG_CHARSET_TURKISH=土耳其文 65 | DLG_CHARSET_VIETNAMESE=越南文 66 | DLG_CHARSET_JOHAB=Johab 韓文 67 | DLG_CHARSET_ARABIC=阿拉伯文 68 | DLG_CHARSET_HEBREW=希伯來文 69 | DLG_CHARSET_THAI=泰文 70 | DLG_STYLE_NORMAL=標準 71 | DLG_STYLE_ITALIC=斜體 72 | DLG_STYLE_BOLD=粗體 73 | DLG_STYLE_BOLD_ITALIC=粗斜體 74 | DLG_STYLE_MEDIUM=中等 75 | DLG_STYLE_SEMI_BOLD=半粗體 76 | DLG_STYLE_BOOK=正文體 77 | DLG_STYLE_OBLIQUE=傾斜體 78 | DLG_STYLE_LIGHT=輕體 79 | DLG_STYLE_EXTRA_LIGHT=超輕體 80 | DLG_STYLE_SEMI_LIGHT=半輕體 81 | DLG_STYLE_SLANTED=傾斜體 82 | MSG_SETTING_FILE=字型設定檔(*.ini) 83 | MSG_ALL_FILE=所有檔案(*.*) 84 | MSG_LOAD_FAIL=字型設定檔載入失敗。 85 | MSG_SAVE_FAIL=字型設定檔儲存失敗。 86 | MSG_ERROR=錯誤 87 | MSG_ABOUT=關於 No!! Meiryo UI 88 | MSG_NO_FONT=請選擇字型。 89 | MSG_NO_STYLE=請選擇字型樣式。 90 | MSG_NO_SIZE=請選擇字型大小。 91 | MSG_NO_CHARSET=請選擇字元集。 92 | MSG_WARNING=警告 93 | MSG_WIN11_22H2RESTRICTION=在 Windows 11 2022 Update(22H2) 中,由於 Windows 方面的限制,無法變更標題列的字型。 94 | MSG_FORCE_TITLE_SET=變更標題列字型可能會導致一些問題。 95 | MSG_TRANSLATE=Austin Chang,HSSadBoy,hensuu 96 | 97 | [PRESET] 98 | ; Preset menu setting. 99 | ; Write OS's initial font name and font size. 100 | ; And un comment KEY=VALUE . 101 | ; 102 | ; For Windows 8.x 103 | ; Font face 104 | CAPTION_FACE_8=Microsoft JhengHei UI 105 | ICON_FACE_8=Microsoft JhengHei UI 106 | SMALLCAPTION_FACE_8=Microsoft JhengHei UI 107 | STATUS_FACE_8=Microsoft JhengHei UI 108 | MESSAGE_FACE_8=Microsoft JhengHei UI 109 | MENU_FACE_8=Microsoft JhengHei UI 110 | 111 | ; Font size 112 | CAPTION_SIZE_8=11 113 | ICON_SIZE_8=9 114 | SMALLCAPTION_SIZE_8=11 115 | STATUS_SIZE_8=9 116 | MESSAGE_SIZE_8=9 117 | MENU_SIZE_8=9 118 | 119 | ; Font charset 120 | CAPTION_CHARSET_8=1 121 | ICON_CHARSET_8=1 122 | SMALLCAPTION_CHARSET_8=1 123 | STATUS_CHARSET_8=1 124 | MESSAGE_CHARSET_8=1 125 | MENU_CHARSET_8=1 126 | 127 | ; For Windows 10 128 | ; Font face 129 | CAPTION_FACE_10=Microsoft JhengHei UI 130 | ICON_FACE_10=Microsoft JhengHei UI 131 | SMALLCAPTION_FACE_10=Microsoft JhengHei UI 132 | STATUS_FACE_10=Microsoft JhengHei UI 133 | MESSAGE_FACE_10=Microsoft JhengHei UI 134 | MENU_FACE_10=Microsoft JhengHei UI 135 | 136 | ; Font size 137 | CAPTION_SIZE_10=9 138 | ICON_SIZE_10=9 139 | SMALLCAPTION_SIZE_10=9 140 | STATUS_SIZE_10=9 141 | MESSAGE_SIZE_10=9 142 | MENU_SIZE_10=9 143 | 144 | ; Font charset 145 | CAPTION_CHARSET_10=1 146 | ICON_CHARSET_10=1 147 | SMALLCAPTION_CHARSET_10=1 148 | STATUS_CHARSET_10=1 149 | MESSAGE_CHARSET_10=1 150 | MENU_CHARSET_10=1 151 | 152 | ; For Windows 11 153 | ; Font face 154 | CAPTION_FACE_11=Microsoft JhengHei UI 155 | ICON_FACE_11=Microsoft JhengHei UI 156 | SMALLCAPTION_FACE_11=Microsoft JhengHei UI 157 | STATUS_FACE_11=Microsoft JhengHei UI 158 | MESSAGE_FACE_11=Microsoft JhengHei UI 159 | MENU_FACE_11=Microsoft JhengHei UI 160 | 161 | ; Font size 162 | CAPTION_SIZE_11=9 163 | ICON_SIZE_11=9 164 | SMALLCAPTION_SIZE_11=9 165 | STATUS_SIZE_11=9 166 | MESSAGE_SIZE_11=9 167 | MENU_SIZE_11=9 168 | 169 | ; Font charset 170 | CAPTION_CHARSET_11=1 171 | ICON_CHARSET_11=1 172 | SMALLCAPTION_CHARSET_11=1 173 | STATUS_CHARSET_11=1 174 | MESSAGE_CHARSET_11=1 175 | MENU_CHARSET_11=1 176 | -------------------------------------------------------------------------------- /program/FontSel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/FontSel.cpp -------------------------------------------------------------------------------- /program/FontSel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/FontSel.h -------------------------------------------------------------------------------- /program/TWR/AppliBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/AppliBase.h -------------------------------------------------------------------------------- /program/TWR/BaseDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/BaseDialog.cpp -------------------------------------------------------------------------------- /program/TWR/BaseDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/BaseDialog.h -------------------------------------------------------------------------------- /program/TWR/DialogAppliBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/DialogAppliBase.cpp -------------------------------------------------------------------------------- /program/TWR/DialogAppliBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/DialogAppliBase.h -------------------------------------------------------------------------------- /program/TWR/ModelessDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/ModelessDialog.cpp -------------------------------------------------------------------------------- /program/TWR/ModelessDialog.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | #ifndef MODELESSDIALOG_H 6 | #define MODELESSDIALOG_H 7 | 8 | #include 9 | 10 | void initModelessDialog(void); 11 | void addModelessDialog(HWND dialog); 12 | void delModelessDialog(HWND dialog); 13 | bool handleDialogMessage(LPMSG lpMsg); 14 | 15 | #endif 16 | -------------------------------------------------------------------------------- /program/TWR/NCFileDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/NCFileDialog.cpp -------------------------------------------------------------------------------- /program/TWR/NCFileDialog.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2015 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | #ifndef NCFileDialog_H 6 | #define NCFileDialog_H 7 | 8 | class NCFileDialog { 9 | private: 10 | TCHAR gotFileName[_MAX_PATH]; 11 | BOOL m_OpenFileDialog; 12 | const char *m_defExt; 13 | public: 14 | OPENFILENAME m_ofn; 15 | 16 | NCFileDialog( 17 | BOOL bOpenFileDialog, 18 | const char *lpszDefExt = NULL, 19 | const TCHAR *lpszFileName = NULL, 20 | DWORD dwFlags = OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, 21 | const TCHAR *lpszFilter = NULL, 22 | HWND pParentWnd = NULL, 23 | DWORD dwSize = 0 24 | ); 25 | 26 | int DoModal(); 27 | TCHAR *GetPathName() { return gotFileName;}; 28 | OPENFILENAME &GetOFN() { 29 | return m_ofn; 30 | } 31 | }; 32 | 33 | #endif 34 | -------------------------------------------------------------------------------- /program/TWR/TwrCheckbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrCheckbox.cpp -------------------------------------------------------------------------------- /program/TWR/TwrCheckbox.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | #ifndef TWRCHECKBOX_H 6 | #define TWRCHECHBOX_H 7 | 8 | #include "TwrWnd.h" 9 | 10 | class TwrCheckbox : public TwrWnd { 11 | public: 12 | TwrCheckbox(); 13 | TwrCheckbox(HWND newHwnd); 14 | HWND create(void); 15 | HWND create(HWND parent); 16 | bool isChecked(void); 17 | void setChecked(bool checked); 18 | }; 19 | 20 | #endif 21 | -------------------------------------------------------------------------------- /program/TWR/TwrCombobox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrCombobox.cpp -------------------------------------------------------------------------------- /program/TWR/TwrCombobox.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | #ifndef TWRCOMBOBOX_H 6 | #define TWRCOMBOBOX_H 7 | 8 | #include "TwrWnd.h" 9 | 10 | class TwrCombobox : public TwrWnd { 11 | private: 12 | int style; 13 | public: 14 | TwrCombobox(); 15 | TwrCombobox(HWND newHwnd); 16 | 17 | HWND create(void); 18 | HWND create(HWND parent); 19 | void addItem(const TCHAR *item); 20 | int getSelectedIndex(void); 21 | int getCount(void); 22 | tstring getItem(int index); 23 | void setStyle(int newStyle) { 24 | style = newStyle; 25 | } 26 | void clear(void); 27 | void setSelectedIndex(int index); 28 | tstring getSelectedText(void); 29 | 30 | }; 31 | 32 | #endif 33 | -------------------------------------------------------------------------------- /program/TWR/TwrCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrCore.cpp -------------------------------------------------------------------------------- /program/TWR/TwrCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrCore.h -------------------------------------------------------------------------------- /program/TWR/TwrMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrMenu.cpp -------------------------------------------------------------------------------- /program/TWR/TwrMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrMenu.h -------------------------------------------------------------------------------- /program/TWR/TwrWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/TwrWnd.cpp -------------------------------------------------------------------------------- /program/TWR/TwrWnd.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | #ifndef TWRWND_H 6 | #define TWRWND_H 7 | 8 | #include 9 | 10 | #include "tstring.h" 11 | 12 | /** 13 | * Tatsu's windows api WRapper
14 | * Window base class 15 | */ 16 | class TwrWnd { 17 | protected: 18 | HWND hWnd; 19 | tstring title; 20 | int left; 21 | int top; 22 | int width; 23 | int height; 24 | public: 25 | TwrWnd(); 26 | TwrWnd(HWND newWnd); 27 | virtual ~TwrWnd(); 28 | 29 | BOOL UpdateWindow(); 30 | BOOL ShowWindow(int nCmdShow); 31 | void EnableWindow(BOOL enabled); 32 | HWND getHwnd() { 33 | return hWnd; 34 | } 35 | void destroyWindow(void) { 36 | DestroyWindow(hWnd); 37 | } 38 | void setText(const TCHAR *text); 39 | void setPoint(int x, int y); 40 | void setSize(int w, int h); 41 | void setFont(HFONT font); 42 | }; 43 | 44 | #endif -------------------------------------------------------------------------------- /program/TWR/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/TWR/stdafx.h -------------------------------------------------------------------------------- /program/TWR/tstring.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012,2013 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | #ifndef TSTRING 6 | #define TSTRING 7 | 8 | #include 9 | #include 10 | 11 | typedef std::basic_string tstring; 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /program/country/default.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "default.h" 3 | 4 | namespace default { 5 | 6 | /** 7 | * @brief 必要とされる文字列 8 | */ 9 | tstring _neededString; 10 | 11 | /** 12 | * Charsetに対するEnumFontFamiliesExのコールバック 13 | * 14 | * @param lpelfe 論理的なフォントデータ 15 | * @param lpntme 物理的なフォントデータ 16 | * @param FontType フォントの種類 17 | * @param lParam アプリケーション定義のデータ 18 | * @return 0:列挙を中止する 1:次のフォントを列挙する。 19 | */ 20 | int CALLBACK EnumFontCharsetProc( 21 | ENUMLOGFONTEX *lpelfe, // 論理的なフォントデータ 22 | NEWTEXTMETRICEX *lpntme, // 物理的なフォントデータ 23 | DWORD FontType, // フォントの種類 24 | LPARAM lParam // アプリケーション定義のデータ 25 | ) 26 | { 27 | if (_neededString == lpelfe->elfFullName) { 28 | return 0; 29 | } 30 | 31 | return 1; 32 | 33 | } 34 | 35 | /** 36 | * Charsetに対するフォントを取得する 37 | * 38 | * @return 0:フォントが存在する 1:フォントは存在しない 39 | */ 40 | int findCharsetFont() 41 | { 42 | LOGFONT lf; 43 | 44 | memset(&lf, 0, sizeof(LOGFONT)); 45 | lf.lfPitchAndFamily = 0; 46 | lf.lfCharSet = DEFAULT_CHARSET; 47 | 48 | HDC hDC; 49 | hDC = GetDC(GetDesktopWindow()); 50 | 51 | int found = 1; 52 | found = ::EnumFontFamiliesEx( 53 | hDC, 54 | &lf, 55 | (FONTENUMPROC)EnumFontCharsetProc, 56 | (LPARAM)0, 57 | 0 58 | ); 59 | 60 | return found; 61 | } 62 | 63 | /** 64 | * Write fallback font when font specified in language file is not found. 65 | * For example in Japanese, use Yu Gothic -> MS UI Gothic 66 | * Use this routine, unfortunately system font selection is too ugly such as Japan. 67 | * If you want to use language and Windows version specific fallback, copy this source for your country 68 | * and modify font name in language specific font name which is installed all Windows in your country. 69 | * 70 | * @brief Determine exist font for default languages. 71 | * @param settingString Preferred font name 72 | * @return Choiced font name 73 | */ 74 | tstring getDefaultFontFallback(tstring &settingString) 75 | { 76 | int result = 1; 77 | 78 | _neededString = settingString; 79 | 80 | result = findCharsetFont(); 81 | if (result == 0) { 82 | return settingString; 83 | } 84 | 85 | _neededString = _T("Arial"); 86 | 87 | return _neededString; 88 | 89 | } 90 | 91 | } 92 | -------------------------------------------------------------------------------- /program/country/default.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2024 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | namespace default { 13 | 14 | extern tstring getDefaultFontFallback(tstring &settingString); 15 | 16 | }; 17 | -------------------------------------------------------------------------------- /program/country/japan.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include "japan.h" 3 | 4 | namespace japan { 5 | 6 | /** 7 | * @brief 必要とされる文字列 8 | */ 9 | tstring _neededString; 10 | 11 | /** 12 | * Charsetに対するEnumFontFamiliesExのコールバック 13 | * 14 | * @param lpelfe 論理的なフォントデータ 15 | * @param lpntme 物理的なフォントデータ 16 | * @param FontType フォントの種類 17 | * @param lParam アプリケーション定義のデータ 18 | * @return 0:列挙を中止する 1:次のフォントを列挙する。 19 | */ 20 | int CALLBACK EnumFontCharsetProc( 21 | ENUMLOGFONTEX *lpelfe, // 論理的なフォントデータ 22 | NEWTEXTMETRICEX *lpntme, // 物理的なフォントデータ 23 | DWORD FontType, // フォントの種類 24 | LPARAM lParam // アプリケーション定義のデータ 25 | ) 26 | { 27 | if (_neededString == lpelfe->elfFullName) { 28 | return 0; 29 | } 30 | 31 | return 1; 32 | 33 | } 34 | 35 | /** 36 | * Charsetに対するフォントを取得する 37 | * 38 | * @return 0:フォントが存在する 1:フォントは存在しない 39 | */ 40 | int findCharsetFont() 41 | { 42 | LOGFONT lf; 43 | 44 | memset(&lf, 0, sizeof(LOGFONT)); 45 | lf.lfPitchAndFamily = 0; 46 | lf.lfCharSet = DEFAULT_CHARSET; 47 | 48 | HDC hDC; 49 | hDC = GetDC(GetDesktopWindow()); 50 | 51 | int found = 1; 52 | found = ::EnumFontFamiliesEx( 53 | hDC, 54 | &lf, 55 | (FONTENUMPROC)EnumFontCharsetProc, 56 | (LPARAM)0, 57 | 0 58 | ); 59 | 60 | return found; 61 | } 62 | 63 | /** 64 | * @brief 日本語版の使用するフォールバックフォントを取得する。 65 | * @param settingString 言語ファイルのフォント名 66 | * @return 選択されたフォント名 67 | */ 68 | tstring getJapaneseFontFallback(tstring &settingString) 69 | { 70 | int result = 1; 71 | 72 | _neededString = settingString; 73 | 74 | // Font in language file is found in your Windows? 75 | result = findCharsetFont(); 76 | if (result == 0) { 77 | return settingString; 78 | } 79 | 80 | // In early Windows 10 81 | _neededString = _T("游ゴシック Medium"); 82 | result = findCharsetFont(); 83 | if (result == 0) { 84 | return _neededString; 85 | } 86 | 87 | // In Windows 8.1 88 | _neededString = _T("游ゴシック"); 89 | result = findCharsetFont(); 90 | if (result == 0) { 91 | return _neededString; 92 | } 93 | 94 | // なければオーソドックスなMS UI Gothic 95 | // メイリオは誤解を生むのであえて使わない。 96 | // メイリオとMeiryo UIはいろいろな意味で別物なのに混同されることがあるので。 97 | _neededString = _T("MS UI Gothic"); 98 | 99 | return _neededString; 100 | 101 | } 102 | 103 | } 104 | -------------------------------------------------------------------------------- /program/country/japan.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2024 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | 6 | #pragma once 7 | 8 | #include 9 | #include 10 | #include 11 | 12 | namespace japan { 13 | 14 | extern tstring getJapaneseFontFallback(tstring &settingString); 15 | 16 | }; 17 | -------------------------------------------------------------------------------- /program/country/korea.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2024 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | #include 6 | #include 7 | #include 8 | 9 | namespace korea { 10 | 11 | /** 12 | * 韓国語のフォント名を置き換える(韓国語専用) 13 | * 14 | * @param dispBuf 韓国語のフォント名 15 | */ 16 | void getKoreanFontName(TCHAR *dispBuf) 17 | { 18 | if (!_tcscmp(dispBuf, _T("Gulim"))) { 19 | _tcscpy(dispBuf, _T("굴림")); 20 | } 21 | 22 | if (!_tcscmp(dispBuf, _T("GulimChe"))) { 23 | _tcscpy(dispBuf, _T("굴림체")); 24 | } 25 | 26 | if (!_tcscmp(dispBuf, _T("Gungsuh"))) { 27 | _tcscpy(dispBuf, _T("궁서")); 28 | } 29 | 30 | if (!_tcscmp(dispBuf, _T("GungsuhChe"))) { 31 | _tcscpy(dispBuf, _T("궁서체")); 32 | } 33 | 34 | if (!_tcscmp(dispBuf, _T("Dotum"))) { 35 | _tcscpy(dispBuf, _T("돋움")); 36 | } 37 | 38 | if (!_tcscmp(dispBuf, _T("DotumChe"))) { 39 | _tcscpy(dispBuf, _T("돋움체")); 40 | } 41 | 42 | if (!_tcscmp(dispBuf, _T("Malgun Gothic"))) { 43 | _tcscpy(dispBuf, _T("맑은 고딕")); 44 | } 45 | 46 | if (!_tcscmp(dispBuf, _T("Batang"))) { 47 | _tcscpy(dispBuf, _T("바탕")); 48 | } 49 | 50 | if (!_tcscmp(dispBuf, _T("BatangChe"))) { 51 | _tcscpy(dispBuf, _T("바탕체")); 52 | } 53 | 54 | } 55 | 56 | } 57 | 58 | -------------------------------------------------------------------------------- /program/country/korea.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2024 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | namespace korea { 6 | 7 | void getKoreanFontName(TCHAR *dispBuf); 8 | 9 | }; 10 | -------------------------------------------------------------------------------- /program/iniReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/iniReader.cpp -------------------------------------------------------------------------------- /program/iniReader.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2021 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | #ifndef INIREADER_H 6 | #define INIREADER_H 7 | 8 | #include 9 | 10 | DWORD GetPrivateProfileStringExT( 11 | char *sectionName, 12 | TCHAR *keyName, 13 | TCHAR *defaultValue, 14 | tstring &returnString, 15 | TCHAR *iniFileName); 16 | 17 | #endif 18 | -------------------------------------------------------------------------------- /program/langresource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/langresource.cpp -------------------------------------------------------------------------------- /program/langresource.h: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2025 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | 6 | #ifndef LANGRESOURCE_H 7 | #define LANGRESOURCE_H 8 | 9 | #include 10 | 11 | #define FONT_FACE 0 12 | #define TITLE 1 13 | #define MENU_FILE 2 14 | #define MENU_FILE_LOAD 3 15 | #define MENU_FILE_SAVE 4 16 | #define MENU_FILE_SET_QUIT 5 17 | #define MENU_FILE_QUIT 6 18 | #define MENU_PRESET 7 19 | #define MENU_PRESET_8 8 20 | #define MENU_PRESET_10 9 21 | #define MENU_TOOLS 10 22 | #define MENU_TOOLS_THREAD 11 23 | #define MENU_TOOLS_SEVEN 12 24 | #define MENU_HELP 13 25 | #define MENU_HELP_HELP 14 26 | #define MENU_HELP_ABOUT 15 27 | #define DLG_ALL_FONT 16 28 | #define DLG_TITLE_BAR 17 29 | #define DLG_ICON 18 30 | #define DLG_PALETTE 19 31 | #define DLG_HINT 20 32 | #define DLG_MESSAGE 21 33 | #define DLG_MENU 22 34 | #define DLG_SELECT 23 35 | #define DLG_SET_ALL 24 36 | #define DLG_SET 25 37 | #define DLG_EXIT 26 38 | #define DLG_FONT_SEL 27 39 | #define DLG_FONT_NAME 28 40 | #define DLG_STYLE 29 41 | #define DLG_SIZE 30 42 | #define DLG_UNDERLINE 31 43 | #define DLG_STRIKE 32 44 | #define DLG_CHARSET 33 45 | #define DLG_OK 34 46 | #define DLG_CANCEL 35 47 | #define DLG_CHARSET_ANSI 36 48 | #define DLG_CHARSET_BALTIC 37 49 | #define DLG_CHARSET_BIG5 38 50 | #define DLG_CHARSET_DEFAULT 39 51 | #define DLG_CHARSET_EASTEUROPE 40 52 | #define DLG_CHARSET_GB2312 41 53 | #define DLG_CHARSET_GREEK 42 54 | #define DLG_CHARSET_HANGUL 43 55 | #define DLG_CHARSET_MAC 44 56 | #define DLG_CHARSET_OEM 45 57 | #define DLG_CHARSET_RUSSIAN 46 58 | #define DLG_CHARSET_SHIFTJIS 47 59 | #define DLG_CHARSET_SYMBOL 48 60 | #define DLG_CHARSET_TURKISH 49 61 | #define DLG_CHARSET_VIETNAMESE 50 62 | #define DLG_CHARSET_JOHAB 51 63 | #define DLG_CHARSET_ARABIC 52 64 | #define DLG_CHARSET_HEBREW 53 65 | #define DLG_CHARSET_THAI 54 66 | #define DLG_STYLE_NORMAL 55 67 | #define DLG_STYLE_ITALIC 56 68 | #define DLG_STYLE_BOLD 57 69 | #define DLG_STYLE_BOLD_ITALIC 58 70 | #define MSG_SETTING_FILE 59 71 | #define MSG_ALL_FILE 60 72 | #define MSG_LOAD_FAIL 61 73 | #define MSG_SAVE_FAIL 62 74 | #define MSG_ERROR 63 75 | #define MSG_ABOUT 64 76 | #define MSG_NO_FONT 65 77 | #define MSG_NO_STYLE 66 78 | #define MSG_NO_SIZE 67 79 | #define MSG_NO_CHARSET 68 80 | #define MSG_TRANSLATE 69 81 | #define FONT_CHARSET 70 82 | #define DLG_APPLY 71 83 | #define DLG_ALL_GROUP 72 84 | #define DLG_INDIVIDUAL_GROUP 73 85 | #define DLG_STYLE_MEDIUM 74 86 | #define DLG_STYLE_SEMI_BOLD 75 87 | #define DLG_STYLE_BOOK 76 88 | #define DLG_STYLE_OBLIQUE 77 89 | #define DLG_STYLE_LIGHT 78 90 | #define DLG_STYLE_EXTRA_LIGHT 79 91 | #define DLG_STYLE_SEMI_LIGHT 80 92 | #define DLG_STYLE_SLANTED 81 93 | #define DLG_CHECK_BOLD 82 94 | #define DLG_CHECK_ITALIC 83 95 | #define MSG_WARNING 84 96 | #define MSG_WIN11_22H2RESTRICTION 85 97 | #define MENU_CHOICE_APP_FONT 86 98 | #define MENU_DONT_RUN_MULTIPLY 87 99 | #define MENU_FORCE_TITLE_SET 88 100 | #define MSG_FORCE_TITLE_SET 89 101 | 102 | extern void readResourceFile(TCHAR *file); 103 | 104 | #endif 105 | -------------------------------------------------------------------------------- /program/noMeiryoUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.cpp -------------------------------------------------------------------------------- /program/noMeiryoUI.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | noMeiryoUI set system fonts on Windows 8.x/10 10 | 11 | 12 | 20 | 21 | 22 | 23 | 24 | True 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /program/noMeiryoUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.h -------------------------------------------------------------------------------- /program/noMeiryoUI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.ico -------------------------------------------------------------------------------- /program/noMeiryoUI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.rc -------------------------------------------------------------------------------- /program/noMeiryoUI.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Express 2012 for Windows Desktop 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "noMeiryoUI", "noMeiryoUI.vcxproj", "{0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}" 5 | EndProject 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "noMeiryoUI_2012", "noMeiryoUI_2012.vcxproj", "{5FBD6B6B-056A-402B-9168-CF72C05FDA0E}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug_2008|Win32 = Debug_2008|Win32 11 | Debug|Win32 = Debug|Win32 12 | Release_2008|Win32 = Release_2008|Win32 13 | Release|Win32 = Release|Win32 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug_2008|Win32.ActiveCfg = Debug_2008|Win32 17 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug_2008|Win32.Build.0 = Debug_2008|Win32 18 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug|Win32.ActiveCfg = Debug|Win32 19 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug|Win32.Build.0 = Debug|Win32 20 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release_2008|Win32.ActiveCfg = Release_2008|Win32 21 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release_2008|Win32.Build.0 = Release_2008|Win32 22 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release|Win32.ActiveCfg = Release|Win32 23 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release|Win32.Build.0 = Release|Win32 24 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Debug_2008|Win32.ActiveCfg = Debug|Win32 25 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Debug_2008|Win32.Build.0 = Debug|Win32 26 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Debug|Win32.ActiveCfg = Debug|Win32 27 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Debug|Win32.Build.0 = Debug|Win32 28 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Release_2008|Win32.ActiveCfg = Release|Win32 29 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Release_2008|Win32.Build.0 = Release|Win32 30 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Release|Win32.ActiveCfg = Release|Win32 31 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E}.Release|Win32.Build.0 = Release|Win32 32 | EndGlobalSection 33 | GlobalSection(SolutionProperties) = preSolution 34 | HideSolutionNode = FALSE 35 | EndGlobalSection 36 | GlobalSection(ExtensibilityGlobals) = postSolution 37 | SolutionGuid = {DDA790B3-BFD9-471A-BADB-686A19F440B5} 38 | EndGlobalSection 39 | EndGlobal 40 | -------------------------------------------------------------------------------- /program/noMeiryoUI.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI.vcproj -------------------------------------------------------------------------------- /program/noMeiryoUI.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {0f14fc6b-c5ac-4eff-9e3f-67d982331a10} 10 | 11 | 12 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 13 | h;hpp;hxx;hm;inl;inc;xsd 14 | 15 | 16 | {0b7db99e-612d-46b4-b5c0-6ce958f4eadc} 17 | 18 | 19 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 20 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 21 | 22 | 23 | {f245276e-3848-4761-bc5e-7ede926228e4} 24 | 25 | 26 | {a1d85430-7ac7-479c-8d4e-46cb142989eb} 27 | 28 | 29 | 30 | 31 | ソース ファイル 32 | 33 | 34 | ソース ファイル 35 | 36 | 37 | ソース ファイル 38 | 39 | 40 | ソース ファイル 41 | 42 | 43 | ソース ファイル\TWR 44 | 45 | 46 | ソース ファイル\TWR 47 | 48 | 49 | ソース ファイル\TWR 50 | 51 | 52 | ソース ファイル\TWR 53 | 54 | 55 | ソース ファイル\TWR 56 | 57 | 58 | ソース ファイル\TWR 59 | 60 | 61 | ソース ファイル\TWR 62 | 63 | 64 | ソース ファイル\TWR 65 | 66 | 67 | ソース ファイル\TWR 68 | 69 | 70 | ソース ファイル 71 | 72 | 73 | ソース ファイル\country 74 | 75 | 76 | ソース ファイル\country 77 | 78 | 79 | ソース ファイル\country 80 | 81 | 82 | ソース ファイル 83 | 84 | 85 | 86 | 87 | ヘッダー ファイル 88 | 89 | 90 | ヘッダー ファイル 91 | 92 | 93 | ヘッダー ファイル 94 | 95 | 96 | ヘッダー ファイル 97 | 98 | 99 | ヘッダー ファイル 100 | 101 | 102 | ヘッダー ファイル 103 | 104 | 105 | ヘッダー ファイル\TWR 106 | 107 | 108 | ヘッダー ファイル\TWR 109 | 110 | 111 | ヘッダー ファイル\TWR 112 | 113 | 114 | ヘッダー ファイル\TWR 115 | 116 | 117 | ヘッダー ファイル\TWR 118 | 119 | 120 | ヘッダー ファイル\TWR 121 | 122 | 123 | ヘッダー ファイル\TWR 124 | 125 | 126 | ヘッダー ファイル\TWR 127 | 128 | 129 | ヘッダー ファイル\TWR 130 | 131 | 132 | ヘッダー ファイル\TWR 133 | 134 | 135 | ヘッダー ファイル\TWR 136 | 137 | 138 | ヘッダー ファイル\TWR 139 | 140 | 141 | ヘッダー ファイル 142 | 143 | 144 | ヘッダー ファイル\country 145 | 146 | 147 | ヘッダー ファイル\country 148 | 149 | 150 | ヘッダー ファイル\country 151 | 152 | 153 | ヘッダー ファイル 154 | 155 | 156 | 157 | 158 | リソース ファイル 159 | 160 | 161 | 162 | 163 | リソース ファイル 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | -------------------------------------------------------------------------------- /program/noMeiryoUI_2008.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "noMeiryoUI", "noMeiryoUI_2008.vcproj", "{0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug_2008|Win32 = Debug_2008|Win32 9 | Release_2008|Win32 = Release_2008|Win32 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug_2008|Win32.ActiveCfg = Debug_2008|Win32 13 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Debug_2008|Win32.Build.0 = Debug_2008|Win32 14 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release_2008|Win32.ActiveCfg = Debug_2008|Win32 15 | {0F28EA7F-B997-4CBB-8BCA-96A013FCBE7D}.Release_2008|Win32.Build.0 = Debug_2008|Win32 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /program/noMeiryoUI_2008.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/noMeiryoUI_2008.vcproj -------------------------------------------------------------------------------- /program/noMeiryoUI_2012.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | 14 | noMeiryoUI_2012 15 | {5FBD6B6B-056A-402B-9168-CF72C05FDA0E} 16 | noMeiryoUI 17 | Win32Proj 18 | 19 | 20 | 21 | Application 22 | v110 23 | Unicode 24 | true 25 | 26 | 27 | Application 28 | v110 29 | Unicode 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | <_ProjectFileVersion>11.0.61030.0 43 | 44 | 45 | $(SolutionDir)$(Configuration)_2012\ 46 | $(Configuration)_2012\ 47 | true 48 | noMeiryoUI 49 | 50 | 51 | $(SolutionDir)$(Configuration)_2012\ 52 | $(Configuration)_2012\ 53 | false 54 | noMeiryoUI 55 | 56 | 57 | 58 | Disabled 59 | TWR;%(AdditionalIncludeDirectories) 60 | WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions) 61 | true 62 | EnableFastChecks 63 | MultiThreadedDebug 64 | 65 | Level3 66 | EditAndContinue 67 | 68 | 69 | /SAFESEH %(AdditionalOptions) 70 | comctl32.lib;%(AdditionalDependencies) 71 | true 72 | Windows 73 | true 74 | true 75 | MachineX86 76 | 77 | 78 | 79 | 80 | MinSpace 81 | true 82 | TWR;%(AdditionalIncludeDirectories) 83 | WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions) 84 | MultiThreaded 85 | true 86 | 87 | Level3 88 | ProgramDatabase 89 | 90 | 91 | /SAFESEH %(AdditionalOptions) 92 | comctl32.lib;%(AdditionalDependencies) 93 | true 94 | true 95 | Windows 96 | true 97 | true 98 | MachineX86 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | Create 111 | Create 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | -------------------------------------------------------------------------------- /program/noMeiryoUI_2012.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {186949e8-bc02-424e-94ad-8857b1b05aac} 10 | 11 | 12 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 13 | h;hpp;hxx;hm;inl;inc;xsd 14 | 15 | 16 | {72699847-a676-4e1d-8ea0-b7aadbe824b9} 17 | 18 | 19 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 20 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav 21 | 22 | 23 | {6cd75647-a11e-4850-ba1f-413c43504db3} 24 | 25 | 26 | {3e4dd997-56a3-443d-b2c1-5955392453a6} 27 | 28 | 29 | 30 | 31 | ソース ファイル 32 | 33 | 34 | ソース ファイル 35 | 36 | 37 | ソース ファイル 38 | 39 | 40 | ソース ファイル 41 | 42 | 43 | ソース ファイル\TWR 44 | 45 | 46 | ソース ファイル\TWR 47 | 48 | 49 | ソース ファイル\TWR 50 | 51 | 52 | ソース ファイル\TWR 53 | 54 | 55 | ソース ファイル\TWR 56 | 57 | 58 | ソース ファイル\TWR 59 | 60 | 61 | ソース ファイル\TWR 62 | 63 | 64 | ソース ファイル\TWR 65 | 66 | 67 | ソース ファイル\TWR 68 | 69 | 70 | ソース ファイル 71 | 72 | 73 | ソース ファイル\Country 74 | 75 | 76 | ソース ファイル\Country 77 | 78 | 79 | ソース ファイル\Country 80 | 81 | 82 | ソース ファイル 83 | 84 | 85 | 86 | 87 | ヘッダー ファイル 88 | 89 | 90 | ヘッダー ファイル 91 | 92 | 93 | ヘッダー ファイル 94 | 95 | 96 | ヘッダー ファイル 97 | 98 | 99 | ヘッダー ファイル 100 | 101 | 102 | ヘッダー ファイル 103 | 104 | 105 | ヘッダー ファイル\TWR 106 | 107 | 108 | ヘッダー ファイル\TWR 109 | 110 | 111 | ヘッダー ファイル\TWR 112 | 113 | 114 | ヘッダー ファイル\TWR 115 | 116 | 117 | ヘッダー ファイル\TWR 118 | 119 | 120 | ヘッダー ファイル\TWR 121 | 122 | 123 | ヘッダー ファイル\TWR 124 | 125 | 126 | ヘッダー ファイル\TWR 127 | 128 | 129 | ヘッダー ファイル\TWR 130 | 131 | 132 | ヘッダー ファイル\TWR 133 | 134 | 135 | ヘッダー ファイル\TWR 136 | 137 | 138 | ヘッダー ファイル\TWR 139 | 140 | 141 | ヘッダー ファイル 142 | 143 | 144 | ヘッダー ファイル\Country 145 | 146 | 147 | ヘッダー ファイル\Country 148 | 149 | 150 | ヘッダー ファイル\Country 151 | 152 | 153 | ヘッダー ファイル 154 | 155 | 156 | 157 | 158 | リソース ファイル 159 | 160 | 161 | 162 | 163 | リソース ファイル 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | -------------------------------------------------------------------------------- /program/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/resource.h -------------------------------------------------------------------------------- /program/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/stdafx.cpp -------------------------------------------------------------------------------- /program/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/stdafx.h -------------------------------------------------------------------------------- /program/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/targetver.h -------------------------------------------------------------------------------- /program/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/program/util.h -------------------------------------------------------------------------------- /util/RESTOREreg.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | echo Are you running this batch file having Administrator privilege? 4 | echo If you don't have Administrator privilege, press CTRL+C to quit. 5 | pause 6 | 7 | echo. 8 | echo Your local application data folder: %LOCALAPPDATA% 9 | echo Restore registry related to No!! MeiryoUI from your home folder backup file and reboot OK? 10 | pause 11 | 12 | REM REG RESTORE HKLM\SOFTWARE %LOCALAPPDATA%\noMeiryoUI_HKLM.reg 13 | if ERRORLEVEL 1 exit 14 | REG RESTORE "HKCU\Control Panel" %LOCALAPPDATA%\noMeiryoUI_HKCU.reg 15 | if ERRORLEVEL 1 exit 16 | 17 | shutdown /r /t 0 /c "Restore registry." /d 4:1 18 | -------------------------------------------------------------------------------- /util/SAVEreg.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | echo Are you running this batch file having Administrator privilege? 4 | echo If you don't have Administrator privilege, press CTRL+C to quit. 5 | pause 6 | 7 | echo. 8 | echo Your local application data folder: %LOCALAPPDATA% 9 | echo Save registry related to No!! MeiryoUI on your home folder OK? 10 | pause 11 | 12 | REG SAVE HKLM\SOFTWARE %LOCALAPPDATA%\noMeiryoUI_HKLM.reg /y 13 | REG SAVE "HKCU\Control Panel" %LOCALAPPDATA%\noMeiryoUI_HKCU.reg /y 14 | 15 | echo. 16 | echo backup file1: %LOCALAPPDATA%\noMeiryoUI_HKLM.reg 17 | echo backup file2: %LOCALAPPDATA%\noMeiryoUI_HKCU.reg 18 | 19 | echo. 20 | echo Save registry related to No!! MeiryoUI complete. 21 | -------------------------------------------------------------------------------- /util/localetest.c: -------------------------------------------------------------------------------- 1 | /* 2 | noMeiryoUI (C) 2005,2012-2017 Tatsuhiko Shoji 3 | The sources for noMeiryoUI are distributed under the MIT open source license 4 | */ 5 | #include 6 | #include 7 | 8 | int main(int argc,char *argv[]) 9 | { 10 | printf("%s\n",setlocale( LC_ALL, "" )); 11 | 12 | return 0; 13 | } 14 | -------------------------------------------------------------------------------- /util/localetest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tatsu-syo/noMeiryoUI/88bd346a4f1cbb7da953a2dd1239b9896adad399/util/localetest.exe --------------------------------------------------------------------------------