Panda3D
pgSliderBarNotify.cxx
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file pgSliderBarNotify.cxx
10  * @author drose
11  * @date 2005-08-18
12  */
13 
14 #include "pgSliderBarNotify.h"
15 #include "pgSliderBar.h"
16 
17 /**
18  * Called whenever a watched PGSliderBar's value has been changed by the user
19  * or programmatically.
20  */
21 void PGSliderBarNotify::
22 slider_bar_adjust(PGSliderBar *) {
23 }
24 
25 /**
26  * Called whenever a watched PGSliderBar's overall range has been changed.
27  */
28 void PGSliderBarNotify::
29 slider_bar_set_range(PGSliderBar *) {
30 }
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
This is a particular kind of PGItem that draws a little bar with a slider that moves from left to rig...
Definition: pgSliderBar.h:31