diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2001-06-10 22:21:55 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2001-06-10 22:21:55 (GMT) |
commit | b0befbde1ae69c8625af763b0bb757557345c15b (patch) | |
tree | df28cced72496b83329488e3bb3cb84dea32fa31 /Source/FLTKDialog/FLTKDialog.cxx | |
parent | ad0019a740413ad270df38232ddcb31120c1b540 (diff) | |
download | CMake-b0befbde1ae69c8625af763b0bb757557345c15b.zip CMake-b0befbde1ae69c8625af763b0bb757557345c15b.tar.gz CMake-b0befbde1ae69c8625af763b0bb757557345c15b.tar.bz2 |
ENH: cpp renamed cxx. Copy of data to and from the GUI is working
Diffstat (limited to 'Source/FLTKDialog/FLTKDialog.cxx')
-rw-r--r-- | Source/FLTKDialog/FLTKDialog.cxx | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Source/FLTKDialog/FLTKDialog.cxx b/Source/FLTKDialog/FLTKDialog.cxx new file mode 100644 index 0000000..5933ef5 --- /dev/null +++ b/Source/FLTKDialog/FLTKDialog.cxx @@ -0,0 +1,23 @@ + +#include "CMakeSetupGUIImplementation.h" +#include "FL/Fl.h" +#include "FL/fl_ask.H" + +int main() +{ + + fl_message_font(FL_HELVETICA,11); + + CMakeSetupGUIImplementation * gui + = new CMakeSetupGUIImplementation; + + gui->Show(); + gui->LoadCacheFromDiskToGUI(); + + Fl::run(); + + delete gui; + + return 0; + +} |