aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/profile_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2009-12-21Added Copy Profile functionality.Stig Bjørlykke1-15/+72
svn path=/trunk/; revision=31335
2009-11-10Removed some unused variables and unused assignments.Stig Bjørlykke1-2/+0
svn path=/trunk/; revision=30918
2009-04-08(Trivial) Fix some spelling & etc in commentsBill Meier1-1/+1
svn path=/trunk/; revision=27996
2009-03-13From Jakub Zawadzki (bug 3331):Stig Bjørlykke1-5/+3
g_free() is NULL safe, so we don't need check against it. svn path=/trunk/; revision=27718
2009-02-26gtk_menu_append is deprecated and should not be used in newly-written code. ↵Anders Broman1-2/+2
Use gtk_menu_shell_append(). svn path=/trunk/; revision=27558
2008-10-29Fix a few (not all) of the current checkapi errors in gtk/Stephen Fisher1-1/+1
- Non-ASCII characters in a few filess - Missing $Id$ tag in one file svn path=/trunk/; revision=26616
2008-10-27ETH -> WS updates.Gerald Combs1-6/+6
svn path=/trunk/; revision=26570
2008-06-29Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier1-4/+4
equivalent API gtk_container_border_width() ==> gtk_container_set_border_width() gtk_container_children() ==> gtk_container_get_children() gtk_entry_new_with_max_length() ==> gtk_entry_new(); gtk_entry_set_max_length() gtk_menu_append() ==> gtk_menu_shell_append() gtk_menu_prepend() ==> gtk_menu_shell_prepend() gtk_notebook_set_page() ==> gtk_notebook_set_current_page() gtk_paned_gutter_size() ==> gtk_paned_set_gutter_size() gtk_radio_button_group() ==> gtk_radio_button_get_group() gtk_signal_connect() ==> g_signal_connect() gtk_signal_disconnect() ==> g_signal_handler_disconnect() gtk_signal_emit_by_name() ==> g_signal_emit_by_name() gtk_signal_handler_block_by_data() ==> g_signal_handlers_block_matched() gtk_signal_handler_block_by_func() ==> g_signal_handlers_block_by_func() gtk_signal_handler_unblock_by_data() ==> g_signal-handlers_unblock_matched() gtk_signal_handler_unblock_by_func() ==> g_signal-handlers_unblock_by_func() gtk_spin_button_get_value_as_float() ==> gtk_spin_button_get_value() gtk_toggle_button_set_state() ==> gtk_toggle_button_set_active() svn path=/trunk/; revision=25634
2008-06-18Draw menu items with radio buttons.Stig Bjørlykke1-0/+2
svn path=/trunk/; revision=25471
2008-06-17Popup a menu with configuration profiles instead of the profile dlgStig Bjørlykke1-0/+58
when clicking the profile in the statusbar. Much easier to use. svn path=/trunk/; revision=25468
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-23/+23
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
2008-04-14From Jim Young (bug 2212):Sake Blok1-1/+1
Add the profile name to the title of all the configuration windows. (this is a rewrite of Jim's patch) svn path=/trunk/; revision=25016
2008-04-13sort #includes by directoriesUlf Lamping1-7/+9
svn path=/trunk/; revision=24969
2008-04-12where it's not necessary, remove #include "compat_macros.h"Ulf Lamping1-1/+0
svn path=/trunk/; revision=24922
2008-04-11last round to replace SIGNAL_CONNECT with g_signal_connectUlf Lamping1-13/+13
svn path=/trunk/; revision=24918
2008-04-11replace all appearances of BUTTON_NEW_FROM_STOCK with GTK2's ↵Ulf Lamping1-3/+3
gtk_button_new_from_stock svn path=/trunk/; revision=24904
2008-04-11OBJECT_..._DATA --> g_object_..._dataBill Meier1-25/+25
svn path=/trunk/; revision=24895
2008-04-07remove GTK1 codeUlf Lamping1-6/+0
svn path=/trunk/; revision=24823
2008-02-04Improved the profile name check to popup a dialog when trying to apply anStig Bjørlykke1-34/+62
invalid profile name. svn path=/trunk/; revision=24268
2008-02-01Disallow ending space was not such a good idea, chop it of before save instead.Stig Bjørlykke1-13/+24
Also disallow '/' in profilename for !win32. svn path=/trunk/; revision=24243
2008-02-01Fixed a problem with renaming a profile after hitting apply.Stig Bjørlykke1-0/+27
Profile name cannot start or end with space, and on win32 it cannot contain any of this characters: \ / : * ? " < > | Added a tooltip to the profile name text box. svn path=/trunk/; revision=24242
2008-01-27Do not change profile if directory creation failed, and change to defaultStig Bjørlykke1-2/+5
profile if existing profile was deleted. svn path=/trunk/; revision=24208
2008-01-24Always return a valid profile name from get_profile_name().Stig Bjørlykke1-2/+2
svn path=/trunk/; revision=24175
2008-01-19Free allocated data in prefs_reset, removed need for uat_reload_all and Stig Bjørlykke1-42/+15
made some cleanups in profile_dlg. svn path=/trunk/; revision=24136
2008-01-14Save the changes also when selecting a profile from the list.Stig Bjørlykke1-22/+20
svn path=/trunk/; revision=24092
2008-01-14Several profile enhancements:Stig Bjørlykke1-0/+31
- Give initial focus to the profiles list - Enter in the profiles list selects the profile - Give focus to the profile name when creating a new profile svn path=/trunk/; revision=24091
2008-01-14This patch adds support for configuration profiles, which can be used toStig Bjørlykke1-0/+791
configure and use more than one set of preferences and configuration files. This can be found in the "Configuration Profiles..." menu item from the Edit menu, or by pressing Shift-Ctrl-A. It's also possible to start wireshark and tshark with a named profile by using the "-C ProfileName" option. A new status pane in the main window will show the current profile. The configuration files currently stored in the Profiles are: - Preferences - Capture Filters - Display Filters - Coloring Rules - Disabled Protocols - User Accessible Tables The recent data are by design not added to the profile. Planned future enhancements: - make a more convenient function to switch between profiles - add a "clone profile" button to copy an existing profile - make the profiles list active and accept return as OK - save users "Decode as" in the profile - make new, clone and deletion of profiles more secure - make some of the recent values available in the profile This patch also fixes: - setting default status pane sizes - a bug setting status pane for packets when not having main lower pane. svn path=/trunk/; revision=24089