Blame lib/bluetooth-settings-row.h

Packit Service fc05fa
/*
Packit Service fc05fa
 *
Packit Service fc05fa
 *  Copyright (C) 2013 Bastien Nocera <hadess@hadess.net>
Packit Service fc05fa
 *
Packit Service fc05fa
 *  This library is free software; you can redistribute it and/or
Packit Service fc05fa
 *  modify it under the terms of the GNU Lesser General Public
Packit Service fc05fa
 *  License as published by the Free Software Foundation; either
Packit Service fc05fa
 *  version 2.1 of the License, or (at your option) any later version.
Packit Service fc05fa
 *
Packit Service fc05fa
 *  This library is distributed in the hope that it will be useful,
Packit Service fc05fa
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service fc05fa
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service fc05fa
 *  Lesser General Public License for more details.
Packit Service fc05fa
 *
Packit Service fc05fa
 *  You should have received a copy of the GNU Lesser General Public
Packit Service fc05fa
 *  License along with this library; if not, write to the Free Software
Packit Service fc05fa
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
Packit Service fc05fa
 *
Packit Service fc05fa
 */
Packit Service fc05fa
Packit Service fc05fa
#ifndef __BLUETOOTH_SETTINGS_ROW_H
Packit Service fc05fa
#define __BLUETOOTH_SETTINGS_ROW_H
Packit Service fc05fa
Packit Service fc05fa
#include <gtk/gtk.h>
Packit Service fc05fa
Packit Service fc05fa
G_BEGIN_DECLS
Packit Service fc05fa
Packit Service fc05fa
#define BLUETOOTH_TYPE_SETTINGS_ROW (bluetooth_settings_row_get_type())
Packit Service fc05fa
#define BLUETOOTH_SETTINGS_ROW(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
Packit Service fc05fa
				BLUETOOTH_TYPE_SETTINGS_ROW, BluetoothSettingsRow))
Packit Service fc05fa
#define BLUETOOTH_SETTINGS_ROW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
Packit Service fc05fa
				BLUETOOTH_TYPE_SETTINGS_ROW, BluetoothSettingsRowClass))
Packit Service fc05fa
#define BLUETOOTH_IS_SETTINGS_ROW(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
Packit Service fc05fa
						BLUETOOTH_TYPE_SETTINGS_ROW))
Packit Service fc05fa
#define BLUETOOTH_IS_SETTINGS_ROW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), \
Packit Service fc05fa
						BLUETOOTH_TYPE_SETTINGS_ROW))
Packit Service fc05fa
#define BLUETOOTH_GET_SETTINGS_ROW_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), \
Packit Service fc05fa
				BLUETOOTH_TYPE_SETTINGS_ROW, BluetoothSettingsRowClass))
Packit Service fc05fa
Packit Service fc05fa
/**
Packit Service fc05fa
 * BluetoothSettingsRow:
Packit Service fc05fa
 *
Packit Service fc05fa
 * The <structname>BluetoothSettingsRow</structname> struct contains
Packit Service fc05fa
 * only private fields and should not be directly accessed.
Packit Service fc05fa
 */
Packit Service fc05fa
typedef struct _BluetoothSettingsRow BluetoothSettingsRow;
Packit Service fc05fa
typedef struct _BluetoothSettingsRowClass BluetoothSettingsRowClass;
Packit Service fc05fa
Packit Service fc05fa
struct _BluetoothSettingsRow {
Packit Service fc05fa
	GtkListBoxRow parent;
Packit Service fc05fa
};
Packit Service fc05fa
Packit Service fc05fa
struct _BluetoothSettingsRowClass {
Packit Service fc05fa
	GtkListBoxRowClass parent_class;
Packit Service fc05fa
};
Packit Service fc05fa
Packit Service fc05fa
GType bluetooth_settings_row_get_type (void);
Packit Service fc05fa
Packit Service fc05fa
GtkWidget *bluetooth_settings_row_new (void);
Packit Service fc05fa
Packit Service fc05fa
G_END_DECLS
Packit Service fc05fa
Packit Service fc05fa
#endif /* __BLUETOOTH_SETTINGS_ROW_H */