rpcsx/rpcs3/Gui/MsgDialog.h

26 lines
688 B
C
Raw Normal View History

2014-08-29 22:30:21 +04:00
#pragma once
2016-02-02 00:46:27 +03:00
#include "Emu/Cell/Modules/cellMsgDialog.h"
2015-04-15 21:33:44 +03:00
class MsgDialogFrame : public MsgDialogBase
2015-04-15 21:33:44 +03:00
{
wxDialog* m_dialog = nullptr;
2015-04-15 21:33:44 +03:00
wxGauge* m_gauge1;
wxGauge* m_gauge2;
wxStaticText* m_text1;
wxStaticText* m_text2;
wxButton* m_button_ok;
wxButton* m_button_yes;
wxButton* m_button_no;
wxStaticText* m_text;
wxSizer* m_sizer1;
2015-04-18 20:18:23 +03:00
wxSizer* m_buttons;
2015-04-15 21:33:44 +03:00
public:
virtual ~MsgDialogFrame() override;
virtual void Create(const std::string& msg) override;
virtual void ProgressBarSetMsg(u32 progressBarIndex, const std::string& msg) override;
2015-04-15 21:33:44 +03:00
virtual void ProgressBarReset(u32 progressBarIndex) override;
virtual void ProgressBarInc(u32 progressBarIndex, u32 delta) override;
};