Index

Package: Tool_Palette

Description

package Gtk.Tool_Palette is

A Gtk.Tool_Palette.Gtk_Tool_Palette allows you to add Gtk.Tool_Item.Gtk_Tool_Item<!-- -->s to a palette-like container with different categories and drag and drop support.

A Gtk.Tool_Palette.Gtk_Tool_Palette is created with a call to Gtk.Tool_Palette.Gtk_New.

Gtk.Tool_Item.Gtk_Tool_Item<!-- -->s cannot be added directly to a Gtk.Tool_Palette.Gtk_Tool_Palette - instead they are added to a Gtk.Tool_Item_Group.Gtk_Tool_Item_Group which can than be added to a Gtk.Tool_Palette.Gtk_Tool_Palette. To add a Gtk.Tool_Item_Group.Gtk_Tool_Item_Group to a Gtk.Tool_Palette.Gtk_Tool_Palette, use Gtk.Container.Add. |[ GtkWidget *palette, *group; GtkToolItem *item; palette = gtk_tool_palette_new (); group = gtk_tool_item_group_new (_("Test Category")); gtk_container_add (GTK_CONTAINER (palette), group); item = gtk_tool_button_new_from_stock (GTK_STOCK_OK); gtk_tool_item_group_insert (GTK_TOOL_ITEM_GROUP (group), item, -1); ]| The easiest way to use drag and drop with Gtk.Tool_Palette.Gtk_Tool_Palette is to call Gtk.Tool_Palette.Add_Drag_Dest with the desired drag source Palette and the desired drag target Widget.

Then Gtk.Tool_Palette.Get_Drag_Item can be used to get the dragged item in the Gtk.Widget.Gtk_Widget::drag-data-received signal handler of the drag target. |[ static void passive_canvas_drag_data_received (GtkWidget *widget, GdkDragContext *context, gint x, gint y, GtkSelectionData *selection, guint info, guint time, gpointer data) { GtkWidget *palette; GtkWidget *item; /<!-- -->* Get the dragged item *<!-- -->/ palette = gtk_widget_get_ancestor (gtk_drag_get_source_widget (context), GTK_TYPE_TOOL_PALETTE); if (palette != NULL) item = gtk_tool_palette_get_drag_item (GTK_TOOL_PALETTE (palette), selection); /<!-- -->* Do something with item *<!-- -->/ } GtkWidget *target, palette; palette = gtk_tool_palette_new (); target = gtk_drawing_area_new (); g_signal_connect (G_OBJECT (target), "drag-data-received", G_CALLBACK (passive_canvas_drag_data_received), NULL); gtk_tool_palette_add_drag_dest (GTK_TOOL_PALETTE (palette), target, GTK_DEST_DEFAULT_ALL, GTK_TOOL_PALETTE_DRAG_ITEMS, GDK_ACTION_COPY); ]|

Packages

Gtk_Dest_Defaults_Properties (new Glib.Generic_Properties.Generic_Internal_Discrete_Property)

package Gtk_Dest_Defaults_Properties is
      new Generic_Internal_Discrete_Property (Gtk_Dest_Defaults);

Gtk_Tool_Palette_Drag_Targets_Properties (new Glib.Generic_Properties.Generic_Internal_Discrete_Property)

package Gtk_Tool_Palette_Drag_Targets_Properties is
      new Generic_Internal_Discrete_Property (Gtk_Tool_Palette_Drag_Targets);

Implements_Gtk_Buildable (new Glib.Types.Implements)

Implements_Gtk_Orientable (new Glib.Types.Implements)

Implements_Gtk_Scrollable (new Glib.Types.Implements)

Classes

Gtk_Tool_Palette_Record

type Gtk_Tool_Palette_Record is new Gtk_Container_Record with null record;

Ancestors:

Primitive operations:

