/usr/include/gtkextra-3.0/gtkextra/gtkitementry.h is in libgtkextra-dev 3.3.3-1.
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | /* GtkItemEntry - widget for gtk+
* Copyright (C) 1999-2001 Adrian E. Feiguin <adrian@ifir.ifir.edu.ar>
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
*
* GtkItemEntry widget by Adrian E. Feiguin
* Based on GtkEntry widget
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#ifndef __GTK_ITEM_ENTRY_H__
#define __GTK_ITEM_ENTRY_H__
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
#define G_TYPE_ITEM_ENTRY \
(gtk_item_entry_get_type ())
#define GTK_ITEM_ENTRY(obj) \
(G_TYPE_CHECK_INSTANCE_CAST (obj, gtk_item_entry_get_type (), GtkItemEntry))
#define GTK_ITEM_ENTRY_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST (klass, gtk_item_entry_get_type (), GtkItemEntryClass))
#define GTK_IS_ITEM_ENTRY(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE (obj, gtk_item_entry_get_type ()))
#define GTK_IS_ITEM_ENTRY_CLASS(klass) \
(GTK_CHECK_CLASS_TYPE ((klass), gtk_entry_get_type()))
typedef struct _GtkItemEntry GtkItemEntry;
typedef struct _GtkItemEntryClass GtkItemEntryClass;
struct _GtkItemEntry
{
/*< private >*/
GtkEntry parent;
gint text_max_size; /* upper limit for geometric size allocation or 0 */
gint16 item_text_size; /* length of allocated entry->text memory buffer block */
gint16 item_n_bytes; /* string length of entry->text, used part of memory buffer */
/* pseudo-properties */
gint max_length_bytes; /* maximum length in bytes */
GtkJustification justification; /* justification of the entry */
};
struct _GtkItemEntryClass
{
GtkEntryClass parent_class;
};
GType gtk_item_entry_get_type(void);
GtkWidget *gtk_item_entry_new(void);
GtkWidget *gtk_item_entry_new_with_max_length(gint max);
void gtk_item_entry_set_text(GtkItemEntry *entry,
const gchar *text, GtkJustification justification);
gint
gtk_item_entry_get_max_length_bytes(GtkItemEntry *item_entry);
void gtk_item_entry_set_max_length_bytes(GtkItemEntry *item_entry,
gint max_length_bytes);
void gtk_item_entry_set_justification(GtkItemEntry *entry, GtkJustification just);
void gtk_item_entry_set_cursor_visible(GtkItemEntry *entry, gboolean visible);
gboolean gtk_item_entry_get_cursor_visible(GtkItemEntry *entry);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __GTK_ITEM_ENTRY_H__ */
|