TABLE OF CONTENTS


CreateItems/SourceDirectory [ Variables ]

[ Top ] [ CreateItems ] [ Variables ]

FUNCTION

 Full path to the source directory of item to which link was created

SOURCE

   SourceDirectory: Unbounded_String;

CreateItems/AddNewButton [ Subprograms ]

[ Top ] [ CreateItems ] [ Subprograms ]

FUNCTION

 Show text entry for enter new directory name after click button Add New

SOURCE

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

PARAMETERS

 Self - Gtk_Tool_Button which was clicked. Unused. Can be null.

CreateItems/AddNewFile [ Subprograms ]

[ Top ] [ CreateItems ] [ Subprograms ]

FUNCTION

 Show text entry for enter new file name after selecting menu New File

SOURCE

   procedure AddNewFile(Self: access Gtk_Menu_Item_Record'Class) is
      pragma Unreferenced(Self);

PARAMETERS

 Self - Gtk_Menu_Item which was selected. Unused.

CreateItems/AddNewLink [ Subprograms ]

[ Top ] [ CreateItems ] [ Subprograms ]

FUNCTION

 Show text entry and destination for create new link after selecting menu
 New Link

SOURCE

   procedure AddNewLink(Self: access Gtk_Menu_Item_Record'Class) is
      pragma Unreferenced(Self);

PARAMETERS

 Self - Gtk_Menu_Item which was selected. Unused.

CreateItems/CreateItem [ Subprograms ]

[ Top ] [ CreateItems ] [ Subprograms ]

FUNCTION

 Create new or rename existing file, directory or symbolic link or hide
 text entry

SOURCE

   procedure CreateItem
     (Self: access Gtk_Entry_Record'Class;
      Icon_Pos: Gtk_Entry_Icon_Position) is

PARAMETERS

 Self     - Text entry with name for new file/directory
 Icon_Pos - Position of text entry icon which was pressed or if key
            Enter was pressed, simulate pressing proper icon

CreateItems/CreateNew [ Subprograms ]

[ Top ] [ CreateItems ] [ Subprograms ]

FUNCTION

 Create new file or directory when user press enter in text entry

SOURCE

   procedure CreateNew(Self: access Gtk_Entry_Record'Class) is

PARAMETERS

 Self - Gtk_GEntry in which Enter was pressed.

CreateItems/IconPressed [ Subprograms ]

[ Top ] [ CreateItems ] [ Subprograms ]

FUNCTION

 Create new file or directory when user press icon or hide text entry

SOURCE

   procedure IconPressed
     (Self: access Gtk_Entry_Record'Class; Icon_Pos: Gtk_Entry_Icon_Position;
      Event: Gdk_Event_Button) is
      pragma Unreferenced(Event);

PARAMETERS

 Self     - Text entry with name for new file/directory
 Icon_Pos - Position of text entry icon which was pressed
ml>