Mercurial > minori
view include/gui/sidebar.h @ 36:2743011a6042
*: mass update
formatted all source files, converted ALL instances of setStyleSheet() to
palettes and fonts (stylesheets suck), and I changed the clang-format file because
it wasn't working on my laptop for some reason.
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 21 Sep 2023 15:17:47 -0400 |
parents | cde8f67a7c7d |
children |
line wrap: on
line source
#ifndef __gui__sidebar_h #define __gui__sidebar_h #include <QItemSelectionModel> #include <QListWidget> #include <QListWidgetItem> class SideBar : public QListWidget { Q_OBJECT public: SideBar(QWidget* parent = nullptr); QListWidgetItem* AddItem(QString name, QIcon icon = QIcon()); QListWidgetItem* AddSeparator(); bool IndexIsSeparator(QModelIndex index) const; static QIcon CreateIcon(const char* file); signals: void CurrentItemChanged(int index); protected: virtual void mouseMoveEvent(QMouseEvent* event) override; QItemSelectionModel::SelectionFlags selectionCommand(const QModelIndex& index, const QEvent* event) const override; int RemoveSeparatorsFromIndex(int index); }; #endif // __gui__sidebar_h