1 //------------------------------------------------------------------------------
3 // Purpose: Through ODBC - Databases Browsen
4 // Author: Mark Johnson, mj10777@gmx.net
7 // Copyright: (c) Mark Johnson
8 // Licence: wxWindows license
10 //---------------------------------------------------------------------------
11 // Define a new application type
12 //------------------------------------------------------------------------------
13 class MyApp
: public wxApp
17 wxLocale m_locale
; // locale we'll be using
19 //------------------------------------------------------------------------------
20 // Define a new frame type
21 //------------------------------------------------------------------------------
22 class MainFrame
: public wxFrame
25 MainFrame(wxFrame
*frame
, char *title
, int x
, int y
, int w
, int h
);
30 void InitializeMenu();
31 void OnQuit(wxCommandEvent
& event
);
32 void OnAbout(wxCommandEvent
& event
);
33 void OnHelp(wxCommandEvent
& event
);
34 //--------------------------------------------------------
35 wxHtmlHelpController help
;
36 //--------------------------------------------------------
39 DocSplitterWindow
*p_Splitter
;
40 //--------------------------------------------------------
43 //------------------------------------------------------------------------------
44 // ID for the menu quit command
45 //------------------------------------------------------------------------------
49 #define SPLITTER_FRAME 100
50 #define SPLITTER_WINDOW 101
51 #define TREE_CTRL_PGM 102
53 #define TREE_CTRL_DB 104
54 #define GRID_CTRL_DB 105
55 //------------------------------------------------------------------------------