mirror of
https://github.com/transmission/transmission
synced 2025-01-04 22:11:23 +00:00
070a7f2ffc
* refactor: use snake_case field naming in qt client * fix: some missed symbols * chore: make uncrustify happy * fixup! refactor: use snake_case field naming in qt client
58 lines
1 KiB
C++
58 lines
1 KiB
C++
/*
|
|
* This file Copyright (C) 2014-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 <QToolButton>
|
|
|
|
class PathButton : public QToolButton
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum Mode
|
|
{
|
|
DirectoryMode,
|
|
FileMode
|
|
};
|
|
|
|
public:
|
|
PathButton(QWidget* parent = nullptr);
|
|
|
|
void setMode(Mode mode);
|
|
void setTitle(QString const& title);
|
|
void setNameFilter(QString const& name_filter);
|
|
|
|
void setPath(QString const& path);
|
|
QString const& path() const;
|
|
|
|
// QWidget
|
|
QSize sizeHint() const override;
|
|
|
|
signals:
|
|
void pathChanged(QString const& path);
|
|
|
|
protected:
|
|
// QWidget
|
|
void paintEvent(QPaintEvent* event) override;
|
|
|
|
private slots:
|
|
void onClicked();
|
|
void onFileSelected(QString const& path);
|
|
|
|
private:
|
|
void updateAppearance();
|
|
|
|
bool isDirMode() const;
|
|
QString effectiveTitle() const;
|
|
|
|
QString name_filter_;
|
|
QString path_;
|
|
QString title_;
|
|
Mode mode_;
|
|
};
|