diff options
author | Brad King <brad.king@kitware.com> | 2009-08-05 14:13:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-08-05 14:13:18 (GMT) |
commit | 32869ea381a626505bcfa099243a073b7b271f7c (patch) | |
tree | 11ebbd4612e6d69b58fa43214d2ee8dc78c038ca /Source/FLTKDialog/FLTKDialog.cxx | |
parent | be24db77d072ada494481718bdd76a6066c73743 (diff) | |
download | CMake-32869ea381a626505bcfa099243a073b7b271f7c.zip CMake-32869ea381a626505bcfa099243a073b7b271f7c.tar.gz CMake-32869ea381a626505bcfa099243a073b7b271f7c.tar.bz2 |
Remove FLTKDialog source code
The QtDialog is our supported cross-platform GUI, so the FLTKDialog
source is no longer needed.
Diffstat (limited to 'Source/FLTKDialog/FLTKDialog.cxx')
-rw-r--r-- | Source/FLTKDialog/FLTKDialog.cxx | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/Source/FLTKDialog/FLTKDialog.cxx b/Source/FLTKDialog/FLTKDialog.cxx deleted file mode 100644 index df7df77..0000000 --- a/Source/FLTKDialog/FLTKDialog.cxx +++ /dev/null @@ -1,44 +0,0 @@ -/*========================================================================= - - Program: Insight Segmentation & Registration Toolkit - Module: $RCSfile$ - Language: C++ - Date: $Date$ - Version: $Revision$ - - Copyright (c) 2002 Insight Consortium. All rights reserved. - See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - -=========================================================================*/ - -#include "CMakeSetupGUIImplementation.h" -#include "FL/Fl.H" -#include "FL/fl_ask.H" - -#include "cmSystemTools.h" - -int main(int argc, char * argv[] ) -{ - cmSystemTools::FindExecutableDirectory(argv[0]); - - fl_message_font(FL_HELVETICA,11); - - CMakeSetupGUIImplementation * gui - = new CMakeSetupGUIImplementation; - - gui->SetPathToExecutable( argv[0] ); - gui->Show(); - gui->LoadRecentDirectories(); - gui->LoadCacheFromDiskToGUI(); - - Fl::run(); - - delete gui; - - return 0; - -} |