1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-23 00:04:06 +00:00
transmission/qt/PathButton.h
Mike Gelfand 07912d230b Use PascalCase for Qt client filenames
Split FileTree.{h,cc} and FilterBar.{h,cc} files so that each class
is in its own file.

This breaks translations (some classes got renamed => context changed),
to be fixed by next commit (along with Tx sync).
2015-06-10 21:27:11 +00:00

61 lines
1.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.
*
* $Id$
*/
#ifndef QTR_PATH_BUTTON_H
#define QTR_PATH_BUTTON_H
#include <QToolButton>
class PathButton: public QToolButton
{
Q_OBJECT
public:
enum Mode
{
DirectoryMode,
FileMode
};
public:
PathButton (QWidget * parent = nullptr);
void setMode (Mode mode);
void setTitle (const QString& title);
void setNameFilter (const QString& nameFilter);
void setPath (const QString& path);
const QString& path () const;
virtual QSize sizeHint () const;
signals:
void pathChanged (const QString& path);
protected:
virtual void paintEvent (QPaintEvent * event);
private slots:
void onClicked ();
void onFileSelected (const QString& path);
private:
void updateAppearance ();
bool isDirMode () const;
QString effectiveTitle () const;
private:
Mode myMode;
QString myTitle;
QString myNameFilter;
QString myPath;
};
#endif // QTR_PATH_BUTTON_H