aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/profile_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
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