[BROWSEUI]

* Remove one time inclusions from the main header and put them back where they belong.
* Set the default debugging channel globally through the main header.
* Improve the main header.
CORE-7716

svn path=/trunk/; revision=61743
This commit is contained in:
Amine Khaldi 2014-01-21 17:55:08 +00:00
parent 5192d67c43
commit 63be6007bd
16 changed files with 20 additions and 18 deletions

View file

@ -21,8 +21,6 @@
#include "precomp.h" #include "precomp.h"
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
void CACLMulti::release_obj(struct ACLMultiSublist *obj) void CACLMulti::release_obj(struct ACLMultiSublist *obj)
{ {
obj->punk->Release(); obj->punk->Release();

View file

@ -21,6 +21,7 @@
/* /*
Implements the navigation band of the cabinet window Implements the navigation band of the cabinet window
*/ */
#include "precomp.h" #include "precomp.h"
/* /*

View file

@ -21,7 +21,9 @@
/* /*
This class handles the combo box of the address band. This class handles the combo box of the address band.
*/ */
#include "precomp.h" #include "precomp.h"
/* /*
TODO: TODO:
Add auto completion support Add auto completion support

View file

@ -24,6 +24,7 @@ Used by the address band to dispatch navigation changes to the main browser obje
TODO: TODO:
*/ */
#include "precomp.h" #include "precomp.h"
CBandProxy::CBandProxy() CBandProxy::CBandProxy()

View file

@ -21,8 +21,6 @@
#include "precomp.h" #include "precomp.h"
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
#ifndef ASSERT #ifndef ASSERT
#define ASSERT(cond) \ #define ASSERT(cond) \
if (!(cond)) \ if (!(cond)) \

View file

@ -21,8 +21,6 @@
#include "precomp.h" #include "precomp.h"
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
CBandSiteMenu::CBandSiteMenu() CBandSiteMenu::CBandSiteMenu()
{ {
} }

View file

@ -21,6 +21,7 @@
/* /*
This class knows how to contain base bar site in a cabinet window. This class knows how to contain base bar site in a cabinet window.
*/ */
#include "precomp.h" #include "precomp.h"
/* /*

View file

@ -22,6 +22,7 @@
Base bar that contains a vertical or horizontal explorer band. It also Base bar that contains a vertical or horizontal explorer band. It also
provides resizing abilities. provides resizing abilities.
*/ */
#include "precomp.h" #include "precomp.h"
/* /*

View file

@ -22,6 +22,7 @@
Implements the logo band of a cabinet window. Most remarkable feature is the Implements the logo band of a cabinet window. Most remarkable feature is the
animation. animation.
*/ */
#include "precomp.h" #include "precomp.h"
/* /*

View file

@ -20,8 +20,6 @@
#include "precomp.h" #include "precomp.h"
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
class CBrowseUIModule : public CComModule class CBrowseUIModule : public CComModule
{ {
public: public:

View file

@ -22,6 +22,7 @@
Implements a class that knows how to hold and manage the menu band, brand band, Implements a class that knows how to hold and manage the menu band, brand band,
toolbar, and address band for an explorer window toolbar, and address band for an explorer window
*/ */
#include "precomp.h" #include "precomp.h"
// navigation controls and menubar just send a message to parent window // navigation controls and menubar just send a message to parent window

View file

@ -1,14 +1,12 @@
#include <stdarg.h>
#define WIN32_NO_STATUS #define WIN32_NO_STATUS
#define _INC_WINDOWS #define _INC_WINDOWS
#define COM_NO_WINDOWS_H #define COM_NO_WINDOWS_H
#include <stdarg.h>
#include <windef.h> #include <windef.h>
#include <winbase.h> #include <winbase.h>
#include <winreg.h>
#include <wingdi.h>
#include <winnls.h>
#include <wincon.h> #include <wincon.h>
#include <shellapi.h>
#include <shlobj.h> #include <shlobj.h>
#include <tlogstg.h> #include <tlogstg.h>
#include <shlobj_undoc.h> #include <shlobj_undoc.h>
@ -22,7 +20,6 @@
#include <exdispid.h> #include <exdispid.h>
#include <shlwapi.h> #include <shlwapi.h>
#include <shlwapi_undoc.h> #include <shlwapi_undoc.h>
#include <htiframe.h>
#include <wine/debug.h> #include <wine/debug.h>
#include "resource.h" #include "resource.h"
@ -38,5 +35,5 @@
#include "commonbrowser.h" #include "commonbrowser.h"
#include "globalfoldersettings.h" #include "globalfoldersettings.h"
#include "regtreeoptions.h" #include "regtreeoptions.h"
#include "newatlinterfaces.h"
//#include "utility.h" WINE_DEFAULT_DEBUG_CHANNEL(browseui);

View file

@ -20,6 +20,11 @@
#include "precomp.h" #include "precomp.h"
#include <shellapi.h>
#include <htiframe.h>
#include "newatlinterfaces.h"
/* /*
TODO: TODO:
**Provide implementation of new and delete that use LocalAlloc **Provide implementation of new and delete that use LocalAlloc

View file

@ -21,6 +21,7 @@
/* /*
Implements the toolbar band of a cabinet window Implements the toolbar band of a cabinet window
*/ */
#include "precomp.h" #include "precomp.h"
/* /*

View file

@ -40,6 +40,7 @@ TODO:
Implement Revert Implement Revert
*/ */
#include "precomp.h" #include "precomp.h"
class CTravelEntry : class CTravelEntry :

View file

@ -1,4 +1,3 @@
#include "precomp.h" #include "precomp.h"
void *operator new(size_t size) void *operator new(size_t size)
@ -10,4 +9,3 @@ void operator delete(void *p)
{ {
LocalFree(p); LocalFree(p);
} }