summaryrefslogtreecommitdiff
path: root/gcr/gcr-column.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcr/gcr-column.c')
-rw-r--r--gcr/gcr-column.c66
1 files changed, 0 insertions, 66 deletions
diff --git a/gcr/gcr-column.c b/gcr/gcr-column.c
deleted file mode 100644
index 254f55ce..00000000
--- a/gcr/gcr-column.c
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * gnome-keyring
- *
- * Copyright (C) 2011 Collabora Ltd.
- *
- * This program 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.1 of
- * the License, or (at your option) any later version.
- *
- * This program 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 program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
- *
- * Author: Stef Walter <stefw@collabora.co.uk>
- */
-
-#include "config.h"
-
-#include "gcr-column.h"
-
-/**
- * SECTION:gcr-column
- * @title: GcrColumn
- * @short_description: Column information for selector or model.
- *
- * A #GcrColumn is used with #GcrTreeSelector or #GcrCollectionModel to define
- * the columns to display.
- */
-
-/**
- * GcrColumnFlags:
- * @GCR_COLUMN_NONE: No column flags
- * @GCR_COLUMN_HIDDEN: Don't display this column.
- * @GCR_COLUMN_SORTABLE: This column is sortable.
- *
- * Flags to be used with #GcrColumn
- */
-
-/**
- * GcrColumn:
- * @property_name: The name of the property this column will display
- * @property_type: The type of the property
- * @column_type: The eventual type of the column
- * @label: The display label for the column
- * @flags: Flags from #GcrColumnFlags
- * @transformer: A transformer function used to convert the value from
- * the property type to the column type. Can be %NULL if the types
- * are the same.
- * @user_data: User data associated with the column
- *
- * Represents a column to display in a #GcrCollectionModel or #GcrTreeSelector.
- *
- * The label should be set as a translatable string with a context of
- * <code>"column"</code>. This should be done with with this macro:
- *
- * <informalexample><programlisting>
- * NC_("column", "My Column Name")
- * </programlisting></informalexample>
- */