Blame gtk/gtktoggleactionprivate.h

Packit Service fb6fa5
/*
Packit Service fb6fa5
 * GTK - The GIMP Toolkit
Packit Service fb6fa5
 * Copyright (C) 1998, 1999 Red Hat, Inc.
Packit Service fb6fa5
 * All rights reserved.
Packit Service fb6fa5
 *
Packit Service fb6fa5
 * This Library is free software; you can redistribute it and/or
Packit Service fb6fa5
 * modify it under the terms of the GNU Library General Public License as
Packit Service fb6fa5
 * published by the Free Software Foundation; either version 2 of the
Packit Service fb6fa5
 * License, or (at your option) any later version.
Packit Service fb6fa5
 *
Packit Service fb6fa5
 * This Library is distributed in the hope that it will be useful,
Packit Service fb6fa5
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service fb6fa5
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service fb6fa5
 * Library General Public License for more details.
Packit Service fb6fa5
 *
Packit Service fb6fa5
 * You should have received a copy of the GNU Library General Public
Packit Service fb6fa5
 * License along with the Gnome Library; see the file COPYING.LIB.  If not,
Packit Service fb6fa5
 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit Service fb6fa5
 * Boston, MA 02111-1307, USA.
Packit Service fb6fa5
 */
Packit Service fb6fa5
Packit Service fb6fa5
/*
Packit Service fb6fa5
 * Author: James Henstridge <james@daa.com.au>
Packit Service fb6fa5
 *
Packit Service fb6fa5
 * Modified by the GTK+ Team and others 2003.  See the AUTHORS
Packit Service fb6fa5
 * file for a list of people on the GTK+ Team.  See the ChangeLog
Packit Service fb6fa5
 * files for a list of changes.  These files are distributed with
Packit Service fb6fa5
 * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
Packit Service fb6fa5
 */
Packit Service fb6fa5
Packit Service fb6fa5
#ifndef __GTK_TOGGLE_ACTION_PRIVATE_H__
Packit Service fb6fa5
#define __GTK_TOGGLE_ACTION_PRIVATE_H__
Packit Service fb6fa5
Packit Service fb6fa5
Packit Service fb6fa5
#define GTK_TOGGLE_ACTION_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_TOGGLE_ACTION, GtkToggleActionPrivate))
Packit Service fb6fa5
Packit Service fb6fa5
struct _GtkToggleActionPrivate 
Packit Service fb6fa5
{
Packit Service fb6fa5
  guint active        : 1;
Packit Service fb6fa5
  guint draw_as_radio : 1;
Packit Service fb6fa5
};
Packit Service fb6fa5
Packit Service fb6fa5
#endif  /* __GTK_TOGGLE_ACTION_PRIVATE_H__ */