mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
254 lines
7.5 KiB
C++
254 lines
7.5 KiB
C++
/* This file is part of the KDE libraries
|
|
Copyright (C) 2000 David Faure <faure@kde.org>, Alexander Neundorf <neundorf@kde.org>
|
|
(C) 2010 Sebastian Trueg <trueg@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef KEDITLISTWIDGET_H
|
|
#define KEDITLISTWIDGET_H
|
|
|
|
#include <kdeui_export.h>
|
|
|
|
#include <QWidget>
|
|
#include <QStringListModel>
|
|
#include <QListView>
|
|
#include <QPushButton>
|
|
|
|
class KLineEdit;
|
|
class KComboBox;
|
|
|
|
class KEditListWidgetPrivate;
|
|
/**
|
|
* An editable listbox
|
|
*
|
|
* This class provides an editable listbox, this means
|
|
* a listbox which is accompanied by a line edit to enter new
|
|
* items into the listbox and pushbuttons to add and remove
|
|
* items from the listbox and two buttons to move items up and down.
|
|
*
|
|
* \image html keditlistbox.png "KDE Edit List Box Widget"
|
|
*
|
|
*
|
|
* @since 4.6
|
|
*/
|
|
class KDEUI_EXPORT KEditListWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_FLAGS( Buttons )
|
|
Q_PROPERTY( Buttons buttons READ buttons WRITE setButtons )
|
|
Q_PROPERTY( QStringList items READ items WRITE setItems NOTIFY changed )
|
|
Q_PROPERTY( bool checkAtEntering READ checkAtEntering WRITE setCheckAtEntering )
|
|
|
|
public:
|
|
class CustomEditorPrivate;
|
|
|
|
/**
|
|
* Custom editor class
|
|
**/
|
|
class KDEUI_EXPORT CustomEditor
|
|
{
|
|
public:
|
|
CustomEditor();
|
|
CustomEditor( QWidget *repWidget, KLineEdit *edit );
|
|
CustomEditor( KComboBox *combo );
|
|
virtual ~CustomEditor();
|
|
|
|
void setRepresentationWidget( QWidget *repWidget );
|
|
void setLineEdit( KLineEdit *edit );
|
|
|
|
virtual QWidget *representationWidget() const;
|
|
virtual KLineEdit *lineEdit() const;
|
|
|
|
private:
|
|
friend class CustomEditorPrivate;
|
|
CustomEditorPrivate *const d;
|
|
|
|
Q_DISABLE_COPY(CustomEditor)
|
|
};
|
|
|
|
public:
|
|
|
|
/**
|
|
* Enumeration of the buttons, the listbox offers. Specify them in the
|
|
* constructor in the buttons parameter, or in setButtons.
|
|
*/
|
|
enum Button {
|
|
Add = 0x0001,
|
|
Remove = 0x0002,
|
|
UpDown = 0x0004,
|
|
All = Add | Remove | UpDown
|
|
};
|
|
|
|
Q_DECLARE_FLAGS( Buttons, Button )
|
|
|
|
/**
|
|
* Create an editable listbox.
|
|
*/
|
|
explicit KEditListWidget(QWidget *parent = 0);
|
|
|
|
/**
|
|
* Constructor which allows to use a custom editing widget
|
|
* instead of the standard KLineEdit widget. E.g. you can use a
|
|
* KUrlRequester or a KComboBox as input widget. The custom
|
|
* editor must consist of a lineedit and optionally another widget that
|
|
* is used as representation. A KComboBox or a KUrlRequester have a
|
|
* KLineEdit as child-widget for example, so the KComboBox is used as
|
|
* the representation widget.
|
|
*
|
|
* @see KUrlRequester::customEditor(), setCustomEditor
|
|
*/
|
|
KEditListWidget( const CustomEditor &customEditor,
|
|
QWidget *parent = 0,
|
|
bool checkAtEntering = false,
|
|
Buttons buttons = All );
|
|
|
|
virtual ~KEditListWidget();
|
|
|
|
/**
|
|
* Return a pointer to the embedded QListView.
|
|
*/
|
|
QListView* listView() const;
|
|
/**
|
|
* Return a pointer to the embedded KLineEdit.
|
|
*/
|
|
KLineEdit* lineEdit() const;
|
|
/**
|
|
* Return a pointer to the Add button
|
|
*/
|
|
QPushButton* addButton() const;
|
|
/**
|
|
* Return a pointer to the Remove button
|
|
*/
|
|
QPushButton* removeButton() const;
|
|
/**
|
|
* Return a pointer to the Up button
|
|
*/
|
|
QPushButton* upButton() const;
|
|
/**
|
|
* Return a pointer to the Down button
|
|
*/
|
|
QPushButton* downButton() const;
|
|
|
|
/**
|
|
* See QStringListModel::rowCount()
|
|
*/
|
|
int count() const;
|
|
/**
|
|
* See QStringListModel::setStringList()
|
|
*/
|
|
void insertStringList(const QStringList& list, int index=-1);
|
|
void insertItem(const QString& text, int index=-1);
|
|
/**
|
|
* Clears both the listbox and the line edit.
|
|
*/
|
|
void clear();
|
|
/**
|
|
* See QStringListModel::stringList()
|
|
*/
|
|
QString text(int index) const;
|
|
int currentItem() const;
|
|
QString currentText() const;
|
|
|
|
/**
|
|
* @returns a stringlist of all items in the listbox
|
|
*/
|
|
QStringList items() const;
|
|
|
|
/**
|
|
* Clears the listbox and sets the contents to @p items
|
|
*/
|
|
void setItems(const QStringList& items);
|
|
|
|
/**
|
|
* Returns which buttons are visible
|
|
*/
|
|
Buttons buttons() const;
|
|
|
|
/**
|
|
* Specifies which buttons should be visible
|
|
*/
|
|
void setButtons( Buttons buttons );
|
|
|
|
/**
|
|
* If @p check is true, after every character you type
|
|
* in the line edit KEditListWidget will enable or disable
|
|
* the Add-button, depending whether the current content of the
|
|
* line edit is already in the listbox. Maybe this can become a
|
|
* performance hit with large lists on slow machines.
|
|
* If @p check is false,
|
|
* it will be checked if you press the Add-button. It is not
|
|
* possible to enter items twice into the listbox.
|
|
* Default is false.
|
|
*/
|
|
void setCheckAtEntering(bool check);
|
|
|
|
/**
|
|
* Returns true if check at entering is enabled.
|
|
*/
|
|
bool checkAtEntering();
|
|
|
|
/**
|
|
* Allows to use a custom editing widget
|
|
* instead of the standard KLineEdit widget. E.g. you can use a
|
|
* KUrlRequester or a KComboBox as input widget. The custom
|
|
* editor must consist of a lineedit and optionally another widget that
|
|
* is used as representation. A KComboBox or a KUrlRequester have a
|
|
* KLineEdit as child-widget for example, so the KComboBox is used as
|
|
* the representation widget.
|
|
*/
|
|
void setCustomEditor( const CustomEditor& editor );
|
|
|
|
/**
|
|
* Reimplented for interal reasons. The API is not affected.
|
|
*/
|
|
bool eventFilter( QObject* o, QEvent* e );
|
|
|
|
Q_SIGNALS:
|
|
void changed();
|
|
|
|
/**
|
|
* This signal is emitted when the user adds a new string to the list,
|
|
* the parameter is the added string.
|
|
*/
|
|
void added( const QString & text );
|
|
|
|
/**
|
|
* This signal is emitted when the user removes a string from the list,
|
|
* the parameter is the removed string.
|
|
*/
|
|
void removed( const QString & text );
|
|
|
|
private Q_SLOTS:
|
|
void moveItemUp();
|
|
void moveItemDown();
|
|
void addItem();
|
|
void removeItem();
|
|
void enableMoveButtons(const QModelIndex&, const QModelIndex&);
|
|
void typedSomething(const QString& text);
|
|
void slotSelectionChanged( const QItemSelection& selected, const QItemSelection& deselected );
|
|
|
|
private:
|
|
friend class KEditListWidgetPrivate;
|
|
KEditListWidgetPrivate* const d;
|
|
|
|
Q_DISABLE_COPY(KEditListWidget)
|
|
};
|
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(KEditListWidget::Buttons)
|
|
|
|
#endif
|