Blame src/dh-window.h

Packit 116408
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
Packit 116408
/*
Packit 116408
 * Copyright (C) 2002 CodeFactory AB
Packit 116408
 * Copyright (C) 2001-2002 Mikael Hallendal <micke@imendio.com>
Packit 116408
 * Copyright (C) 2005 Imendio AB
Packit 116408
 * Copyright (C) 2017-2018 Sébastien Wilmet <swilmet@gnome.org>
Packit 116408
 *
Packit 116408
 * This program is free software; you can redistribute it and/or
Packit 116408
 * modify it under the terms of the GNU General Public License as
Packit 116408
 * published by the Free Software Foundation; either version 2 of the
Packit 116408
 * License, or (at your option) any later version.
Packit 116408
 *
Packit 116408
 * This program is distributed in the hope that it will be useful,
Packit 116408
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 116408
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 116408
 * General Public License for more details.
Packit 116408
 *
Packit 116408
 * You should have received a copy of the GNU General Public License
Packit 116408
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit 116408
 */
Packit 116408
Packit 116408
#ifndef DH_WINDOW_H
Packit 116408
#define DH_WINDOW_H
Packit 116408
Packit 116408
#include <gtk/gtk.h>
Packit 116408
Packit 116408
G_BEGIN_DECLS
Packit 116408
Packit 116408
#define DH_TYPE_WINDOW         (dh_window_get_type ())
Packit 116408
#define DH_WINDOW(o)           (G_TYPE_CHECK_INSTANCE_CAST ((o), DH_TYPE_WINDOW, DhWindow))
Packit 116408
#define DH_WINDOW_CLASS(k)     (G_TYPE_CHECK_CLASS_CAST ((k), DH_TYPE_WINDOW, DhWindowClass))
Packit 116408
#define DH_IS_WINDOW(o)        (G_TYPE_CHECK_INSTANCE_TYPE ((o), DH_TYPE_WINDOW))
Packit 116408
#define DH_IS_WINDOW_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), DH_TYPE_WINDOW))
Packit 116408
#define DH_WINDOW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), DH_TYPE_WINDOW, DhWindowClass))
Packit 116408
Packit 116408
typedef struct _DhWindow       DhWindow;
Packit 116408
typedef struct _DhWindowClass  DhWindowClass;
Packit 116408
Packit 116408
struct _DhWindow {
Packit 116408
        GtkApplicationWindow parent_instance;
Packit 116408
};
Packit 116408
Packit 116408
struct _DhWindowClass {
Packit 116408
        GtkApplicationWindowClass parent_class;
Packit 116408
};
Packit 116408
Packit 116408
GType           dh_window_get_type              (void) G_GNUC_CONST;
Packit 116408
Packit 116408
GtkWidget *     dh_window_new                   (GtkApplication *application);
Packit 116408
Packit 116408
void            dh_window_search                (DhWindow    *window,
Packit 116408
                                                 const gchar *str);
Packit 116408
Packit 116408
void            _dh_window_display_uri          (DhWindow    *window,
Packit 116408
                                                 const gchar *uri);
Packit 116408
Packit 116408
G_END_DECLS
Packit 116408
Packit 116408
#endif /* DH_WINDOW_H */