mirror of
https://github.com/transmission/transmission
synced 2025-01-04 22:11:23 +00:00
19e52d8b9a
* fix "merge nested if" sonarcloud warnings * fix explicit constructor warnings in qt client
41 lines
770 B
C++
41 lines
770 B
C++
/*
|
|
* This file Copyright (C) 2010-2015 Mnemosyne LLC
|
|
*
|
|
* It may be used under the GNU GPL versions 2 or 3
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QComboBox>
|
|
|
|
#include "Macros.h"
|
|
|
|
class FilterBarComboBox : public QComboBox
|
|
{
|
|
Q_OBJECT
|
|
TR_DISABLE_COPY_MOVE(FilterBarComboBox)
|
|
|
|
public:
|
|
enum
|
|
{
|
|
CountRole = Qt::UserRole + 1,
|
|
CountStringRole,
|
|
UserRole
|
|
};
|
|
|
|
public:
|
|
explicit FilterBarComboBox(QWidget* parent = nullptr);
|
|
|
|
// QWidget
|
|
QSize minimumSizeHint() const override;
|
|
QSize sizeHint() const override;
|
|
|
|
protected:
|
|
// QWidget
|
|
void paintEvent(QPaintEvent* e) override;
|
|
|
|
private:
|
|
QSize calculateSize(QSize const& text_size, QSize const& count_size) const;
|
|
};
|