TABLE OF CONTENTS


ShowItems/GetSelectedItems [ Subprograms ]

[ Top ] [ ShowItems ] [ Subprograms ]

FUNCTION

 Add selected file or directory to SelectedItems list.

SOURCE

   procedure GetSelectedItems
     (Model: Gtk_Tree_Model; Path: Gtk_Tree_Path; Iter: Gtk_Tree_Iter) is
      pragma Unreferenced(Path);

PARAMETERS

 Model - Gtk_Tree_Model with content of currently selected directory
 Path  - Gtk_Tree_Path to selected element in Model
 Iter  - Gtk_Tree_Iter to selected element in Model

ShowItems/RemoveTag [ Subprograms ]

[ Top ] [ ShowItems ] [ Subprograms ]

FUNCTION

 Remove selected text tag from preview window.

SOURCE

   procedure RemoveTag(Tag: not null access Gtk_Text_Tag_Record'Class) is

PARAMETERS

 Tag - Gtk_Text_Tag to remove

ShowItems/SetDestination [ Subprograms ]

[ Top ] [ ShowItems ] [ Subprograms ]

FUNCTION

 Enter subdirectory in preview for destination directory

SOURCE

   procedure SetDestination
     (Self: access Gtk_Tree_View_Record'Class; Path: Gtk_Tree_Path;
      Column: not null access Gtk_Tree_View_Column_Record'Class) is
      pragma Unreferenced(Column);

PARAMETERS

 Self   - Gtk_Tree_View which triggered this code
 Path   - Gtk_Tree_Path to item which was activated
 Column - Gtk_Tree_View_Column which was activated. Unused.

ShowItems/SetPermission [ Subprograms ]

[ Top ] [ ShowItems ] [ Subprograms ]

FUNCTION

 Set selected permissions to selected file or directory

SOURCE

   procedure SetPermission(Self: access Gtk_Toggle_Button_Record'Class) is
      pragma Unreferenced(Self);

PARAMETERS

 Self - Gtk_Check_Button which was (un)checked. Unused. Can be null.

ShowItems/ShowItemInfo [ Subprograms ]

[ Top ] [ ShowItems ] [ Subprograms ]

FUNCTION

 Show detailed information (name, size, modification date, etc) about
 selected file or directory.

SOURCE

   procedure ShowItemInfo(Self: access Gtk_Tool_Button_Record'Class) is
      pragma Unreferenced(Self);

PARAMETERS

 Self - Gtk_Tool_Button clicked. Unused. Can be null

ShowItems/UpdateImage [ Subprograms ]

[ Top ] [ ShowItems ] [ Subprograms ]

FUNCTION

 If scaling images in preview is enabled, scale it on resize preview of it

SOURCE

   procedure UpdateImage
     (Self: access Gtk_Widget_Record'Class; Allocation: Gtk_Allocation) is
      pragma Unreferenced(Allocation);

PARAMETERS

 Self       - Gtk_Image which was resized. Unused.
 Allocation - Gtk_Allocation for size. Unused.
>