-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathConfigureDesktopDialog.hxx
More file actions
43 lines (30 loc) · 886 Bytes
/
ConfigureDesktopDialog.hxx
File metadata and controls
43 lines (30 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
This file is part of liquidshell.
SPDX-FileCopyrightText: 2017 - 2024 Martin Koller <martin@kollix.at>
SPDX-License-Identifier: GPL-3.0-or-later
*/
#ifndef _ConfigureDesktopDialog_H_
#define _ConfigureDesktopDialog_H_
#include <QDialog>
#include <QButtonGroup>
#include <DesktopWidget.hxx>
#include <ui_ConfigureDesktopDialog.h>
class ConfigureDesktopDialog : public QDialog
{
Q_OBJECT
public:
ConfigureDesktopDialog(QWidget *parent, const DesktopWidget::Wallpaper &wp);
const DesktopWidget::Wallpaper &getWallpaper() const { return wallpaper; }
Q_SIGNALS:
void changed();
private Q_SLOTS:
void returnPressed(const QString &text);
void buttonClicked(QAbstractButton *button);
private:
void showImages();
private:
Ui::ConfigureDesktopDialog ui;
QButtonGroup buttonGroup;
DesktopWidget::Wallpaper wallpaper;
};
#endif