2017-02-06 14:37:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Richard Hughes <richard@hughsie.com>
|
|
|
|
*
|
|
|
|
* Licensed under the GNU General Public License Version 2
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2018-05-28 22:45:47 -03:00
|
|
|
#pragma once
|
2017-02-06 14:37:42 +00:00
|
|
|
|
2021-11-11 15:31:41 -03:00
|
|
|
#include <adwaita.h>
|
2017-02-06 14:37:42 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
2019-06-11 08:26:53 -03:00
|
|
|
#define CC_TYPE_NIGHT_LIGHT_PAGE (cc_night_light_page_get_type ())
|
2021-11-11 15:31:41 -03:00
|
|
|
G_DECLARE_FINAL_TYPE (CcNightLightPage, cc_night_light_page, CC, NIGHT_LIGHT_PAGE, AdwBin)
|
2017-02-06 14:37:42 +00:00
|
|
|
|
2019-06-11 08:26:53 -03:00
|
|
|
CcNightLightPage* cc_night_light_page_new (void);
|
2017-02-06 14:37:42 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|