2012-12-09 19:38:32 -05:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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
|
2020-07-17 09:24:32 +12:00
|
|
|
* GNU General Public License for more details.
|
2012-12-09 19:38:32 -05:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2019-11-06 14:00:07 +13:00
|
|
|
#pragma once
|
2012-12-09 19:38:32 -05:00
|
|
|
|
2019-11-06 17:16:54 +13:00
|
|
|
#include <gtk/gtk.h>
|
2019-11-06 14:00:07 +13:00
|
|
|
#include <NetworkManager.h>
|
2012-12-09 19:38:32 -05:00
|
|
|
|
2019-11-06 17:16:54 +13:00
|
|
|
G_DECLARE_FINAL_TYPE (CEPageWifi, ce_page_wifi, CE, PAGE_WIFI, GtkGrid)
|
2012-12-09 19:38:32 -05:00
|
|
|
|
2019-11-06 17:16:54 +13:00
|
|
|
CEPageWifi *ce_page_wifi_new (NMConnection *connection,
|
|
|
|
NMClient *client);
|
2012-12-09 19:38:32 -05:00
|
|
|
|
|
|
|
G_END_DECLS
|