55 lines
1.3 KiB
C
55 lines
1.3 KiB
C
/* ide-pane.c
|
|
*
|
|
* Copyright 2018-2019 Christian Hergert <chergert@redhat.com>
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#define G_LOG_DOMAIN "ide-pane"
|
|
|
|
#include "config.h"
|
|
|
|
#include "ide-pane.h"
|
|
|
|
G_DEFINE_TYPE (IdePane, ide_pane, DZL_TYPE_DOCK_WIDGET)
|
|
|
|
static void
|
|
ide_pane_class_init (IdePaneClass *klass)
|
|
{
|
|
}
|
|
|
|
static void
|
|
ide_pane_init (IdePane *self)
|
|
{
|
|
}
|
|
|
|
/**
|
|
* ide_pane_new:
|
|
*
|
|
* Creates a new #IdePane widget.
|
|
*
|
|
* These widgets are meant to be added to #IdePanel widgets.
|
|
*
|
|
* Returns: (transfer full): a new #IdePane
|
|
*
|
|
* Since: 3.32
|
|
*/
|
|
GtkWidget *
|
|
ide_pane_new (void)
|
|
{
|
|
return g_object_new (IDE_TYPE_PANE, NULL);
|
|
}
|