#ifndef oxygenstyleconfig_h #define oxygenstyleconfig_h /* Copyright (c) 2010 Hugo Pereira Da Costa Copyright (C) 2003 Sandro Giessl based on the Keramik configuration dialog: Copyright (c) 2003 Maksim Orlovich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include "ui_oxygenstyleconfig.h" namespace Oxygen { class AnimationConfigWidget; class StyleConfig: public QWidget, Ui::OxygenStyleConfig { Q_OBJECT public: //! constructor explicit StyleConfig(QWidget*); //! destructor virtual ~StyleConfig( void ) {} //! event filter virtual bool eventFilter( QObject*, QEvent* ); Q_SIGNALS: //! emmited whenever one option is changed. void changed(bool); public Q_SLOTS: //! save current state void save( void ); //! restore all default values void defaults( void ); //Everything below this is internal. //! reset to saved configuration void reset( void ); protected Q_SLOTS: //! update minimum size void updateMinimumSize( void ); //! update layout /*! needed in expert mode to accommodate with animations config widget size changes */ void updateLayout( void ); //! update modified state when option is checked/unchecked void updateChanged( void ); //! update options enable state based on selected drag mode void windowDragModeChanged( int ); protected: //! event processing virtual bool event( QEvent* ); //! load setup from config data void load( void ); int menuMode( void ) const; int tabStyle( void ) const; int windowDragMode( void ) const; int triangularExpanderSize( void ) const; private: }; } #endif