Add #ifndef __PRIVILEGES_H__ / #define / #endif logic to prevent multiple
[obnox/wireshark/wip.git] / ui_util.h
index 378481402a85fd6395545327dc09cea455094ea0..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,16 +61,23 @@ 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);