TABLE OF CONTENTS


Hunter/CopyItems [ Packages ]

[ Top ] [ Packages ]

FUNCTION

 Provide code for copy selected files or directories.

SOURCE

package CopyItems is

CopyItems/CopyItemsList [ Variables ]

[ Top ] [ CopyItems ] [ Variables ]

FUNCTION

 Stores names of all selected to copy files and directories

SOURCE

   CopyItemsList: UnboundedString_Container.Vector;

CopyItems/CopyData [ Subprograms ]

[ Top ] [ CopyItems ] [ Subprograms ]

FUNCTION

 Copy selected files/directories to new location

SOURCE

   procedure CopyData(Self: access Gtk_Tool_Button_Record'Class);

PARAMETERS

 Self - Gtk_Tool_Button which was clicked. Unused.

CopyItems/CopyItem [ Subprograms ]

[ Top ] [ CopyItems ] [ Subprograms ]

FUNCTION

 Copy selected file or directory to new location

SOURCE

   procedure CopyItem
     (Name: String; Path: Unbounded_String; Success: in out Boolean);

PARAMETERS

 Name      - Full path to file or directory to copy
 Path      - Full path to new home location of file or directory
 Success   - True if item was successfully copied, otherwise False

CopyItems/CopySelected [ Subprograms ]

[ Top ] [ CopyItems ] [ Subprograms ]

FUNCTION

 Copy selected files and directories

SOURCE

   procedure CopySelected(Overwrite: in out Boolean);

PARAMETERS

 Overwrite - If True, overwrite existing file or directory, otherwise
             ask for overwrite permission. Value is set to False if
             permission was only for one file or directory

CopyItems/SkipCopying [ Subprograms ]

[ Top ] [ CopyItems ] [ Subprograms ]

FUNCTION

 Skip copying current file and move to next

SOURCE

   procedure SkipCopying;
>