Fix build by #if 0 out unused de_sgsap_tmsi() function.
[obnox/wireshark/wip.git] / gtk / decode_as_ber.c
1 /* decode_as_ber.c
2  *
3  * $Id$
4  *
5  * Routines to modify BER decoding on the fly.
6  *
7  * Copyright 2006 Graeme Lunt
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27 #include <string.h>
28
29 #include <gtk/gtk.h>
30
31 #include <epan/packet.h>
32 #include <epan/epan_dissect.h>
33 #include <epan/dissectors/packet-ber.h>
34
35 #include "../simple_dialog.h"
36
37 #include "gtk/decode_as_dlg.h"
38 #include "gtk/dlg_utils.h"
39 #include "gtk/gui_utils.h"
40 #include "gtk/decode_as_dcerpc.h"
41 #include "gtk/decode_as_ber.h"
42
43
44 /**************************************************/
45 /* Action routines for the "Decode As..." dialog  */
46 /*   - called when the OK button pressed          */
47 /**************************************************/
48
49 /*
50  * This routine is called when the user clicks the "OK" button in the
51  * "Decode As..." dialog window and the ASN.1 page is foremost.
52  * This routine takes care of making any changes requested to the ASN.1
53  * decoding.
54  *
55  * @param notebook_pg A pointer to the "ASN.1" notebook page.
56  */
57 static void
58 decode_ber(GtkWidget *notebook_pg)
59 {
60     GtkWidget *list;
61     gchar              *syntax;
62     GtkTreeSelection  *selection;
63     GtkTreeModel      *model;
64     GtkTreeIter        iter;
65
66     syntax = NULL;
67     list = g_object_get_data(G_OBJECT(notebook_pg), E_PAGE_LIST);
68
69     if (requested_action == E_DECODE_NO)
70         gtk_tree_selection_unselect_all(gtk_tree_view_get_selection(GTK_TREE_VIEW(list)));
71
72     selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(list));
73     if (gtk_tree_selection_get_selected(selection, &model, &iter) == FALSE)
74     {
75         syntax = NULL;
76     } else {
77       gtk_tree_model_get(model, &iter, E_LIST_S_PROTO_NAME, &syntax, -1);
78     }
79
80     if ((syntax != NULL && strcmp(syntax, "(default)") == 0) ) {
81       ber_decode_as(NULL);
82     } else {
83       ber_decode_as(syntax);
84     }
85     g_free(syntax);
86 }
87
88
89 /**************************************************/
90 /*                  Dialog setup                  */
91 /**************************************************/
92
93
94 /* add an interface to the list */
95 static void
96 decode_ber_add_to_list(gpointer key, gpointer value, gpointer user_data)
97 {
98     decode_add_to_list("ASN.1", key, value, user_data);
99 }
100
101
102 /* add all interfaces to the list */
103 static GtkWidget *
104 decode_add_ber_menu (GtkWidget *page, const gchar *table_name _U_)
105 {
106     GtkWidget *scrolled_window;
107     GtkWidget *list;
108
109     decode_list_menu_start(page, &list, &scrolled_window);
110
111     ber_decode_as_foreach(decode_ber_add_to_list, list);
112     decode_list_menu_finish(list);
113     return(scrolled_window);
114 }
115
116
117 /* add a BER page to the notebook */
118 GtkWidget *
119 decode_ber_add_page (packet_info *pinfo _U_)
120 {
121     GtkWidget   *page_hb, *info_vb, *label, *scrolled_window;
122
123     /* create page content */
124     page_hb = gtk_hbox_new(FALSE, 5);
125     g_object_set_data(G_OBJECT(page_hb), E_PAGE_ACTION, decode_ber);
126     g_object_set_data(G_OBJECT(page_hb), E_PAGE_TABLE, "ASN.1");
127     g_object_set_data(G_OBJECT(page_hb), E_PAGE_TITLE, "ASN.1");
128
129     info_vb = gtk_vbox_new(FALSE, 5);
130     gtk_box_pack_start(GTK_BOX(page_hb), info_vb, TRUE, TRUE, 0);
131
132     /* Always enabled */
133     label = gtk_label_new("Decode ASN.1 file as:");
134     gtk_box_pack_start(GTK_BOX(info_vb), label, TRUE, TRUE, 0);
135
136     scrolled_window = decode_add_ber_menu(page_hb, "ber" /*table_name*/);
137     gtk_box_pack_start(GTK_BOX(page_hb), scrolled_window, TRUE, TRUE, 0);
138     decode_dimmable = g_slist_prepend(decode_dimmable, scrolled_window);
139
140     return(page_hb);
141 }