Add_Drag_Dest
Get_Drag_Item
Get_Drop_Group
Get_Drop_Item
Get_Exclusive
Get_Group_Position
Get_Hadjustment
Get_Hscroll_Policy
Get_Icon_Size
Get_Orientation
Get_Vadjustment
Get_Vscroll_Policy
Glib.Object.Deallocate (Inherited)
Glib.Object.Get_Type (Inherited)
Glib.Object.Notify (Inherited)
Glib.Object.Ref (Inherited)
Glib.Object.Ref_Sink (Inherited)
Glib.Object.Unref (Inherited)
Gtk.Container.Add (Inherited)
Gtk.Container.Check_Resize (Inherited)
Gtk.Container.Child_Get_Property (Inherited)
Gtk.Container.Child_Notify (Inherited)
Gtk.Container.Child_Set_Property (Inherited)
Gtk.Container.Child_Type (Inherited)
Gtk.Container.Forall (Inherited)
Gtk.Container.Foreach (Inherited)
Gtk.Container.Get_Border_Width (Inherited)
Gtk.Container.Get_Children (Inherited)
Gtk.Container.Get_Focus_Child (Inherited)
Gtk.Container.Get_Focus_Hadjustment (Inherited)
Gtk.Container.Get_Focus_Vadjustment (Inherited)
Gtk.Container.Get_Path_For_Child (Inherited)
Gtk.Container.Get_Resize_Mode (Inherited)
Gtk.Container.On_Add (Inherited)
Gtk.Container.On_Add (Inherited)
Gtk.Container.On_Check_Resize (Inherited)
Gtk.Container.On_Check_Resize (Inherited)
Gtk.Container.On_Remove (Inherited)
Gtk.Container.On_Remove (Inherited)
Gtk.Container.On_Set_Focus_Child (Inherited)
Gtk.Container.On_Set_Focus_Child (Inherited)
Gtk.Container.Propagate_Draw (Inherited)
Gtk.Container.Remove (Inherited)
Gtk.Container.Resize_Children (Inherited)
Gtk.Container.Set_Border_Width (Inherited)
Gtk.Container.Set_Focus_Chain (Inherited)
Gtk.Container.Set_Focus_Child (Inherited)
Gtk.Container.Set_Focus_Hadjustment (Inherited)
Gtk.Container.Set_Focus_Vadjustment (Inherited)
Gtk.Container.Set_Reallocate_Redraws (Inherited)
Gtk.Container.Set_Resize_Mode (Inherited)
Gtk.Container.Unset_Focus_Chain (Inherited)
Gtk.Widget.Activate (Inherited)
Gtk.Widget.Add_Accelerator (Inherited)
Gtk.Widget.Add_Device_Events (Inherited)
Gtk.Widget.Add_Events (Inherited)
Gtk.Widget.Add_Mnemonic_Label (Inherited)
Gtk.Widget.Add_Tick_Callback (Inherited)
Gtk.Widget.Can_Activate_Accel (Inherited)
Gtk.Widget.Child_Focus (Inherited)
Gtk.Widget.Child_Notify (Inherited)
Gtk.Widget.Compute_Expand (Inherited)
Gtk.Widget.Create_Pango_Context (Inherited)
Gtk.Widget.Create_Pango_Layout (Inherited)
Gtk.Widget.Destroy (Inherited)
Gtk.Widget.Destroyed (Inherited)
Gtk.Widget.Device_Is_Shadowed (Inherited)
Gtk.Widget.Drag_Check_Threshold (Inherited)
Gtk.Widget.Drag_Dest_Add_Image_Targets (Inherited)
Gtk.Widget.Drag_Dest_Add_Text_Targets (Inherited)
Gtk.Widget.Drag_Dest_Add_Uri_Targets (Inherited)
Gtk.Widget.Drag_Dest_Get_Track_Motion (Inherited)
Gtk.Widget.Drag_Dest_Set_Proxy (Inherited)
Gtk.Widget.Drag_Dest_Set_Track_Motion (Inherited)
Gtk.Widget.Drag_Dest_Unset (Inherited)
Gtk.Widget.Drag_Get_Data (Inherited)
Gtk.Widget.Drag_Highlight (Inherited)
Gtk.Widget.Drag_Source_Add_Image_Targets (Inherited)
Gtk.Widget.Drag_Source_Add_Uri_Targets (Inherited)
Gtk.Widget.Drag_Source_Set_Icon_Pixbuf (Inherited)
Gtk.Widget.Drag_Source_Unset (Inherited)
Gtk.Widget.Drag_Unhighlight (Inherited)
Gtk.Widget.Draw (Inherited)
Gtk.Widget.Ensure_Style (Inherited)
Gtk.Widget.Error_Bell (Inherited)
Gtk.Widget.Event (Inherited)
Gtk.Widget.Freeze_Child_Notify (Inherited)
Gtk.Widget.Get_Allocated_Height (Inherited)
Gtk.Widget.Get_Allocated_Width (Inherited)
Gtk.Widget.Get_Allocation (Inherited)
Gtk.Widget.Get_Ancestor (Inherited)
Gtk.Widget.Get_App_Paintable (Inherited)
Gtk.Widget.Get_Can_Default (Inherited)
Gtk.Widget.Get_Can_Focus (Inherited)
Gtk.Widget.Get_Child_Requisition (Inherited)
Gtk.Widget.Get_Child_Visible (Inherited)
Gtk.Widget.Get_Composite_Name (Inherited)
Gtk.Widget.Get_Device_Enabled (Inherited)
Gtk.Widget.Get_Device_Events (Inherited)
Gtk.Widget.Get_Direction (Inherited)
Gtk.Widget.Get_Display (Inherited)
Gtk.Widget.Get_Double_Buffered (Inherited)
Gtk.Widget.Get_Events (Inherited)
Gtk.Widget.Get_Frame_Clock (Inherited)
Gtk.Widget.Get_Halign (Inherited)
Gtk.Widget.Get_Has_Tooltip (Inherited)
Gtk.Widget.Get_Has_Window (Inherited)
Gtk.Widget.Get_Hexpand (Inherited)
Gtk.Widget.Get_Hexpand_Set (Inherited)
Gtk.Widget.Get_Mapped (Inherited)
Gtk.Widget.Get_Margin_Bottom (Inherited)
Gtk.Widget.Get_Margin_Left (Inherited)
Gtk.Widget.Get_Margin_Right (Inherited)
Gtk.Widget.Get_Margin_Top (Inherited)
Gtk.Widget.Get_Modifier_Mask (Inherited)
Gtk.Widget.Get_Name (Inherited)
Gtk.Widget.Get_No_Show_All (Inherited)
Gtk.Widget.Get_Opacity (Inherited)
Gtk.Widget.Get_Pango_Context (Inherited)
Gtk.Widget.Get_Parent (Inherited)
Gtk.Widget.Get_Parent_Window (Inherited)
Gtk.Widget.Get_Path (Inherited)
Gtk.Widget.Get_Pointer (Inherited)
Gtk.Widget.Get_Preferred_Height (Inherited)
Gtk.Widget.Get_Preferred_Height_For_Width (Inherited)
Gtk.Widget.Get_Preferred_Size (Inherited)
Gtk.Widget.Get_Preferred_Width (Inherited)
Gtk.Widget.Get_Preferred_Width_For_Height (Inherited)
Gtk.Widget.Get_Realized (Inherited)
Gtk.Widget.Get_Receives_Default (Inherited)
Gtk.Widget.Get_Request_Mode (Inherited)
Gtk.Widget.Get_Requisition (Inherited)
Gtk.Widget.Get_Root_Window (Inherited)
Gtk.Widget.Get_Screen (Inherited)
Gtk.Widget.Get_Sensitive (Inherited)
Gtk.Widget.Get_Size_Request (Inherited)
Gtk.Widget.Get_State (Inherited)
Gtk.Widget.Get_State_Flags (Inherited)
Gtk.Widget.Get_Style (Inherited)
Gtk.Widget.Get_Support_Multidevice (Inherited)
Gtk.Widget.Get_Tooltip_Markup (Inherited)
Gtk.Widget.Get_Tooltip_Text (Inherited)
Gtk.Widget.Get_Tooltip_Window (Inherited)
Gtk.Widget.Get_Toplevel (Inherited)
Gtk.Widget.Get_Valign (Inherited)
Gtk.Widget.Get_Vexpand (Inherited)
Gtk.Widget.Get_Vexpand_Set (Inherited)
Gtk.Widget.Get_Visible (Inherited)
Gtk.Widget.Get_Visual (Inherited)
Gtk.Widget.Get_Window (Inherited)
Gtk.Widget.Grab_Add (Inherited)
Gtk.Widget.Grab_Default (Inherited)
Gtk.Widget.Grab_Focus (Inherited)
Gtk.Widget.Grab_Remove (Inherited)
Gtk.Widget.Has_Default (Inherited)
Gtk.Widget.Has_Focus (Inherited)
Gtk.Widget.Has_Grab (Inherited)
Gtk.Widget.Has_Rc_Style (Inherited)
Gtk.Widget.Has_Screen (Inherited)
Gtk.Widget.Has_Visible_Focus (Inherited)
Gtk.Widget.Hide (Inherited)
Gtk.Widget.Hide_On_Delete (Inherited)
Gtk.Widget.In_Destruction (Inherited)
Gtk.Widget.Input_Shape_Combine_Region (Inherited)
Gtk.Widget.Intersect (Inherited)
Gtk.Widget.Is_Ancestor (Inherited)
Gtk.Widget.Is_Composited (Inherited)
Gtk.Widget.Is_Drawable (Inherited)
Gtk.Widget.Is_Focus (Inherited)
Gtk.Widget.Is_Sensitive (Inherited)
Gtk.Widget.Is_Toplevel (Inherited)
Gtk.Widget.Is_Visible (Inherited)
Gtk.Widget.Keynav_Failed (Inherited)
Gtk.Widget.List_Mnemonic_Labels (Inherited)
Gtk.Widget.Map (Inherited)
Gtk.Widget.Mnemonic_Activate (Inherited)
Gtk.Widget.Modify_Base (Inherited)
Gtk.Widget.Modify_Bg (Inherited)
Gtk.Widget.Modify_Cursor (Inherited)
Gtk.Widget.Modify_Fg (Inherited)
Gtk.Widget.Modify_Font (Inherited)
Gtk.Widget.Modify_Text (Inherited)
Gtk.Widget.On_Accel_Closures_Changed (Inherited)
Gtk.Widget.On_Accel_Closures_Changed (Inherited)
Gtk.Widget.On_Button_Press_Event (Inherited)
Gtk.Widget.On_Button_Press_Event (Inherited)
Gtk.Widget.On_Button_Release_Event (Inherited)
Gtk.Widget.On_Button_Release_Event (Inherited)
Gtk.Widget.On_Can_Activate_Accel (Inherited)
Gtk.Widget.On_Can_Activate_Accel (Inherited)
Gtk.Widget.On_Child_Notify (Inherited)
Gtk.Widget.On_Child_Notify (Inherited)
Gtk.Widget.On_Composited_Changed (Inherited)
Gtk.Widget.On_Composited_Changed (Inherited)
Gtk.Widget.On_Configure_Event (Inherited)
Gtk.Widget.On_Configure_Event (Inherited)
Gtk.Widget.On_Damage_Event (Inherited)
Gtk.Widget.On_Damage_Event (Inherited)
Gtk.Widget.On_Delete_Event (Inherited)
Gtk.Widget.On_Delete_Event (Inherited)
Gtk.Widget.On_Destroy (Inherited)
Gtk.Widget.On_Destroy (Inherited)
Gtk.Widget.On_Destroy_Event (Inherited)
Gtk.Widget.On_Destroy_Event (Inherited)
Gtk.Widget.On_Direction_Changed (Inherited)
Gtk.Widget.On_Direction_Changed (Inherited)
Gtk.Widget.On_Drag_Begin (Inherited)
Gtk.Widget.On_Drag_Begin (Inherited)
Gtk.Widget.On_Drag_Data_Delete (Inherited)
Gtk.Widget.On_Drag_Data_Delete (Inherited)
Gtk.Widget.On_Drag_Data_Get (Inherited)
Gtk.Widget.On_Drag_Data_Get (Inherited)
Gtk.Widget.On_Drag_Data_Received (Inherited)
Gtk.Widget.On_Drag_Data_Received (Inherited)
Gtk.Widget.On_Drag_Drop (Inherited)
Gtk.Widget.On_Drag_Drop (Inherited)
Gtk.Widget.On_Drag_End (Inherited)
Gtk.Widget.On_Drag_End (Inherited)
Gtk.Widget.On_Drag_Failed (Inherited)
Gtk.Widget.On_Drag_Failed (Inherited)
Gtk.Widget.On_Drag_Leave (Inherited)
Gtk.Widget.On_Drag_Leave (Inherited)
Gtk.Widget.On_Drag_Motion (Inherited)
Gtk.Widget.On_Drag_Motion (Inherited)
Gtk.Widget.On_Draw (Inherited)
Gtk.Widget.On_Draw (Inherited)
Gtk.Widget.On_Enter_Notify_Event (Inherited)
Gtk.Widget.On_Enter_Notify_Event (Inherited)
Gtk.Widget.On_Event (Inherited)
Gtk.Widget.On_Event (Inherited)
Gtk.Widget.On_Event_After (Inherited)
Gtk.Widget.On_Event_After (Inherited)
Gtk.Widget.On_Focus (Inherited)
Gtk.Widget.On_Focus (Inherited)
Gtk.Widget.On_Focus_In_Event (Inherited)
Gtk.Widget.On_Focus_In_Event (Inherited)
Gtk.Widget.On_Focus_Out_Event (Inherited)
Gtk.Widget.On_Focus_Out_Event (Inherited)
Gtk.Widget.On_Grab_Broken_Event (Inherited)
Gtk.Widget.On_Grab_Broken_Event (Inherited)
Gtk.Widget.On_Grab_Focus (Inherited)
Gtk.Widget.On_Grab_Focus (Inherited)
Gtk.Widget.On_Grab_Notify (Inherited)
Gtk.Widget.On_Grab_Notify (Inherited)
Gtk.Widget.On_Hide (Inherited)
Gtk.Widget.On_Hide (Inherited)
Gtk.Widget.On_Hierarchy_Changed (Inherited)
Gtk.Widget.On_Hierarchy_Changed (Inherited)
Gtk.Widget.On_Key_Press_Event (Inherited)
Gtk.Widget.On_Key_Press_Event (Inherited)
Gtk.Widget.On_Key_Release_Event (Inherited)
Gtk.Widget.On_Key_Release_Event (Inherited)
Gtk.Widget.On_Keynav_Failed (Inherited)
Gtk.Widget.On_Keynav_Failed (Inherited)
Gtk.Widget.On_Leave_Notify_Event (Inherited)
Gtk.Widget.On_Leave_Notify_Event (Inherited)
Gtk.Widget.On_Map (Inherited)
Gtk.Widget.On_Map (Inherited)
Gtk.Widget.On_Map_Event (Inherited)
Gtk.Widget.On_Map_Event (Inherited)
Gtk.Widget.On_Mnemonic_Activate (Inherited)
Gtk.Widget.On_Mnemonic_Activate (Inherited)
Gtk.Widget.On_Motion_Notify_Event (Inherited)
Gtk.Widget.On_Motion_Notify_Event (Inherited)
Gtk.Widget.On_Move_Focus (Inherited)
Gtk.Widget.On_Move_Focus (Inherited)
Gtk.Widget.On_Parent_Set (Inherited)
Gtk.Widget.On_Parent_Set (Inherited)
Gtk.Widget.On_Popup_Menu (Inherited)
Gtk.Widget.On_Popup_Menu (Inherited)
Gtk.Widget.On_Property_Notify_Event (Inherited)
Gtk.Widget.On_Property_Notify_Event (Inherited)
Gtk.Widget.On_Proximity_In_Event (Inherited)
Gtk.Widget.On_Proximity_In_Event (Inherited)
Gtk.Widget.On_Proximity_Out_Event (Inherited)
Gtk.Widget.On_Proximity_Out_Event (Inherited)
Gtk.Widget.On_Query_Tooltip (Inherited)
Gtk.Widget.On_Query_Tooltip (Inherited)
Gtk.Widget.On_Realize (Inherited)
Gtk.Widget.On_Realize (Inherited)
Gtk.Widget.On_Screen_Changed (Inherited)
Gtk.Widget.On_Screen_Changed (Inherited)
Gtk.Widget.On_Scroll_Event (Inherited)
Gtk.Widget.On_Scroll_Event (Inherited)
Gtk.Widget.On_Selection_Clear_Event (Inherited)
Gtk.Widget.On_Selection_Clear_Event (Inherited)
Gtk.Widget.On_Selection_Get (Inherited)
Gtk.Widget.On_Selection_Get (Inherited)
Gtk.Widget.On_Selection_Notify_Event (Inherited)
Gtk.Widget.On_Selection_Notify_Event (Inherited)
Gtk.Widget.On_Selection_Received (Inherited)
Gtk.Widget.On_Selection_Received (Inherited)
Gtk.Widget.On_Selection_Request_Event (Inherited)
Gtk.Widget.On_Selection_Request_Event (Inherited)
Gtk.Widget.On_Show (Inherited)
Gtk.Widget.On_Show (Inherited)
Gtk.Widget.On_Show_Help (Inherited)
Gtk.Widget.On_Show_Help (Inherited)
Gtk.Widget.On_Size_Allocate (Inherited)
Gtk.Widget.On_Size_Allocate (Inherited)
Gtk.Widget.On_State_Changed (Inherited)
Gtk.Widget.On_State_Changed (Inherited)
Gtk.Widget.On_State_Flags_Changed (Inherited)
Gtk.Widget.On_State_Flags_Changed (Inherited)
Gtk.Widget.On_Style_Set (Inherited)
Gtk.Widget.On_Style_Set (Inherited)
Gtk.Widget.On_Style_Updated (Inherited)
Gtk.Widget.On_Style_Updated (Inherited)
Gtk.Widget.On_Touch_Event (Inherited)
Gtk.Widget.On_Touch_Event (Inherited)
Gtk.Widget.On_Unmap (Inherited)
Gtk.Widget.On_Unmap (Inherited)
Gtk.Widget.On_Unmap_Event (Inherited)
Gtk.Widget.On_Unmap_Event (Inherited)
Gtk.Widget.On_Unrealize (Inherited)
Gtk.Widget.On_Unrealize (Inherited)
Gtk.Widget.On_Visibility_Notify_Event (Inherited)
Gtk.Widget.On_Visibility_Notify_Event (Inherited)
Gtk.Widget.On_Window_State_Event (Inherited)
Gtk.Widget.On_Window_State_Event (Inherited)
Gtk.Widget.Override_Background_Color (Inherited)
Gtk.Widget.Override_Color (Inherited)
Gtk.Widget.Override_Cursor (Inherited)
Gtk.Widget.Override_Font (Inherited)
Gtk.Widget.Override_Symbolic_Color (Inherited)
Gtk.Widget.Queue_Compute_Expand (Inherited)
Gtk.Widget.Queue_Draw (Inherited)
Gtk.Widget.Queue_Draw_Area (Inherited)
Gtk.Widget.Queue_Draw_Region (Inherited)
Gtk.Widget.Queue_Resize (Inherited)
Gtk.Widget.Queue_Resize_No_Redraw (Inherited)
Gtk.Widget.Realize (Inherited)
Gtk.Widget.Region_Intersect (Inherited)
Gtk.Widget.Register_Window (Inherited)
Gtk.Widget.Remove_Accelerator (Inherited)
Gtk.Widget.Remove_Mnemonic_Label (Inherited)
Gtk.Widget.Remove_Tick_Callback (Inherited)
Gtk.Widget.Render_Icon (Inherited)
Gtk.Widget.Render_Icon_Pixbuf (Inherited)
Gtk.Widget.Reparent (Inherited)
Gtk.Widget.Reset_Rc_Styles (Inherited)
Gtk.Widget.Reset_Style (Inherited)
Gtk.Widget.Send_Expose (Inherited)
Gtk.Widget.Send_Focus_Change (Inherited)
Gtk.Widget.Set_Accel_Path (Inherited)
Gtk.Widget.Set_Allocation (Inherited)
Gtk.Widget.Set_App_Paintable (Inherited)
Gtk.Widget.Set_Can_Default (Inherited)
Gtk.Widget.Set_Can_Focus (Inherited)
Gtk.Widget.Set_Child_Visible (Inherited)
Gtk.Widget.Set_Composite_Name (Inherited)
Gtk.Widget.Set_Device_Enabled (Inherited)
Gtk.Widget.Set_Device_Events (Inherited)
Gtk.Widget.Set_Direction (Inherited)
Gtk.Widget.Set_Double_Buffered (Inherited)
Gtk.Widget.Set_Events (Inherited)
Gtk.Widget.Set_Halign (Inherited)
Gtk.Widget.Set_Has_Tooltip (Inherited)
Gtk.Widget.Set_Has_Window (Inherited)
Gtk.Widget.Set_Hexpand (Inherited)
Gtk.Widget.Set_Hexpand_Set (Inherited)
Gtk.Widget.Set_Mapped (Inherited)
Gtk.Widget.Set_Margin_Bottom (Inherited)
Gtk.Widget.Set_Margin_Left (Inherited)
Gtk.Widget.Set_Margin_Right (Inherited)
Gtk.Widget.Set_Margin_Top (Inherited)
Gtk.Widget.Set_Name (Inherited)
Gtk.Widget.Set_No_Show_All (Inherited)
Gtk.Widget.Set_Opacity (Inherited)
Gtk.Widget.Set_Parent (Inherited)
Gtk.Widget.Set_Parent_Window (Inherited)
Gtk.Widget.Set_Realized (Inherited)
Gtk.Widget.Set_Receives_Default (Inherited)
Gtk.Widget.Set_Redraw_On_Allocate (Inherited)
Gtk.Widget.Set_Sensitive (Inherited)
Gtk.Widget.Set_Size_Request (Inherited)
Gtk.Widget.Set_State (Inherited)
Gtk.Widget.Set_State_Flags (Inherited)
Gtk.Widget.Set_Style (Inherited)
Gtk.Widget.Set_Support_Multidevice (Inherited)
Gtk.Widget.Set_Tooltip_Markup (Inherited)
Gtk.Widget.Set_Tooltip_Text (Inherited)
Gtk.Widget.Set_Tooltip_Window (Inherited)
Gtk.Widget.Set_Valign (Inherited)
Gtk.Widget.Set_Vexpand (Inherited)
Gtk.Widget.Set_Vexpand_Set (Inherited)
Gtk.Widget.Set_Visible (Inherited)
Gtk.Widget.Set_Visual (Inherited)
Gtk.Widget.Set_Window (Inherited)
Gtk.Widget.Shape_Combine_Region (Inherited)
Gtk.Widget.Show (Inherited)
Gtk.Widget.Show_All (Inherited)
Gtk.Widget.Show_Now (Inherited)
Gtk.Widget.Size_Allocate (Inherited)
Gtk.Widget.Size_Request (Inherited)
Gtk.Widget.Style_Attach (Inherited)
Gtk.Widget.Style_Get_Property (Inherited)
Gtk.Widget.Thaw_Child_Notify (Inherited)
Gtk.Widget.Translate_Coordinates (Inherited)
Gtk.Widget.Trigger_Tooltip_Query (Inherited)
Gtk.Widget.Unmap (Inherited)
Gtk.Widget.Unparent (Inherited)
Gtk.Widget.Unrealize (Inherited)
Gtk.Widget.Unregister_Window (Inherited)
Gtk.Widget.Unset_State_Flags (Inherited)
Set_Drag_Source
Set_Exclusive
Set_Group_Position
Set_Hadjustment
Set_Hscroll_Policy
Set_Icon_Size
Set_Orientation
Set_Vadjustment
Set_Vscroll_Policy
Unset_Icon_Size

