3e5020674d0d6d29ce84470d59c63acf5a9e2fe5
[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/ipproto.h>
33 #include <epan/epan_dissect.h>
34 #include <epan/dissectors/packet-ber.h>
35
36 #include "../globals.h"
37 #include "../simple_dialog.h"
38
39 #include "gtk/decode_as_dlg.h"
40 #include "gtk/dlg_utils.h"
41 #include "gtk/gui_utils.h"
42 #include "gtk/decode_as_dcerpc.h"
43 #include "gtk/decode_as_ber.h"
44
45
46 /**************************************************/
47 /* Action routines for the "Decode As..." dialog  */
48 /*   - called when the OK button pressed          */
49 /**************************************************/
50
51 /*
52  * This routine is called when the user clicks the "OK" button in the
53  * "Decode As..." dialog window and the ASN.1 page is foremost.
54  * This routine takes care of making any changes requested to the ASN.1  
55  * decoding.
56  *
57  * @param notebook_pg A pointer to the "ASN.1" notebook page.
58  */
59 static void
60 decode_ber(GtkWidget *notebook_pg)
61 {
62     GtkWidget *list;
63     gchar              *syntax;
64     GtkTreeSelection  *selection;
65     GtkTreeModel      *model;
66     GtkTreeIter        iter;
67
68     syntax = NULL;
69     list = g_object_get_data(G_OBJECT(notebook_pg), E_PAGE_LIST);
70
71     if (requested_action == E_DECODE_NO)
72         gtk_tree_selection_unselect_all(gtk_tree_view_get_selection(GTK_TREE_VIEW(list)));
73
74     selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(list));
75     if (gtk_tree_selection_get_selected(selection, &model, &iter) == FALSE)
76     {
77         syntax = NULL;
78     } else {
79       gtk_tree_model_get(model, &iter, E_LIST_S_PROTO_NAME, &syntax, -1);
80     }
81
82     if ((syntax != NULL && strcmp(syntax, "(default)") == 0) ) {
83       ber_decode_as(NULL);
84     } else {
85       ber_decode_as(syntax);
86     }
87     if (syntax != NULL)
88         g_free(syntax);
89 }
90
91
92 /**************************************************/
93 /*                  Dialog setup                  */
94 /**************************************************/
95
96
97 /* add an interface to the list */
98 static void 
99 decode_ber_add_to_list(gpointer key, gpointer value, gpointer user_data)
100 {
101     decode_add_to_list("ASN.1", key, value, user_data);
102 }
103
104
105 /* add all interfaces to the list */
106 static GtkWidget *
107 decode_add_ber_menu (GtkWidget *page, const gchar *table_name _U_)
108 {
109     GtkWidget *scrolled_window;
110     GtkWidget *list;
111
112     decode_list_menu_start(page, &list, &scrolled_window);
113
114     ber_decode_as_foreach(decode_ber_add_to_list, list);
115     decode_list_menu_finish(list);
116     return(scrolled_window);
117 }
118
119
120 /* add a BER page to the notebook */
121 GtkWidget *
122 decode_ber_add_page (packet_info *pinfo _U_)
123 {
124     GtkWidget   *page_hb, *info_vb, *label, *scrolled_window;
125
126     /* create page content */
127     page_hb = gtk_hbox_new(FALSE, 5);
128     g_object_set_data(G_OBJECT(page_hb), E_PAGE_ACTION, decode_ber);
129     g_object_set_data(G_OBJECT(page_hb), E_PAGE_TABLE, "ASN.1");
130     g_object_set_data(G_OBJECT(page_hb), E_PAGE_TITLE, "ASN.1");
131     
132     info_vb = gtk_vbox_new(FALSE, 5);
133     gtk_box_pack_start(GTK_BOX(page_hb), info_vb, TRUE, TRUE, 0);
134
135     /* Always enabled */
136     label = gtk_label_new("Decode ASN.1 file as:");
137     gtk_box_pack_start(GTK_BOX(info_vb), label, TRUE, TRUE, 0);
138
139     scrolled_window = decode_add_ber_menu(page_hb, "ber" /*table_name*/);
140     gtk_box_pack_start(GTK_BOX(page_hb), scrolled_window, TRUE, TRUE, 0);
141     decode_dimmable = g_slist_prepend(decode_dimmable, scrolled_window);
142
143     return(page_hb);
144 }