Tag Archives: open source

Shadowbox photo gallery debug note 2

the previous post mentioned about the  initialization of shadowbox , this post would talk about its animation. during the initialization, the cache.js : addCache() method would be called each time the image been loaded. the image path, file name and … Continue reading

Posted in programming | Tagged , | Leave a comment

Shadowbox photo gallery debug note 1

Here is the quote from shadowbox  official site: Shadowbox is a web-based media viewer application that supports all of the web’s most popular media publishing formats. Shadowbox is written entirely in JavaScript and CSS and is highly customizable. Using Shadowbox, … Continue reading

Posted in programming | Tagged , | Leave a comment

code reading 2 – notepad++

notepad_plus.h private: static const char _className[32]; Window *_pMainWindow; unsigned char _mainWindowStatus; DocTabView _mainDocTab; DocTabView _subDocTab; DocTabView *_pDocTab; ScintillaEditView _mainEditView; ScintillaEditView _subEditView; ScintillaEditView *_pEditView; SplitterContainer *_pMainSplitter; SplitterContainer _subSplitter; HMENU _hTabPopupMenu, _hTabPopupDropMenu; ToolBar _toolBar; IconList _docTabIconList; StatusBar _statusBar; // Dialog FindReplaceDlg _findReplaceDlg; … Continue reading

Posted in programming | Tagged , | Leave a comment

coding reading 1 – notepad++

In order to have a better understanding of C++, I download an open source project notepad++ for study.  this project widely used MFC library and Scintilla library. Scintilla is a open source text editor library, SciTe is its demonstrator project. … Continue reading

Posted in programming | Tagged , | 1 Comment

how to use lucene to do text searching

My daily-used IDE is eclipse. the default ‘search’ dialog is my often visited tool. but the default search is a basic search tool which does the linear search. It has no ‘index’ function. so  If there is a huge project and you want to search some keywords … Continue reading

Posted in programming | Tagged , | Leave a comment