Files
Work/meshwrp/framedlg.hpp
2024-08-07 09:16:27 -04:00

32 lines
876 B
C++

#ifndef _MESHWRP_FRAMEDLG_HPP_
#define _MESHWRP_FRAMEDLG_HPP_
#ifndef _COMMON_DWINDOW_HPP_
#include <common/dwindow.hpp>
#endif
#ifndef _COMMON_WINDOW_HPP_
#include <common/window.hpp>
#endif
#ifndef _COMMON_STRING_HPP_
#include <common/string.hpp>
#endif
class FrameDialog : private DWindow
{
public:
FrameDialog(const GUIWindow &parentWindow);
virtual ~FrameDialog();
WORD perform(DWORD &meshFrames);
private:
FrameDialog(const FrameDialog &someFrameDialog);
FrameDialog &operator=(const FrameDialog &someFrameDialog);
CallbackData::ReturnType initDialogHandler(CallbackData &someCallbackData);
CallbackData::ReturnType commandHandler(CallbackData &someCallbackData);
DWORD getFrameCount(void);
void setFrameCount(DWORD frameCount);
Callback<FrameDialog> mInitDialogHandler;
Callback<FrameDialog> mCommandHandler;
DWORD mMeshFrames;
HWND mhParent;
};
#endif