slider_helper.hpp
Go to the documentation of this file.
00001 /* 00002 Copyright 2005-2007 Adobe Systems Incorporated 00003 Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt 00004 or a copy at http://stlab.adobe.com/licenses.html) 00005 */ 00006 00007 /****************************************************************************************************/ 00008 00009 #ifndef ADOBE_SLIDER_HELPER_HPP 00010 #define ADOBE_SLIDER_HELPER_HPP 00011 00012 /****************************************************************************************************/ 00013 00014 #include <adobe/future/widgets/headers/widget_tokens.hpp> 00015 #include <adobe/future/widgets/headers/value_range_format.hpp> 00016 00017 /****************************************************************************************************/ 00018 00019 namespace adobe { 00020 00021 /****************************************************************************************************/ 00022 00027 enum slider_style_t 00028 { 00030 slider_points_not_s = 0, 00031 00033 slider_points_up_s, 00034 00036 slider_points_down_s, 00037 00039 slider_points_left_s, 00040 00042 slider_points_right_s 00043 }; 00044 00045 /****************************************************************************************************/ 00046 00047 } // namespace adobe 00048 00049 /****************************************************************************************************/ 00050 00051 #endif 00052 00053 /****************************************************************************************************/ |