Changes between Version 15 and Version 16 of BOOK_PROPERTIES_DIALOG_R0


Ignore:
Timestamp:
05/29/09 10:44:27 (16 years ago)
Author:
boyan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BOOK_PROPERTIES_DIALOG_R0

    v15 v16  
    55= Analysis = 
    66 
    7  
    87== Overview == 
    9 This task is about providing a book properties dialog. It should display the book title and page size. This dialog appears when a new book is created and when the book properties item is selected from the file menu. 
     8This task is about providing a book properties dialog. It should display the book title and page size. This dialog appears when a new book is created or when the book properties item is selected from the file menu. 
    109 
    1110== Task requirements == 
    12  * Provide a modal dialog with cancel/ok buttons that displays the following properties which should be editable: 
     11 * Provide a modal dialog with OK and Cancel buttons that displays the following properties which should be editable: 
    1312  * Title 
    1413  * Page width 
    1514  * Page height 
    1615 * The book properties dialog should be displayed when a new book is created. 
    17   * If the user clicks the cancel button no book is created. 
     16  * If the user clicks the Cancel button, no book is created. 
    1817  * Otherwise a book with the specified properties is created. 
    19   * These properties can be changed when the dialog is displayed. 
    20  * The keyboard shortcut for opening this dialog should be Ctrl+Shift+B. 
     18  * These properties can be changed later when the dialog is invoked from the file menu. 
     19 * The keyboard shortcut for opening the dialog should be Ctrl+Shift+B. 
    2120 
    2221== Task result == 
     
    2423 
    2524== Implementation idea == 
    26 A new BookInfo class should be created with the following properties: 
    27  * BookTitle 
    28  * PageWidth 
    29  * PageHeight 
    30 This is required because the dialog should be displayed before the new book is created. 
     25A new BookInfo class can be created with the following properties: 
     26 * bookTitle 
     27 * pageWidth 
     28 * pageHeight 
     29This is required because the dialog should be displayed before the new book is created and no book should be created if the user clicks Cancel (this means we cannot edit the properties of the book directly). 
    3130 
    3231== Related == 
     
    3433 
    3534== How to demo == 
    36  * Display the book properties dialog.  
    37  * Change the title and page size and show they are updated.  
     35 * Create a new book and set its title and page size. 
     36 * Change the title and page size by showing the dialog from the File menu.  
    3837 
    3938= Design =