Types

Gtk_Tool_Palette

type Gtk_Tool_Palette is access all Gtk_Tool_Palette_Record'Class;

Gtk_Dest_Defaults

type Gtk_Dest_Defaults is mod 2 ** Integer'Size;

Gtk_Tool_Palette_Drag_Targets

type Gtk_Tool_Palette_Drag_Targets is mod 2 ** Integer'Size;

Property_Gtk_Dest_Defaults

type Property_Gtk_Dest_Defaults is new Gtk_Dest_Defaults_Properties.Property;

Property_Gtk_Tool_Palette_Drag_Targets

type Property_Gtk_Tool_Palette_Drag_Targets is new Gtk_Tool_Palette_Drag_Targets_Properties.Property;

Constants & Global variables

Dest_Default_Motion (Gtk_Dest_Defaults)

Dest_Default_Motion : constant Gtk_Dest_Defaults := 1;

Dest_Default_Highlight (Gtk_Dest_Defaults)

Dest_Default_Highlight : constant Gtk_Dest_Defaults := 2;

Dest_Default_Drop (Gtk_Dest_Defaults)

Dest_Default_Drop : constant Gtk_Dest_Defaults := 4;

Dest_Default_All (Gtk_Dest_Defaults)

Dest_Default_All : constant Gtk_Dest_Defaults := 7;

