mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-25 02:41:22 +00:00
The open source, cross platform level editor for idtech games
bc832533c3
- Added check for existing worldspawn if a new one should be added with the entity menu (Shaderman) - Fixed Entity -> Ungroup (Topsun) - Fixed hotkey collision ALT+M (filter botclip/Modify menu). New Modify shortcut = ALT+O (Shaderman) - Updated Window Layout images (Shaderman) - Fixed (TODO) XYWindow: save show-workzone option (Shaderman) - Fixed (TODO) Toolbar: add shortcut to tooltips for toolbar buttons (Shaderman) - Fixed (TODO) GUI: detachable submenus (Shaderman) git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@117 8a3a26a2-13c4-0310-b231-cf6edde360e5 |
||
---|---|---|
contrib | ||
Doxygen_files | ||
include | ||
libs | ||
plugins | ||
radiant | ||
setup | ||
tools | ||
CHANGES | ||
COMPILING | ||
CONTRIBUTORS | ||
DoxyConfig | ||
Doxyfile | ||
gen.dsp | ||
gen.readme | ||
gen.vcproj | ||
gendox | ||
generic_cpp.py | ||
generic_h.py | ||
generic_module.py | ||
GPL | ||
GtkRadiant.prj | ||
GtkRadiant.sln | ||
install.py | ||
LGPL | ||
LICENSE | ||
makeversion.py | ||
radiant.dsw | ||
README.doxygen | ||
run_python.bat | ||
SConscript | ||
SConstruct | ||
svn.py | ||
TODO | ||
touch.py |
Documentation for generating doxygen documentation --------------------------------------------------------- 1. Options for gendox More up-to-date command line options are available via the command ./gendox --help usage: "sh gendox [ <target(s)> ] [ -o <output_dir> ]" or "./gendox [ <target(s)> ] [ -o <output_dir> ]" <target(s)> The directory, or directories to generate the documentation from. -o Specifies the output directory <output_dir> which should follow the -o switch -q --quiet Stops the script from outputing status information, other than errors. -k --kill Kills other running doxygen pids. eg: ./gendox include/ -o ../Documentation * This will produce documentation for the include files, and output to the directory specified one level above the current directory. The target can be the current directory "./" in which case doxygen will generate documentation for all subdirectories of the current directory recursively. The default output directory is currently ... > ../GtkRadiant-doxygen * If the script is called without any target directories it will generate documentation for the core of radiant... include/ libs/ radiant/ and plugins/ If there are specific options that you'd like to customise, the DoxyConfig file is used to generate the file from which doxygen gets its settings from. So any changes that need to be made should be made to this file. Gef :] (gefdavis@dingoblue.net.au) ---------------------------------------------------------