Blame src/prefs/dzl-preferences-page-private.h

Packit Service c6b782
/* dzl-preferences-page-private.h
Packit Service c6b782
 *
Packit Service c6b782
 * Copyright (C) 2015-2017 Christian Hergert <christian@hergert.me>
Packit Service c6b782
 *
Packit Service c6b782
 * This program is free software: you can redistribute it and/or modify
Packit Service c6b782
 * it under the terms of the GNU General Public License as published by
Packit Service c6b782
 * the Free Software Foundation, either version 3 of the License, or
Packit Service c6b782
 * (at your option) any later version.
Packit Service c6b782
 *
Packit Service c6b782
 * This program is distributed in the hope that it will be useful,
Packit Service c6b782
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service c6b782
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit Service c6b782
 * GNU General Public License for more details.
Packit Service c6b782
 *
Packit Service c6b782
 * You should have received a copy of the GNU General Public License
Packit Service c6b782
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
Packit Service c6b782
 */
Packit Service c6b782
Packit Service c6b782
#ifndef DZL_PREFERENCES_PAGE_PRIVATE_H
Packit Service c6b782
#define DZL_PREFERENCES_PAGE_PRIVATE_H
Packit Service c6b782
Packit Service c6b782
#include "prefs/dzl-preferences-page.h"
Packit Service c6b782
#include "prefs/dzl-preferences-flow-box.h"
Packit Service c6b782
Packit Service c6b782
G_BEGIN_DECLS
Packit Service c6b782
Packit Service c6b782
struct _DzlPreferencesPage
Packit Service c6b782
{
Packit Service c6b782
  GtkBin                 parent_instance;
Packit Service c6b782
  gint                   priority;
Packit Service c6b782
  DzlPreferencesFlowBox *box;
Packit Service c6b782
  GHashTable            *groups_by_name;
Packit Service c6b782
};
Packit Service c6b782
Packit Service c6b782
G_END_DECLS
Packit Service c6b782
Packit Service c6b782
#endif /* DZL_PREFERENCES_PAGE_PRIVATE_H */