[BUG_FIXED] Remove selected character count from status bar due to the performance issue.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@652 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2010-08-21 16:24:57 +00:00
parent 948f281eb0
commit 46c3286077
2 changed files with 8 additions and 8 deletions

View File

@ -284,9 +284,9 @@ LRESULT Notepad_plus::init(HWND hwnd)
bool willBeShown = nppGUI._statusBarShow;
_statusBar.init(_pPublicInterface->getHinst(), hwnd, 6);
_statusBar.setPartWidth(STATUSBAR_DOC_SIZE, 170);
_statusBar.setPartWidth(STATUSBAR_CUR_POS, 380);
_statusBar.setPartWidth(STATUSBAR_EOF_FORMAT, 80);
_statusBar.setPartWidth(STATUSBAR_UNICODE_TYPE, 100);
_statusBar.setPartWidth(STATUSBAR_CUR_POS, 300);
_statusBar.setPartWidth(STATUSBAR_EOF_FORMAT, 100);
_statusBar.setPartWidth(STATUSBAR_UNICODE_TYPE, 120);
_statusBar.setPartWidth(STATUSBAR_TYPING_MODE, 30);
_statusBar.display(willBeShown);
@ -2265,7 +2265,7 @@ void Notepad_plus::activateDoc(int pos)
static const char utflen[] = {1,1,2,3};
/*
size_t Notepad_plus::getSelectedCharNumber(UniMode u)
{
size_t result = 0;
@ -2310,7 +2310,7 @@ size_t Notepad_plus::getSelectedCharNumber(UniMode u)
}
return result;
}
*/
#ifdef _OPENMP
#include <omp.h>
@ -2418,10 +2418,10 @@ void Notepad_plus::updateStatusBar()
int areas = getSelectedAreas();
int sizeofChar = (isFormatUnicode(u)) ? 2 : 1;
wsprintf(strLnCol, TEXT("Ln : %d Col : %d Sel : %d (%d bytes) in %d ranges"),\
wsprintf(strLnCol, TEXT("Ln : %d Col : %d Sel : %d in %d ranges"),\
(_pEditView->getCurrentLineNumber() + 1), \
(_pEditView->getCurrentColumnNumber() + 1),\
getSelectedCharNumber(u), getSelectedBytes() * sizeofChar,\
getSelectedBytes() * sizeofChar,\
areas);
_statusBar.setText(strLnCol, STATUSBAR_CUR_POS);

View File

@ -540,7 +540,7 @@ private:
void activateDoc(int pos);
void updateStatusBar();
size_t getSelectedCharNumber(UniMode);
//size_t getSelectedCharNumber(UniMode);
size_t getCurrentDocCharCount(size_t numLines, UniMode u);
int getSelectedAreas();
int _numSel;