syncthingtray/tray/gui/devview.h
Martchus aac87621dc Streamline context menus of regular tray application and Plasmoid
* Support triggering actions via the context menu in the regular tray like
  it is already possible in the Plasmoid
* Support copying via the context menu in the Plasmoid like it is already
  possible in the regular tray
* Reduce repetition of coding patterns using templates
2020-10-07 21:42:50 +02:00

32 lines
562 B
C++

#ifndef DEVVIEW_H
#define DEVVIEW_H
#include <QTreeView>
namespace Data {
struct SyncthingDev;
class SyncthingDeviceModel;
} // namespace Data
namespace QtGui {
class DevView : public QTreeView {
Q_OBJECT
public:
using ModelType = Data::SyncthingDeviceModel;
DevView(QWidget *parent = nullptr);
Q_SIGNALS:
void pauseResumeDev(const Data::SyncthingDev &dev);
protected:
void mouseReleaseEvent(QMouseEvent *event) override;
private Q_SLOTS:
void showContextMenu(const QPoint &position);
};
} // namespace QtGui
#endif // DEVVIEW_H