update for HEAD-2003091401
[reactos.git] / subsys / system / explorer / explorer.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  // explorer.h
24  //
25  // Martin Fuchs, 23.07.2003
26  //
27
28
29 #include "utility/shellclasses.h"
30
31 #include "shell/entries.h"
32
33 #include "shell/winfs.h"
34 #include "shell/unixfs.h"
35 #include "shell/shellfs.h"
36
37 #include "utility/window.h"
38
39
40 #define IDW_STATUSBAR                   0x100
41 #define IDW_TOOLBAR                             0x101
42 #define IDW_DRIVEBAR                    0x102
43 #define IDW_FIRST_CHILD                 0xC000  /*0x200*/
44
45
46 #define PM_GET_FILEWND_PTR              (WM_APP+0x03)
47
48 #define PM_FRM_CALC_CLIENT              (WM_APP+0x04)
49 #define Frame_CalcFrameClient(hwnd, prt) ((BOOL)SNDMSG(hwnd, PM_FRM_CALC_CLIENT, 0, (LPARAM)(PRECT)prt))
50
51 #define PM_OPEN_WINDOW                  (WM_APP+0x05)
52
53 #define PM_GET_CONTROLWINDOW    (WM_APP+0x06)
54
55
56 #define CLASSNAME_FRAME                 TEXT("CabinetWClass")   // same class name for frame window as in MS Explorer
57
58 #define CLASSNAME_CHILDWND              TEXT("WFS_Child")
59 #define CLASSNAME_WINEFILETREE  TEXT("WFS_Tree")
60
61
62 #include "shell/mainframe.h"
63 #include "shell/pane.h"
64 #include "shell/filechild.h"
65 #include "shell/shellbrowser.h"