Branch data Line data Source code
1 : : // SPDX-License-Identifier: GPL-3.0-or-later
2 : : // SPDX-FileCopyrightText: Andy Holmes <andrew.g.r.holmes@gmail.com>
3 : :
4 : : #pragma once
5 : :
6 : : #include <gtk/gtk.h>
7 : : #include <valent.h>
8 : :
9 : : G_BEGIN_DECLS
10 : :
11 : : #define VALENT_TYPE_DEVICE_ROW (valent_device_row_get_type())
12 : :
13 [ + - + - : 15 : G_DECLARE_FINAL_TYPE (ValentDeviceRow, valent_device_row, VALENT, DEVICE_ROW, GtkListBoxRow)
- + ]
14 : :
15 : : ValentDevice * valent_device_row_get_device (ValentDeviceRow *row);
16 : : gboolean valent_device_row_get_selected (ValentDeviceRow *row);
17 : : void valent_device_row_set_selected (ValentDeviceRow *row,
18 : : gboolean selected);
19 : : gboolean valent_device_row_get_selection_mode (ValentDeviceRow *row);
20 : : void valent_device_row_set_selection_mode (ValentDeviceRow *row,
21 : : gboolean selection_mode);
22 : :
23 : : G_END_DECLS
|