1 /* ide-test-private.h 2 * 3 * Copyright 2017-2019 Christian Hergert <chergert@redhat.com> 4 * 5 * This program is free software: you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation, either version 3 of the License, or 8 * (at your option) any later version. 9 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see <http://www.gnu.org/licenses/>. 17 * 18 * SPDX-License-Identifier: GPL-3.0-or-later 19 */ 20 21 #pragma once 22 23 #include <gtk/gtk.h> 24 25 #include "ide-test.h" 26 #include "ide-test-manager.h" 27 #include "ide-test-provider.h" 28 29 G_BEGIN_DECLS 30 31 typedef enum 32 { 33 IDE_TEST_COLUMN_GROUP, 34 IDE_TEST_COLUMN_TEST, 35 } IdeTestColumn; 36 37 GtkTreeModel *_ide_test_manager_get_model (IdeTestManager *self); 38 void _ide_test_set_provider (IdeTest *self, 39 IdeTestProvider *provider); 40 IdeTestProvider *_ide_test_get_provider (IdeTest *self); 41 42 43 G_END_DECLS 44