1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

28 lines
355 B
C
Raw Normal View History

2017-10-29 15:00:41 +08:00
#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