cppcheck/gui
Daniel Marjamäki cc2526c5c5 Fixed #8096 (GUI: crash in ResultsTree::AddErrorItem) 2017-06-07 11:55:21 +02:00
..
help manuals: remove remaining occurrences of --append 2017-05-14 12:27:44 +02:00
images Losslessly compress images. 2016-07-25 12:15:35 +03:00
test Simplify some statements 2017-06-01 02:02:12 +03:00
CMakeLists.txt
about.ui
aboutdialog.cpp http://cppcheck.sourceforge.net => http://cppcheck.net 2016-06-05 18:17:47 +02:00
aboutdialog.h Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
application.cpp
application.h
application.ui
applicationdialog.cpp
applicationdialog.h
applicationlist.cpp
applicationlist.h
checkstatistics.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
checkstatistics.h
checkthread.cpp
checkthread.h
common.cpp
common.h
cppcheck-gui.desktop
cppcheck-gui.png
cppcheck-gui.rc Refactorized resource files: 2012-10-14 10:21:22 +02:00
cppcheck-gui.svg Resize page to content. 2016-09-27 17:06:26 +08:00
cppcheck.ico
cppcheck_de.ts
cppcheck_es.ts
cppcheck_fi.ts
cppcheck_fr.ts
cppcheck_it.ts
cppcheck_ja.ts GUI: Update translations 2017-05-13 11:15:49 +02:00
cppcheck_ko.ts GUI: Update translations 2017-05-13 11:15:49 +02:00
cppcheck_nl.ts
cppcheck_ru.ts
cppcheck_sr.ts
cppcheck_sv.ts
cppcheck_zh_CN.ts
cppchecklibrarydata.cpp
cppchecklibrarydata.h
csvreport.cpp
csvreport.h
erroritem.cpp Fix Cppcheck warning 2017-05-22 10:26:16 +02:00
erroritem.h
file.ui
filelist.cpp
filelist.h Fixed #4399 (Exclude directory with absolute path does not work) 2016-10-02 13:02:29 +02:00
fileviewdialog.cpp
fileviewdialog.h
gui.cppcheck
gui.pro GUI: rename main.ui to mainwindow.ui 2016-11-19 23:07:48 +01:00
gui.qrc
libraryaddfunctiondialog.cpp
libraryaddfunctiondialog.h GUI: Library editor - rename function 2015-09-08 15:38:02 +02:00
libraryaddfunctiondialog.ui
librarydialog.cpp
librarydialog.h
librarydialog.ui
libraryeditargdialog.cpp
libraryeditargdialog.h
libraryeditargdialog.ui
logview.cpp
logview.h
logview.ui
main.cpp
mainwindow.cpp
mainwindow.h
mainwindow.ui
platforms.cpp
platforms.h Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
printablereport.cpp
printablereport.h
project.cpp
project.h GUI: Rename 2016-11-19 21:12:32 +01:00
projectfile.cpp GUI: Add cppcheck build dir 2016-11-19 20:38:50 +01:00
projectfile.h GUI: Add cppcheck build dir 2016-11-19 20:38:50 +01:00
projectfile.txt
projectfiledialog.cpp
projectfiledialog.h
projectfiledialog.ui
readme.txt
report.cpp
report.h
resultstree.cpp
resultstree.h Fixed #7278 (GUI: error rechecking with some files) 2016-01-15 16:52:22 +01:00
resultsview.cpp
resultsview.h
resultsview.ui
scratchpad.cpp
scratchpad.h
scratchpad.ui
settings.ui Fixed #7294 (GUI: Add option in 'Settings' for 'Statistics Dialog' display.) 2016-01-16 17:43:57 +01:00
settingsdialog.cpp
settingsdialog.h
showtypes.cpp
showtypes.h
stats.ui
statsdialog.cpp
statsdialog.h GUI: Add button in statistics window to export statistics to PDF 2017-05-28 16:16:28 +02:00
threadhandler.cpp
threadhandler.h
threadresult.cpp
threadresult.h
translationhandler.cpp
translationhandler.h Removed non-standard code annotations with __attribute__ 2016-01-09 09:33:56 +01:00
txtreport.cpp
txtreport.h Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
xmlreport.cpp
xmlreport.h
xmlreportv1.cpp GUI: Update results 2017-05-21 08:25:55 +02:00
xmlreportv1.h
xmlreportv2.cpp
xmlreportv2.h

readme.txt

Cppcheck GUI
============
This is a GUI for cppcheck. It allows selecting folder or set of files to check
with cppcheck and shows list of found errors.

Running
-------
You need Qt4 or Qt5 libraries installed in your system. Packages/files to install
depends on your operating system:
- Windows: download Qt from http://www.qt.io/download/
- Linux: install Qt using your package manager, look for packages having Qt
  in their name, e.g. for Ubuntu install libqt4-core and libqt4-gui.

Compiling
---------
Windows:
- The easy ways are:
-- download Qt SDK from http://www.qt.io/download/ and use
   QtCreator to build the GUI.
-- Download precompiled libraries for your platform and use your preferred
   IDE/environment to build GUI. Be careful to download the correct version of
   library for your compiler!
- The harder way is to download Qt sources and build Qt. Compiling Qt alone may
  take over 4 hours!

Linux:
- Install Qt development packages (make sure qmake -tool gets installed!). The
  names depend on distribution, but e.g. for Ubuntu the needed packages are:
  * libqt4-core
  * libqt4-gui
  * libqt4-dev
  * qt4-dev-tools
  * qt4-qmake

After you have needed libraries and tools installed, open command
prompt/console, go to gui directory and run command:
- qmake (in Linux and in Windows if build with MinGW/gcc or nmake)
- qmake -tp vc (to generate Visual Studio project file)
- qmake -tp vc LINKCORE=yes (to generate Visual Studio project file, linking
                             dynamically to core. Recommended.)

On Windows, you have to either call qtvars.bat in Qt folder or use the Qt command
line prompt shortcut added in the start menu by Qt installation.

These commands generate makefiles to actually build the software. After that
the actual building is done in IDE or command line as usual. Note that you
don't need to run qmake again unless you add/remove files from the project.

The Visual Studio solution does not contain a configuration for x64 platform, but
it can be added easily.

Tests
-----
There are tests for the GUI in gui/test -directory. There is test.pro
-projectfile for building all the tests. Each test is in own subdirectory and
builds own binary. Test is run by simple running that binary. The binary also
has several options to select tests etc. You can get the help by running
"binaryname -help" -command.

Translations
------------
The GUI is translated to several languages. Qt comes with two tools to update
and compile the translations. lupdate updates translations files from the code
and lrelease compiles translation files use with the executable.

To update translations:
- run lupdate gui.pro to update the translation files to match the code. This
  command updates all the .ts files. Which can be then edited to translate
  the application.

To compile translations:
- run lrelease gui.pro to compile .ts files to .qm files which are used by the
  executable.