Changes between Version 15 and Version 16 of BOOK_PROPERTIES_DIALOG_R0
- Timestamp:
- 05/29/09 10:44:27 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BOOK_PROPERTIES_DIALOG_R0
v15 v16 5 5 = Analysis = 6 6 7 8 7 == 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 andwhen the book properties item is selected from the file menu.8 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 or when the book properties item is selected from the file menu. 10 9 11 10 == Task requirements == 12 * Provide a modal dialog with cancel/okbuttons 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: 13 12 * Title 14 13 * Page width 15 14 * Page height 16 15 * The book properties dialog should be displayed when a new book is created. 17 * If the user clicks the cancel buttonno book is created.16 * If the user clicks the Cancel button, no book is created. 18 17 * 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 th isdialog 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. 21 20 22 21 == Task result == … … 24 23 25 24 == Implementation idea == 26 A new BookInfo class shouldbe created with the following properties:27 * BookTitle28 * PageWidth29 * PageHeight30 This is required because the dialog should be displayed before the new book is created .25 A new BookInfo class can be created with the following properties: 26 * bookTitle 27 * pageWidth 28 * pageHeight 29 This 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). 31 30 32 31 == Related == … … 34 33 35 34 == 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. 38 37 39 38 = Design =