{"id":379,"date":"2002-12-15T00:00:00","date_gmt":"2002-12-14T15:00:00","guid":{"rendered":"http:\/\/localhost\/blog\/?p=367"},"modified":"2014-08-14T15:16:40","modified_gmt":"2014-08-14T06:16:40","slug":"%e8%87%aa%e5%8b%95%e3%82%b9%e3%82%af%e3%83%ad%e3%83%bc%e3%83%ab%e3%81%ae%e3%82%84%e3%82%8a%e6%96%b9","status":"publish","type":"post","link":"https:\/\/denasu.com\/blog\/2002\/12\/diary379","title":{"rendered":"\u81ea\u52d5\u30b9\u30af\u30ed\u30fc\u30eb\u306e\u3084\u308a\u65b9"},"content":{"rendered":"<p>\u30ed\u30d3\u30fc\uff0c\u30b9\u30af\u30ed\u30fc\u30eb\u30d0\u30fc\u304c\u6700\u4e0b\u90e8\u306b\u306a\u3051\u308c\u3070\u30b9\u30af\u30ed\u30fc\u30eb\u3057\u306a\u3044\u6a5f\u80fd\u304c\u3088\u3046\u3084\u304f\u5b9f\u88c5\u5b8c\u4e86\u3002MFC\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u5834\u5408\uff0c\u4e0b\u306e\u3088\u3046\u306a\u30b3\u30fc\u30c9\u3067 OK \u3068\u601d\u308f\u308c\u308b\u3002<\/p>\n<pre class=\"brush:cpp\">\r\n\/\/ \u5143\u3005\u9078\u629e\u3055\u308c\u3066\u3044\u305f\u90e8\u5206\u3092\u4fdd\u5b58\r\nlong org_start, org_end;\r\nrichEdit.GetSel(org_start, org_end);\r\n\r\n\/\/ \u30b9\u30bf\u30a4\u30eb\u3092\u5909\u66f4\u3059\u308b\u304b\u3069\u3046\u304b\r\nbool modifyStyle = false;\r\n\r\n\/\/ \u5909\u66f4\u524d\u306e\u30b9\u30bf\u30a4\u30eb\r\nLONG style = ::GetWindowLong(richEdit.GetSafeHwnd(), GWL_STYLE);\r\n\r\n\/\/ \u30b9\u30af\u30ed\u30fc\u30eb\u30d0\u30fc\u304c\u5b58\u5728\r\nif((style &amp; WS_VSCROLL) != 0)\r\n{\r\n    \/\/ \u30b9\u30af\u30ed\u30fc\u30eb\u60c5\u5831\u3092\u53d6\u5f97\r\n    SCROLLINFO scrollInfo;\r\n    if(richEdit.GetScrollInfo(SB_VERT, &amp;scrollInfo))\r\n    {\r\n        \/\/ \u9078\u629e\u3055\u308c\u3066\u3044\u308b\u304b\uff0c\u6700\u7d42\u884c\u3067\u306a\u3051\u308c\u3070\u30b9\u30bf\u30a4\u30eb\u3092\u5909\u66f4\u3059\u308b\r\n        if((org_start != org_end)\r\n            || (scrollInfo.nPos &lt; (scrollInfo.nMax - static_cast&lt;int&gt;(scrollInfo.nPage))))\r\n        {\r\n            modifyStyle = true;\r\n        }\r\n    }\r\n}\r\n\r\nif(modifyStyle)\r\n{\r\n    \/\/ ECO_AUTOVSCROLL \u30b9\u30bf\u30a4\u30eb\u3092\u89e3\u9664\u3059\u308b\r\n    richEdit.SetOptions(ECOOP_XOR, ECO_AUTOVSCROLL);\r\n}\r\n\r\n\/\/ \u30ab\u30fc\u30bd\u30eb\u3092\u6700\u5f8c\u306b\u6301\u3063\u3066\u3044\u304f\r\nrichEdit.SetSel(0x7ffffffe,0x7fffffff);\r\n\r\n\/\/ \u8ffd\u52a0\u90e8\u5206\u306e\u958b\u59cb\u4f4d\u7f6e\u3092\u4fdd\u5b58\r\nlong start_start, start_end;\r\nrichEdit.GetSel(start_start, start_end);\r\n\r\n\/\/ \u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8ffd\u52a0\r\nrichEdit.ReplaceSel(message);\r\n\r\n\/\/ \u8ffd\u52a0\u90e8\u5206\u306e\u7d42\u4e86\u4f4d\u7f6e\u3092\u4fdd\u5b58\r\nlong end_start, end_end;\r\nrichEdit.GetSel(end_start, end_end);\r\n\r\n\/\/ RichEdit \u7528\u30d5\u30a9\u30f3\u30c8\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3092\u4f5c\u6210\r\nCHARFORMAT2 format;\r\nformat.cbSize = sizeof(CHARFORMAT);\r\nformat.dwMask = CFM_COLOR | CFM_SIZE | CFM_FACE | CFM_BOLD | CFM_ITALIC;\r\nformat.yHeight = font_size;\r\nformat.dwEffects = (font_bold ? CFE_BOLD : 0) | (font_italic ? CFE_ITALIC : 0);\r\nstrcpy(format.szFaceName, font_name.c_str());\r\nformat.crTextColor = font_color;\r\n\r\n\/\/ \u8ffd\u52a0\u6587\u5b57\u3092\u9078\u629e\r\nrichEdit.SetSel(start_start, end_start);\r\n\r\n\/\/ \u30d5\u30a9\u30f3\u30c8\u3092\u8a2d\u5b9a\r\nrichEdit.SetSelectionCharFormat(format);\r\n\r\n\/\/ \u9078\u629e\u90e8\u5206\u3092\u5143\u306b\u623b\u3059\r\nif(org_start == org_end)\r\n{\r\n    \/\/ \u9078\u629e\u7bc4\u56f2\u304c\u306a\u3051\u308c\u3070\u30ab\u30ec\u30c3\u30c8\u3092\u6700\u5f8c\u306b\u7f6e\u304f\r\n    org_start = 0x7ffffffe;\r\n    org_end = 0x7fffffff;\r\n}\r\nrichEdit.SetSel(org_start, org_end);\r\n\r\nif(modifyStyle)\r\n{\r\n    \/\/ ECO_AUTOVSCROLL \u30b9\u30bf\u30a4\u30eb\u3092\u5143\u306b\u623b\u3059\r\n    richEdit.SetOptions(ECOOP_OR, ECO_AUTOVSCROLL);\r\n}\r\n<\/pre>\n<p>\u3068\u3044\u3046\u3068\u3053\u308d\u3067\u30ed\u30d3\u30fc\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u3092\u30a2\u30c3\u30d7\u3002\u5909\u66f4\u70b9\u306f\uff0c<\/p>\n<ul>\n<li>\u767a\u8a00\u30a8\u30c7\u30a3\u30c3\u30c8\u30dc\u30c3\u30af\u30b9\u306e\u81ea\u52d5\u6c34\u5e73\u30b9\u30af\u30ed\u30fc\u30eb\u3092\u5916\u3057\uff0c\u4fd7\u306b\u8a00\u3046\u53f3\u7aef\u3067\u6298\u308a\u8fd4\u3059\u3088\u3046\u306b\u3059\u308b<\/li>\n<li>\u30b9\u30af\u30ed\u30fc\u30eb\u30d0\u30fc\u304c\u4e00\u756a\u4e0b\u306b\u306a\u3044\uff0c\u3082\u3057\u304f\u306f\u9078\u629e\u304c\u3042\u308b\u5834\u5408\u306f\u81ea\u52d5\u30b9\u30af\u30ed\u30fc\u30eb\u3057\u306a\u3044\u3088\u3046\u306b\u3059\u308b<\/li>\n<li>\u30ed\u30d3\u30fc\u306b\u5165\u308b\u3068\u304d\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8868\u793a<\/li>\n<li>\u90e8\u5c4b\u5165\u5ba4\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u6307\u5b9a\uff0c\u8868\u793a\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b<\/li>\n<li>\u65b0\u3057\u3044\u30ed\u30d3\u30fc\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u304c\u3042\u3063\u305f\u5834\u5408\uff0c\u30e1\u30c3\u30bb\u30fc\u30b8\u304c\u51fa\u308b\u3088\u3046\u306b\u3059\u308b<\/li>\n<li>\u30b2\u30fc\u30e0\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u306e\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u8868\u793a\u3059\u308b\u3088\u3046\u306b\u3059\u308b<\/li>\n<\/ul>\n<p>\u305f\u3060\u3057\uff0c\u4e0a\u306e2\u3064\u4ee5\u5916\u306f\u660e\u65e5\u8fba\u308a\u306b\u30ed\u30d3\u30fc\u30b5\u30fc\u30d0\u3092\u518d\u8d77\u52d5\u3057\u305f\u5f8c\u6709\u52b9\u306b\u306a\u308b\u3002\u307e\u305f\uff0c\u65e7\u30ed\u30d3\u30fc\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u3067\u3082\u63a5\u7d9a\u51fa\u6765\u308b\u304c\uff0c\u30e1\u30c3\u30bb\u30fc\u30b8\u306f\u8868\u793a\u3055\u308c\u306a\u3044\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30ed\u30d3\u30fc\uff0c\u30b9\u30af\u30ed\u30fc\u30eb\u30d0\u30fc\u304c\u6700\u4e0b\u90e8\u306b\u306a\u3051\u308c\u3070\u30b9\u30af\u30ed\u30fc\u30eb\u3057\u306a\u3044\u6a5f\u80fd\u304c\u3088\u3046\u3084\u304f\u5b9f\u88c5\u5b8c\u4e86\u3002MFC\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u5834\u5408\uff0c\u4e0b\u306e\u3088\u3046\u306a\u30b3\u30fc\u30c9\u3067 OK \u3068\u601d\u308f\u308c\u308b\u3002 \/\/ \u5143\u3005\u9078\u629e\u3055\u308c\u3066\u3044\u305f\u90e8\u5206\u3092\u4fdd\u5b58 long org_start, org_end; richEdit.GetSel(org_start, org_end); \/\/ \u30b9\u30bf\u30a4\u30eb\u3092\u5909\u66f4\u3059\u308b\u304b\u3069\u3046\u304b bool modifyStyle = false; \/\/ \u5909\u66f4\u524d\u306e\u30b9\u30bf\u30a4\u30eb LONG style = ::GetWindowLong(richEdit.GetSafeHwnd(), GWL_STYLE); \/\/ \u30b9\u30af\u30ed\u30fc\u30eb\u30d0\u30fc\u304c\u5b58\u5728 if((style &amp; WS_VSCROLL) != 0) { \/\/ \u30b9\u30af\u30ed\u30fc\u30eb\u60c5\u5831\u3092\u53d6\u5f97 SCROLLINFO scrollInfo; if(richEdit.GetScrollInfo(SB_VERT, &amp;scrollInfo)) { \/\/ \u9078\u629e\u3055\u308c\u3066\u3044\u308b\u304b\uff0c\u6700\u7d42\u884c\u3067\u306a\u3051\u308c\u3070\u30b9\u30bf\u30a4\u30eb\u3092\u5909\u66f4\u3059\u308b if((org_start != org_end) || (scrollInfo.nPos &lt; (scrollInfo.nMax &#8211; static_cast&lt;int&gt;(scrollInfo.nPage)))) { modifyStyle = true; } } [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[2],"tags":[8,22],"class_list":["post-379","post","type-post","status-publish","format-standard","hentry","category-programming","tag-weathertyping","tag-win32"],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p4ZThs-67","_links":{"self":[{"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/posts\/379","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/comments?post=379"}],"version-history":[{"count":2,"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/posts\/379\/revisions"}],"predecessor-version":[{"id":2486,"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/posts\/379\/revisions\/2486"}],"wp:attachment":[{"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/media?parent=379"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/categories?post=379"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/denasu.com\/blog\/wp-json\/wp\/v2\/tags?post=379"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}