Tool_Palette_Drag_Items (Gtk_Tool_Palette_Drag_Targets)

Tool_Palette_Drag_Items : constant Gtk_Tool_Palette_Drag_Targets := 1;

Tool_Palette_Drag_Groups (Gtk_Tool_Palette_Drag_Targets)

Tool_Palette_Drag_Groups : constant Gtk_Tool_Palette_Drag_Targets := 2;

Icon_Size_Property (Gtk.Enums.Property_Gtk_Icon_Size)

Icon_Size_Property : constant Gtk.Enums.Property_Gtk_Icon_Size;
The size of the icons in a tool palette is normally determined by the Gtk.Settings.Gtk_Settings:gtk-toolbar-icon-size setting. When this property is set, it overrides the setting. This should only be used for special-purpose tool palettes, normal application tool palettes should respect the user preferences for the size of icons.

Icon_Size_Set_Property (Glib.Properties.Property_Boolean)

Icon_Size_Set_Property : constant Glib.Properties.Property_Boolean;
Is True if the Gtk.Tool_Palette.Gtk_Tool_Palette:icon-size property has been set.

Toolbar_Style_Property (Gtk.Enums.Property_Gtk_Toolbar_Style)

Toolbar_Style_Property : constant Gtk.Enums.Property_Gtk_Toolbar_Style;
The style of items in the tool palette.

