// This file is part of Notepad++ project // Copyright (C)2021 Don HO // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // at your option any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #include #include "WordStyleDlg.h" #include "ScintillaEditView.h" #include "documentMap.h" #include "AutoCompletion.h" using namespace std; LRESULT CALLBACK ColourStaticTextHooker::colourStaticProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) { switch(Message) { case WM_PAINT: { RECT rect; ::GetClientRect(hwnd, &rect); PAINTSTRUCT ps; HDC hdc = ::BeginPaint(hwnd, &ps); ::SetTextColor(hdc, _colour); if (NppDarkMode::isEnabled()) { ::SetBkColor(hdc, NppDarkMode::getDarkerBackgroundColor()); } // Get the default GUI font HFONT hf = (HFONT)::GetStockObject(DEFAULT_GUI_FONT); HANDLE hOld = SelectObject(hdc, hf); // Draw the text! TCHAR text[MAX_PATH]; ::GetWindowText(hwnd, text, MAX_PATH); ::DrawText(hdc, text, -1, &rect, DT_LEFT); ::SelectObject(hdc, hOld); ::EndPaint(hwnd, &ps); return TRUE; } } return ::CallWindowProc(_oldProc, hwnd, Message, wParam, lParam); } void WordStyleDlg::updateGlobalOverrideCtrls() { const NppGUI & nppGUI = (NppParameters::getInstance()).getNppGUI(); ::SendDlgItemMessage(_hSelf, IDC_GLOBAL_FG_CHECK, BM_SETCHECK, nppGUI._globalOverride.enableFg, 0); ::SendDlgItemMessage(_hSelf, IDC_GLOBAL_BG_CHECK, BM_SETCHECK, nppGUI._globalOverride.enableBg, 0); ::SendDlgItemMessage(_hSelf, IDC_GLOBAL_FONT_CHECK, BM_SETCHECK, nppGUI._globalOverride.enableFont, 0); ::SendDlgItemMessage(_hSelf, IDC_GLOBAL_FONTSIZE_CHECK, BM_SETCHECK, nppGUI._globalOverride.enableFontSize, 0); ::SendDlgItemMessage(_hSelf, IDC_GLOBAL_BOLD_CHECK, BM_SETCHECK, nppGUI._globalOverride.enableBold, 0); ::SendDlgItemMessage(_hSelf, IDC_GLOBAL_ITALIC_CHECK, BM_SETCHECK, nppGUI._globalOverride.enableItalic, 0); ::SendDlgItemMessage(_hSelf, IDC_GLOBAL_UNDERLINE_CHECK, BM_SETCHECK, nppGUI._globalOverride.enableUnderLine, 0); } intptr_t CALLBACK WordStyleDlg::run_dlgProc(UINT Message, WPARAM wParam, LPARAM lParam) { switch (Message) { case WM_INITDIALOG : { NppParameters& nppParamInst = NppParameters::getInstance(); _hCheckBold = ::GetDlgItem(_hSelf, IDC_BOLD_CHECK); _hCheckItalic = ::GetDlgItem(_hSelf, IDC_ITALIC_CHECK); _hCheckUnderline = ::GetDlgItem(_hSelf, IDC_UNDERLINE_CHECK); _hFontNameCombo = ::GetDlgItem(_hSelf, IDC_FONT_COMBO); _hFontSizeCombo = ::GetDlgItem(_hSelf, IDC_FONTSIZE_COMBO); _hSwitch2ThemeCombo = ::GetDlgItem(_hSelf, IDC_SWITCH2THEME_COMBO); _hFgColourStaticText = ::GetDlgItem(_hSelf, IDC_FG_STATIC); _hBgColourStaticText = ::GetDlgItem(_hSelf, IDC_BG_STATIC); _hFontNameStaticText = ::GetDlgItem(_hSelf, IDC_FONTNAME_STATIC); _hFontSizeStaticText = ::GetDlgItem(_hSelf, IDC_FONTSIZE_STATIC); _hStyleInfoStaticText = ::GetDlgItem(_hSelf, IDC_STYLEDESCRIPTION_STATIC); _colourHooker.setColour(RGB(0xFF, 0x00, 0x00)); _colourHooker.hookOn(_hStyleInfoStaticText); _currentThemeIndex = -1; int defaultThemeIndex = 0; ThemeSwitcher & themeSwitcher = nppParamInst.getThemeSwitcher(); for (size_t i = 0 ; i < themeSwitcher.size() ; ++i) { pair & themeInfo = themeSwitcher.getElementFromIndex(i); int j = static_cast(::SendMessage(_hSwitch2ThemeCombo, CB_ADDSTRING, 0, reinterpret_cast(themeInfo.first.c_str()))); if (! themeInfo.second.compare( nppParamInst.getNppGUI()._themeName ) ) { _currentThemeIndex = j; _themeName.assign(themeInfo.second); } if (! themeInfo.first.compare(TEXT("Default")) ) { defaultThemeIndex = j; } } if (_currentThemeIndex == -1) { _currentThemeIndex = defaultThemeIndex; } ::SendMessage(_hSwitch2ThemeCombo, CB_SETCURSEL, _currentThemeIndex, 0); for (size_t i = 0 ; i < sizeof(fontSizeStrs)/(3*sizeof(TCHAR)) ; ++i) ::SendMessage(_hFontSizeCombo, CB_ADDSTRING, 0, reinterpret_cast(fontSizeStrs[i])); const std::vector & fontlist = (NppParameters::getInstance()).getFontList(); for (size_t i = 0, len = fontlist.size() ; i < len ; ++i) { auto j = ::SendMessage(_hFontNameCombo, CB_ADDSTRING, 0, reinterpret_cast(fontlist[i].c_str())); ::SendMessage(_hFontNameCombo, CB_SETITEMDATA, j, reinterpret_cast(fontlist[i].c_str())); } _pFgColour = new ColourPicker; _pBgColour = new ColourPicker; _pFgColour->init(_hInst, _hSelf); _pBgColour->init(_hInst, _hSelf); int cpDynamicalWidth = NppParameters::getInstance()._dpiManager.scaleX(25); int cpDynamicalHeight = NppParameters::getInstance()._dpiManager.scaleY(25); move2CtrlRight(IDC_FG_STATIC, _pFgColour->getHSelf(), cpDynamicalWidth, cpDynamicalHeight); move2CtrlRight(IDC_BG_STATIC, _pBgColour->getHSelf(), cpDynamicalWidth, cpDynamicalHeight); _pFgColour->display(); _pBgColour->display(); ::EnableWindow(::GetDlgItem(_hSelf, IDOK), _isDirty); ::EnableWindow(::GetDlgItem(_hSelf, IDC_SAVECLOSE_BUTTON), FALSE/*!_isSync*/); loadLangListFromNppParam(); updateGlobalOverrideCtrls(); setVisualFromStyleList(); NppDarkMode::autoSubclassAndThemeChildControls(_hSelf); goToCenter(); return TRUE; } case WM_CTLCOLOREDIT: { if (NppDarkMode::isEnabled()) { HWND hwnd = reinterpret_cast(lParam); if (hwnd == ::GetDlgItem(_hSelf, IDC_USER_EXT_EDIT) || hwnd == ::GetDlgItem(_hSelf, IDC_USER_KEYWORDS_EDIT)) { return NppDarkMode::onCtlColorSofter(reinterpret_cast(wParam)); } else { return NppDarkMode::onCtlColor(reinterpret_cast(wParam)); } } break; } case WM_CTLCOLORLISTBOX: { if (NppDarkMode::isEnabled()) { return NppDarkMode::onCtlColorListbox(wParam, lParam); } break; } case WM_CTLCOLORDLG: { if (NppDarkMode::isEnabled()) { return NppDarkMode::onCtlColorDarker(reinterpret_cast(wParam)); } break; } case WM_CTLCOLORSTATIC: { auto hdcStatic = reinterpret_cast(wParam); auto dlgCtrlID = ::GetDlgCtrlID(reinterpret_cast(lParam)); bool isStaticText = (dlgCtrlID == IDC_FG_STATIC || dlgCtrlID == IDC_BG_STATIC || dlgCtrlID == IDC_FONTNAME_STATIC || dlgCtrlID == IDC_FONTSIZE_STATIC); //set the static text colors to show enable/disable instead of ::EnableWindow which causes blurry text if (isStaticText) { Style& style = getCurrentStyler(); bool isTextEnabled = false; if (dlgCtrlID == IDC_FG_STATIC) { isTextEnabled = HIBYTE(HIWORD(style._fgColor)) != 0xFF; // Selected text colour style if (style._styleDesc == TEXT("Selected text colour")) { isTextEnabled = NppParameters::getInstance().isSelectFgColorEnabled(); } } else if (dlgCtrlID == IDC_BG_STATIC) { isTextEnabled = HIBYTE(HIWORD(style._bgColor)) != 0xFF; } else if (dlgCtrlID == IDC_FONTNAME_STATIC) { isTextEnabled = !style._fontName.empty(); } else if (dlgCtrlID == IDC_FONTSIZE_STATIC) { isTextEnabled = style._fontSize != STYLE_NOT_USED && style._fontSize < 100; // style._fontSize has only 2 digits } return NppDarkMode::onCtlColorDarkerBGStaticText(hdcStatic, isTextEnabled); } if (NppDarkMode::isEnabled()) { if (dlgCtrlID == IDC_DEF_EXT_EDIT || dlgCtrlID == IDC_DEF_KEYWORDS_EDIT) { return NppDarkMode::onCtlColor(hdcStatic); } return NppDarkMode::onCtlColorDarker(hdcStatic); } return FALSE; } case WM_PRINTCLIENT: { if (NppDarkMode::isEnabled()) { return TRUE; } break; } case NPPM_INTERNAL_REFRESHDARKMODE: { NppDarkMode::autoThemeChildControls(_hSelf); ::SendMessage(_pFgColour->getHSelf(), NPPM_INTERNAL_REFRESHDARKMODE, 0, 0); ::SendMessage(_pBgColour->getHSelf(), NPPM_INTERNAL_REFRESHDARKMODE, 0, 0); return TRUE; } case WM_DESTROY: { _pFgColour->destroy(); _pBgColour->destroy(); delete _pFgColour; delete _pBgColour; return TRUE; } case WM_HSCROLL : { if (reinterpret_cast(lParam) == ::GetDlgItem(_hSelf, IDC_SC_PERCENTAGE_SLIDER)) { int percent = static_cast(::SendDlgItemMessage(_hSelf, IDC_SC_PERCENTAGE_SLIDER, TBM_GETPOS, 0, 0)); (NppParameters::getInstance()).SetTransparent(_hSelf, percent); } return TRUE; } case WM_COMMAND : { if (HIWORD(wParam) == EN_CHANGE) { int editID = LOWORD(wParam); if (editID == IDC_USER_KEYWORDS_EDIT) { updateUserKeywords(); notifyDataModified(); apply(); } else if (editID == IDC_USER_EXT_EDIT) { updateExtension(); notifyDataModified(); apply(); } } else { switch (wParam) { case IDC_BOLD_CHECK : updateFontStyleStatus(BOLD_STATUS); notifyDataModified(); apply(); break; case IDC_ITALIC_CHECK : updateFontStyleStatus(ITALIC_STATUS); notifyDataModified(); apply(); break; case IDC_UNDERLINE_CHECK : updateFontStyleStatus(UNDERLINE_STATUS); notifyDataModified(); apply(); break; case IDCANCEL : if (_isDirty) { NppParameters& nppParamInst = NppParameters::getInstance(); if (_restoreInvalid) { generic_string str(nppParamInst.getNppGUI()._themeName); nppParamInst.reloadStylers(str.c_str()); loadLangListFromNppParam(); } LexerStylerArray & lsArray = nppParamInst.getLStylerArray(); StyleArray & globalStyles = nppParamInst.getGlobalStylers(); if (_restoreInvalid) { _lsArray = _styles2restored = lsArray; _globalStyles = _gstyles2restored = globalStyles; } else { globalStyles = _globalStyles = _gstyles2restored; lsArray = _lsArray = _styles2restored; } restoreGlobalOverrideValues(); _restoreInvalid = false; _isDirty = false; _isThemeDirty = false; setVisualFromStyleList(); //(nppParamInst.getNppGUI())._themeName ::SendMessage(_hSwitch2ThemeCombo, CB_SETCURSEL, _currentThemeIndex, 0); ::SendMessage(_hParent, WM_UPDATESCINTILLAS, 0, 0); ::SendMessage(_hParent, WM_UPDATEMAINMENUBITMAPS, 0, 0); } ::EnableWindow(::GetDlgItem(_hSelf, IDC_SAVECLOSE_BUTTON), FALSE/*!_isSync*/); display(false); return TRUE; case IDC_SAVECLOSE_BUTTON : { if (_isDirty) { LexerStylerArray & lsa = (NppParameters::getInstance()).getLStylerArray(); StyleArray & globalStyles = (NppParameters::getInstance()).getGlobalStylers(); _lsArray = lsa; _globalStyles = globalStyles; updateThemeName(_themeName); _restoreInvalid = false; _currentThemeIndex = static_cast(::SendMessage(_hSwitch2ThemeCombo, CB_GETCURSEL, 0, 0)); ::EnableWindow(::GetDlgItem(_hSelf, IDOK), FALSE); _isDirty = false; } _isThemeDirty = false; auto newSavedFilePath = (NppParameters::getInstance()).writeStyles(_lsArray, _globalStyles); if (!newSavedFilePath.empty()) updateThemeName(newSavedFilePath); ::EnableWindow(::GetDlgItem(_hSelf, IDC_SAVECLOSE_BUTTON), FALSE); //_isSync = true; display(false); ::SendMessage(_hParent, WM_UPDATESCINTILLAS, 0, 0); ::SendMessage(_hParent, WM_UPDATEMAINMENUBITMAPS, 0, 0); return TRUE; } case IDC_SC_TRANSPARENT_CHECK : { bool isChecked = (BST_CHECKED == ::SendDlgItemMessage(_hSelf, IDC_SC_TRANSPARENT_CHECK, BM_GETCHECK, 0, 0)); if (isChecked) { int percent = static_cast(::SendDlgItemMessage(_hSelf, IDC_SC_PERCENTAGE_SLIDER, TBM_GETPOS, 0, 0)); (NppParameters::getInstance()).SetTransparent(_hSelf, percent); } else (NppParameters::getInstance()).removeTransparent(_hSelf); ::EnableWindow(::GetDlgItem(_hSelf, IDC_SC_PERCENTAGE_SLIDER), isChecked); return TRUE; } case IDC_GLOBAL_FG_CHECK : { GlobalOverride & glo = (NppParameters::getInstance()).getGlobalOverrideStyle(); glo.enableFg = (BST_CHECKED == ::SendDlgItemMessage(_hSelf, static_cast(wParam), BM_GETCHECK, 0, 0)); notifyDataModified(); apply(); return TRUE; } case IDC_GLOBAL_BG_CHECK: { GlobalOverride & glo = (NppParameters::getInstance()).getGlobalOverrideStyle(); glo.enableBg = (BST_CHECKED == ::SendDlgItemMessage(_hSelf, static_cast(wParam), BM_GETCHECK, 0, 0)); notifyDataModified(); apply(); return TRUE; } case IDC_GLOBAL_FONT_CHECK : { GlobalOverride & glo = (NppParameters::getInstance()).getGlobalOverrideStyle(); glo.enableFont = (BST_CHECKED == ::SendDlgItemMessage(_hSelf, static_cast(wParam), BM_GETCHECK, 0, 0)); notifyDataModified(); apply(); return TRUE; } case IDC_GLOBAL_FONTSIZE_CHECK : { GlobalOverride & glo = (NppParameters::getInstance()).getGlobalOverrideStyle(); glo.enableFontSize = (BST_CHECKED == ::SendDlgItemMessage(_hSelf, static_cast(wParam), BM_GETCHECK, 0, 0)); notifyDataModified(); apply(); return TRUE; } case IDC_GLOBAL_BOLD_CHECK : { GlobalOverride & glo = (NppParameters::getInstance()).getGlobalOverrideStyle(); glo.enableBold = (BST_CHECKED == ::SendDlgItemMessage(_hSelf, static_cast(wParam), BM_GETCHECK, 0, 0)); notifyDataModified(); apply(); return TRUE; } case IDC_GLOBAL_ITALIC_CHECK : { GlobalOverride & glo = (NppParameters::getInstance()).getGlobalOverrideStyle(); glo.enableItalic = (BST_CHECKED == ::SendDlgItemMessage(_hSelf, static_cast(wParam), BM_GETCHECK, 0, 0)); notifyDataModified(); apply(); return TRUE; } case IDC_GLOBAL_UNDERLINE_CHECK : { GlobalOverride & glo = (NppParameters::getInstance()).getGlobalOverrideStyle(); glo.enableUnderLine = (BST_CHECKED == ::SendDlgItemMessage(_hSelf, static_cast(wParam), BM_GETCHECK, 0, 0)); notifyDataModified(); apply(); return TRUE; } default: switch (HIWORD(wParam)) { case CBN_SELCHANGE : // == case LBN_SELCHANGE : { switch (LOWORD(wParam)) { case IDC_FONT_COMBO : updateFontName(); notifyDataModified(); apply(); break; case IDC_FONTSIZE_COMBO : updateFontSize(); notifyDataModified(); apply(); break; case IDC_LANGUAGES_LIST : { int i = static_cast(::SendDlgItemMessage(_hSelf, LOWORD(wParam), LB_GETCURSEL, 0, 0)); if (i != LB_ERR) { bool prevThemeState = _isThemeDirty; setStyleListFromLexer(i); _isThemeDirty = prevThemeState; } break; } case IDC_STYLES_LIST : setVisualFromStyleList(); break; case IDC_SWITCH2THEME_COMBO : applyCurrentSelectedThemeAndUpdateUI(); break; } return TRUE; } case CPN_COLOURPICKED: { if (reinterpret_cast(lParam) == _pFgColour->getHSelf()) { updateColour(C_FOREGROUND); notifyDataModified(); int tabColourIndex; if ((tabColourIndex = whichTabColourIndex()) != -1) { TabBarPlus::setColour(_pFgColour->getColour(), (TabBarPlus::tabColourIndex)tabColourIndex); } else if (isDocumentMapStyle()) { ViewZoneDlg::setColour(_pFgColour->getColour(), ViewZoneDlg::ViewZoneColorIndex::focus); } apply(); return TRUE; } else if (reinterpret_cast(lParam) == _pBgColour->getHSelf()) { updateColour(C_BACKGROUND); notifyDataModified(); int tabColourIndex; if ((tabColourIndex = whichTabColourIndex()) != -1) { tabColourIndex = (tabColourIndex == TabBarPlus::inactiveText ? TabBarPlus::inactiveBg : tabColourIndex); TabBarPlus::setColour(_pBgColour->getColour(), (TabBarPlus::tabColourIndex)tabColourIndex); } else if (isDocumentMapStyle()) { ViewZoneDlg::setColour(_pBgColour->getColour(), ViewZoneDlg::ViewZoneColorIndex::frost); } apply(); return TRUE; } else return FALSE; } default : { return FALSE; } } //return TRUE; } } } default : return FALSE; } return FALSE; } void WordStyleDlg::move2CtrlRight(int ctrlID, HWND handle2Move, int handle2MoveWidth, int handle2MoveHeight) { POINT p; RECT rc; ::GetWindowRect(::GetDlgItem(_hSelf, ctrlID), &rc); p.x = rc.right + NppParameters::getInstance()._dpiManager.scaleX(5); p.y = rc.top + ((rc.bottom - rc.top) / 2) - handle2MoveHeight / 2; ::ScreenToClient(_hSelf, &p); ::MoveWindow(handle2Move, p.x, p.y, handle2MoveWidth, handle2MoveHeight, TRUE); } void WordStyleDlg::loadLangListFromNppParam() { NppParameters& nppParamInst = NppParameters::getInstance(); _lsArray = nppParamInst.getLStylerArray(); _globalStyles = nppParamInst.getGlobalStylers(); // Clean up Language List ::SendDlgItemMessage(_hSelf, IDC_LANGUAGES_LIST, LB_RESETCONTENT, 0, 0); ::SendDlgItemMessage(_hSelf, IDC_LANGUAGES_LIST, LB_ADDSTRING, 0, reinterpret_cast(TEXT("Global Styles"))); // All the lexers for (size_t i = 0, nb = _lsArray.getNbLexer() ; i < nb ; ++i) { ::SendDlgItemMessage(_hSelf, IDC_LANGUAGES_LIST, LB_ADDSTRING, 0, reinterpret_cast(_lsArray.getLexerDescFromIndex(i))); } const int index2Begin = 0; ::SendDlgItemMessage(_hSelf, IDC_LANGUAGES_LIST, LB_SETCURSEL, index2Begin, 0); setStyleListFromLexer(index2Begin); } void WordStyleDlg::updateThemeName(const generic_string& themeName) { NppParameters& nppParam = NppParameters::getInstance(); NppGUI & nppGUI = (NppGUI & )nppParam.getNppGUI(); nppGUI._themeName.assign( themeName ); } bool WordStyleDlg::getStyleName(TCHAR *styleName, const size_t styleNameLen) { auto i = ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_GETCURSEL, 0, 0); if (i == LB_ERR) return false; auto lbTextLen = ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_GETTEXTLEN, i, 0); if (static_cast(lbTextLen) > styleNameLen) return false; ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_GETTEXT, i, reinterpret_cast(styleName)); return true; } int WordStyleDlg::whichTabColourIndex() { constexpr size_t styleNameLen = 128; TCHAR styleName[styleNameLen + 1] = { '\0' }; if (!WordStyleDlg::getStyleName(styleName, styleNameLen)) { return -1; } if (lstrcmp(styleName, TABBAR_ACTIVEFOCUSEDINDCATOR) == 0) return TabBarPlus::activeFocusedTop; if (lstrcmp(styleName, TABBAR_ACTIVEUNFOCUSEDINDCATOR) == 0) return TabBarPlus::activeUnfocusedTop; if (lstrcmp(styleName, TABBAR_ACTIVETEXT) == 0) return TabBarPlus::activeText; if (lstrcmp(styleName, TABBAR_INACTIVETEXT) == 0) return TabBarPlus::inactiveText; return -1; } bool WordStyleDlg::isDocumentMapStyle() { constexpr size_t styleNameLen = 128; TCHAR styleName[styleNameLen + 1] = { '\0' }; return (WordStyleDlg::getStyleName(styleName, styleNameLen) && (lstrcmp(styleName, VIEWZONE_DOCUMENTMAP) == 0)); } void WordStyleDlg::updateColour(bool which) { Style & style = getCurrentStyler(); if (which == C_FOREGROUND) { style._fgColor = _pFgColour->getColour(); if (_pFgColour->isEnabled()) style._colorStyle |= COLORSTYLE_FOREGROUND; else style._colorStyle &= ~COLORSTYLE_FOREGROUND; } else //(which == C_BACKGROUND) { style._bgColor = _pBgColour->getColour(); if (_pBgColour->isEnabled()) style._colorStyle |= COLORSTYLE_BACKGROUND; else style._colorStyle &= ~COLORSTYLE_BACKGROUND; } } void WordStyleDlg::updateFontSize() { Style & style = getCurrentStyler(); auto iFontSizeSel = ::SendMessage(_hFontSizeCombo, CB_GETCURSEL, 0, 0); if (iFontSizeSel != 0) { const size_t intStrLen = 3; TCHAR intStr[intStrLen]; auto lbTextLen = ::SendMessage(_hFontSizeCombo, CB_GETLBTEXTLEN, iFontSizeSel, 0); if (static_cast(lbTextLen) >= intStrLen) return; ::SendMessage(_hFontSizeCombo, CB_GETLBTEXT, iFontSizeSel, reinterpret_cast(intStr)); if (!intStr[0]) style._fontSize = STYLE_NOT_USED; else { TCHAR *finStr; style._fontSize = generic_strtol(intStr, &finStr, 10); if (*finStr != '\0') style._fontSize = STYLE_NOT_USED; } } else style._fontSize = 0; } void WordStyleDlg::updateExtension() { const int NB_MAX = 256; TCHAR ext[NB_MAX]; ::SendDlgItemMessage(_hSelf, IDC_USER_EXT_EDIT, WM_GETTEXT, NB_MAX, reinterpret_cast(ext)); _lsArray.getLexerFromIndex(_currentLexerIndex - 1).setLexerUserExt(ext); } void WordStyleDlg::updateUserKeywords() { Style & style = getCurrentStyler(); //const int NB_MAX = 2048; //TCHAR kw[NB_MAX]; auto len = ::SendDlgItemMessage(_hSelf, IDC_USER_KEYWORDS_EDIT, WM_GETTEXTLENGTH, 0, 0); len += 1; TCHAR* kw = new TCHAR[len]; ::memset(kw, 0, len * sizeof(TCHAR)); ::SendDlgItemMessage(_hSelf, IDC_USER_KEYWORDS_EDIT, WM_GETTEXT, len, reinterpret_cast(kw)); style._keywords = kw; delete [] kw; } void WordStyleDlg::updateFontName() { Style & style = getCurrentStyler(); auto iFontSel = ::SendMessage(_hFontNameCombo, CB_GETCURSEL, 0, 0); TCHAR *fnStr = (TCHAR *)::SendMessage(_hFontNameCombo, CB_GETITEMDATA, iFontSel, 0); style._fontName = fnStr; } void WordStyleDlg::updateFontStyleStatus(fontStyleType whitchStyle) { Style & style = getCurrentStyler(); if (style._fontStyle == STYLE_NOT_USED) style._fontStyle = FONTSTYLE_NONE; int fontStyle = FONTSTYLE_UNDERLINE; HWND hWnd = _hCheckUnderline; if (whitchStyle == BOLD_STATUS) { fontStyle = FONTSTYLE_BOLD; hWnd = _hCheckBold; } if (whitchStyle == ITALIC_STATUS) { fontStyle = FONTSTYLE_ITALIC; hWnd = _hCheckItalic; } auto isChecked = ::SendMessage(hWnd, BM_GETCHECK, 0, 0); if (isChecked != BST_INDETERMINATE) { if (isChecked == BST_CHECKED) style._fontStyle |= fontStyle; else style._fontStyle &= ~fontStyle; } } void WordStyleDlg::switchToTheme() { auto iSel = ::SendMessage(_hSwitch2ThemeCombo, CB_GETCURSEL, 0, 0); generic_string prevThemeName(_themeName); _themeName.clear(); NppParameters& nppParamInst = NppParameters::getInstance(); ThemeSwitcher & themeSwitcher = nppParamInst.getThemeSwitcher(); pair & themeInfo = themeSwitcher.getElementFromIndex(iSel); _themeName = themeInfo.second; if (_isThemeDirty) { TCHAR themeFileName[MAX_PATH]; wcscpy_s(themeFileName, prevThemeName.c_str()); PathStripPath(themeFileName); PathRemoveExtension(themeFileName); int mb_response = ::MessageBox( _hSelf, TEXT(" Unsaved changes are about to be discarded!\n") TEXT(" Do you want to save your changes before switching themes?"), themeFileName, MB_ICONWARNING | MB_YESNO | MB_APPLMODAL | MB_SETFOREGROUND ); if ( mb_response == IDYES ) (NppParameters::getInstance()).writeStyles(_lsArray, _globalStyles); } nppParamInst.reloadStylers(_themeName.c_str()); loadLangListFromNppParam(); _restoreInvalid = true; } void WordStyleDlg::applyCurrentSelectedThemeAndUpdateUI() { switchToTheme(); setVisualFromStyleList(); notifyDataModified(); _isThemeDirty = false; apply(); } bool WordStyleDlg::selectThemeByName(const TCHAR* themeName) { LRESULT iTheme = ::SendMessage(_hSwitch2ThemeCombo, CB_FINDSTRING, 1, reinterpret_cast(themeName)); if (iTheme == CB_ERR) return false; ::SendMessage(_hSwitch2ThemeCombo, CB_SETCURSEL, iTheme, 0); applyCurrentSelectedThemeAndUpdateUI(); return true; } bool WordStyleDlg::goToSection(const TCHAR* sectionNames) { if (!sectionNames || !sectionNames[0]) return false; std::vector sections = tokenizeString(sectionNames, ':'); if (sections.size() == 0 || sections.size() >= 3) return false; auto i = ::SendDlgItemMessage(_hSelf, IDC_LANGUAGES_LIST, LB_FINDSTRING, (WPARAM)-1, (LPARAM)sections[0].c_str()); if (i == LB_ERR) return false; ::SendDlgItemMessage(_hSelf, IDC_LANGUAGES_LIST, LB_SETCURSEL, i, 0); setStyleListFromLexer(static_cast(i)); if (sections.size() == 1) return true; i = ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_FINDSTRING, (WPARAM)-1, (LPARAM)sections[1].c_str()); if (i == LB_ERR) return false; ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_SETCURSEL, i, 0); setVisualFromStyleList(); getFocus(); return true; } void WordStyleDlg::setStyleListFromLexer(int index) { _currentLexerIndex = index; // Fill out Styles listbox // Before filling out, we clean it ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_RESETCONTENT, 0, 0); if (index) { const TCHAR *langName = _lsArray.getLexerNameFromIndex(index - 1); const TCHAR *ext = NppParameters::getInstance().getLangExtFromName(langName); const TCHAR *userExt = (_lsArray.getLexerStylerByName(langName))->getLexerUserExt(); ::SendDlgItemMessage(_hSelf, IDC_DEF_EXT_EDIT, WM_SETTEXT, 0, reinterpret_cast(ext)); // WM_SETTEXT cause sending WM_COMMAND message with EN_CHANGE. // That makes status dirty, even it shouldn't in this case. // The walk around solution is get the current status before sending WM_SETTEXT, // then restore the status after sending this message. bool isDirty = _isDirty; bool isThemeDirty = _isThemeDirty; ::SendDlgItemMessage(_hSelf, IDC_USER_EXT_EDIT, WM_SETTEXT, 0, reinterpret_cast(userExt)); _isDirty = isDirty; _isThemeDirty = isThemeDirty; ::EnableWindow(::GetDlgItem(_hSelf, IDC_SAVECLOSE_BUTTON), isDirty || isThemeDirty); } ::ShowWindow(::GetDlgItem(_hSelf, IDC_DEF_EXT_EDIT), index?SW_SHOW:SW_HIDE); ::ShowWindow(::GetDlgItem(_hSelf, IDC_DEF_EXT_STATIC), index?SW_SHOW:SW_HIDE); ::ShowWindow(::GetDlgItem(_hSelf, IDC_USER_EXT_EDIT), index?SW_SHOW:SW_HIDE); ::ShowWindow(::GetDlgItem(_hSelf, IDC_USER_EXT_STATIC), index?SW_SHOW:SW_HIDE); ::ShowWindow(::GetDlgItem(_hSelf, IDC_PLUSSYMBOL2_STATIC), index?SW_SHOW:SW_HIDE); StyleArray & lexerStyler = index?_lsArray.getLexerFromIndex(index-1):_globalStyles; for (const Style & style : lexerStyler) { ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_ADDSTRING, 0, reinterpret_cast(style._styleDesc.c_str())); } ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_SETCURSEL, 0, 0); setVisualFromStyleList(); } void WordStyleDlg::setVisualFromStyleList() { showGlobalOverrideCtrls(false); Style & style = getCurrentStyler(); // Global override style if (style._styleDesc == TEXT("Global override")) { showGlobalOverrideCtrls(true); } //--Warning text //bool showWarning = ((_currentLexerIndex == 0) && (style._styleID == STYLE_DEFAULT));//?SW_SHOW:SW_HIDE; COLORREF c = NppDarkMode::isEnabled() ? NppDarkMode::getLinkTextColor() : RGB(0x00, 0x00, 0xFF); const size_t strLen = 256; TCHAR str[strLen + 1] = { '\0' }; str[0] = '\0'; auto i = ::SendDlgItemMessage(_hSelf, IDC_LANGUAGES_LIST, LB_GETCURSEL, 0, 0); if (i == LB_ERR) return; auto lbTextLen = ::SendDlgItemMessage(_hSelf, IDC_LANGUAGES_LIST, LB_GETTEXTLEN, i, 0); if (static_cast(lbTextLen) > strLen) return; ::SendDlgItemMessage(_hSelf, IDC_LANGUAGES_LIST, LB_GETTEXT, i, reinterpret_cast(str)); i = ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_GETCURSEL, 0, 0); if (i == LB_ERR) return; const size_t styleNameLen = 64; TCHAR styleName[styleNameLen + 1] = { '\0' }; lbTextLen = ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_GETTEXTLEN, i, 0); if (static_cast(lbTextLen) > styleNameLen) return; ::SendDlgItemMessage(_hSelf, IDC_STYLES_LIST, LB_GETTEXT, i, reinterpret_cast(styleName)); wcscat_s(str, TEXT(" : ")); wcscat_s(str, styleName); // PAD for fix a display glitch wcscat_s(str, TEXT(" ")); _colourHooker.setColour(c); ::SetWindowText(_hStyleInfoStaticText, str); //-- 2 couleurs : fg et bg bool isEnable = false; if (HIBYTE(HIWORD(style._fgColor)) != 0xFF) { _pFgColour->setColour(style._fgColor); _pFgColour->setEnabled((style._colorStyle & COLORSTYLE_FOREGROUND) != 0); isEnable = true; } // Selected text colour style if (style._styleDesc == TEXT("Selected text colour")) { isEnable = false; // disable by default for "Selected text colour" style if (NppParameters::getInstance().isSelectFgColorEnabled()) isEnable = true; } ::EnableWindow(_pFgColour->getHSelf(), isEnable); InvalidateRect(_hFgColourStaticText, NULL, FALSE); isEnable = false; if (HIBYTE(HIWORD(style._bgColor)) != 0xFF) { _pBgColour->setColour(style._bgColor); _pBgColour->setEnabled((style._colorStyle & COLORSTYLE_BACKGROUND) != 0); isEnable = true; } ::EnableWindow(_pBgColour->getHSelf(), isEnable); InvalidateRect(_hBgColourStaticText, NULL, FALSE); //-- font name LRESULT iFontName; if (!style._fontName.empty()) { iFontName = ::SendMessage(_hFontNameCombo, CB_FINDSTRING, 1, reinterpret_cast(style._fontName.c_str())); if (iFontName == CB_ERR) iFontName = 0; } else { iFontName = 0; } ::SendMessage(_hFontNameCombo, CB_SETCURSEL, iFontName, 0); ::EnableWindow(_hFontNameCombo, style._isFontEnabled); InvalidateRect(_hFontNameStaticText, NULL, FALSE); //-- font size const size_t intStrLen = 3; TCHAR intStr[intStrLen]; LRESULT iFontSize = 0; if (style._fontSize != STYLE_NOT_USED && style._fontSize < 100) // style._fontSize has only 2 digits { wsprintf(intStr, TEXT("%d"), style._fontSize); iFontSize = ::SendMessage(_hFontSizeCombo, CB_FINDSTRING, 1, reinterpret_cast(intStr)); } ::SendMessage(_hFontSizeCombo, CB_SETCURSEL, iFontSize, 0); ::EnableWindow(_hFontSizeCombo, style._isFontEnabled); InvalidateRect(_hFontSizeStaticText, NULL, FALSE); //-- font style : bold & italic if (style._fontStyle != STYLE_NOT_USED) { int isBold = (style._fontStyle & FONTSTYLE_BOLD)?BST_CHECKED:BST_UNCHECKED; int isItalic = (style._fontStyle & FONTSTYLE_ITALIC)?BST_CHECKED:BST_UNCHECKED; int isUnderline = (style._fontStyle & FONTSTYLE_UNDERLINE)?BST_CHECKED:BST_UNCHECKED; ::SendMessage(_hCheckBold, BM_SETCHECK, isBold, 0); ::SendMessage(_hCheckItalic, BM_SETCHECK, isItalic, 0); ::SendMessage(_hCheckUnderline, BM_SETCHECK, isUnderline, 0); } else // STYLE_NOT_USED : reset them all { ::SendMessage(_hCheckBold, BM_SETCHECK, BST_UNCHECKED, 0); ::SendMessage(_hCheckItalic, BM_SETCHECK, BST_UNCHECKED, 0); ::SendMessage(_hCheckUnderline, BM_SETCHECK, BST_UNCHECKED, 0); } enableFontStyle(style._isFontEnabled); //-- Default Keywords bool shouldBeDisplayed = style._keywordClass != STYLE_NOT_USED; if (shouldBeDisplayed) { LexerStyler & lexerStyler = _lsArray.getLexerFromIndex(_currentLexerIndex - 1); NppParameters& nppParams = NppParameters::getInstance(); LangType lType = nppParams.getLangIDFromStr(lexerStyler.getLexerName()); if (lType == L_TEXT) { generic_string lexerNameStr = lexerStyler.getLexerName(); lexerNameStr += TEXT(" is not defined in NppParameters::getLangIDFromStr()"); printStr(lexerNameStr.c_str()); } const TCHAR *kws = nppParams.getWordList(lType, style._keywordClass); if (!kws) kws = TEXT(""); ::SendDlgItemMessage(_hSelf, IDC_DEF_KEYWORDS_EDIT, WM_SETTEXT, 0, reinterpret_cast(kws)); const TCHAR *ckwStr = style._keywords.c_str(); ::SendDlgItemMessage(_hSelf, IDC_USER_KEYWORDS_EDIT, WM_SETTEXT, 0, reinterpret_cast(ckwStr)); } int showOption = shouldBeDisplayed?SW_SHOW:SW_HIDE; ::ShowWindow(::GetDlgItem(_hSelf, IDC_DEF_KEYWORDS_EDIT), showOption); ::ShowWindow(::GetDlgItem(_hSelf, IDC_USER_KEYWORDS_EDIT),showOption); ::ShowWindow(::GetDlgItem(_hSelf, IDC_DEF_KEYWORDS_STATIC), showOption); ::ShowWindow(::GetDlgItem(_hSelf, IDC_USER_KEYWORDS_STATIC),showOption); ::ShowWindow(::GetDlgItem(_hSelf, IDC_PLUSSYMBOL_STATIC),showOption); redraw(); } void WordStyleDlg::create(int dialogID, bool isRTL, bool msgDestParent) { StaticDialog::create(dialogID, isRTL, msgDestParent); if ((NppParameters::getInstance()).isTransparentAvailable()) { ::ShowWindow(::GetDlgItem(_hSelf, IDC_SC_TRANSPARENT_CHECK), SW_SHOW); ::ShowWindow(::GetDlgItem(_hSelf, IDC_SC_PERCENTAGE_SLIDER), SW_SHOW); ::SendDlgItemMessage(_hSelf, IDC_SC_PERCENTAGE_SLIDER, TBM_SETRANGE, FALSE, MAKELONG(20, 200)); ::SendDlgItemMessage(_hSelf, IDC_SC_PERCENTAGE_SLIDER, TBM_SETPOS, TRUE, 150); if (!(BST_CHECKED == ::SendDlgItemMessage(_hSelf, IDC_SC_PERCENTAGE_SLIDER, BM_GETCHECK, 0, 0))) ::EnableWindow(::GetDlgItem(_hSelf, IDC_SC_PERCENTAGE_SLIDER), FALSE); } } void WordStyleDlg::apply() { LexerStylerArray & lsa = (NppParameters::getInstance()).getLStylerArray(); StyleArray & globalStyles = (NppParameters::getInstance()).getGlobalStylers(); lsa = _lsArray; globalStyles = _globalStyles; ::EnableWindow(::GetDlgItem(_hSelf, IDOK), FALSE); ::SendMessage(_hParent, WM_UPDATESCINTILLAS, 0, 0); ::SendMessage(_hParent, WM_UPDATEMAINMENUBITMAPS, 0, 0); }