diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:39:48 +0000 |
commit | 3ade071f273aaa973e44bf95d6b1d4913a18f03b (patch) | |
tree | e2f99d267ae18427645404f215b984afbe73098d /src/nautilus-label-cell.h | |
parent | Initial commit. (diff) | |
download | nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.tar.xz nautilus-3ade071f273aaa973e44bf95d6b1d4913a18f03b.zip |
Adding upstream version 43.2.upstream/43.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/nautilus-label-cell.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/nautilus-label-cell.h b/src/nautilus-label-cell.h new file mode 100644 index 0000000..b476ef9 --- /dev/null +++ b/src/nautilus-label-cell.h @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2022 António Fernandes <antoniof@gnome.org> + * + * SPDX-License-Identifier: GPL-3.0-or-later + */ + +#pragma once + +/* Needed for NautilusColumn (typedef only). */ +#include "nautilus-types.h" + +#include "nautilus-view-cell.h" + +G_BEGIN_DECLS + +#define NAUTILUS_TYPE_LABEL_CELL (nautilus_label_cell_get_type()) + +G_DECLARE_FINAL_TYPE (NautilusLabelCell, nautilus_label_cell, NAUTILUS, LABEL_CELL, NautilusViewCell) + +NautilusViewCell * nautilus_label_cell_new (NautilusListBase *view, + NautilusColumn *column); + +G_END_DECLS |