Subprograms & Entries

Gtk_New

procedure Gtk_New 
(Self: out Gtk_Tool_Palette);

Initialize

procedure Initialize 
(Self: not null access Gtk_Tool_Palette_Record'Class);
Creates a new tool palette. Since: gtk+ 2.20

Gtk_Tool_Palette_New

function Gtk_Tool_Palette_New return Gtk_Tool_Palette;
Creates a new tool palette. Since: gtk+ 2.20

Get_Type

function Get_Type return Glib.GType;

Add_Drag_Dest

procedure Add_Drag_Dest 
(Self: not null access Gtk_Tool_Palette_Record;
Widget: not null access Gtk.Widget.Gtk_Widget_Record'Class;
Flags: Gtk_Dest_Defaults;
Targets: Gtk_Tool_Palette_Drag_Targets;
Actions: Gdk.Drag_Contexts.Gdk_Drag_Action);
Sets Palette as drag source (see Gtk.Tool_Palette.Set_Drag_Source) and sets Widget as a drag destination for drags from Palette. See gtk_drag_dest_set. Since: gtk+ 2.20 "widget": a Gtk.Widget.Gtk_Widget which should be a drag destination for Palette "flags": the flags that specify what actions GTK+ should take for drops on that widget "targets": the Gtk.Tool_Palette.Gtk_Tool_Palette_Drag_Targets which the widget should support "actions": the Gdk.Drag_Contexts.Gdk_Drag_Action<!-- -->s which the widget should suppport

Get_Drag_Item

function Get_Drag_Item 
(Self: not null access Gtk_Tool_Palette_Record;
Selection: Gtk.Selection_Data.Gtk_Selection_Data) return Gtk.Widget.Gtk_Widget;
Get the dragged item from the selection. This could be a Gtk.Tool_Item.Gtk_Tool_Item or a Gtk.Tool_Item_Group.Gtk_Tool_Item_Group. Since: gtk+ 2.20 "selection": a Gtk.Selection_Data.Gtk_Selection_Data

Get_Drop_Group

function Get_Drop_Group 
(Self: not null access Gtk_Tool_Palette_Record;
X: Gint;
Y: Gint) return Gtk.Tool_Item_Group.Gtk_Tool_Item_Group;
Gets the group at position (x, y). Since: gtk+ 2.20 "x": the x position "y": the y position

Get_Drop_Item

function Get_Drop_Item 
(Self: not null access Gtk_Tool_Palette_Record;
X: Gint;
Y: Gint) return Gtk.Tool_Item.Gtk_Tool_Item;
Gets the item at position (x, y). See Gtk.Tool_Palette.Get_Drop_Group. Since: gtk+ 2.20 "x": the x position "y": the y position

Get_Exclusive

function Get_Exclusive 
(Self: not null access Gtk_Tool_Palette_Record;
Group: not null access Gtk.Tool_Item_Group.Gtk_Tool_Item_Group_Record'Class) return Boolean;
Gets whether Group is exclusive or not. See Gtk.Tool_Palette.Set_Exclusive. Since: gtk+ 2.20 "group": a Gtk.Tool_Item_Group.Gtk_Tool_Item_Group which is a child of palette

Set_Exclusive

procedure Set_Exclusive 
(Self: not null access Gtk_Tool_Palette_Record;
Group: not null access Gtk.Tool_Item_Group.Gtk_Tool_Item_Group_Record'Class;
Exclusive: Boolean);
Sets whether the group should be exclusive or not. If an exclusive group is expanded all other groups are collapsed. Since: gtk+ 2.20 "group": a Gtk.Tool_Item_Group.Gtk_Tool_Item_Group which is a child of palette "exclusive": whether the group should be exclusive or not

Get_Expand

function Get_Expand 
(Self: not null access Gtk_Tool_Palette_Record;
Group: not null access Gtk.Tool_Item_Group.Gtk_Tool_Item_Group_Record'Class) return Boolean;
Gets whether group should be given extra space. See Gtk.Tool_Palette.Set_Expand. Since: gtk+ 2.20 "group": a Gtk.Tool_Item_Group.Gtk_Tool_Item_Group which is a child of palette

Set_Expand

procedure Set_Expand 
(Self: not null access Gtk_Tool_Palette_Record;
Group: not null access Gtk.Tool_Item_Group.Gtk_Tool_Item_Group_Record'Class;
Expand: Boolean);
Sets whether the group should be given extra space. Since: gtk+ 2.20 "group": a Gtk.Tool_Item_Group.Gtk_Tool_Item_Group which is a child of palette "expand": whether the group should be given extra space

Get_Group_Position

function Get_Group_Position 
(Self: not null access Gtk_Tool_Palette_Record;
Group: not null access Gtk.Tool_Item_Group.Gtk_Tool_Item_Group_Record'Class) return Gint;
Gets the position of Group in Palette as index. See Gtk.Tool_Palette.Set_Group_Position. Since: gtk+ 2.20 "group": a Gtk.Tool_Item_Group.Gtk_Tool_Item_Group

Set_Group_Position

procedure Set_Group_Position 
(Self: not null access Gtk_Tool_Palette_Record;
Group: not null access Gtk.Tool_Item_Group.Gtk_Tool_Item_Group_Record'Class;
Position: Gint);
Sets the position of the group as an index of the tool palette. If position is 0 the group will become the first child, if position is -1 it will become the last child. Since: gtk+ 2.20 "group": a Gtk.Tool_Item_Group.Gtk_Tool_Item_Group which is a child of palette "position": a new index for group

Get_Icon_Size

function Get_Icon_Size 
(Self: not null access Gtk_Tool_Palette_Record) return Gtk.Enums.Gtk_Icon_Size;
Gets the size of icons in the tool palette. See Gtk.Tool_Palette.Set_Icon_Size. Since: gtk+ 2.20

Set_Icon_Size

procedure Set_Icon_Size 
(Self: not null access Gtk_Tool_Palette_Record;
Icon_Size: Gtk.Enums.Gtk_Icon_Size);
Sets the size of icons in the tool palette. Since: gtk+ 2.20 "icon_size": the Gtk.Enums.Gtk_Icon_Size that icons in the tool palette shall have

Get_Style

function Get_Style 
(Self: not null access Gtk_Tool_Palette_Record) return Gtk.Enums.Gtk_Toolbar_Style;
Gets the style (icons, text or both) of items in the tool palette. Since: gtk+ 2.20

Set_Style

procedure Set_Style 
(Self: not null access Gtk_Tool_Palette_Record;
Style: Gtk.Enums.Gtk_Toolbar_Style);
Sets the style (text, icons or both) of items in the tool palette. Since: gtk+ 2.20 "style": the Gtk.Enums.Gtk_Toolbar_Style that items in the tool palette shall have

Set_Drag_Source

procedure Set_Drag_Source 
(Self: not null access Gtk_Tool_Palette_Record;
Targets: Gtk_Tool_Palette_Drag_Targets);
Sets the tool palette as a drag source. Enables all groups and items in the tool palette as drag sources on button 1 and button 3 press with copy and move actions. See gtk_drag_source_set. Since: gtk+ 2.20 "targets": the Gtk.Tool_Palette.Gtk_Tool_Palette_Drag_Targets which the widget should support

Unset_Icon_Size

procedure Unset_Icon_Size 
(Self: not null access Gtk_Tool_Palette_Record);
Unsets the tool palette icon size set with Gtk.Tool_Palette.Set_Icon_Size, so that user preferences will be used to determine the icon size. Since: gtk+ 2.20

Unset_Style

procedure Unset_Style 
(Self: not null access Gtk_Tool_Palette_Record);
Unsets a toolbar style set with Gtk.Tool_Palette.Set_Style, so that user preferences will be used to determine the toolbar style. Since: gtk+ 2.20

Get_Orientation

function Get_Orientation 
(Self: not null access Gtk_Tool_Palette_Record) return Gtk.Enums.Gtk_Orientation;

Set_Orientation

procedure Set_Orientation 
(Self: not null access Gtk_Tool_Palette_Record;
Orientation: Gtk.Enums.Gtk_Orientation);

Get_Hadjustment

function Get_Hadjustment 
(Self: not null access Gtk_Tool_Palette_Record) return Gtk.Adjustment.Gtk_Adjustment;

Set_Hadjustment

procedure Set_Hadjustment 
(Self: not null access Gtk_Tool_Palette_Record;
Hadjustment: access Gtk.Adjustment.Gtk_Adjustment_Record'Class);

Get_Hscroll_Policy

function Get_Hscroll_Policy 
(Self: not null access Gtk_Tool_Palette_Record) return Gtk.Enums.Gtk_Scrollable_Policy;

Set_Hscroll_Policy

procedure Set_Hscroll_Policy 
(Self: not null access Gtk_Tool_Palette_Record;
Policy: Gtk.Enums.Gtk_Scrollable_Policy);

Get_Vadjustment

function Get_Vadjustment 
(Self: not null access Gtk_Tool_Palette_Record) return Gtk.Adjustment.Gtk_Adjustment;

Set_Vadjustment

procedure Set_Vadjustment 
(Self: not null access Gtk_Tool_Palette_Record;
Vadjustment: access Gtk.Adjustment.Gtk_Adjustment_Record'Class);

Get_Vscroll_Policy

function Get_Vscroll_Policy 
(Self: not null access Gtk_Tool_Palette_Record) return Gtk.Enums.Gtk_Scrollable_Policy;

Set_Vscroll_Policy

procedure Set_Vscroll_Policy 
(Self: not null access Gtk_Tool_Palette_Record;
Policy: Gtk.Enums.Gtk_Scrollable_Policy);

Get_Drag_Target_Group

function Get_Drag_Target_Group return Gtk.Target_Entry.Gtk_Target_Entry;
Get the target entry for a dragged Gtk.Tool_Item_Group.Gtk_Tool_Item_Group. Since: gtk+ 2.20

Get_Drag_Target_Item

function Get_Drag_Target_Item return Gtk.Target_Entry.Gtk_Target_Entry;
Gets the target entry for a dragged Gtk.Tool_Item.Gtk_Tool_Item. Since: gtk+ 2.20