Files
2026-02-02 04:50:13 +01:00

78 lines
2.1 KiB
C++

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef HODJNPODJ_WORDSEARCH_C1BTNDLG_H
#define HODJNPODJ_WORDSEARCH_C1BTNDLG_H
#include "bagel/afxwin.h"
namespace Bagel {
namespace HodjNPodj {
namespace WordSearch {
#define CBUTTON1 IDOK
#define CBUTTON2 IDCANCEL
class C1ButtonDialog : public CBmpDialog {
public:
// standard constructor
C1ButtonDialog(CWnd *, CPalette *, char *, char *, char *pszText2 = nullptr);
private:
void ClearDialogImage();
// Dialog Data
//{{AFX_DATA(C1ButtonDialog)
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Implementation
protected:
virtual void DoDataExchange(CDataExchange *pDX) override; // DDX/DDV support
// Generated message map functions
//{{AFX_MSG(C1ButtonDialog)
afx_msg void OnPaint();
virtual void OnOK() override;
virtual void OnCancel() override;
virtual bool OnInitDialog() override;
afx_msg void OnDestroy();
afx_msg bool OnEraseBkgnd(CDC *pDC);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CText *m_cTextMessage1 = nullptr;
CText *m_cTextMessage2 = nullptr;
CText *m_cWordList[WORDSPERLIST] = {};
char *m_pszMessage1 = nullptr;
char *m_pszMessage2 = nullptr;
char *m_pszButton1Text = nullptr;
CColorButton *m_pButton1 = nullptr;
};
} // namespace Poker
} // namespace HodjNPodj
} // namespace Bagel
#endif