[KLF Backend][KLF Tools][KLF Home]
KLatexFormula Project
src/klftools/klfenumlistwidget.h
Go to the documentation of this file.
00001 /***************************************************************************
00002  *   file klfenumlistwidget.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 
00025 #ifndef KLF_ENUMLISTWIDGET_H
00026 #define KLF_ENUMLISTWIDGET_H
00027 
00028 #include <QWidget>
00029 #include <QLabel>
00030 
00031 #include <klfdefs.h>
00032 
00033 
00034 class KLF_EXPORT KLFEnumListWidget : public QLabel
00035 {
00036   Q_OBJECT
00037 public:
00038   KLFEnumListWidget(QWidget *parent);
00039   virtual ~KLFEnumListWidget();
00040 
00041   inline int itemCount() const { return pItems.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 addItem(const QString& s, const QVariant& data = QVariant()) { insertItem(-1, s, data); }
00055 
00056   void removeItem(int i);
00057   void insertItem(int i, const QString& s, const QVariant& data = QVariant()) ;
00058 
00059   void setItems(const QStringList& slist, const QVariantList& datalist = QVariantList());
00060 
00061 protected:
00062   virtual void updateLabelText();
00063 
00064   struct Item {
00065     Item(const QString& s_ = QString(), const QVariant& d_ = QVariant())  :  s(s_), data(d_)  { }
00066     QString s;
00067     QVariant data;
00068   };
00069 
00070   QList<Item> pItems;
00071 
00072 private slots:
00073 
00074   void labelActionLink(const QString& link);
00075 
00076 private:
00077   inline int simple_wrapped_item_index(int i) const { return (i >= 0) ? i : pItems.size() + i; }
00078 };
00079 
00080 
00081 
00082 
00083 
00084 #endif

Generated by doxygen 1.7.6.1. The KLatexFormula website is hosted on sourceforge.net