blizzget/src/pages/build.h
2018-10-24 21:57:25 +03:00

21 lines
423 B
C++

#pragma once
#include "wizard.h"
class BuildPage : public Page {
public:
BuildPage(Wizard* wizard);
bool hasPrev() const { return true; }
Page* getPrev();
bool hasNext() const { return true; }
Page* getNext();
private:
ComboFrame* build_;
EditFrame* tags_;
void init();
void showInfo(std::string const& build);
LRESULT onMessage(uint32 message, WPARAM wParam, LPARAM lParam);
};