bullet3/examples/ThirdPartyLibs/Gwen/Gwen.h
erwincoumans ab8f16961e Code-style consistency improvement:
Apply clang-format-all.sh using the _clang-format file through all the cpp/.h files.
make sure not to apply it to certain serialization structures, since some parser expects the * as part of the name, instead of type.
This commit contains no other changes aside from adding and applying clang-format-all.sh
2018-09-23 14:17:31 -07:00

74 lines
2.2 KiB
C++

/*
GWEN modified and adapted for the Bullet Physics Library
Using the Zlib license with permission from Garry Newman
Copyright (c) 2010 Facepunch Studios
This software is provided 'as-is', without any express or implied warranty.
In no event will the authors be held liable for any damages arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it freely,
subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#ifndef GWEN_GWEN_H
#define GWEN_GWEN_H
#include "Gwen/Macros.h"
#include "Gwen/Config.h"
#include "Gwen/Exports.h"
#include "Gwen/Structures.h"
#include "Gwen/Skin.h"
#include "Gwen/Controls/Base.h"
#include "Gwen/Controls/Canvas.h"
#include "Gwen/Align.h"
#include "Gwen/TextObject.h"
// Enable the hook system (se Hook.h)
#define GWEN_HOOKSYSTEM
namespace Gwen
{
namespace Controls
{
class Base;
class Canvas;
} // namespace Controls
namespace Renderer
{
class Base;
}
namespace Debug
{
void GWEN_EXPORT Msg(const wchar_t* str, ...);
void GWEN_EXPORT Msg(const char* str, ...);
void GWEN_EXPORT AssertCheck(bool b, const char* strMsg);
} // namespace Debug
namespace Colors
{
static const Color Black(0, 0, 0, 255);
static const Color Red(255, 0, 0, 255);
static const Color Yellow(255, 255, 0, 255);
static const Color White(255, 255, 255, 255);
static const Color Blue(0, 0, 255, 255);
static const Color Green(0, 255, 0, 255);
static const Color Grey(200, 200, 200, 255);
static const Color GreyLight(230, 230, 230, 255);
static const Color GwenPink(255, 65, 199, 255);
}; // namespace Colors
extern GWEN_EXPORT Controls::Base* HoveredControl;
extern GWEN_EXPORT Controls::Base* KeyboardFocus;
extern GWEN_EXPORT Controls::Base* MouseFocus;
} //namespace Gwen
#endif