forked from AuroraMiddleware/gtk
333 lines
8.9 KiB
C
333 lines
8.9 KiB
C
/*
|
|
* Copyright (C) 2011 Red Hat, Inc.
|
|
* Author: Matthias Clasen
|
|
*
|
|
* This library 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 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <gdk/gdkkeysyms.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
|
|
/* tests related to handling of the cell-area property in
|
|
* GtkCellLayout implementations
|
|
*/
|
|
|
|
/* test that we have a cell area after new() */
|
|
static void
|
|
test_iconview_new (void)
|
|
{
|
|
GtkWidget *view;
|
|
GtkCellArea *area;
|
|
|
|
view = gtk_icon_view_new ();
|
|
|
|
area = gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view));
|
|
g_assert (GTK_IS_CELL_AREA_BOX (area));
|
|
g_assert (gtk_orientable_get_orientation (GTK_ORIENTABLE (area)) == gtk_icon_view_get_item_orientation (GTK_ICON_VIEW (view)));
|
|
|
|
g_object_ref_sink (view);
|
|
g_object_unref (view);
|
|
}
|
|
|
|
/* test that new_with_area() keeps the provided area */
|
|
static void
|
|
test_iconview_new_with_area (void)
|
|
{
|
|
GtkWidget *view;
|
|
GtkCellArea *area;
|
|
|
|
area = gtk_cell_area_box_new ();
|
|
view = gtk_icon_view_new_with_area (area);
|
|
g_assert (gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view)) == area);
|
|
|
|
g_object_ref_sink (view);
|
|
g_object_unref (view);
|
|
}
|
|
|
|
/* test that g_object_new keeps the provided area */
|
|
static void
|
|
test_iconview_object_new (void)
|
|
{
|
|
GtkWidget *view;
|
|
GtkCellArea *area;
|
|
|
|
area = gtk_cell_area_box_new ();
|
|
gtk_orientable_set_orientation (GTK_ORIENTABLE (area), GTK_ORIENTATION_HORIZONTAL);
|
|
view = g_object_new (GTK_TYPE_ICON_VIEW, "cell-area", area, NULL);
|
|
g_assert (gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view)) == area);
|
|
g_assert (gtk_orientable_get_orientation (GTK_ORIENTABLE (area)) == gtk_icon_view_get_item_orientation (GTK_ICON_VIEW (view)));
|
|
|
|
g_object_ref_sink (view);
|
|
g_object_unref (view);
|
|
}
|
|
|
|
/* test that we have a cell area after new() */
|
|
static void
|
|
test_combobox_new (void)
|
|
{
|
|
GtkWidget *view;
|
|
GtkCellArea *area;
|
|
|
|
view = gtk_combo_box_new ();
|
|
|
|
area = gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view));
|
|
g_assert (GTK_IS_CELL_AREA_BOX (area));
|
|
|
|
g_object_ref_sink (view);
|
|
g_object_unref (view);
|
|
}
|
|
|
|
static int subclass_init;
|
|
|
|
typedef GtkComboBox MyComboBox;
|
|
typedef GtkComboBoxClass MyComboBoxClass;
|
|
|
|
GType my_combo_box_get_type (void);
|
|
|
|
G_DEFINE_TYPE (MyComboBox, my_combo_box, GTK_TYPE_COMBO_BOX)
|
|
|
|
static void
|
|
my_combo_box_class_init (MyComboBoxClass *klass)
|
|
{
|
|
}
|
|
|
|
static void
|
|
my_combo_box_init (MyComboBox *view)
|
|
{
|
|
GtkCellArea *area;
|
|
|
|
if (subclass_init == 0)
|
|
{
|
|
/* do nothing to area */
|
|
}
|
|
else if (subclass_init == 1)
|
|
{
|
|
area = gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view));
|
|
g_assert (GTK_IS_CELL_AREA_BOX (area));
|
|
g_assert (gtk_orientable_get_orientation (GTK_ORIENTABLE (area)) == GTK_ORIENTATION_HORIZONTAL);
|
|
gtk_orientable_set_orientation (GTK_ORIENTABLE (area), GTK_ORIENTATION_VERTICAL);
|
|
}
|
|
}
|
|
|
|
/* test that a combobox subclass has an area */
|
|
static void
|
|
test_combobox_subclass0 (void)
|
|
{
|
|
GtkWidget *view;
|
|
GtkCellArea *area;
|
|
|
|
subclass_init = 0;
|
|
|
|
view = g_object_new (my_combo_box_get_type (), NULL);
|
|
area = gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view));
|
|
g_assert (GTK_IS_CELL_AREA_BOX (area));
|
|
g_assert (gtk_orientable_get_orientation (GTK_ORIENTABLE (area)) == GTK_ORIENTATION_HORIZONTAL);
|
|
|
|
g_object_ref_sink (view);
|
|
g_object_unref (view);
|
|
}
|
|
|
|
/* test we can access the area in subclass init */
|
|
static void
|
|
test_combobox_subclass2 (void)
|
|
{
|
|
GtkWidget *view;
|
|
GtkCellArea *area;
|
|
|
|
subclass_init = 1;
|
|
|
|
view = g_object_new (my_combo_box_get_type (), NULL);
|
|
area = gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view));
|
|
g_assert (GTK_IS_CELL_AREA_BOX (area));
|
|
g_assert (gtk_orientable_get_orientation (GTK_ORIENTABLE (area)) == GTK_ORIENTATION_VERTICAL);
|
|
|
|
g_object_ref_sink (view);
|
|
g_object_unref (view);
|
|
}
|
|
|
|
/* test that we have a cell area after new() */
|
|
static void
|
|
test_cellview_new (void)
|
|
{
|
|
GtkWidget *view;
|
|
GtkCellArea *area;
|
|
|
|
view = gtk_cell_view_new ();
|
|
|
|
area = gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view));
|
|
g_assert (GTK_IS_CELL_AREA_BOX (area));
|
|
|
|
g_object_ref_sink (view);
|
|
g_object_unref (view);
|
|
}
|
|
|
|
/* test that new_with_context() keeps the provided area */
|
|
static void
|
|
test_cellview_new_with_context (void)
|
|
{
|
|
GtkWidget *view;
|
|
GtkCellArea *area;
|
|
GtkCellAreaContext *context;
|
|
|
|
area = gtk_cell_area_box_new ();
|
|
context = gtk_cell_area_create_context (area);
|
|
view = gtk_cell_view_new_with_context (area, context);
|
|
g_assert (gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view)) == area);
|
|
|
|
g_object_ref_sink (view);
|
|
g_object_unref (view);
|
|
}
|
|
|
|
/* test that g_object_new keeps the provided area */
|
|
static void
|
|
test_cellview_object_new (void)
|
|
{
|
|
GtkWidget *view;
|
|
GtkCellArea *area;
|
|
|
|
area = gtk_cell_area_box_new ();
|
|
gtk_orientable_set_orientation (GTK_ORIENTABLE (area), GTK_ORIENTATION_HORIZONTAL);
|
|
view = g_object_new (GTK_TYPE_CELL_VIEW, "cell-area", area, NULL);
|
|
g_assert (gtk_cell_layout_get_area (GTK_CELL_LAYOUT (view)) == area);
|
|
|
|
g_object_ref_sink (view);
|
|
g_object_unref (view);
|
|
}
|
|
|
|
/* test that we have a cell area after new() */
|
|
static void
|
|
test_column_new (void)
|
|
{
|
|
GtkTreeViewColumn *col;
|
|
GtkCellArea *area;
|
|
|
|
col = gtk_tree_view_column_new ();
|
|
|
|
area = gtk_cell_layout_get_area (GTK_CELL_LAYOUT (col));
|
|
g_assert (GTK_IS_CELL_AREA_BOX (area));
|
|
|
|
g_object_ref_sink (col);
|
|
g_object_unref (col);
|
|
}
|
|
|
|
/* test that new_with_area() keeps the provided area */
|
|
static void
|
|
test_column_new_with_area (void)
|
|
{
|
|
GtkTreeViewColumn *col;
|
|
GtkCellArea *area;
|
|
|
|
area = gtk_cell_area_box_new ();
|
|
col = gtk_tree_view_column_new_with_area (area);
|
|
g_assert (gtk_cell_layout_get_area (GTK_CELL_LAYOUT (col)) == area);
|
|
|
|
g_object_ref_sink (col);
|
|
g_object_unref (col);
|
|
}
|
|
|
|
/* test that g_object_new keeps the provided area */
|
|
static void
|
|
test_column_object_new (void)
|
|
{
|
|
GtkTreeViewColumn *col;
|
|
GtkCellArea *area;
|
|
|
|
area = gtk_cell_area_box_new ();
|
|
gtk_orientable_set_orientation (GTK_ORIENTABLE (area), GTK_ORIENTATION_HORIZONTAL);
|
|
col = g_object_new (GTK_TYPE_TREE_VIEW_COLUMN, "cell-area", area, NULL);
|
|
g_assert (gtk_cell_layout_get_area (GTK_CELL_LAYOUT (col)) == area);
|
|
|
|
g_object_ref_sink (col);
|
|
g_object_unref (col);
|
|
}
|
|
|
|
/* test that we have a cell area after new() */
|
|
static void
|
|
test_completion_new (void)
|
|
{
|
|
GtkEntryCompletion *c;
|
|
GtkCellArea *area;
|
|
|
|
c = gtk_entry_completion_new ();
|
|
|
|
area = gtk_cell_layout_get_area (GTK_CELL_LAYOUT (c));
|
|
g_assert (GTK_IS_CELL_AREA_BOX (area));
|
|
|
|
g_object_ref_sink (c);
|
|
g_object_unref (c);
|
|
}
|
|
|
|
/* test that new_with_area() keeps the provided area */
|
|
static void
|
|
test_completion_new_with_area (void)
|
|
{
|
|
GtkEntryCompletion *c;
|
|
GtkCellArea *area;
|
|
|
|
area = gtk_cell_area_box_new ();
|
|
c = gtk_entry_completion_new_with_area (area);
|
|
g_assert (gtk_cell_layout_get_area (GTK_CELL_LAYOUT (c)) == area);
|
|
|
|
g_object_ref_sink (c);
|
|
g_object_unref (c);
|
|
}
|
|
|
|
/* test that g_object_new keeps the provided area */
|
|
static void
|
|
test_completion_object_new (void)
|
|
{
|
|
GtkEntryCompletion *c;
|
|
GtkCellArea *area;
|
|
|
|
area = gtk_cell_area_box_new ();
|
|
gtk_orientable_set_orientation (GTK_ORIENTABLE (area), GTK_ORIENTATION_HORIZONTAL);
|
|
c = g_object_new (GTK_TYPE_ENTRY_COMPLETION, "cell-area", area, NULL);
|
|
g_assert (gtk_cell_layout_get_area (GTK_CELL_LAYOUT (c)) == area);
|
|
|
|
g_object_ref_sink (c);
|
|
g_object_unref (c);
|
|
}
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
gtk_test_init (&argc, &argv);
|
|
gtk_test_register_all_types();
|
|
|
|
g_test_add_func ("/tests/iconview-new", test_iconview_new);
|
|
g_test_add_func ("/tests/iconview-new-with-area", test_iconview_new_with_area);
|
|
g_test_add_func ("/tests/iconview-object-new", test_iconview_object_new);
|
|
|
|
g_test_add_func ("/tests/combobox-new", test_combobox_new);
|
|
g_test_add_func ("/tests/combobox-subclass0", test_combobox_subclass0);
|
|
g_test_add_func ("/tests/combobox-subclass2", test_combobox_subclass2);
|
|
|
|
g_test_add_func ("/tests/cellview-new", test_cellview_new);
|
|
g_test_add_func ("/tests/cellview-new-with-context", test_cellview_new_with_context);
|
|
g_test_add_func ("/tests/cellview-object-new", test_cellview_object_new);
|
|
|
|
g_test_add_func ("/tests/column-new", test_column_new);
|
|
g_test_add_func ("/tests/column-new-with-area", test_column_new_with_area);
|
|
g_test_add_func ("/tests/column-object-new", test_column_object_new);
|
|
|
|
g_test_add_func ("/tests/completion-new", test_completion_new);
|
|
g_test_add_func ("/tests/completion-new-with-area", test_completion_new_with_area);
|
|
g_test_add_func ("/tests/completion-object-new", test_completion_object_new);
|
|
|
|
return g_test_run();
|
|
}
|