Changes between Version 4 and Version 5 of SEARCH_COMMONS_R0
- Timestamp:
- 07/23/09 10:21:46 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SEARCH_COMMONS_R0
v4 v5 41 41 * rename the existing class Highlight to HotHighlight and add an attribute ImmColor to it. 42 42 * move the existing class Highlight in org.sophie2.base.model.text 43 its logic the following classes are added in org.sophie2.main.app.menus.view: 44 * SearchItem - the search item for the search menu. 43 its logic the following classes are added in org.sophie2.main.app.commons.logic: 45 44 * SearchLogic - the class providing the logic for the search menu. This class has 46 45 findSearchedText method that provides the logic for searching a particular word in … … 48 47 to find all places in the text from the selected view where the word is matched. 49 48 For every matched word a new HotHighlight is inserted in the HotTextSceneElement 50 * SearchMenu - the search menu in the sophie2 project. 51 * SearchFormDialog that extends Dialog<SearchFormDialog.Input, String>. This class 52 provides the user form that is shown on clicking the seatch menu item. 49 Refactor the existing class QuickSearchPanel in order to support the searching of a particular word in the current text. 53 50 In HotTextSceneElement class add a new property RwListProp<HotHighlight> highlight() that holds all 54 51 the highlighted data in the HotTextSceneElement . … … 67 64 HotTextSceneElement. 68 65 69 The test source can be found here:[4 300]66 The test source can be found here:[4458] 70 67 71 68 = Implementation = 72 ^(Describe and link the implementation results here (from the wiki or the repository).)^ 69 Done according to the design 70 source code:[4458] 73 71 74 72 = Testing = … … 76 74 77 75 = Comments = 78 ^(Write comments for this or later revisions here.) 76 The test is different from the previous one because the ticket was changed and there is no search menu.