You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@pivot.apache.org by "Greg Brown (JIRA)" <ji...@apache.org> on 2009/03/26 15:58:50 UTC

[jira] Created: (PIVOT-32) File browser dialog

File browser dialog
-------------------

                 Key: PIVOT-32
                 URL: https://issues.apache.org/jira/browse/PIVOT-32
             Project: Pivot
          Issue Type: New Feature
          Components: wtk
            Reporter: Greg Brown
            Assignee: Todd Volkert
             Fix For: 2.0


"Desktop", "Documents", etc.; new/delete/rename behavior

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-32) File browser dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown updated PIVOT-32:
----------------------------

    Description: 
We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.

FileBrowserSheet and FileBrowserDialog will support the following modes:

   public enum Mode {
       OPEN,
       OPEN_MULTIPLE,
       SAVE_AS,
       SAVE_TO
   }


FileBrowser will provide the following properties (among others):

multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
fileFilter: Filter<File>
selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
selectedFiles: Sequence<File>

FileBrowserSkin may provide the following style:

disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden



  was:
We will provide both FileBrowser and FolderBrowser components. FileBrowser will support open and save modes. Save mode will allow the user to type a filename.



> File browser dialog
> -------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3.1
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown resolved PIVOT-32.
-----------------------------

    Resolution: Fixed

> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3
>
>         Attachments: FileBrowser.png
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12744753#action_12744753 ] 

Greg Brown commented on PIVOT-32:
---------------------------------

File browser dialog was not implemented. If there is sufficient interest, we can revisit this in the future.


> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3
>
>         Attachments: FileBrowser.png
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-32) File browser component/sheet

Posted by "Todd Volkert (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Todd Volkert updated PIVOT-32:
------------------------------

    Summary: File browser component/sheet  (was: File browser component/sheet/dialog)

> File browser component/sheet
> ----------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3
>
>         Attachments: FileBrowser.png
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown updated PIVOT-32:
----------------------------

    Assignee:     (was: Greg Brown)

> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>             Fix For: 1.3.1
>
>         Attachments: FileBrowser.png
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown updated PIVOT-32:
----------------------------

    Fix Version/s:     (was: 1.3)
                   1.3.1

> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3.1
>
>         Attachments: FileBrowser.png
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown updated PIVOT-32:
----------------------------

    Summary: File browser component/sheet/dialog  (was: File browser dialog)

> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3.1
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown reassigned PIVOT-32:
-------------------------------

    Assignee: Greg Brown

> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3.1
>
>         Attachments: FileBrowser.png
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown updated PIVOT-32:
----------------------------

    Fix Version/s:     (was: 1.3.1)
                   1.3

> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3
>
>         Attachments: FileBrowser.png
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12738406#action_12738406 ] 

Greg Brown commented on PIVOT-32:
---------------------------------

The FileBrowser and FileBrowserSheet classes are complete, though their skins are currently just stubs.


> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3.1
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown updated PIVOT-32:
----------------------------

    Attachment: FileBrowser.png

> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3.1
>
>         Attachments: FileBrowser.png
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-32) File browser dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown updated PIVOT-32:
----------------------------

      Description: 
We will provide both FileBrowser and FolderBrowser components. FileBrowser will support open and save modes. Save mode will allow the user to type a filename.


  was:"Desktop", "Documents", etc.; new/delete/rename behavior

    Fix Version/s:     (was: 2.0)
                   1.3.1
         Assignee: Greg Brown  (was: Todd Volkert)

> File browser dialog
> -------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3.1
>
>
> We will provide both FileBrowser and FolderBrowser components. FileBrowser will support open and save modes. Save mode will allow the user to type a filename.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PIVOT-32) File browser component/sheet/dialog

Posted by "Greg Brown (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PIVOT-32?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Greg Brown updated PIVOT-32:
----------------------------

    Fix Version/s:     (was: 1.3.1)
                   1.3

> File browser component/sheet/dialog
> -----------------------------------
>
>                 Key: PIVOT-32
>                 URL: https://issues.apache.org/jira/browse/PIVOT-32
>             Project: Pivot
>          Issue Type: New Feature
>          Components: wtk
>            Reporter: Greg Brown
>            Assignee: Greg Brown
>             Fix For: 1.3
>
>         Attachments: FileBrowser.png
>
>
> We will provide both a generic FileBrowser component and FileBrowserSheet and FileBrowserDialog classes. FileBrowser will be used internally by the window skins.
> FileBrowserSheet and FileBrowserDialog will support the following modes:
>    public enum Mode {
>        OPEN,
>        OPEN_MULTIPLE,
>        SAVE_AS,
>        SAVE_TO
>    }
> FileBrowser will provide the following properties (among others):
> multiSelect: boolean -- set to true when FileBrowser sheet is in OPEN_MULTIPLE mode; false, otherwise
> fileFilter: Filter<File>
> selectedFile: File -- this would throw if "multiSelect" is true, like we do in ListView, etc. when "selectMode" is MULTI
> selectedFiles: Sequence<File>
> FileBrowserSkin may provide the following style:
> disableFilteredFiles: boolean -- when true, filtered files will be disabled; when false, they will be hidden

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.