TABLE OF CONTENTS


Toolbars/AddButton [ Subprograms ]

[ Top ] [ Subprograms ]

FUNCTION

 Add button to the toolbar

SOURCE

   procedure AddButton
     (Text, IconName: String; Toolbar: Gtk_Toolbar; Tooltip: String;
      Key: Gdk_Key_Type; Mask: Gdk_Modifier_Type := Mod1_Mask) is

PARAMETERS

 Text     - Label of the button to add
 IconName - Name of icon which will be showed on the button
 Toolbar  - Toolbar to which the button will be added
 Tooltip  - Tooltip text for the button
 Key      - Keyboard shortcut for the button
 Mask     - Special key (Control, Alt, Shift, etc) which
            will be needed for trigger the button

Toolbars/AddRadioButton [ Subprograms ]

[ Top ] [ Subprograms ]

FUNCTION

 Add radiobutton to the toolbar

SOURCE

   procedure AddRadioButton
     (Text, IconName: String; RadioGroup: in out Widget_SList.GSlist;
      Toolbar: Gtk_Toolbar; Tooltip: String; Key: Gdk_Key_Type) is

PARAMETERS

 Text       - Label of the radiobutton to add
 IconName   - Name of icon which will be showed on the radiobutton
 RadioGroup - The group to which the radiobutton will be belong
 Toolbar    - The toolbar to which the button will be added
 Tooltip    - Tooltip text for the radiobutton
 Key        - Keyboard shortcut for the radiobutton

Toolbars/AddSeparator [ Subprograms ]

[ Top ] [ Subprograms ]

FUNCTION

 Add separator to toolbar

SOURCE

   procedure AddSeparator(Toolbar: Gtk_Toolbar) is

PARAMETERS

 Toolbar - Toolbar to which the separator will be added
>