mirror of
https://github.com/hyprwm/xdg-desktop-portal-hyprland.git
synced 2024-11-02 07:25:58 +01:00
19 lines
342 B
C++
19 lines
342 B
C++
#include "mainpicker.h"
|
|
#include "./ui_mainpicker.h"
|
|
#include <QDebug>
|
|
|
|
MainPicker::MainPicker(QWidget *parent)
|
|
: QMainWindow(parent)
|
|
, ui(new Ui::MainPicker)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
MainPicker::~MainPicker()
|
|
{
|
|
delete ui;
|
|
}
|
|
|
|
void MainPicker::onMonitorButtonClicked(QObject* target, QEvent* event) {
|
|
qDebug() << "click";
|
|
}
|