diff options
author | Michele Calgaro <[email protected]> | 2024-10-13 11:56:14 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-29 21:58:42 +0900 |
commit | 2879ff70be9271550477982a1a6371714db38562 (patch) | |
tree | c2054149dba923ab080fe7093432c7663a990111 /src/widgets/kwidgetlistbox.h | |
parent | 3eb38d2556f676d1027746f20bf12a1dd74451ef (diff) | |
download | krecipes-2879ff70be9271550477982a1a6371714db38562.tar.gz krecipes-2879ff70be9271550477982a1a6371714db38562.zip |
Rearrange folders structure to remove unnecessary 'krecipes' second level subfolder
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 0c8ed6c9a4000af8f48581a81c4b5c2f5b9fd502)
Diffstat (limited to 'src/widgets/kwidgetlistbox.h')
-rw-r--r-- | src/widgets/kwidgetlistbox.h | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/src/widgets/kwidgetlistbox.h b/src/widgets/kwidgetlistbox.h new file mode 100644 index 0000000..0ad463c --- /dev/null +++ b/src/widgets/kwidgetlistbox.h @@ -0,0 +1,71 @@ +/* + * Copyright (C) 2005 Petri Damst�n <[email protected]> + * + * Note: This file is now part of Krecipes, which is a slightly modified version of the + * original used in SuperKaramba + * + * This file is part of SuperKaramba. + * + * SuperKaramba is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * SuperKaramba 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with SuperKaramba; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + ****************************************************************************/ +#ifndef KWIDGETLISTBOX_H +#define KWIDGETLISTBOX_H + +#include <tqtable.h> + +/** +@author See README for the list of authors +*/ + +typedef bool (*show_callback) (int index, TQWidget* widget, void* data); + +class KWidgetListbox : public TQTable +{ + TQ_OBJECT + + public: + KWidgetListbox(TQWidget *parent = 0, const char *name = 0); + ~KWidgetListbox(); + + int insertItem(TQWidget* item, int index = -1); + void setSelected(TQWidget* item); + void setSelected(int index); + void removeItem(TQWidget* item); + void removeItem(int index); + void clear(); + int selected() const; + TQWidget* selectedItem() const; + TQWidget* item(int index) const; + int index(TQWidget* itm) const; + uint count() const { return numRows(); }; + + void showItems(show_callback func = 0, void* data = 0); + + void paintCell(TQPainter* p, int row, int col, const TQRect& cr, + bool selected, const TQColorGroup& cg); + protected: + void setItemColors(int index, bool even); + void updateColors(); + bool even(int index); + virtual void showEvent(TQShowEvent* e); + + protected slots: + void selectionChanged(int row, int col); + + signals: + void selected(int index); +}; + +#endif |