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