00001 /*************************************************************************** 00002 * file klfflowlistwidget.h 00003 * This file is part of the KLatexFormula Project. 00004 * Copyright (C) 2011 by Philippe Faist 00005 * philippe.faist at bluewin.ch 00006 * * 00007 * This program is free software; you can redistribute it and/or modify * 00008 * it under the terms of the GNU General Public License as published by * 00009 * the Free Software Foundation; either version 2 of the License, or * 00010 * (at your option) any later version. * 00011 * * 00012 * This program is distributed in the hope that it will be useful, * 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00015 * GNU General Public License for more details. * 00016 * * 00017 * You should have received a copy of the GNU General Public License * 00018 * along with this program; if not, write to the * 00019 * Free Software Foundation, Inc., * 00020 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00021 ***************************************************************************/ 00022 /* $Id$ */ 00023 00024 #ifndef KLFFLOWLISTWIDGET_H 00025 #define KLFFLOWLISTWIDGET_H 00026 00027 #include <QVariant> 00028 #include <QWidget> 00029 00030 class QLabel; 00031 class KLFFlowLayout; 00032 class KLFFlowListItemWidget; 00033 00034 class KLFFlowListWidget : public QWidget 00035 { 00036 Q_OBJECT 00037 public: 00038 KLFFlowListWidget(QWidget *parent = NULL); 00039 virtual ~KLFFlowListWidget(); 00040 00041 inline int itemCount() const { return pWidgets.size(); } 00042 00043 QString itemAt(int i) const; 00044 QVariant itemDataAt(int i) const; 00045 00046 QStringList itemList() const; 00047 QVariantList itemDataList() const; 00048 00049 signals: 00050 void itemActivated(const QString& s, const QVariant& data); 00051 void itemActivated(int i, const QString& s, const QVariant& data); 00052 00053 public slots: 00054 void setItems(const QStringList& strings, const QVariantList& datalist = QVariantList()); 00055 void addItem(const QString& string, const QVariant& data = QVariant()); 00056 00057 void removeItem(int i); 00058 void insertItem(int i, const QString& s, const QVariant& data = QVariant()) ; 00059 00060 private slots: 00061 void itemClosed(); 00062 00063 private: 00064 KLFFlowLayout *pLayout; 00065 00066 QList<QWidget*> pWidgets; 00067 00068 inline int simple_wrapped_item_index(int i) const { return (i >= 0) ? i : pWidgets.size() - (-i) + 1; } 00069 }; 00070 00071 00072 00073 00074 #endif