Changes between Version 3 and Version 4 of APP_RESOURCE_LIST_IMPORT_EXPORT_R1


Ignore:
Timestamp:
07/23/09 11:40:05 (16 years ago)
Author:
nenko
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • APP_RESOURCE_LIST_IMPORT_EXPORT_R1

    v3 v4  
    1414  * 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 
    1515  * 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 
    1717== Task result == 
    1818Code. 
    1919 
    2020== 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 
    2230 
    2331== Related == 
     
    2533 
    2634== How to demo == 
    27 1. Create a book 
    28 2. Go to TestResources folder or download attached zip here 
    29 3. Extract the zip 
    30 4. Go to insert menu, choose Image..., and select 2 images by using ctrl+click 
    31 5. Click insert 
    32 6. Go to page 2 
    33 7. Choose insert -> Any resource 
    34 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. 
    3543 
    3644= Design =