aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/filter_autocomplete.h
diff options
context:
space:
mode:
authorRoland Knall <rknall@gmail.com>2018-04-14 08:15:01 +0200
committerRoland Knall <rknall@gmail.com>2018-04-15 05:45:32 +0000
commit9c5049a80b635d5d12829a4c51db9696dadaee00 (patch)
treebc96aadd93f726d01c65277bd3f8e91d7b382fc7 /ui/gtk/filter_autocomplete.h
parentf5330163396c85e080ffff1348df8e12c78f2411 (diff)
Gtk: Remove source code
Removing all gtk source code, except for main.? which will remain for the official removal during SFUS18 Change-Id: I4273baf207df1eaaa4b94623cfd10bf74b1fc4a4 Reviewed-on: https://code.wireshark.org/review/26937 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
Diffstat (limited to 'ui/gtk/filter_autocomplete.h')
-rw-r--r--ui/gtk/filter_autocomplete.h53
1 files changed, 0 insertions, 53 deletions
diff --git a/ui/gtk/filter_autocomplete.h b/ui/gtk/filter_autocomplete.h
deleted file mode 100644
index 6538959d5f..0000000000
--- a/ui/gtk/filter_autocomplete.h
+++ /dev/null
@@ -1,53 +0,0 @@
-/* filter_autocomplete.h
- * Definitions for filter autocomplete
- *
- * Copyright 2008, Bahaa Naamneh <b.naamneh@gmail.com>
- *
- * Wireshark - Network traffic analyzer
- * By Gerald Combs <gerald@wireshark.org>
- * Copyright 1998 Gerald Combs
- *
- * 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.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
- */
-
-#ifndef _FILTER_AUTO_COMPLETE_H_
-#define _FILTER_AUTO_COMPLETE_H_
-
-
-#define E_FILT_AUTOCOMP_PTR_KEY "filter_autocomplete_window"
-
-/** @file
- * "Filter Auto Complete" dialog box.
- * @ingroup dialog_group
- */
-
-/** Callback function that is called when a "key-press-event" signal occur.
- *
- * @param filter_te text-editing filter widget
- * @param event a GdkEventButton *event
- * @param user_data pointer to user_data (unused)
- */
-extern gboolean filter_string_te_key_pressed_cb(GtkWidget *filter_te, GdkEventKey *event, gpointer user_data _U_);
-
-/** Callback function that is called when a "key-press-event" signal occur.
- *
- * @param win parent window of the text-editing filter widget
- * @param event a GdkEventButton *event
- * @param user_data pointer to user_data (unused)
- */
-extern gboolean filter_parent_dlg_key_pressed_cb(GtkWidget *win, GdkEventKey *event, gpointer user_data _U_);
-
-
-#endif