blob: 708a3b31dcd15c6c88723ade4aa2a74927b4fdf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* Copyright (C) 2025 The GNOME project contributors
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
* Original Author: Peter Eisenmann <p3732@getgoogleoff.me>
*/
#pragma once
#include <adwaita.h>
#include <glib.h>
#include <gtk/gtk.h>
#define NAUTILUS_TYPE_DATE_ENTRY_ROW nautilus_date_entry_row_get_type ()
G_DECLARE_FINAL_TYPE (NautilusDateEntryRow, nautilus_date_entry_row, NAUTILUS, DATE_ENTRY_ROW, AdwEntryRow)
NautilusDateEntryRow *
nautilus_date_entry_row_new (GDateTime *initial);
GDateTime *
nautilus_date_entry_row_get_date_time (NautilusDateEntryRow *self);
void
nautilus_date_entry_row_set_date_time (NautilusDateEntryRow *self,
GDateTime *date_time);
|