summaryrefslogtreecommitdiffstats
path: root/src/nautilus-name-cell.h
blob: 62862cdf564c774671ae9ab9c0963d4f531f83e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (C) 2022 António Fernandes <antoniof@gnome.org>
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

#pragma once

#include "nautilus-view-cell.h"

G_BEGIN_DECLS

#define NAUTILUS_TYPE_NAME_CELL (nautilus_name_cell_get_type())

G_DECLARE_FINAL_TYPE (NautilusNameCell, nautilus_name_cell, NAUTILUS, NAME_CELL, NautilusViewCell)

NautilusViewCell * nautilus_name_cell_new (NautilusListBase *view);
void nautilus_name_cell_set_path (NautilusNameCell *self,
                                  GQuark            path_attribute_q,
                                  GFile            *base_location);
void nautilus_name_cell_show_snippet (NautilusNameCell *self);

G_END_DECLS