Gtk.Search_Bar

Entities

Tagged Types

Access Types

Constants

Subprograms

Generic Instantiations

Description

Gtk.Search_Bar.Gtk_Search_Bar is a container made to have a search entry (possibly with additional connex widgets, such as drop-down menus, or buttons) built-in. The search bar would appear when a search is started through typing on the keyboard, or the application's search mode is toggled on.

For keyboard presses to start a search, events will need to be forwarded from the top-level window that contains the search bar. See Gtk.Search_Bar.Handle_Event for example code. Common shortcuts such as Ctrl+F should be handled as an application action, or through the menu items.

You will also need to tell the search bar about which entry you are using as your search entry using Gtk.Search_Bar.Connect_Entry. The following example shows you how to create a more complex search entry.

# CSS nodes

GtkSearchBar has a single CSS node with name searchbar.

## Creating a search bar

A simple example

"+"

function "+"
  (Widget : access Gtk_Search_Bar_Record'Class)
return Gtk.Buildable.Gtk_Buildable
Parameters
Widget
Return Value

"-"

function "-"
  (Interf : Gtk.Buildable.Gtk_Buildable)
return Gtk_Search_Bar
Parameters
Interf
Return Value

Connect_Entry

procedure Connect_Entry
   (Self   : not null access Gtk_Search_Bar_Record;
    GEntry : not null access Gtk.GEntry.Gtk_Entry_Record'Class)

Connects the Gtk.GEntry.Gtk_Entry widget passed as the one to be used in this search bar. The entry should be a descendant of the search bar. This is only required if the entry isn't the direct child of the search bar (as in our main example). Since: gtk+ 3.10

Parameters
Self
GEntry

a Gtk.GEntry.Gtk_Entry

Get_Search_Mode

function Get_Search_Mode
   (Self : not null access Gtk_Search_Bar_Record) return Boolean

Returns whether the search mode is on or off. Since: gtk+ 3.10

Parameters
Self
Return Value

whether search mode is toggled on

Get_Show_Close_Button

function Get_Show_Close_Button
   (Self : not null access Gtk_Search_Bar_Record) return Boolean

Returns whether the close button is shown. Since: gtk+ 3.10

Parameters
Self
Return Value

whether the close button is shown

Get_Type

function Get_Type return Glib.GType
Return Value

Gtk_New

procedure Gtk_New (Self : out Gtk_Search_Bar)

Creates a Gtk.Search_Bar.Gtk_Search_Bar. You will need to tell it about which widget is going to be your text entry using Gtk.Search_Bar.Connect_Entry. Since: gtk+ 3.10 Initialize does nothing if the object was already created with another call to Initialize* or G_New.

Parameters
Self

Gtk_Search_Bar

type Gtk_Search_Bar is access all Gtk_Search_Bar_Record'Class;

Gtk_Search_Bar_New

function Gtk_Search_Bar_New return Gtk_Search_Bar

Creates a Gtk.Search_Bar.Gtk_Search_Bar. You will need to tell it about which widget is going to be your text entry using Gtk.Search_Bar.Connect_Entry. Since: gtk+ 3.10

Return Value

Gtk_Search_Bar_Record

type Gtk_Search_Bar_Record is new Gtk_Bin_Record with null record;

Handle_Event

function Handle_Event
   (Self  : not null access Gtk_Search_Bar_Record;
    Event : Gdk.Event.Gdk_Event) return Boolean

This function should be called when the top-level window which contains the search bar received a key event. If the key event is handled by the search bar, the bar will be shown, the entry populated with the entered text and GDK_EVENT_STOP will be returned. The caller should ensure that events are not propagated further. If no entry has been connected to the search bar, using Gtk.Search_Bar.Connect_Entry, this function will return immediately with a warning. ## Showing the search bar on key presses

static gboolean
on_key_press_event (GtkWidget *widget,
                    GdkEvent  *event,
                    gpointer   user_data)
{
  GtkSearchBar *bar = GTK_SEARCH_BAR (user_data);
  return gtk_search_bar_handle_event (bar, event);
}

static void
create_toplevel (void)
{
  GtkWidget *window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
  GtkWindow *search_bar = gtk_search_bar_new ();

 // Add more widgets to the window...

  g_signal_connect (window,
                   "key-press-event",
                    G_CALLBACK (on_key_press_event),
                    search_bar);
}

Since: gtk+ 3.10

Parameters
Self
Event

a Gdk.Event.Gdk_Event containing key press events

Return Value

GDK_EVENT_STOP if the key press event resulted in text being entered in the search entry (and revealing the search bar if necessary), GDK_EVENT_PROPAGATE otherwise.

Implements_Gtk_Buildable

package Implements_Gtk_Buildable is new Glib.Types.Implements
  (Gtk.Buildable.Gtk_Buildable, Gtk_Search_Bar_Record, Gtk_Search_Bar);

Initialize

procedure Initialize (Self : not null access Gtk_Search_Bar_Record'Class)

Creates a Gtk.Search_Bar.Gtk_Search_Bar. You will need to tell it about which widget is going to be your text entry using Gtk.Search_Bar.Connect_Entry. Since: gtk+ 3.10 Initialize does nothing if the object was already created with another call to Initialize* or G_New.

Parameters
Self

Search_Mode_Enabled_Property

Search_Mode_Enabled_Property : constant Glib.Properties.Property_Boolean;

Set_Search_Mode

procedure Set_Search_Mode
   (Self        : not null access Gtk_Search_Bar_Record;
    Search_Mode : Boolean)

Switches the search mode on or off. Since: gtk+ 3.10

Parameters
Self
Search_Mode

the new state of the search mode

Set_Show_Close_Button

procedure Set_Show_Close_Button
   (Self    : not null access Gtk_Search_Bar_Record;
    Visible : Boolean)

Shows or hides the close button. Applications that already have a "search" toggle button should not show a close button in their search bar, as it duplicates the role of the toggle button. Since: gtk+ 3.10

Parameters
Self
Visible

whether the close button will be shown or not

Show_Close_Button_Property

Show_Close_Button_Property : constant Glib.Properties.Property_Boolean;