summaryrefslogtreecommitdiffstats
path: root/Source/CursesDialog/cmCursesMainForm.h
Commit message (Collapse)AuthorAgeFilesLines
* cmState: Port dependents to new cmStateTypes headerStephen Kelly2016-10-191-1/+1
|
* cmState: Move CacheEntryType enum to separate namespaceStephen Kelly2016-10-191-1/+1
| | | | Port dependent code to the change.
* Simplify CMake per-source license noticesBrad King2016-09-271-11/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Per-source copyright/license notice headers that spell out copyright holder names and years are hard to maintain and often out-of-date or plain wrong. Precise contributor information is already maintained automatically by the version control tool. Ultimately it is the receiver of a file who is responsible for determining its licensing status, and per-source notices are merely a convenience. Therefore it is simpler and more accurate for each source to have a generic notice of the license name and references to more detailed information on copyright holders and full license terms. Our `Copyright.txt` file now contains a list of Contributors whose names appeared source-level copyright notices. It also references version control history for more precise information. Therefore we no longer need to spell out the list of Contributors in each source file notice. Replace CMake per-source copyright/license notice headers with a short description of the license and links to `Copyright.txt` and online information available from "https://cmake.org/licensing". The online URL also handles cases of modules being copied out of our source into other projects, so we can drop our notices about replacing links with full license text. Run the `Utilities/Scripts/filter-notices.bash` script to perform the majority of the replacements mechanically. Manually fix up shebang lines and trailing newlines in a few files. Manually update the notices in a few files that the script does not handle.
* CursesDialog: include what you useDaniel Pfeifer2016-09-031-3/+7
|
* use CM_NULLPTRDaniel Pfeifer2016-06-281-1/+1
|
* mark functions with CM_OVERRIDEDaniel Pfeifer2016-06-271-5/+5
|
* Revise C++ coding style using clang-formatKitware Robot2016-05-161-8/+9
| | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
* Source: Stabilize include orderBrad King2016-04-291-2/+2
| | | | | Each source file has a logical first include file. Include it in an isolated block so that tools that sort includes do not move them.
* CursesDialog: add missing cmState includeDaniel Pfeifer2016-04-291-0/+1
|
* cmState: Move CacheEntryType enum from cmCacheManager.Stephen Kelly2015-04-131-1/+1
|
* Rename header guards to not start with double underscoreSean McBride2014-12-111-3/+3
| | | | | | | | | Use regex to find/replace: __(cm.*_h) \1 Then fix QCMake.h by hand.
* stringapi: Use strings for variable namesBen Boeckel2014-03-081-1/+1
| | | | Variable names are always generated by CMake and should never be NULL.
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-5/+5
| | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
* ccmake: Fix search with '/'Brad King2010-09-161-3/+2
| | | | | | | | | | | | | | | | | | | Commit 7a18dd8e (Add searching of variables, 2003-03-07) added method cmCursesMainForm::JumpToCacheEntry to search for cache entries whose names match a given search string. The method also had a useless argument "int idx" probably left from earlier development iterations and hard-coded in all calls to the value '-1'. The method compared this argument to the "NumberOfVisibleEntries" member which at the time was of type "int" also. Commit ff1f8d0b (Fix or cast more integer conversions in cmake, 2010-06-29) changed the type of "NumberOfVisibleEntries" to size_t to fix other integer conversion warnings. An unsigned type makes sense given the purpose of the member. However, this caused the '-1' signed value to be converted to a large unsigned value in the above-mentioned comparison, leading to incorrect behavior. Fix the problem by removing the useless argument and the comparison.
* Fix or cast more integer conversions in cmakeBrad King2010-06-291-1/+1
| | | | | These were revealed by GCC's -Wconversion option. Fix types where it is easy to do so. Cast in cases we know the integer will not be truncated.
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* ENH: m_ cleanup for cursesKen Martin2006-03-161-16/+16
|
* ENH: Adding MODIFIED property to cache values that have been changed by the ↵Brad King2004-06-231-0/+3
| | | | user.
* ENH: On envocation of ccmake check if directories are correct, but do not ↵Andy Cedilnik2003-05-291-2/+3
| | | | rerun configure
* Add searching of variablesAndy Cedilnik2003-03-071-0/+8
|
* BUG: Fixed crash when CMAKE_ROOT cannot be found.Brad King2003-01-221-1/+1
|
* Add progress to ccmakeAndy Cedilnik2002-11-191-7/+13
|
* Initial add of progressAndy Cedilnik2002-11-181-0/+5
|
* ENH: Added reference to Copyright.txt. Removed old reference to ITK ↵Brad King2002-10-231-3/+3
| | | | copyright. Changed program name to CMake instead of Insight in source file header. Also removed tabs.
* new architectureKen Martin2002-09-061-2/+7
|
* some changes in cachemanager and singletonsKen Martin2002-08-281-0/+7
|
* The entry widgets are now created with what is initially available on the ↵Berk Geveci2002-05-011-1/+2
| | | | terminal.
* Exit ccmake on fatal errors.Berk Geveci2002-04-231-1/+1
|
* ENH:Updated copyrightWill Schroeder2002-01-211-0/+16
|
* Updated toolbar.Berk Geveci2001-12-131-22/+55
|
* Since it is being used as an array size in another file, it is not possible ↵Berk Geveci2001-11-301-4/+6
| | | | to initialize MAX_WIDTH in a .cxx file.
* Missed std::Berk Geveci2001-11-301-1/+1
|
* Improvements to the curses interface.Berk Geveci2001-11-291-11/+23
|
* ENH: tell cmake object where cmake isBill Hoffman2001-11-061-1/+3
|
* Many improvements.Berk Geveci2001-11-061-1/+16
|
* HPUX support.Berk Geveci2001-11-051-2/+1
|
* Fixing problems on Sun (name collusions between STL and curses) and ↵Berk Geveci2001-11-051-2/+2
| | | | disabling curses temporarily.
* ERR: To include cmake headers, one should use ../Berk Geveci2001-11-051-2/+1
|
* Need to include standard headers.Berk Geveci2001-11-041-0/+1
|
* Adding curses support.Berk Geveci2001-11-041-0/+55