aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/packet_list_store.h
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-07-25 17:59:56 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-07-25 17:59:56 +0000
commitfce74c732bcdce8a773fc488d1be4e9278e078b1 (patch)
treec2d283a2a8b94ffe6d44b598c7e9535668b1c770 /ui/gtk/packet_list_store.h
parent85e9ca3940da85fccaba810bc379be3ec3ef81a7 (diff)
Make PacketListRecord structure private.
svn path=/trunk/; revision=44004
Diffstat (limited to 'ui/gtk/packet_list_store.h')
-rw-r--r--ui/gtk/packet_list_store.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/ui/gtk/packet_list_store.h b/ui/gtk/packet_list_store.h
index 6d01f7f144..3612769d2a 100644
--- a/ui/gtk/packet_list_store.h
+++ b/ui/gtk/packet_list_store.h
@@ -45,7 +45,6 @@ extern GType packet_list_get_type(void);
#define PACKETLIST_IS_LIST_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE(klass), PACKETLIST_TYPE_LIST)
#define PACKETLIST_LIST_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PACKETLIST_TYPE_LIST, PacketListClass))
-typedef struct _PacketListRecord PacketListRecord;
typedef struct _PacketList PacketList;
typedef struct _PacketListClass PacketListClass;
@@ -55,28 +54,6 @@ typedef struct _PacketListClass PacketListClass;
#define PACKET_LIST_RECORD_COUNT(rows) ((rows) ? (rows)->len : 0)
#define PACKET_LIST_RECORD_INDEX_VALID(rows, idx) ((rows) ? (((guint) (idx)) < (rows)->len) : FALSE)
-/** PacketListRecord: represents a row */
-struct _PacketListRecord
-{
- /** The column text for some columns */
- gchar **col_text;
- /**< The length of the column text strings in 'col_text' */
- gushort *col_text_len;
-
- frame_data *fdata;
-
- /** Has this record been columnized? */
- gboolean columnized;
- /** Has this record been colorized? */
- gboolean colorized;
-
- /* admin stuff used by the custom list model */
- /** position within the physical array */
- guint physical_pos;
- /** position within the visible array */
- gint visible_pos;
-};
-
/** PacketList: Everything for our model implementation. */
struct _PacketList
{
@@ -122,7 +99,6 @@ guint packet_list_recreate_visible_rows(PacketList *packet_list);
gboolean packet_list_visible_record(PacketList *packet_list, GtkTreeIter *iter);
gint packet_list_append_record(PacketList *packet_list, frame_data *fdata);
void packet_list_change_record(PacketList *packet_list, guint row, gint col, column_info *cinfo);
-void packet_list_dissect_and_cache_iter(PacketList *packet_list, GtkTreeIter *iter, gboolean dissect_columns, gboolean dissect_color);
gboolean packet_list_do_packet_list_dissect_and_cache_all(PacketList *packet_list, gint sort_col_id);
void packet_list_reset_colorized(PacketList *packet_list);
const char* packet_list_get_widest_column_string(PacketList *packet_list, gint col);