mirror of
https://github.com/transmission/transmission
synced 2024-12-23 08:13:27 +00:00
d7930984ef
There're places where manual intervention is still required as uncrustify is not ideal (unfortunately), but at least one may rely on it to do the right thing most of the time (e.g. when sending in a patch). The style itself is quite different from what we had before but making it uniform across all the codebase is the key. I also hope that it'll make the code more readable (YMMV) and less sensitive to further changes.
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
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 <QWidget>
|
|
|
|
class QLabel;
|
|
class QLineEdit;
|
|
class QStandardItemModel;
|
|
class QTimer;
|
|
|
|
class FilterBarComboBox;
|
|
class Prefs;
|
|
class TorrentFilter;
|
|
class TorrentModel;
|
|
|
|
class FilterBar : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FilterBar(Prefs& prefs, const TorrentModel& torrents, const TorrentFilter& filter, QWidget* parent = nullptr);
|
|
virtual ~FilterBar();
|
|
|
|
public slots:
|
|
void clear();
|
|
|
|
private:
|
|
FilterBarComboBox* createTrackerCombo(QStandardItemModel*);
|
|
FilterBarComboBox* createActivityCombo();
|
|
void refreshTrackers();
|
|
QString getCountString(int n) const;
|
|
|
|
private slots:
|
|
void recountSoon();
|
|
void recount();
|
|
void refreshPref(int key);
|
|
void onActivityIndexChanged(int index);
|
|
void onTrackerIndexChanged(int index);
|
|
void onTextChanged(const QString&);
|
|
|
|
private:
|
|
Prefs& myPrefs;
|
|
const TorrentModel& myTorrents;
|
|
const TorrentFilter& myFilter;
|
|
|
|
FilterBarComboBox* myActivityCombo;
|
|
FilterBarComboBox* myTrackerCombo;
|
|
QLabel* myCountLabel;
|
|
QStandardItemModel* myTrackerModel;
|
|
QTimer* myRecountTimer;
|
|
bool myIsBootstrapping;
|
|
QLineEdit* myLineEdit;
|
|
};
|