Changes between Version 11 and Version 12 of BOOK_SEARCH_R0


Ignore:
Timestamp:
07/22/09 18:13:00 (16 years ago)
Author:
mitex
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BOOK_SEARCH_R0

    v11 v12  
    7171  * Add it in both {{{FakeAuthorMain}}} and {{{FakeReaderMain}}}. 
    7272 
     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 
    7379 * Move the search palette to {{{org.sophie2.main.func.search.view}}} package. 
    7480  * Rename the {{{@SkinElementId}}} to match the new module name. 
    75   * Add it as an extension 
     81  * Add the palette as an extension. 
    7682 * Add enum {{{EventIds}}} with the following items: 
    7783  * BOOK_SEARCH - Searches in current book. 
    78   *  
     84  * PALETTE_PREV, PALETTE_NEXT - Selects the previous/next search match in the search palette. 
    7985 * Add new "Search" {{{LogicR3Button}}} to the {{{JComponent}}} in {{{initHead()}}}. 
    8086  * Place the button next to the search textbox. 
     
    8591  * TODO ... 
    8692 
     93 * Create a new immutable class {{{org.sophie2.main.func.search.model.SearchMatch}}} 
     94  * TODO: fields/properties ... 
     95 
    8796 * Create enum {{{org.sophie2.main.func.search.logic.SearchLogic}}} 
    8897  * BOOK_SEARCH: 
    8998   * 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. 
    91108  * 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}}} 
    92113 
    93114 * Source: [source:/branches/private/mitex/searching/]