summaryrefslogtreecommitdiffstats
path: root/Source/FLTKDialog/FLTKPropertyItemRow.h
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-03-20 18:16:16 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-03-20 18:16:16 (GMT)
commit49bcc1ad51e25b0d7c08a2861b997a9d10cf6379 (patch)
tree5081912d7925b370dd196c9632f3d231ffdf05e6 /Source/FLTKDialog/FLTKPropertyItemRow.h
parent2990c3db571a29a00fc59b5c572d5aa6cbe8d117 (diff)
downloadCMake-49bcc1ad51e25b0d7c08a2861b997a9d10cf6379.zip
CMake-49bcc1ad51e25b0d7c08a2861b997a9d10cf6379.tar.gz
CMake-49bcc1ad51e25b0d7c08a2861b997a9d10cf6379.tar.bz2
ENH: remove fltk dialog as it is no longer supported
Diffstat (limited to 'Source/FLTKDialog/FLTKPropertyItemRow.h')
-rw-r--r--Source/FLTKDialog/FLTKPropertyItemRow.h83
1 files changed, 0 insertions, 83 deletions
diff --git a/Source/FLTKDialog/FLTKPropertyItemRow.h b/Source/FLTKDialog/FLTKPropertyItemRow.h
deleted file mode 100644
index 24bac67..0000000
--- a/Source/FLTKDialog/FLTKPropertyItemRow.h
+++ /dev/null
@@ -1,83 +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.
-
-=========================================================================*/
-
-#ifndef FLTKPropertyItemRow_h
-#define FLTKPropertyItemRow_h
-
-#include "FLTKPropertyList.h"
-
-#include <FL/Fl_Tile.H>
-#include <FL/Fl_Input.H>
-#include <FL/Fl_Button.H>
-
-
-class CMakeSetupGUIImplementation;
-
-
-namespace fltk {
-
-
-/**
-
- Class to manage a GUI row corresponding to a property
-
- */
-class PropertyItemRow : public Fl_Tile
-{
-
- // Helper class for passing data to callbacks
- struct ItemValue
- {
- PropertyItem * m_PropertyItem;
- Fl_Input * m_InputText;
- };
-
-
- public:
-
- PropertyItemRow( PropertyItem *);
- ~PropertyItemRow();
-
- private:
-
- PropertyItem * m_PropertyItem;
- ItemValue * m_ItemValue;
- Fl_Button * m_NameButton;
-
- static CMakeSetupGUIImplementation * m_CMakeSetup;
-
- static void CheckButtonCallback( Fl_Widget *, void *);
- static void NameButtonCallback( Fl_Widget *, void *);
- static void InputTextCallback( Fl_Widget *, void *);
- static void BrowsePathCallback( Fl_Widget *, void *);
- static void ColorSelectionCallback( Fl_Widget * widget, void * data);
-
-
- static void FillCacheManagerFromCacheGUI( void );
-
- public:
-
- static void SetCMakeSetupGUI( CMakeSetupGUIImplementation * );
-};
-
-
-} // end namespace fltk
-
-
-#endif
-
-