|
Packit |
98cdb6 |
/* GAIL - The GNOME Accessibility Enabling Library
|
|
Packit |
98cdb6 |
* Copyright 2001 Sun Microsystems Inc.
|
|
Packit |
98cdb6 |
*
|
|
Packit |
98cdb6 |
* This library is free software; you can redistribute it and/or
|
|
Packit |
98cdb6 |
* modify it under the terms of the GNU Lesser General Public
|
|
Packit |
98cdb6 |
* License as published by the Free Software Foundation; either
|
|
Packit |
98cdb6 |
* version 2 of the License, or (at your option) any later version.
|
|
Packit |
98cdb6 |
*
|
|
Packit |
98cdb6 |
* This library is distributed in the hope that it will be useful,
|
|
Packit |
98cdb6 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Packit |
98cdb6 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Packit |
98cdb6 |
* Lesser General Public License for more details.
|
|
Packit |
98cdb6 |
*
|
|
Packit |
98cdb6 |
* You should have received a copy of the GNU Lesser General Public
|
|
Packit |
98cdb6 |
* License along with this library; if not, write to the
|
|
Packit |
98cdb6 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
Packit |
98cdb6 |
* Boston, MA 02111-1307, USA.
|
|
Packit |
98cdb6 |
*/
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
#include "config.h"
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
#include <gtk/gtk.h>
|
|
Packit |
98cdb6 |
#include "gailseparator.h"
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
static void gail_separator_class_init (GailSeparatorClass *klass);
|
|
Packit |
98cdb6 |
static void gail_separator_init (GailSeparator *accessible);
|
|
Packit |
98cdb6 |
static void gail_separator_initialize (AtkObject *accessible,
|
|
Packit |
98cdb6 |
gpointer data);
|
|
Packit |
98cdb6 |
static AtkStateSet* gail_separator_ref_state_set (AtkObject *accessible);
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
G_DEFINE_TYPE (GailSeparator, gail_separator, GAIL_TYPE_WIDGET)
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
static void
|
|
Packit |
98cdb6 |
gail_separator_class_init (GailSeparatorClass *klass)
|
|
Packit |
98cdb6 |
{
|
|
Packit |
98cdb6 |
AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
class->initialize = gail_separator_initialize;
|
|
Packit |
98cdb6 |
class->ref_state_set = gail_separator_ref_state_set;
|
|
Packit |
98cdb6 |
}
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
static void
|
|
Packit |
98cdb6 |
gail_separator_init (GailSeparator *accessible)
|
|
Packit |
98cdb6 |
{
|
|
Packit |
98cdb6 |
}
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
static void
|
|
Packit |
98cdb6 |
gail_separator_initialize (AtkObject *accessible,
|
|
Packit |
98cdb6 |
gpointer data)
|
|
Packit |
98cdb6 |
{
|
|
Packit |
98cdb6 |
ATK_OBJECT_CLASS (gail_separator_parent_class)->initialize (accessible, data);
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
accessible->role = ATK_ROLE_SEPARATOR;
|
|
Packit |
98cdb6 |
}
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
static AtkStateSet*
|
|
Packit |
98cdb6 |
gail_separator_ref_state_set (AtkObject *accessible)
|
|
Packit |
98cdb6 |
{
|
|
Packit |
98cdb6 |
AtkStateSet *state_set;
|
|
Packit |
98cdb6 |
GtkWidget *widget;
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
state_set = ATK_OBJECT_CLASS (gail_separator_parent_class)->ref_state_set (accessible);
|
|
Packit |
98cdb6 |
widget = GTK_ACCESSIBLE (accessible)->widget;
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
if (widget == NULL)
|
|
Packit |
98cdb6 |
return state_set;
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
if (GTK_IS_VSEPARATOR (widget))
|
|
Packit |
98cdb6 |
atk_state_set_add_state (state_set, ATK_STATE_VERTICAL);
|
|
Packit |
98cdb6 |
else if (GTK_IS_HSEPARATOR (widget))
|
|
Packit |
98cdb6 |
atk_state_set_add_state (state_set, ATK_STATE_HORIZONTAL);
|
|
Packit |
98cdb6 |
|
|
Packit |
98cdb6 |
return state_set;
|
|
Packit |
98cdb6 |
}
|