Mercurial > minori
annotate include/gui/widgets/sidebar.h @ 327:b5d6c27c308f
anime: refactor Anime::SeriesSeason to Season class
ToLocalString has also been altered to take in both season
and year because lots of locales actually treat formatting
seasons differently! most notably is Russian which adds a
suffix at the end to notate seasons(??)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 13 Jun 2024 01:49:18 -0400 |
parents | 99cbc51433e4 |
children |
rev | line source |
---|---|
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
1 #ifndef MINORI_GUI_WIDGETS_SIDEBAR_H_ |
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
2 #define MINORI_GUI_WIDGETS_SIDEBAR_H_ |
69 | 3 |
46 | 4 #include <QItemSelectionModel> |
5 #include <QListWidget> | |
85 | 6 |
7 class QListWidgetItem; | |
69 | 8 |
95
8043152ef9d4
include: set classes as final where appropriate
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
9 class SideBar final : public QListWidget { |
258 | 10 Q_OBJECT |
46 | 11 |
258 | 12 public: |
13 SideBar(QWidget* parent = nullptr); | |
14 QListWidgetItem* AddItem(QString name, QIcon icon = QIcon()); | |
15 QListWidgetItem* AddSeparator(); | |
16 int GetCurrentItem(); | |
17 bool IndexIsSeparator(QModelIndex index) const; | |
18 static QIcon CreateIcon(const char* file); | |
294 | 19 void SetBackgroundTransparent(bool yes); |
46 | 20 |
258 | 21 signals: |
22 void CurrentItemChanged(int index); | |
46 | 23 |
258 | 24 public slots: |
25 void SetCurrentItem(int index); | |
58
b7a1c0010ffd
sidebar: link view menu and sidebar together
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
26 |
258 | 27 protected: |
28 virtual void mouseMoveEvent(QMouseEvent* event) override; | |
29 QItemSelectionModel::SelectionFlags selectionCommand(const QModelIndex& index, const QEvent* event) const override; | |
30 int RemoveSeparatorsFromIndex(int index); | |
31 int AddSeparatorsToIndex(int index); | |
46 | 32 }; |
69 | 33 |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
34 #endif // MINORI_GUI_WIDGETS_SIDEBAR_H_ |