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