/* * widgetconfigwindow.h - Author: Ian Donderwinkel * * Copyright (C) 2003 Atomic Blue (info@planeshift.it, http://www.atomicblue.org) * * * 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 (version 2 of the License) * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * */ #ifndef __WIDGET_CONFIG_WINDOW_ #define __WIDGET_CONFIG_WINDOW_ #include "pawswidget.h" #include "pawsmanager.h" #include "pawsmainwidget.h" class pawsProgressBar; class pawsButton; class pawsTextBox; class pawsScrollBar; //----------------------------------------------------------------------------- // class WidgetConfigWindow //----------------------------------------------------------------------------- class WidgetConfigWindow : public pawsWidget { public: WidgetConfigWindow(); virtual ~WidgetConfigWindow(){}; bool PostSetup(); bool OnScroll( int direction, pawsScrollBar* widget ); bool OnButtonPressed( int mouseButton, int keyModifier, pawsWidget* widget ); void SetConfigurableWidget(pawsWidget* w); private: /// Shows/Hides the extra font size option and changes the window size to fit void SetFontSliderVisibility(bool visible); /// old values (used to restore settings when 'cancel' is pressed) float oldMinAlpha; float oldMaxAlpha; bool oldFadeStatus; float oldFadeSpeed; float oldFontScaling; /// current values float currentMinAlpha; float currentMaxAlpha; bool currentFadeStatus; float currentFadeSpeed; float currentFontScaling; /// The scrollbar for adjusting the min Alpha of a window pawsScrollBar* scrollBarMinAlpha; pawsProgressBar* progressBarMinAlpha; /// The scrollbar for adjusting the max Alpha of a window pawsScrollBar* scrollBarMaxAlpha; pawsProgressBar* progressBarMaxAlpha; /// The scrollbar for adjusting the fadespeed of a window pawsScrollBar* scrollBarFadeSpeed; pawsProgressBar* progressBarFadeSpeed; // the scrollbar for font scaling in a window pawsScrollBar* scrollBarFontScaling; pawsProgressBar* progressBarFontScaling; /// OK/Cancel buttons pawsButton* buttonOK; pawsButton* buttonCancel; pawsButton* buttonApply; /// Fade checkbox pawsButton* buttonFade; /// Text boxes pawsTextBox* textFadeStatus; pawsTextBox* textMinAlphaPct; // min Alpha in % pawsTextBox* textMaxAlphaPct; // max Alpha in % pawsTextBox* textFadeSpeedPct; // current fade value in % pawsTextBox* textFontScalingPct; // current font scaling in % pawsTextBox* textFontScalingLabel; /// pointer to the widget that will have it's settings changed pawsWidget* configWidget; }; CREATE_PAWS_FACTORY( WidgetConfigWindow ); #endif