/usr/include/gpe/gpeiconlistview.h is in libgpewidget-dev 0.117-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | /*
* Copyright (C) 2003 Philip Blundell <philb@gnu.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version
* 2 of the License, or (at your option) any later version.
*/
#ifndef GPE_ICON_LIST_VIEW_H
#define GPE_ICON_LIST_VIEW_H
#include <gtk/gtk.h>
#include <glib-object.h>
#define GPE_TYPE_ICON_LIST_VIEW (gpe_icon_list_view_get_type ())
#define GPE_ICON_LIST_VIEW(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), gpe_icon_list_view_get_type(), GPEIconListView)
#define GPE_ICON_LIST_VIEW_CONST(obj) G_TYPE_CHECK_INSTANCE_CAST ((obj), gpe_icon_list_view_get_type(), GPEIconListView const)
#define GPE_ICON_LIST_VIEW_CLASS(klass) G_TYPE_CHECK_CLASS_CAST ((klass), gpe_icon_list_view_get_type(), GPEIConListViewClass)
#define GPE_IS_ICON_LIST_VIEW(obj) G_TYPE_CHECK_INSTANCE_TYPE ((obj), gpe_icon_list_view_get_type ())
#define GPE_ICON_LIST_VIEW_GET_CLASS(obj) G_TYPE_INSTANCE_GET_CLASS ((obj), gpe_icon_list_view_get_type(), GPEIconListViewClass)
typedef enum
{
GPE_TEXT_BELOW,
GPE_TEXT_RIGHT
} t_gpe_textpos;
struct _GPEIconListView;
/**
* GPEIconListView:
*
* Object container for the GPEIconListView widget.
*/
typedef struct _GPEIconListView GPEIconListView;
/**
* GPEIconListViewClass:
*
* Object class for the #GPEIconListView widget.
*/
typedef struct _GPEIconListViewClass GPEIconListViewClass;
GType gpe_icon_list_view_get_type (void);
GtkWidget *gpe_icon_list_view_new ();
/* Set the background */
void gpe_icon_list_view_set_bg (GPEIconListView *self, char *bg);
void gpe_icon_list_view_set_bg_pixmap (GPEIconListView *self, GdkPixbuf *bg);
void gpe_icon_list_view_set_bg_color (GPEIconListView *self, guint32 color);
void gpe_icon_list_view_remove_item_with_udata (GPEIconListView *self, gpointer udata);
void gpe_icon_list_view_update_icon_item_with_udata (GPEIconListView *self, GdkPixbuf * pixbuf, gpointer udata);
GObject *gpe_icon_list_view_add_item (GPEIconListView *self, char *title, char *icon, gpointer udata);
GObject *gpe_icon_list_view_add_item_pixbuf (GPEIconListView *self, char *title, GdkPixbuf *icon, gpointer udata);
void gpe_icon_list_view_remove_item (GPEIconListView *self, GObject *item);
void gpe_icon_list_view_set_item_icon (GPEIconListView *self, GObject *item, GdkPixbuf *new_pixbuf);
void gpe_icon_list_view_set_embolden (GPEIconListView *self, gboolean yes);
void gpe_icon_list_view_set_show_title (GPEIconListView *self, gboolean yes);
void gpe_icon_list_view_set_icon_xmargin (GPEIconListView *self, guint margin);
void gpe_icon_list_view_clear (GPEIconListView *self);
void gpe_icon_list_view_set_icon_size (GPEIconListView *self, guint size);
void gpe_icon_list_view_popup_removed (GPEIconListView *self);
void gpe_icon_list_view_set_rows (GPEIconListView *self, guint rows);
void gpe_icon_list_view_set_textpos (GPEIconListView *self, t_gpe_textpos textpos);
void gpe_icon_list_view_set_border_color (GPEIconListView *self, guint32 color);
void gpe_icon_list_view_set_border_width (GPEIconListView *self, int width);
#endif
|