mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
108 lines
2.9 KiB
C++
108 lines
2.9 KiB
C++
#ifndef OXYGENDEMODIALOG_H
|
|
#define OXYGENDEMODIALOG_H
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// oxygendemodialog.h
|
|
// oxygen demo dialog
|
|
// -------------------
|
|
//
|
|
// Copyright (c) 2010 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
|
//
|
|
// 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 "oxygendemowidget.h"
|
|
|
|
#include <KDialog>
|
|
#include <KPageWidget>
|
|
#include <KPushButton>
|
|
|
|
#include <QtCore/QList>
|
|
#include <QtGui/QWidget>
|
|
#include <QtGui/QCheckBox>
|
|
|
|
namespace Oxygen
|
|
{
|
|
|
|
class ButtonDemoWidget;
|
|
class FrameDemoWidget;
|
|
class InputDemoWidget;
|
|
class ListDemoWidget;
|
|
class MdiDemoWidget;
|
|
class SliderDemoWidget;
|
|
class TabDemoWidget;
|
|
class DemoDialog: public KDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
//! constructor
|
|
explicit DemoDialog( QWidget* parent = 0 );
|
|
|
|
//! destructor
|
|
virtual ~DemoDialog( void )
|
|
{}
|
|
|
|
signals:
|
|
|
|
//! emitted when dialog is closed
|
|
void abortSimulations( void );
|
|
|
|
protected slots:
|
|
|
|
//! update window title when page is changed
|
|
virtual void updateWindowTitle( KPageWidgetItem* );
|
|
|
|
//! update page enability
|
|
virtual void updateEnableState( KPageWidgetItem* );
|
|
|
|
//! toggle enable state
|
|
virtual void toggleEnable( bool );
|
|
|
|
//! toggle RightToLeft
|
|
virtual void toggleRightToLeft( bool );
|
|
|
|
protected:
|
|
|
|
//! close event
|
|
virtual void closeEvent( QCloseEvent* );
|
|
|
|
//! hide event
|
|
virtual void hideEvent( QHideEvent* );
|
|
|
|
private:
|
|
|
|
//! main paged widget
|
|
KPageWidget* _pageWidget;
|
|
|
|
//! list of demo widget
|
|
QList<DemoWidget*> _widgets;
|
|
|
|
//! enable state checkbox
|
|
QCheckBox* _enableCheckBox;
|
|
|
|
//! reverse layout checkbox
|
|
QCheckBox* _rightToLeftCheckBox;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|