[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"
WINE_DEFAULT_DEBUG_CHANNEL(browseui);
void CACLMulti::release_obj(struct ACLMultiSublist *obj)
{
obj->punk->Release();

View file

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

View file

@ -21,7 +21,9 @@
/*
This class handles the combo box of the address band.
*/
#include "precomp.h"
/*
TODO:
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:
*/
#include "precomp.h"
CBandProxy::CBandProxy()

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -22,6 +22,7 @@
Implements a class that knows how to hold and manage the menu band, brand band,
toolbar, and address band for an explorer window
*/
#include "precomp.h"
// 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 _INC_WINDOWS
#define COM_NO_WINDOWS_H
#include <stdarg.h>
#include <windef.h>
#include <winbase.h>
#include <winreg.h>
#include <wingdi.h>
#include <winnls.h>
#include <wincon.h>
#include <shellapi.h>
#include <shlobj.h>
#include <tlogstg.h>
#include <shlobj_undoc.h>
@ -22,7 +20,6 @@
#include <exdispid.h>
#include <shlwapi.h>
#include <shlwapi_undoc.h>
#include <htiframe.h>
#include <wine/debug.h>
#include "resource.h"
@ -38,5 +35,5 @@
#include "commonbrowser.h"
#include "globalfoldersettings.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 <shellapi.h>
#include <htiframe.h>
#include "newatlinterfaces.h"
/*
TODO:
**Provide implementation of new and delete that use LocalAlloc

View file

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

View file

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

View file

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