From Alexis La Goutte via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5713 :
[obnox/wireshark/wip.git] / ui_util.h
index a16ddffb799d6cfc91a61a6cb0236c6fa6577638..ef85561643b5653fee8cf8e94b4bbe3673e04196 100644 (file)
--- a/ui_util.h
+++ b/ui_util.h
 #ifndef __UI_UTIL_H__
 #define __UI_UTIL_H__
 
+#ifdef NEW_PACKET_LIST
+#include "epan/packet_info.h"
+#else
+#include "color.h"
+#endif
+
 #ifdef __cplusplus
 extern "C" {
 #endif /* __cplusplus */
@@ -37,7 +43,7 @@ extern "C" {
 void set_main_window_name(const gchar *);
 /* Update the name of the main window if the user-specified decoration
    changed. */
-void update_main_window_name(void);
+void update_main_window_title(void);
 /* update the main window */
 extern void main_window_update(void);
 /* exit the main window */
@@ -55,19 +61,30 @@ extern void pipe_input_set_handler(gint source, gpointer user_data, int *child_p
 /* packet_list.c */
 
 #ifdef NEW_PACKET_LIST
+void new_packet_list_clear(void);
 void new_packet_list_freeze(void);
+void new_packet_list_recreate_visible_rows(void);
 void new_packet_list_thaw(void);
 void new_packet_list_next(void);
 void new_packet_list_prev(void);
-guint new_packet_list_append(column_info *cinfo, frame_data *fdata);
+guint new_packet_list_append(column_info *cinfo, frame_data *fdata, packet_info *pinfo);
 frame_data * new_packet_list_get_row_data(gint row);
+void new_packet_list_set_selected_row(gint row);
 void new_packet_list_enable_color(gboolean enable);
+void new_packet_list_queue_draw(void);
+void new_packet_list_select_first_row(void);
+void new_packet_list_select_last_row(void);
+void new_packet_list_moveto_end(void);
+gboolean new_packet_list_check_end(void);
 gint new_packet_list_find_row_from_data(gpointer data, gboolean select);
+void new_packet_list_resize_column(gint col);
 #else
 /* packet list related functions */
 void packet_list_clear(void);
 void packet_list_freeze(void);
 void packet_list_thaw(void);
+void packet_list_next(void);
+void packet_list_prev(void);
 void packet_list_select_row(gint);
 void packet_list_moveto_end(void);
 gint packet_list_append(const gchar *text[], gpointer data);