Changes between Version 11 and Version 12 of BOOK_SEARCH_R0
- Timestamp:
- 07/22/09 18:13:00 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BOOK_SEARCH_R0
v11 v12 71 71 * Add it in both {{{FakeAuthorMain}}} and {{{FakeReaderMain}}}. 72 72 73 * In {{{ListPalette}}}: 74 * Add enum {{{EventIds}}} with the following item: 75 * ITEM_SELECTED 76 * In the selection listener of the {{{ListSelectionModel}}} of the palette: 77 * Fire ITEM_SELECTED event. 78 73 79 * Move the search palette to {{{org.sophie2.main.func.search.view}}} package. 74 80 * Rename the {{{@SkinElementId}}} to match the new module name. 75 * Add it as an extension81 * Add the palette as an extension. 76 82 * Add enum {{{EventIds}}} with the following items: 77 83 * BOOK_SEARCH - Searches in current book. 78 * 84 * PALETTE_PREV, PALETTE_NEXT - Selects the previous/next search match in the search palette. 79 85 * Add new "Search" {{{LogicR3Button}}} to the {{{JComponent}}} in {{{initHead()}}}. 80 86 * Place the button next to the search textbox. … … 85 91 * TODO ... 86 92 93 * Create a new immutable class {{{org.sophie2.main.func.search.model.SearchMatch}}} 94 * TODO: fields/properties ... 95 87 96 * Create enum {{{org.sophie2.main.func.search.logic.SearchLogic}}} 88 97 * BOOK_SEARCH: 89 98 * TODO ... 90 * 99 * TODO algorithm ... 100 * ITEM_SELECTED: 101 * Invoked when a search match is selected (via a mouse click, pressing Up/Down arrow keys or by pressing a Prev/Next button) 102 * TODO: moves the caret ... 103 * PALETTE_PREV: 104 * Sets {{{firstSelected}}} of the search palette to the previous match (if current is not first match in the list). 105 * Fire ITEM_SELECTED event. 106 * PALETTE_NEXT: 107 * analogical to PALETTE_PREV. 91 108 * Register the operations as extensions. 109 110 * Remove obsolete classes: 111 // * {{{org.sophie2.main.app.model.frame.text.util.SearchMatch}}} 112 * {{{org.sophie2.main.app.model.book}}} 92 113 93 114 * Source: [source:/branches/private/mitex/searching/]