b4f63cb440
svn path=/trunk/KDE/kdebase/workspace/; revision=1025937
134 lines
3.2 KiB
C++
134 lines
3.2 KiB
C++
#ifndef OxygenExceptionListWidget_h
|
|
#define OxygenExceptionListWidget_h
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// OxygenExceptionListWidget.h
|
|
// -------------------
|
|
//
|
|
// Copyright (c) 2009 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 <KPushButton>
|
|
#include <KDialog>
|
|
#include <QtGui/QTreeView>
|
|
|
|
#include "oxygenexceptionmodel.h"
|
|
#include "../oxygenexceptionlist.h"
|
|
|
|
//! QDialog used to commit selected files
|
|
namespace Oxygen
|
|
{
|
|
|
|
class OxygenExceptionListWidget: public QWidget
|
|
{
|
|
|
|
//! Qt meta object
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
//! constructor
|
|
explicit OxygenExceptionListWidget( QWidget* = 0, OxygenConfiguration default_configuration = OxygenConfiguration() );
|
|
|
|
//! set exceptions
|
|
void setExceptions( const OxygenExceptionList& );
|
|
|
|
//! get exceptions
|
|
OxygenExceptionList exceptions( void ) const;
|
|
|
|
signals:
|
|
|
|
//! emitted when list is changed
|
|
void changed( void );
|
|
|
|
protected:
|
|
|
|
//! list
|
|
QTreeView& _list() const
|
|
{ return *list_; }
|
|
|
|
//! model
|
|
const OxygenExceptionModel& _model() const
|
|
{ return model_; }
|
|
|
|
//! model
|
|
OxygenExceptionModel& _model()
|
|
{ return model_; }
|
|
|
|
protected slots:
|
|
|
|
//! update button states
|
|
virtual void _updateButtons( void );
|
|
|
|
//! add
|
|
virtual void _add( void );
|
|
|
|
//! edit
|
|
virtual void _edit( void );
|
|
|
|
//! remove
|
|
virtual void _remove( void );
|
|
|
|
//! toggle
|
|
virtual void _toggle( const QModelIndex& );
|
|
|
|
//! move up
|
|
virtual void _up( void );
|
|
|
|
//! move down
|
|
virtual void _down( void );
|
|
|
|
private:
|
|
|
|
//! resize columns
|
|
void _resizeColumns( void ) const;
|
|
|
|
//! check exception
|
|
bool _checkException( OxygenException& );
|
|
|
|
//! default configuration
|
|
OxygenConfiguration default_configuration_;
|
|
|
|
//! list of files
|
|
QTreeView* list_;
|
|
|
|
//! model
|
|
OxygenExceptionModel model_;
|
|
|
|
//! add
|
|
KPushButton* add_button_;
|
|
|
|
//! edit
|
|
KPushButton* edit_button_;
|
|
|
|
//! remove
|
|
KPushButton* remove_button_;
|
|
|
|
//! move up
|
|
KPushButton* up_button_;
|
|
|
|
//! move down
|
|
KPushButton* down_button_;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|