GITLAB

에프에이리눅스 / 1611_0007_prime_oven

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • 1611_0007_prime_oven
  • app
  • gui
  • oven_control
  • yesnopopupdlg.h
  • c12e09d9a   교정 UI 및 팝업 추가 ... Browse Code »
    - 교정 UI 화면 구현
    - Yes, No 선택 팝업 화면 구현(return value)
    고영탁
    2017-04-21 17:17:47 +0900  
yesnopopupdlg.h 409 Bytes
edit raw blame history
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
#ifndef YESNOPOPUPDLG_H
#define YESNOPOPUPDLG_H

#include <QDialog>

namespace Ui {
class YesNoPopupDlg;
}

class YesNoPopupDlg : public QDialog
{
    Q_OBJECT

public:
    explicit YesNoPopupDlg(QWidget *parent = 0, QString strDesc="");
    ~YesNoPopupDlg();

private slots:
    void on_ctrBtnYes_clicked();

    void on_ctrBtnNo_clicked();

private:
    Ui::YesNoPopupDlg *ui;
};

#endif // YESNOPOPUPDLG_H