[[BackLinksMenu]] [[TicketQuery(summary=BOOK_PROPERTIES_DIALOG_R0, format=table, col=summary|owner|status|type|component|priority|effort|importance, rows=description|analysis_owners|analysis_reviewers|analysis_score|design_owners|design_reviewers|design_score|implementation_owners|implementation_reviewers|implementation_score|test_owners|test_reviewers|test_score|)]] = Analysis = == Overview == 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. == Task requirements == * Provide a modal dialog with cancel/ok buttons that displays the following properties which should be editable: * Title * Page width * Page height * The book properties dialog should be displayed when a new book is created. * If the user clicks the cancel button no book is created. * Otherwise a book with the specified properties is created. * These properties can be changed when the dialog is displayed. * The keyboard shortcut for opening this dialog should be Ctrl+Shift+B. == Task result == The result should be source code. == Implementation idea == A new BookInfo class should be created with the following properties: * BookTitle * PageWidth * PageHeight This is required because the dialog should be displayed before the new book is created. == Related == BOOK_PROPERTIES_DIALOG == How to demo == * Display the book properties dialog. * Change the title and page size and show they are updated. = Design = = Implementation = Done according to the design. The page width and height are set differently because they are in one property. (changeset [2913]) = Testing = = Comments = ^(Write comments for this or later revisions here.)