home *** CD-ROM | disk | FTP | other *** search
- /***************************************************************************
- * spinbox.h - header for the corresponding cpp file
- *
- * Copyright (C) 2003 - 2008 Florian Richter
- ***************************************************************************/
- /*
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
- #ifndef SMC_SPINBOX_H
- #define SMC_SPINBOX_H
-
- #include "../core/globals.h"
- #include "../objects/box.h"
-
- /* *** *** *** *** *** *** *** *** cSpinBox *** *** *** *** *** *** *** *** *** */
-
- class cSpinBox : public cBaseBox
- {
- public:
- // constructor
- cSpinBox( float x, float y );
- // create from stream
- cSpinBox( CEGUI::XMLAttributes &attributes );
- // destructor
- virtual ~cSpinBox( void );
-
- // init defaults
- void Init( void );
-
- // copy
- virtual cSpinBox *Copy( void );
-
- // create from stream
- virtual void Create_from_Stream( CEGUI::XMLAttributes &attributes );
- // save to stream
- virtual void Save_to_Stream( ofstream &file );
-
- // Activate the Spinning
- virtual void Activate( void );
- // Stop the Spinning
- void Stop( void );
- // update
- virtual void Update( void );
-
- // if update is valid for the current state
- virtual bool Is_Update_Valid( void );
-
- // ignore onground check
- virtual void Check_on_Ground( void ) {};
-
- // spin counter
- float spin_counter;
-
- // if spinning
- bool spin;
- };
-
- /* *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** */
-
- #endif
-