cppcheck/gui
PKEuS 19c0bccfee Ran lupdate gui.pro, updated german translation 2016-03-20 10:34:55 +01:00
..
help buildhelp.bat: Add missing popd 2012-12-23 10:58:33 +01:00
images GUI: losslessly compress images. 2015-10-22 08:44:26 +03:00
test
CMakeLists.txt
about.ui
aboutdialog.cpp
aboutdialog.h
application.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
application.h
application.ui
applicationdialog.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
applicationdialog.h
applicationlist.cpp
applicationlist.h Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
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 Fixed #7294 (GUI: Add option in 'Settings' for 'Statistics Dialog' display.) 2016-01-16 17:43:57 +01:00
cppcheck-gui.rc
cppcheck.ico
cppcheck_de.ts
cppcheck_es.ts Ran lupdate gui.pro, updated german translation 2016-03-20 10:34:55 +01:00
cppcheck_fi.ts
cppcheck_fr.ts
cppcheck_it.ts
cppcheck_ja.ts
cppcheck_ko.ts
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 Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
erroritem.h Fixed #7278 (GUI: error rechecking with some files) 2016-01-15 16:52:22 +01:00
file.ui
filelist.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
filelist.h
fileviewdialog.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
fileviewdialog.h
gui.cppcheck Fix some complainted choices made in my older commits. 2011-11-01 13:23:47 +01:00
gui.pro
gui.qrc
icon.png gui: losslessly compress images with https://github.com/subzey/zopfli-png 2013-05-08 18:36:35 +02:00
icon.svg
libraryaddfunctiondialog.cpp
libraryaddfunctiondialog.h
libraryaddfunctiondialog.ui
librarydialog.cpp
librarydialog.h
librarydialog.ui
libraryeditargdialog.cpp
libraryeditargdialog.h GUI: Make it possible to configure minsizes through the LibraryDialog 2015-09-01 18:13:27 +02:00
libraryeditargdialog.ui
logview.cpp
logview.h
logview.ui
main.cpp
main.ui
mainwindow.cpp
mainwindow.h
platforms.cpp
platforms.h
printablereport.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
printablereport.h
project.cpp
project.h
projectfile.cpp
projectfile.h
projectfile.txt
projectfile.ui
projectfiledialog.cpp
projectfiledialog.h
readme.txt
report.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
report.h
resultstree.cpp Fixed #7240 (GUI: Result tree Context Menu should show default editor application only.) 2016-01-16 15:19:06 +01:00
resultstree.h
resultsview.cpp Fixed #7295 (GUI: 'Edit Project' and 'Close Project' actions getting enabled after Files/Directory check.) 2016-01-16 09:59:02 +01:00
resultsview.h Fixed #7278 (GUI: error rechecking with some files) 2016-01-15 16:52:22 +01:00
resultsview.ui
scratchpad.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
scratchpad.h
scratchpad.ui New Feature "Scratchpad" added to GUI. (#4166) 2012-10-20 20:14:52 +02:00
settings.ui
settingsdialog.cpp
settingsdialog.h
showtypes.cpp
showtypes.h
stats.ui
statsdialog.cpp
statsdialog.h Update copyright year to 2007-2016. 2016-01-01 15:34:45 +02:00
threadhandler.cpp Settings: Remove '_' prefix for public member variables 2016-01-03 16:18:17 +01:00
threadhandler.h
threadresult.cpp
threadresult.h
translationhandler.cpp
translationhandler.h
txtreport.cpp
txtreport.h
xmlreport.cpp
xmlreport.h
xmlreportv1.cpp Update copyright year to 2007-2016. 2016-01-01 15:34:45 +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.