Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
60 lines
2.0 KiB
C
60 lines
2.0 KiB
C
/* -*- Mode: C; indent-tabs-mode: nil; c-basic-offset: 2; tab-width: 2 -*- */
|
|
/*
|
|
* nimf-wayland-ic.h
|
|
* This file is part of Nimf.
|
|
*
|
|
* Copyright (C) 2017-2019 Hodong Kim <cogniti@gmail.com>
|
|
*
|
|
* Nimf is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Nimf 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 Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __NIMF_WAYLAND_IC_H__
|
|
#define __NIMF_WAYLAND_IC_H__
|
|
|
|
#include "nimf.h"
|
|
#include "nimf-wayland.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define NIMF_TYPE_WAYLAND_IC (nimf_wayland_ic_get_type ())
|
|
#define NIMF_WAYLAND_IC(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NIMF_TYPE_WAYLAND_IC, NimfWaylandIC))
|
|
#define NIMF_WAYLAND_IC_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), NIMF_TYPE_WAYLAND_IC, NimfWaylandICClass))
|
|
#define NIMF_IS_WAYLAND_IC(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NIMF_TYPE_WAYLAND_IC))
|
|
#define NIMF_IS_WAYLAND_IC_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), NIMF_TYPE_WAYLAND_IC))
|
|
#define NIMF_WAYLAND_IC_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NIMF_TYPE_WAYLAND_IC, NimfWaylandICClass))
|
|
|
|
typedef struct _NimfWayland NimfWayland;
|
|
|
|
typedef struct _NimfWaylandIC NimfWaylandIC;
|
|
typedef struct _NimfWaylandICClass NimfWaylandICClass;
|
|
|
|
struct _NimfWaylandICClass
|
|
{
|
|
NimfServiceICClass parent_class;
|
|
};
|
|
|
|
struct _NimfWaylandIC
|
|
{
|
|
NimfServiceIC parent_instance;
|
|
NimfWayland *wayland;
|
|
};
|
|
|
|
GType nimf_wayland_ic_get_type (void) G_GNUC_CONST;
|
|
NimfWaylandIC *nimf_wayland_ic_new (NimfWayland *wayland);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __NIMF_WAYLAND_IC_H__ */
|
|
|