diff options
author | Luis Ibanez <luis.ibanez@kitware.com> | 2001-05-17 16:02:09 (GMT) |
---|---|---|
committer | Luis Ibanez <luis.ibanez@kitware.com> | 2001-05-17 16:02:09 (GMT) |
commit | ab03a4d9765d058ffd26ea2fad319bd9a2066ca3 (patch) | |
tree | b891a7a693dc77519e88a284ce0ff3a493deda00 /Source/FLTKDialog | |
parent | 483e6ddafde3cf00b3858d901557c183506b9b78 (diff) | |
download | CMake-ab03a4d9765d058ffd26ea2fad319bd9a2066ca3.zip CMake-ab03a4d9765d058ffd26ea2fad319bd9a2066ca3.tar.gz CMake-ab03a4d9765d058ffd26ea2fad319bd9a2066ca3.tar.bz2 |
Main file that instantiates the GUI class and run it.
Diffstat (limited to 'Source/FLTKDialog')
-rw-r--r-- | Source/FLTKDialog/FLTKDialog.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Source/FLTKDialog/FLTKDialog.cpp b/Source/FLTKDialog/FLTKDialog.cpp new file mode 100644 index 0000000..e5b91c9 --- /dev/null +++ b/Source/FLTKDialog/FLTKDialog.cpp @@ -0,0 +1,22 @@ +
+#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();
+
+ Fl::run();
+
+ delete gui;
+
+ return 0;
+
+}
|