2009-09-15 07:12:54 +00:00
|
|
|
#ifndef oxygenconfigurationui_h
|
|
|
|
#define oxygenconfigurationui_h
|
2009-08-24 16:15:14 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
2009-09-15 07:12:54 +00:00
|
|
|
// oxygenconfigurationui.h
|
2009-08-24 16:15:14 +00:00
|
|
|
// -------------------
|
2009-09-09 00:55:55 +00:00
|
|
|
//
|
2009-08-25 04:15:13 +00:00
|
|
|
// Copyright (c) 2009 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
2009-08-24 16:15:14 +00:00
|
|
|
//
|
|
|
|
// 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
|
2009-09-09 00:55:55 +00:00
|
|
|
// IN THE SOFTWARE.
|
2009-08-24 16:15:14 +00:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
2009-08-22 08:24:06 +00:00
|
|
|
|
|
|
|
#include <kdeversion.h>
|
2009-09-16 06:09:31 +00:00
|
|
|
#include <KComboBox>
|
2009-09-20 07:42:03 +00:00
|
|
|
#include <QtGui/QWidget>
|
|
|
|
#include <QtGui/QCheckBox>
|
|
|
|
#include <QtCore/QVector>
|
2009-08-22 08:24:06 +00:00
|
|
|
|
2009-09-15 07:12:54 +00:00
|
|
|
#include "oxygenshadowconfigurationui.h"
|
|
|
|
#include "oxygenexceptionlistwidget.h"
|
2009-08-30 17:39:31 +00:00
|
|
|
|
2009-09-15 07:12:54 +00:00
|
|
|
namespace Oxygen
|
2009-08-22 08:24:06 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
//_____________________________________________
|
2009-09-15 07:12:54 +00:00
|
|
|
class OxygenConfigurationUI: public QWidget
|
2009-08-22 08:24:06 +00:00
|
|
|
{
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
Q_OBJECT
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
//! constructor
|
2009-09-15 07:12:54 +00:00
|
|
|
OxygenConfigurationUI( QWidget* );
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
//! setup ui
|
|
|
|
void setupUI( void );
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
//! title alignment
|
2009-09-16 06:09:31 +00:00
|
|
|
KComboBox *titleAlignment;
|
2009-08-22 08:24:06 +00:00
|
|
|
|
|
|
|
//! button size
|
2009-09-16 06:09:31 +00:00
|
|
|
KComboBox* buttonSize;
|
2009-08-22 08:24:06 +00:00
|
|
|
|
|
|
|
//! frame border
|
2009-09-16 06:09:31 +00:00
|
|
|
KComboBox *frameBorder;
|
2009-08-22 08:24:06 +00:00
|
|
|
|
|
|
|
//! blend color
|
2009-09-16 06:09:31 +00:00
|
|
|
KComboBox *blendColor;
|
2009-08-22 08:24:06 +00:00
|
|
|
|
2009-09-02 02:19:26 +00:00
|
|
|
//! size grip
|
2009-09-16 06:09:31 +00:00
|
|
|
KComboBox *sizeGripMode;
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
//! draw separator
|
|
|
|
QCheckBox *drawSeparator;
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-09-04 19:09:23 +00:00
|
|
|
//! active window title outline
|
|
|
|
QCheckBox *titleOutline;
|
2009-08-22 08:24:06 +00:00
|
|
|
|
2009-09-15 07:12:54 +00:00
|
|
|
//! oxygen shadow
|
2009-08-22 08:24:06 +00:00
|
|
|
QCheckBox *useOxygenShadows;
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-09-15 07:12:54 +00:00
|
|
|
//! about oxygen
|
|
|
|
QPushButton *aboutOxygen;
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-09-14 19:21:39 +00:00
|
|
|
// shadow configuration
|
2009-09-15 07:12:54 +00:00
|
|
|
QVector<OxygenShadowConfigurationUI*> shadowConfigurations;
|
2009-09-14 19:21:39 +00:00
|
|
|
|
|
|
|
//! exceptions
|
2009-09-15 07:12:54 +00:00
|
|
|
OxygenExceptionListWidget *exceptions;
|
2009-09-14 19:21:39 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
//! emmited when changed
|
|
|
|
bool changed( void );
|
|
|
|
|
2009-08-22 08:24:06 +00:00
|
|
|
};
|
2009-09-09 00:55:55 +00:00
|
|
|
|
2009-08-24 06:23:44 +00:00
|
|
|
}
|
2009-08-22 08:24:06 +00:00
|
|
|
|
|
|
|
#endif
|