1 /*
2  *
3  * This file is part of XForms.
4  *
5  * XForms is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU Lesser General Public License as
7  * published by the Free Software Foundation; either version 2.1, or
8  * (at your option) any later version.
9  *
10  * XForms is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with XForms.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 
20 #ifndef SP_SLIDER_H_
21 #define SP_SLIDER_H_
22 
23 #include "include/forms.h"
24 #include <stdio.h>
25 
26 FL_FORM * slider_create_spec_form( void );
27 void slider_adjust_spec_form( FL_OBJECT * obj );
28 void slider_fill_in_spec_form( FL_OBJECT * obj );
29 void slider_reread_spec_form( FL_OBJECT * obj );
30 void slider_emit_spec_fd_code( FILE      * fp,
31                                FL_OBJECT * obj );
32 void slider_emit_spec_c_code( FILE      * fp,
33                               FL_OBJECT * obj );
34 
35 #endif
36 
37 
38 /*
39  * Local variables:
40  * tab-width: 4
41  * indent-tabs-mode: nil
42  * End:
43  */
44