Branch data Line data Source code
1 : : /* -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*- */
2 : : /* cc-timelike-editor-layout.h
3 : : *
4 : : * Copyright 2025 GNOME Foundation, Inc.
5 : : *
6 : : * This program is free software: you can redistribute it and/or modify
7 : : * it under the terms of the GNU General Public License as published by
8 : : * the Free Software Foundation, either version 2 of the License, or
9 : : * (at your option) any later version.
10 : : *
11 : : * This program is distributed in the hope that it will be useful,
12 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : : * GNU General Public License for more details.
15 : : *
16 : : * You should have received a copy of the GNU General Public License
17 : : * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 : : *
19 : : * Author(s):
20 : : * Philip Withnall <pwithnall@gnome.org>
21 : : *
22 : : * SPDX-License-Identifier: GPL-3.0-or-later
23 : : */
24 : :
25 : : #pragma once
26 : :
27 : : #include <gtk/gtk.h>
28 : :
29 : : G_BEGIN_DECLS
30 : :
31 : : #define CC_TYPE_TIMELIKE_EDITOR_LAYOUT (cc_timelike_editor_layout_get_type ())
32 : :
33 [ # # # # : 0 : G_DECLARE_FINAL_TYPE (CcTimelikeEditorLayout, cc_timelike_editor_layout, CC, TIMELIKE_EDITOR_LAYOUT, GtkLayoutManager)
# # ]
34 : :
35 : : CcTimelikeEditorLayout *cc_timelike_editor_layout_new (void);
36 : :
37 : : unsigned int cc_timelike_editor_layout_get_row_spacing (CcTimelikeEditorLayout *self);
38 : : void cc_timelike_editor_layout_set_row_spacing (CcTimelikeEditorLayout *self,
39 : : unsigned int row_spacing);
40 : :
41 : : unsigned int cc_timelike_editor_layout_get_column_spacing (CcTimelikeEditorLayout *self);
42 : : void cc_timelike_editor_layout_set_column_spacing (CcTimelikeEditorLayout *self,
43 : : unsigned int column_spacing);
44 : :
45 : : G_END_DECLS
|