/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* * Copyright © 2019 Purism SPC * * This file is part of Epiphany. * * Epiphany is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Epiphany is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Epiphany. If not, see . */ #pragma once #include G_BEGIN_DECLS #define EPHY_TYPE_DATA_VIEW (ephy_data_view_get_type ()) G_DECLARE_DERIVABLE_TYPE (EphyDataView, ephy_data_view, EPHY, DATA_VIEW, GtkBin) struct _EphyDataViewClass { GtkBinClass parent_class; }; const gchar *ephy_data_view_get_clear_button_label (EphyDataView *self); void ephy_data_view_set_clear_button_label (EphyDataView *self, const gchar *label); const gchar *ephy_data_view_get_clear_button_tooltip (EphyDataView *self); void ephy_data_view_set_clear_button_tooltip (EphyDataView *self, const gchar *description); gboolean ephy_data_view_get_is_loading (EphyDataView *self); void ephy_data_view_set_is_loading (EphyDataView *self, gboolean is_loading); gboolean ephy_data_view_get_has_data (EphyDataView *self); void ephy_data_view_set_has_data (EphyDataView *self, gboolean has_data); gboolean ephy_data_view_get_has_search_results (EphyDataView *self); void ephy_data_view_set_has_search_results (EphyDataView *self, gboolean has_search_results); gboolean ephy_data_view_get_can_clear (EphyDataView *self); void ephy_data_view_set_can_clear (EphyDataView *self, gboolean can_clear); const gchar *ephy_data_view_get_search_text (EphyDataView *self); gboolean ephy_data_view_handle_event (EphyDataView *self, GdkEvent *event); G_END_DECLS