Changes between Version 3 and Version 4 of APP_RESOURCE_LIST_IMPORT_EXPORT_R1
- Timestamp:
- 07/23/09 11:40:05 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
APP_RESOURCE_LIST_IMPORT_EXPORT_R1
v3 v4 14 14 * When a folder is selected the button should not change to "Open" like it does in the other file dialogs. Insert should be available instead, which should allow import of a folder with resources 15 15 * zip files should be scanned for resources and they should be added to the list with the resources. This should be done carefully, because Sophie internal resources are in zips too. 16 * For both, folder and zip, only their supported contents should be added. But if the user has selected an unsupported file, Sophie should try to import it.16 * For both, folder and zip, only their supported contents should be added. But if the user has selected an unsupported file, he should be warned by a message box. If multiple files are selected and part of them are unsupported the user should be notified about them, and the supported ones should be imported 17 17 == Task result == 18 18 Code. 19 19 20 20 == Implementation idea == 21 ^(Provide some rough implementation idea(s).)^ 21 * Make file dialog to support multiple selection and provide a logic that will handle it. See JFileChooser#setMultiSelectionEnabled(selected:boolean) and JFileChooser#getSelectedFiles() : File[] 22 * Add new file dialog that can open files and directories (JFileChooser#setFileSelectionModel(JFileChooser.FILES_AND_DIRECTORIES)). When the user select something: 23 1 If it is a file, try to open it 24 1.2 If it is a zip file, decompress it and go to 1 25 2 If it is a directory list its files 26 2.1 If there are only files go to 1 27 28 2.2 If there are directories go to 2 29 22 30 23 31 == Related == … … 25 33 26 34 == How to demo == 27 1. Create a book28 2. Go to TestResources folder or download attached zip here29 3. Extract the zip30 4. Go to insert menu, choose Image..., and select 2 images by using ctrl+click31 5. Click insert32 6. Go to page 233 7. Choose insert -> Any resource34 8. Select the folder and click insert.35 1. Create a book 36 2. Go to TestResources folder or download attached zip here 37 3. Extract the zip 38 4. Go to insert menu, choose Image..., and select 2 images by using ctrl+click 39 5. Click insert 40 6. Go to page 2 41 7. Choose insert -> Any resource 42 8. Select the folder and click insert. 35 43 36 44 = Design =