| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- /*
- * This source file is part of libRocket, the HTML/CSS Interface Middleware
- *
- * For the latest information, see http://www.librocket.com
- *
- * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *
- */
- #ifndef ROCKETCORECORE_H
- #define ROCKETCORECORE_H
- #include <Rocket/Core/Types.h>
- #include <Rocket/Core/Math.h>
- #include <Rocket/Core/Header.h>
- #include <Rocket/Core/Box.h>
- #include <Rocket/Core/Context.h>
- #include <Rocket/Core/ContextInstancer.h>
- #include <Rocket/Core/Decorator.h>
- #include <Rocket/Core/DecoratorInstancer.h>
- #include <Rocket/Core/Element.h>
- #include <Rocket/Core/ElementDocument.h>
- #include <Rocket/Core/ElementInstancer.h>
- #include <Rocket/Core/ElementInstancerGeneric.h>
- #include <Rocket/Core/ElementReference.h>
- #include <Rocket/Core/ElementScroll.h>
- #include <Rocket/Core/ElementText.h>
- #include <Rocket/Core/ElementUtilities.h>
- #include <Rocket/Core/Event.h>
- #include <Rocket/Core/EventInstancer.h>
- #include <Rocket/Core/EventListener.h>
- #include <Rocket/Core/EventListenerInstancer.h>
- #include <Rocket/Core/Factory.h>
- #include <Rocket/Core/FileInterface.h>
- #include <Rocket/Core/Font.h>
- #include <Rocket/Core/FontDatabase.h>
- #include <Rocket/Core/FontEffect.h>
- #include <Rocket/Core/FontGlyph.h>
- #include <Rocket/Core/Geometry.h>
- #include <Rocket/Core/GeometryUtilities.h>
- #include <Rocket/Core/Input.h>
- #include <Rocket/Core/Log.h>
- #include <Rocket/Core/Plugin.h>
- #include <Rocket/Core/Property.h>
- #include <Rocket/Core/PropertyDefinition.h>
- #include <Rocket/Core/PropertyDictionary.h>
- #include <Rocket/Core/PropertyParser.h>
- #include <Rocket/Core/PropertySpecification.h>
- #include <Rocket/Core/RenderInterface.h>
- #include <Rocket/Core/String.h>
- #include <Rocket/Core/StyleSheet.h>
- #include <Rocket/Core/StyleSheetKeywords.h>
- #include <Rocket/Core/StyleSheetSpecification.h>
- #include <Rocket/Core/SystemInterface.h>
- #include <Rocket/Core/Texture.h>
- #include <Rocket/Core/Types.h>
- #include <Rocket/Core/Vertex.h>
- #include <Rocket/Core/XMLNodeHandler.h>
- #include <Rocket/Core/XMLParser.h>
- namespace Rocket {
- namespace Core {
- class Plugin;
- /**
- Rocket library core API.
- @author Peter Curry
- */
- /// Initialises Rocket.
- ROCKETCORE_API bool Initialise();
- /// Shutdown Rocket.
- ROCKETCORE_API void Shutdown();
- /// Returns the version of this Rocket library.
- /// @return The version number.
- ROCKETCORE_API String GetVersion();
- /// Sets the interface through which all system requests are made. This must be called before Initialise().
- /// @param[in] system_interface The application-specified logging interface.
- ROCKETCORE_API void SetSystemInterface(SystemInterface* system_interface);
- /// Returns Rocket's system interface.
- /// @return Rocket's system interface.
- ROCKETCORE_API SystemInterface* GetSystemInterface();
- /// Sets the interface through which all rendering requests are made. This is not required to be called, but if it is
- /// it must be called before Initialise(). If no render interface is specified, then all contexts must have a custom
- /// render interface.
- /// @param[in] render_interface Render interface implementation.
- ROCKETCORE_API void SetRenderInterface(RenderInterface* render_interface);
- /// Returns Rocket's default's render interface.
- /// @return Rocket's render interface.
- ROCKETCORE_API RenderInterface* GetRenderInterface();
- /// Sets the interface through which all file I/O requests are made. This is not required to be called, but if it is it
- /// must be called before Initialise().
- /// @param[in] file_interface The application-specified file interface
- ROCKETCORE_API void SetFileInterface(FileInterface* file_interface);
- /// Returns Rocket's file interface.
- /// @return Rocket's file interface.
- ROCKETCORE_API FileInterface* GetFileInterface();
- /// Creates a new element context.
- /// @param[in] name The new name of the context. This must be unique.
- /// @param[in] dimensions The initial dimensions of the new context.
- /// @param[in] render_interface The custom render interface to use, or NULL to use the default.
- /// @return The new context, or NULL if the context could not be created.
- ROCKETCORE_API Context* CreateContext(const String& name, const Vector2i& dimensions, RenderInterface* render_interface = NULL);
- /// Fetches a previously constructed context by name.
- /// @param[in] name The name of the desired context.
- /// @return The desired context, or NULL if no context exists with the given name.
- ROCKETCORE_API Context* GetContext(const String& name);
- /// Fetches a context by index.
- /// @param[in] index The index of the desired context. If this is outside of the valid range of contexts, it will be clamped.
- /// @return The requested context, or NULL if no contexts exist.
- ROCKETCORE_API Context* GetContext(int index);
- /// Returns the number of active contexts.
- /// @return The total number of active Rocket contexts.
- ROCKETCORE_API int GetNumContexts();
- /// Registers a generic Rocket plugin.
- ROCKETCORE_API void RegisterPlugin(Plugin* plugin);
- /// Forces all compiled geometry handles generated by libRocket to be released.
- ROCKETCORE_API void ReleaseCompiledGeometries();
- /// Forces all texture handles loaded and generated by libRocket to be released.
- ROCKETCORE_API void ReleaseTextures();
- }
- }
- #endif
|