update for HEAD-2003091401
[reactos.git] / subsys / system / explorer / shell / mainframe.h
1 /*
2  * Copyright 2003 Martin Fuchs
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20  //
21  // Explorer clone
22  //
23  // mainframe.h
24  //
25  // Martin Fuchs, 23.07.2003
26  //
27
28
29 struct MainFrame : public PreTranslateWindow
30 {
31         typedef PreTranslateWindow super;
32
33         MainFrame(HWND hwnd);
34         ~MainFrame();
35
36         static HWND Create();
37         static HWND Create(LPCTSTR path, BOOL mode_explore=TRUE);
38
39         ChildWindow* CreateChild(LPCTSTR path=NULL, BOOL mode_explore=TRUE);
40
41 protected:
42         FullScreenParameters _fullscreen;
43
44 #ifndef _NO_MDI
45         HWND    _hmdiclient;
46 #endif
47
48         WindowHandle _hstatusbar;
49         WindowHandle _htoolbar;
50         WindowHandle _hdrivebar;
51
52         HMENU   _hMenuFrame;
53         HMENU   _hMenuWindow;
54
55         MenuInfo _menu_info;
56
57 protected:
58         LRESULT WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam);
59         int             Command(int id, int code);
60
61         void    toggle_child(HWND hwnd, UINT cmd, HWND hchild);
62         bool    activate_drive_window(LPCTSTR path);
63         bool    activate_fs_window(LPCTSTR filesys);
64
65         void    resize_frame_rect(PRECT prect);
66         void    resize_frame(int cx, int cy);
67         void    resize_frame_client();
68         void    frame_get_clientspace(PRECT prect);
69         BOOL    toggle_fullscreen();
70         void    fullscreen_move();
71
72         HACCEL  _hAccel;
73         TCHAR   _drives[BUFFER_LEN];
74 };