]> git.saurik.com Git - wxWidgets.git/blame - utils/dialoged/src/dialoged.h
Fixed drawing of the lines data, also ensure that only tuples are
[wxWidgets.git] / utils / dialoged / src / dialoged.h
CommitLineData
457814b5
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: dialoged.h
3// Purpose: Dialog Editor application header file
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
ab7ce33c 12#if defined(__GNUG__) && !defined(__APPLE__)
457814b5
JS
13#pragma interface "dialoged.h"
14#endif
15
16#ifndef dialogedh
17#define dialogedh
18
2fc9385a 19#include "wx/deprecated/proplist.h"
457814b5
JS
20#include "reseditr.h"
21
22class MyChild;
23
24// Define a new application
25class MyApp: public wxApp
26{
f6bcfd97 27public:
457814b5
JS
28 MyApp(void);
29 bool OnInit(void);
ae8351fc 30 int OnExit(void);
f6bcfd97 31
7bf07d26
VZ
32private:
33 DECLARE_EVENT_TABLE()
457814b5
JS
34};
35
36DECLARE_APP(MyApp)
37
38extern wxFrame *GetMainFrame(void);
39
40#endif