1
/*******************************************************************
3
Part of the Fritzing project - http://fritzing.org
4
Copyright (c) 2007-2010 Fachhochschule Potsdam - http://fh-potsdam.de
6
Fritzing is free software: you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation, either version 3 of the License, or
9
(at your option) any later version.
11
Fritzing is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
GNU General Public License for more details.
16
You should have received a copy of the GNU General Public License
17
along with Fritzing. If not, see <http://www.gnu.org/licenses/>.
19
********************************************************************
22
$Author: cohen@irascible.com $:
23
$Date: 2010-05-06 22:30:19 +0200 (Thu, 06 May 2010) $
25
********************************************************************/
29
#ifndef ADDREMOVELISTWIDGET_H_
30
#define ADDREMOVELISTWIDGET_H_
33
#include <QPushButton>
34
#include <QListWidget>
37
class AddRemoveListWidget : public QGroupBox {
41
AddRemoveListWidget(QString title, QWidget *parent=0);
43
QListWidgetItem* itemAt(int rowIdx);
44
QStringList& getItemsText();
45
void setItemsText(const QStringList& texts);
49
void addItem(QString itemText);
50
void removeSelectedItems();
55
QPushButton *m_addButton;
56
QPushButton *m_removeButton;
61
#endif /* ADDREMOVELISTWIDGET_H_ */