summaryrefslogtreecommitdiff
path: root/ui/gtk/profile_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2015-01-10Finish off emem_strbuf_t usage.Michael Mann1-2/+8
Change-Id: Ib0b911c86a7f8a7cca022e9e324c910664ce397e Reviewed-on: https://code.wireshark.org/review/6461 Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-03-11Migrate GTK icon handling to GTK 3.10 APIBalint Reczey1-3/+4
GtkStockItem usage is deprecated with all the GTK_STOCK_.* stock ids. We keep a stock id based approach but without relying on GTK's GtkStockItem system. We create our own internal stock ids for {icon, label} tuples and keep the original GTK stock id #define-s and values to preserve backward compatibility. Change-Id: Ia0b35a5903f079e92c8026e3df21bbf0be2d06b0 Reviewed-on: https://code.wireshark.org/review/302 Reviewed-by: Gerald Combs <gerald@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-11-17Move the epan/filesystem.c routines to wsutil; they're not specific toGuy Harris1-1/+1
packet dissection, they're specific to the entire Wireshark suite of programs. svn path=/trunk/; revision=53377
2013-07-09Avoid having double "Default" entry in "Create New Profile".Stig Bjørlykke1-2/+0
#BACKPORT 1.10 svn path=/trunk/; revision=50471
2013-06-07Ensure we only put private profiles directly in the profiles menu and Stig Bjørlykke1-2/+2
put global profiles in the "New from Global" menu. svn path=/trunk/; revision=49830
2013-05-17From Cal Turney via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8690 :Jeff Morriss1-16/+16
Change "Edit" to "Rename" and add icons to "Manage Profiles..." and "Switch to...". Update the associated widget, routine, and variable names in order to facilitate future maintenance. svn path=/trunk/; revision=49361
2013-05-16Only add one "New from Global" entry in the profiles menu.Stig Bjørlykke1-11/+11
(someone removed this when rewriting the code) svn path=/trunk/; revision=49333
2013-03-21From beroset:Bill Meier1-16/+16
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 attachment #10404 Note: The following parts of the patch had been previously done: asn1/snmp/packet-snmp-template.c epan/dissectors/packet-snmp.c epan/dissectors/packet-x11.c Also; hostlist_table.c: code under '#ifdef HAVE_GEOIP' didn't compile and needed a few additional patches. svn path=/trunk/; revision=48447
2013-01-11Replace gtk_table...() with ws_gtk_grid...().Bill Meier1-217/+222
Also: do general whitespace, long-lines and formatting style cleanup. svn path=/trunk/; revision=47025
2013-01-06Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-12/+8
svn path=/trunk/; revision=46970
2012-12-30Move profile deletion code from profile_dlg.c to profile.c. Add leftGerald Combs1-13/+2
mouse and context (right mouse) signals to label stacks and use them to pop up profile menus in the status bar. Add profile actions (manage, new, edit, delete) to the profile dialog. svn path=/trunk/; revision=46863
2012-12-29Remove some duplicate code from ui/profile.c and move in more code fromGerald Combs1-124/+6
ui/gtk/profile_dialog.c. Use the correct profile list in profile_dialog.c so that deletion works. Add a profile dialog to the Qt port. For some reason it crashes when changing configuration profiles, which might be related to bug 7722. Move the Qt configuration profile initialization from main.cpp to wireshark_application.cpp. Make sure QMenuBar doesn't grab the configuration profiles action on OS X. Add more role color names to tango_colors.h. svn path=/trunk/; revision=46834
2012-12-27Remove an unused variable.Gerald Combs1-2/+1
svn path=/trunk/; revision=46811
2012-12-27Make sure our loops terminate.Gerald Combs1-1/+5
svn path=/trunk/; revision=46810
2012-12-27Move common profile code to ui/profile.[ch].Gerald Combs1-335/+87
svn path=/trunk/; revision=46808
2012-12-22Remove unneeded initializations, and one redundant if condition.Evan Huus1-1/+1
svn path=/trunk/; revision=46702
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
svn path=/trunk/; revision=45016
2012-07-20gtk_container_add() -> gtk_box_pack_start() [bug #7377]Jakub Zawadzki1-3/+3
svn path=/trunk/; revision=43874
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-04-21More GTK3 adaptationsAnders Broman1-1/+1
svn path=/trunk/; revision=42187
2012-04-21Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().Anders Broman1-6/+6
svn path=/trunk/; revision=42178
2012-01-18Restructure the recent file code so that recent.c is GUI-independent;Guy Harris1-1/+3
move it to the top-level source directory for now, and move ui/gtk/recent.h to the ui directory. svn path=/trunk/; revision=40561
2012-01-16Move some headers for UI stuff, and the alert_box.c UI-specific file, toGuy Harris1-1/+1
the ui directory. (Perhaps some other files that would be used by all flavors of Wireshark, for any GUI toolkit or for someting such as ncurses, and not for any command-line tool such as TShark, should be moved there as well.) Shuffle some #includes to put the "ui/XXX.h" includes together. svn path=/trunk/; revision=40529
2012-01-15Move gtk to ui/gtk.Jörg Mayer1-0/+1372
This looses the last checkin to gtk, will add this manually back. svn path=/trunk/; revision=40518