aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/Makefile.common
AgeCommit message (Collapse)AuthorFilesLines
2012-10-12Add a packet format group box, similar to the packet range group box.Gerald Combs1-0/+4
Use it in the new "Export Packet Dissections" dialog. I'm omitting PostScript exports on purpose. If you *really* need that feature you can probably get better results than we produce using text + enscript or print-to-PDF + pdf2ps/pdftops or PSML/PDML + XSL + ... The Windows code is untested. I'll check in any needed fixes shortly. svn path=/trunk/; revision=45513
2012-10-08Add a PacketRangeGroupBox widget. Use it to implement "Export SelectedGerald Combs1-1/+7
Packets". Not yet tested on Windows. "Ignore Packet" hasn't been implemented so we can't test that either. Create a SyntaxLineEdit widget from the QLineEdit code in DisplayFilterEdit. Use it in the file import and export dialogs and the PacketRangeGroupBox widget. This lets us provide instant feedback instead of popping up an error dialog. Expand the Tango color list based on http://emilis.info/other/extended_tango . Rearrange QtShark.pro to (hopefully) work better with Qt Creator. svn path=/trunk/; revision=45405
2012-10-02Move the main window slots to main_window_slots.cpp.Gerald Combs1-0/+1
svn path=/trunk/; revision=45259
2012-10-01Implement file sets.Gerald Combs1-2/+2
Replace the original file set code with a UI form. Use more consistent file names. List the files using a QTreeWidget instead of a grid. fileset_is_file_in_set is only used in fileset.c so make it static. In main_window.cpp reduce our usage of the global cfile variable. svn path=/trunk/; revision=45243
2012-09-15Nobody uses DIRTY_GENERATED_C_FILES, so get rid of it; we don't want toGuy Harris1-4/+1
encourage people to create source files that get warnings. svn path=/trunk/; revision=44909
2012-08-18ui_main_welcome.h is another file generated by uic, so list it inGuy Harris1-0/+1
GENERATED_NODIST_HEADER_FILES. svn path=/trunk/; revision=44569
2012-08-04Try to copy over the changes to QtShark.pro to automake and cmake.Jörg Mayer1-0/+2
Note: It still fails with Linking CXX executable qtshark lib/libqtui.a(interface_tree.cpp.o): In function `SparkLineDelegate': /home/jmayer/work/wireshark/svn/trunk/ui/qt/sparkline_delegate.h:10: undefined reference to `vtable for SparkLineDelegate' collect2: error: ld returned 1 exit status svn path=/trunk/; revision=44257
2012-08-01Make the changes of r44165 build with autofoo and cmake as wellJörg Mayer1-2/+3
svn path=/trunk/; revision=44190
2012-07-31(Attempt to) reflect the file moves from r44165.Jeff Morriss1-17/+0
svn path=/trunk/; revision=44174
2012-07-19Reflect the name change of progress_dialog.{cpp,h} to progress_bar.{cpp,h}.Guy Harris1-2/+2
svn path=/trunk/; revision=43836
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-06-15Don't install the Qt resource images. They get converted to C arrays inGerald Combs1-0/+18
qrc_*.cpp so they shouldn't be necessary even when we're building and installing qtshark. svn path=/trunk/; revision=43274
2012-03-19We don't use a GENERATED_H_FILES macro anywhere else, we useGuy Harris1-6/+1
GENERATED_HEADER_FILES; get rid of GENERATED_H_FILES in favor of GENERATED_HEADER_FILES, and make other changes to make the Makefile.am and Makefile.common in ui/qt more like those in ui/gtk. svn path=/trunk/; revision=41669
2012-03-19Don't distribute the output of various Qt preprocessing tools. We don'tGuy Harris1-2/+19
want to require the machines used to build the distribution tarballs to have those tools installed or to require the build process to run them, and I think if you have enough stuff installed to build Qt applications at all you'll have those tools installed (the reason why the result of {F}lex and YACC/BYACC/Bison are distributed with tarballs is to let somebody who wants to or needs to build from unmodified source do so with as few tools required as possible). svn path=/trunk/; revision=41666
2012-03-19Another generated file.Guy Harris1-1/+2
svn path=/trunk/; revision=41662
2012-03-19Call the UI library in the Qt directory libqtui, not libui, to match theGuy Harris1-4/+8
UI library in the GTK+ directory. List the moc-generated and rcc-generated files as generated files. Add main_window.ui as an EXTRA_DIST file. Sort the EXTRA_DIST list. svn path=/trunk/; revision=41658
2012-03-18Add automake support for Qt - use --with-qt as a configure scriptGuy Harris1-0/+134
argument. svn path=/trunk/; revision=41647