summaryrefslogtreecommitdiff
path: root/macosx/basewnd.cpp
blob: 57a53c782296e504e213ab590ba4502db68895db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#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)
{
}