mirror of
https://github.com/transmission/transmission.git
synced 2025-12-24 12:28:52 +00:00
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.
38 lines
600 B
C++
38 lines
600 B
C++
/*
|
|
* This file Copyright (C) 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 <QListView>
|
|
|
|
class TorrentView : public QListView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TorrentView(QWidget* parent = nullptr);
|
|
|
|
public slots:
|
|
void setHeaderText(const QString& text);
|
|
|
|
signals:
|
|
void headerDoubleClicked();
|
|
|
|
protected:
|
|
virtual void resizeEvent(QResizeEvent* event);
|
|
|
|
private:
|
|
class HeaderWidget;
|
|
|
|
private:
|
|
void adjustHeaderPosition();
|
|
|
|
private:
|
|
HeaderWidget* const myHeaderWidget;
|
|
};
|