You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nmWATI/Include/mGui/mGuiSysManager/iWxProjMore.h

36 lines
636 B
C++

#pragma once
#include "iDlgBase.h"
#include "mGuiSysManager_global.h"
namespace Ui {
class iWxProjMore;
}
class QWebView;
class M_GUI_SYSMANAGER_EXPORT iWxProjMore : public iDlgBase
{
Q_OBJECT
public:
explicit iWxProjMore(QString sDir, QString sLastName, \
QStringList& listAllNames, \
QWidget *parent = 0);
~iWxProjMore();
virtual void initUI();
QString getSelectedBaseName();
private slots:
void on_btnOK_clicked();
void on_btnCancel_clicked();
private:
Ui::iWxProjMore *ui;
QString m_sLastName;
QStringList m_listAllNames;
};