Home
last modified time | relevance | path

Searched refs:Windows7ThumbBar (Results 1 – 8 of 8) sorted by relevance

/dports/audio/strawberry/strawberry-1.0.0/src/core/
H A Dwindows7thumbbar.cpp45 const int Windows7ThumbBar::kIconSize = 16;
46 const int Windows7ThumbBar::kMaxButtonCount = 7;
48 Windows7ThumbBar::Windows7ThumbBar(QWidget *widget)
56 QObject::connect(timer_, &QTimer::timeout, this, &Windows7ThumbBar::ActionChanged);
60 void Windows7ThumbBar::SetActions(const QList<QAction*> &actions) {
75 ITaskbarList3 *Windows7ThumbBar::CreateTaskbarList() {
100 void Windows7ThumbBar::SetupButton(const QAction *action, THUMBBUTTON *button) {
103 button->hIcon = qt_pixmapToWinHICON(action->icon().pixmap(Windows7ThumbBar::kIconSize));
123 void Windows7ThumbBar::HandleWinEvent(MSG *msg) {
173 void Windows7ThumbBar::ActionChangedTriggered() {
[all …]
H A Dwindows7thumbbar.h35 class Windows7ThumbBar : public QObject {
40 explicit Windows7ThumbBar(QWidget *widget = nullptr);
H A Dmainwindow.h99 class Windows7ThumbBar; variable
300 Windows7ThumbBar *thumbbar_;
H A Dmainwindow.cpp228 thumbbar_(new Windows7ThumbBar(this)),
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/ui/
H A Dwindows7thumbbar.cpp33 const int Windows7ThumbBar::kIconSize = 16;
34 const int Windows7ThumbBar::kMaxButtonCount = 7;
36 Windows7ThumbBar::Windows7ThumbBar(QWidget* widget) in Windows7ThumbBar() function in Windows7ThumbBar
42 void Windows7ThumbBar::SetActions(const QList<QAction*>& actions) { in SetActions()
64 qt_pixmapToWinHICON(action->icon().pixmap(Windows7ThumbBar::kIconSize)); in SetupButton()
83 void Windows7ThumbBar::HandleWinEvent(MSG* msg) { in HandleWinEvent()
157 void Windows7ThumbBar::ActionChanged() { in ActionChanged()
H A Dwindows7thumbbar.h28 class Windows7ThumbBar : public QObject {
34 Windows7ThumbBar(QWidget* widget = 0);
H A Dmainwindow.h85 class Windows7ThumbBar; variable
307 Windows7ThumbBar* thumbbar_;
H A Dmainwindow.cpp167 thumbbar_(new Windows7ThumbBar(this)), in MainWindow()