mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
28 lines
355 B
C
28 lines
355 B
C
|
#ifndef DIALOG_H
|
||
|
#define DIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
#include <QListWidget>
|
||
|
|
||
|
namespace Ui
|
||
|
{
|
||
|
class Dialog;
|
||
|
}
|
||
|
|
||
|
class Dialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit Dialog(QWidget* parent = 0);
|
||
|
~Dialog();
|
||
|
|
||
|
private slots:
|
||
|
void currentItemChanged(QListWidgetItem*, QListWidgetItem*);
|
||
|
|
||
|
private:
|
||
|
Ui::Dialog* ui;
|
||
|
};
|
||
|
|
||
|
#endif // DIALOG_H
|