summaryrefslogtreecommitdiff
path: root/ui
AgeCommit message (Collapse)AuthorFilesLines
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey7-6/+9
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2013-03-01Fix [-W shadow] issue in SVN #47958 in a slightly different manner than the ↵Bill Meier3-19/+19
fix SVN #47960. svn path=/trunk/; revision=47976
2013-03-01Add some 'const's to satisfy latest GCC.Evan Huus1-4/+4
svn path=/trunk/; revision=47961
2013-02-28Rename a variable s/color_edit_dlg/color_edit_window/ to fix a -Wshadow errorEvan Huus1-12/+12
svn path=/trunk/; revision=47960
2013-02-28color_edit_dlg update:Bill Meier3-372/+433
- Significantly simplify & rework code; - Use GtkColorChooser instead of GtkColorSelection if GTK 3.4 or newer. - Minor UI cleanup (default buttons & etc) - Fix crash which occurred in the (existing) GTK3 related code. - Fix some other relatively minor bugs (including some minor memory leaks); - Remove some old, commented-out code; - Use a more consistent naming scheme for certain variables. svn path=/trunk/; revision=47958
2013-02-28Avoid a packet rescan if we don't have an AirPcap adapter.Anders Broman1-5/+8
svn path=/trunk/; revision=47945
2013-02-28Add a #define for the default capture buffer size and use it.Jeff Morriss2-3/+3
svn path=/trunk/; revision=47942
2013-02-28From Anders: more places to increase the default capture buffer size.Jeff Morriss2-3/+3
svn path=/trunk/; revision=47939
2013-02-26Fix spelling/typos found using a list of commonly misspelled words.Bill Meier9-27/+27
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
2013-02-26it's ==> its & its ==> it's as needed.Bill Meier1-1/+1
svn path=/trunk/; revision=47898
2013-02-25it's ==> its & its ==> it's as needed.Bill Meier16-170/+170
In a few cases: Fix spelling; Clean up whitespace and formatting style. svn path=/trunk/; revision=47889
2013-02-24From Peter Hatina: test GDK_WINDOW_STATE_MAXIMIZED as a bit flagBill Meier1-1/+1
(One small part of a suggested patch in Bug #8315). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8315 svn path=/trunk/; revision=47863
2013-02-21Minor Bluetooth fixesMichael Mann1-2/+14
1. Allow to DecodeBy payload over AVCTP 2. Fix L2CAP CID payload recognize after disc 3. Removed unneeded _U_ 4. Fall back to control channel in AVRCP 5. Fix time-tracking for passthrough and capability AVRCP commands From Michal Labedzki, bug 8367 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8367) svn path=/trunk/; revision=47810
2013-02-21Don't yell at the user quite so much. Remove exclamation points fromGerald Combs13-76/+79
some error messages and rephrase some others. svn path=/trunk/; revision=47787
2013-02-20make function names consistentMartin Kaiser3-4/+4
edit_capture_dlg_launch() -> edit_capture_comment_dlg_launch() svn path=/trunk/; revision=47780
2013-02-20kill an "edit capture comment" popup if the underlying file is closedMartin Kaiser3-0/+10
(at the moment, the edit window remains open even if the file is closed or changed, this allows effectively to overwrite a file's capture commment with the capture comment of a previously used file) svn path=/trunk/; revision=47779
2013-02-20Forcing everyone to use the development update channel probably isn'tGerald Combs1-1/+1
the best idea. svn path=/trunk/; revision=47774
2013-02-20Add software_update.c.Gerald Combs1-0/+1
svn path=/trunk/; revision=47767
2013-02-20Only call create_app_running_mutex on Windows.Gerald Combs1-0/+3
svn path=/trunk/; revision=47766
2013-02-20When any of our executables start on Windows create or open a "WiresharkGerald Combs2-1/+3
is running" mutex. Have the NSIS installer check for this mutex and ask the user to close Wireshark if it's found. While not perfect this makes the WinSparkle update process much less annoying. svn path=/trunk/; revision=47758
2013-02-19Enable automatic updates for Win64. Fix a copy/paste error.Gerald Combs1-2/+0
svn path=/trunk/; revision=47749
2013-02-19Add automatic software update checks for Win32 using WinSparkle. AddGerald Combs6-2/+250
preferences (currently hidden) to disable updates, set the update frequency, and set the update "channel" (stable vs development). Add a "Help" menu item to manually check for updates. svn path=/trunk/; revision=47748
2013-02-17Add a macro that, for a given count of keys, returns the total size ofGuy Harris1-1/+1
an AirpcapKeysCollection structure with that number of keys, and use it instead of doing the calculation manually. svn path=/trunk/; revision=47699
2013-02-16Show resegmented data as grey.Martin Mathieson1-21/+41
svn path=/trunk/; revision=47687
2013-02-15Fix Voice RTP player crash if player is closed while playingMichael Mann1-11/+15
Bug 8065 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8065) svn path=/trunk/; revision=47674
2013-02-14main_window_slots.cpp includes ui_main_window.h, so make sure we buildGuy Harris1-1/+1
ui_main_window.h before doing anything with main_window_slots.cpp. svn path=/trunk/; revision=47659
2013-02-12remove _U_ for parameter that is usedMartin Kaiser1-1/+1
svn path=/trunk/; revision=47644
2013-02-11strlen() returns a size_t, so assign its return value to a size_t.Guy Harris1-2/+2
gtk_selection_data_set() takes an int, rather than a size_t, as its last argument, so cast away that bit of "ZOMG ARENT SIZE_T AND INT THE SAME SIZE!!!!!!!111ONE!!!!!" svn path=/trunk/; revision=47628
2013-02-10Use the same destination directory everywhere. If we're building an NSISGerald Combs1-6/+11
package, assume that we're doing a "release" build. svn path=/trunk/; revision=47615
2013-02-09Put NODIST_ at the beginning of macro names, as was done for the pluginsGuy Harris2-12/+12
directory. svn path=/trunk/; revision=47599
2013-02-09Fix EXTRA_BINFILES for CMake + OS X.Gerald Combs1-1/+1
svn path=/trunk/; revision=47595
2013-02-09Try to figure out if we built the rest of the project using Autotools orGerald Combs1-3/+25
CMake automatically. svn path=/trunk/; revision=47576
2013-02-08Add a directory name preference type (PREF_DIRNAME) and registrationGerald Combs6-26/+135
routine (prefs_register_directory_preference). Add PREF_FILENAME and PREF_DIRNAME support to the Qt module preferences. Change a couple of preferences to directory names. Clean up some names and default settings. svn path=/trunk/; revision=47573
2013-02-08Fix Coverity CID 973548: Dereference null return value.Chris Maynard1-2/+2
#BACKPORT(1.8, 1.6) svn path=/trunk/; revision=47568
2013-02-08Constify the second argument to uat_load(), to squelch some warnings.Guy Harris1-2/+2
svn path=/trunk/; revision=47560
2013-02-08Add module_preferences_scroll_area.*.Gerald Combs3-0/+9
svn path=/trunk/; revision=47546
2013-02-08Add a ModulePreferencesScrollArea widget which builds a scrollable frameGerald Combs6-39/+664
for a preferences module. Use it to fill in the remaining preferences. Don't show the printing preferences since they're not used here. Change the titles and tooltips for some of the name resolution preferences. Disable the capture preferences if we can't capture. This is different from the GTK+ version which hides it completely. Thus concludes the preferences dialog (for the time being). svn path=/trunk/; revision=47545
2013-02-06Remove some unnecessary definitions.Gerald Combs1-3/+0
svn path=/trunk/; revision=47526
2013-02-06Add filter expressions frame entries.Gerald Combs3-0/+9
svn path=/trunk/; revision=47523
2013-02-06Add Filter Expressions^WButton^WShortcut^WBookmark preferences. Gerald Combs21-87/+750
Add comments noting that - We might want to do something different when the bookmark button is pressed. - The display filters (dfilters file) and gui.filter_expressions preferences should be merged. - Many buttons on Qt4 + OS X + unifiedTitleAndToolBarOnMac makes the main window really wide. Add a qstring_strdup convenience routine. Add "disabled" display filter edit icons. Fix up whitespace and descriptions in a couple of places. svn path=/trunk/; revision=47522
2013-02-05Prettify Qt build output.Gerald Combs1-3/+18
svn path=/trunk/; revision=47484
2013-02-03Sigh. At least on my Fedora 16 with KDE, the Qt 4 versions of uic andGuy Harris1-3/+3
moc are called uic-qt4 and moc-qt4. Look for them by names, plural. svn path=/trunk/; revision=47457
2013-02-03Move the get-runtime-version stuff back outside of #ifdef WIN32.Jeff Morriss1-0/+2
svn path=/trunk/; revision=47454
2013-02-03call load_wpcap before collecting the run-time version information.Anders Broman1-15/+16
svn path=/trunk/; revision=47451
2013-02-02Reflect recent.c moving from the top-level directory to the uiGuy Harris1-1/+0
directory. svn path=/trunk/; revision=47441
2013-02-02Move the GUI-independent window geometry stuff to ui/recent.c, so weGuy Harris5-307/+163
only have one copy. svn path=/trunk/; revision=47440
2013-02-02Reflect the move of recent.c to the ui directory.Guy Harris1-0/+1
svn path=/trunk/; revision=47439
2013-02-02Move recent.c to the ui directory, as we did with its header file.Guy Harris2-0/+1097
svn path=/trunk/; revision=47438
2013-02-02In Qt 4, C strings are, by default, treated as 7-bit ASCII whenGuy Harris1-0/+7
converted to QStrings, and, to get them to be treated as UTF-8, you need to call the setCodecForCStrings method of the QTextCodec class to set the codec to a UTF-8 codec. In Qt 5, C strings are treated always as UTF-8 when converted to QStrings, and there's no setCodecForCStrings method for the QTextCodec class. In addition, there's also no setCodecForTr method for the QTextCodec class - and QObject isn't documented as even *having* a tr method, so I don't know what to do there. svn path=/trunk/; revision=47436
2013-02-01Fix [ 68%] Building CXX object ↵Alexis La Goutte1-1/+1
ui/qt/CMakeFiles/qtui.dir/font_color_preferences_frame.cpp.o ui/qt/font_color_preferences_frame.cpp: In member function ‘void FontColorPreferencesFrame::updateWidgets()’: ui/qt/font_color_preferences_frame.cpp:84:54: error: ‘class QFont’ has no member named ‘styleName’ make[2]: *** [ui/qt/CMakeFiles/qtui.dir/font_color_preferences_frame.cpp.o] Erreur 1 make[1]: *** [ui/qt/CMakeFiles/qtui.dir/all] Error 2 StyleName is not available in Qt < 4.8 disable this line for the moment (maye be add if QTVERSION > 4.8 ?) svn path=/trunk/; revision=47409