mirror of
https://github.com/vicr123/theshell.git
synced 2025-01-23 20:22:27 -05:00
23 lines
331 B
C
23 lines
331 B
C
|
#ifndef CHOOSEBACKGROUND_H
|
||
|
#define CHOOSEBACKGROUND_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class ChooseBackground;
|
||
|
}
|
||
|
|
||
|
class ChooseBackground : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ChooseBackground(QWidget *parent = 0);
|
||
|
~ChooseBackground();
|
||
|
|
||
|
private:
|
||
|
Ui::ChooseBackground *ui;
|
||
|
};
|
||
|
|
||
|
#endif // CHOOSEBACKGROUND_H
|