cppcheck/gui
Kimmo Varis 3311113775 GUI: Include Windows resources from resource file having version info. 2009-06-13 23:13:03 +03:00
..
images Added 22x22 icons from http://tango.freedesktop.org. 2009-05-26 18:21:39 +03:00
aboutdialog.cpp UTF-8 fixes to GUI files 2009-06-05 23:52:05 +03:00
aboutdialog.h UTF-8 fixes to GUI files 2009-06-05 23:52:05 +03:00
applicationdialog.cpp Added messagebox to inform user about not found/non visible errors. 2009-06-09 10:51:27 +03:00
applicationdialog.h GUI: Make Settings-dialog a parent of Add Application-dialog. 2009-06-06 12:57:16 +03:00
applicationlist.cpp Fix ticket #325 (Replace developer names in source files with AUTHORS file) 2009-05-30 08:48:12 +03:00
applicationlist.h Changed EOL character to LF in a few files. 2009-06-02 23:32:58 +03:00
checkthread.cpp astyle fix 2009-06-02 23:13:29 +03:00
checkthread.h GUI: Implement stopping the compare. 2009-06-02 02:01:53 +03:00
common.h Changed EOL character to LF in a few files. 2009-06-02 23:32:58 +03:00
cppcheck-gui.rc GUI: Include Windows resources from resource file having version info. 2009-06-13 23:13:03 +03:00
cppcheck.ico GUI: Add application icon for Windows. 2009-05-28 17:54:07 +03:00
gui.pro GUI: Add common.h to the project. 2009-06-13 22:44:56 +03:00
gui.qrc Add icon files to resource file. 2009-05-28 11:32:32 +03:00
icon.png renamed the logo files to icon instead 2009-05-25 18:54:15 +02:00
icon.svg renamed the logo files to icon instead 2009-05-25 18:54:15 +02:00
main.cpp GUI: Fix handling UTF-8 strings in sources. 2009-06-06 10:51:50 +03:00
mainwindow.cpp Fix ticket #397 (xml output doesn't encode " and & -characters as it should) 2009-06-12 22:02:01 +03:00
mainwindow.h GUI: Prevent exiting the application while checking. 2009-06-04 17:02:35 +03:00
readme.txt GUI: Add readme file with instructions for running and compiling the GUI. 2009-06-09 00:15:29 +03:00
resultstree.cpp Fix compile error in GUI 2009-06-09 22:42:13 +03:00
resultstree.h Added messagebox to inform user about not found/non visible errors. 2009-06-09 10:51:27 +03:00
resultsview.cpp Astyle formatting. 2009-06-09 11:22:28 +03:00
resultsview.h Force progressbar to be visible when checking starts. 2009-06-09 11:21:17 +03:00
settingsdialog.cpp Added messagebox to inform user about not found/non visible errors. 2009-06-09 10:51:27 +03:00
settingsdialog.h Added messagebox to inform user about not found/non visible errors. 2009-06-09 10:51:27 +03:00
test.cpp Added the initial version of opening a error with user specified application. 2009-05-23 14:26:04 +03:00
threadhandler.cpp GUI: Prevent exiting the application while checking. 2009-06-04 17:02:35 +03:00
threadhandler.h GUI: Prevent exiting the application while checking. 2009-06-04 17:02:35 +03:00
threadresult.cpp Added some warning messageboxes. 2009-06-09 09:30:28 +03:00
threadresult.h Added the initial version of saving results to a file. 2009-06-03 21:18:22 +03:00

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 libraries installed in your system. Packages/files to install
depends on your operating system:
- Windows download QT4 from http://www.qtsoftware.com
- Linux install QT4 using your package manager, look for packages having QT4
  in their name, e.g. for Ubuntu install libqt4-core and libqt4-gui

Compiling
---------
Windows:
- The easy way is to download Qt SDK from http://www.qtsoftware.com and use
  Qt Creator and/or command line tools to build the GUI.
- The harder way is to download QT sources and build QT with Visual Studio
  (Express Edition works). 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)
- qmake -tp vc (In Windows if build with Visual Studio)

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.