gplugin/gplugin

Update the convey plans
default tip
2 days ago, Gary Kramlich
9d8481feda6e
Update the convey plans

Testing Done:
Ran `convey run all` without issue.

Reviewed at https://reviews.imfreedom.org/r/3150/
/*
* Copyright (C) 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see <https://www.gnu.org/licenses/>.
*/
#if !defined(GPLUGIN_GTK_GLOBAL_HEADER_INSIDE) && \
!defined(GPLUGIN_GTK_COMPILATION)
#error "only <gplugin-gtk.h> may be included directly"
#endif
#ifndef GPLUGIN_GTK_VIEW_H
#define GPLUGIN_GTK_VIEW_H
#include <glib.h>
#include <glib-object.h>
#include <gtk/gtk.h>
#include <gplugin.h>
#include "gplugin-gtk-version.h"
G_BEGIN_DECLS
#define GPLUGIN_GTK_TYPE_VIEW (gplugin_gtk_view_get_type())
GPLUGIN_GTK_AVAILABLE_IN_ALL
G_DECLARE_FINAL_TYPE(
GPluginGtkView,
gplugin_gtk_view,
GPLUGIN_GTK,
VIEW,
GtkBox)
GPLUGIN_GTK_AVAILABLE_IN_ALL
GtkWidget *gplugin_gtk_view_new(void);
GPLUGIN_GTK_AVAILABLE_IN_ALL
void gplugin_gtk_view_set_manager(
GPluginGtkView *view,
GPluginManager *manager);
GPLUGIN_GTK_AVAILABLE_IN_ALL
GPluginManager *gplugin_gtk_view_get_manager(GPluginGtkView *view);
GPLUGIN_GTK_AVAILABLE_IN_ALL
void gplugin_gtk_view_set_show_internal(
GPluginGtkView *view,
gboolean show_internal);
GPLUGIN_GTK_AVAILABLE_IN_ALL
gboolean gplugin_gtk_view_get_show_internal(GPluginGtkView *view);
GPLUGIN_GTK_AVAILABLE_IN_0_40
void gplugin_gtk_view_set_settings_backend(
GPluginGtkView *view,
gpointer backend);
GPLUGIN_GTK_AVAILABLE_IN_0_40
gpointer gplugin_gtk_view_get_settings_backend(GPluginGtkView *view);
GPLUGIN_GTK_AVAILABLE_IN_0_39
void gplugin_gtk_view_show_overview(GPluginGtkView *view);
GPLUGIN_GTK_AVAILABLE_IN_0_39
void gplugin_gtk_view_show_plugin(GPluginGtkView *view, GPluginPlugin *plugin);
G_END_DECLS
#endif /* GPLUGIN_GTK_VIEW_H */