mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
41 lines
524 B
C++
41 lines
524 B
C++
#include <stdlib.h>
|
|
#include "basewnd.h"
|
|
|
|
BaseWnd::BaseWnd (BaseWnd *parent, int menu_count)
|
|
{
|
|
m_pParent = parent;
|
|
}
|
|
|
|
BaseWnd::~BaseWnd ()
|
|
{
|
|
}
|
|
|
|
void BaseWnd::BeginWait ()
|
|
{
|
|
}
|
|
|
|
void BaseWnd::EndWait ()
|
|
{
|
|
}
|
|
|
|
int BaseWnd::MessageBox (const char* text, const char* caption, int flags)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void BaseWnd::ShowMenuItem (int id, bool show)
|
|
{
|
|
}
|
|
|
|
void BaseWnd::EnableMenuItem (int id, bool enable)
|
|
{
|
|
}
|
|
|
|
void BaseWnd::CheckMenuItem (int id, bool check)
|
|
{
|
|
}
|
|
|
|
void BaseWnd::SetMenuItemText (int id, const char *text)
|
|
{
|
|
}
|
|
|