| 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 "Types.h"
- #include "Math.h"
- #include "Header.h"
- #include "Box.h"
- #include "Context.h"
- #include "ContextInstancer.h"
- #include "Decorator.h"
- #include "DecoratorInstancer.h"
- #include "Element.h"
- #include "ElementDocument.h"
- #include "ElementInstancer.h"
- #include "ElementInstancerGeneric.h"
- #include "ElementReference.h"
- #include "ElementScroll.h"
- #include "ElementText.h"
- #include "ElementUtilities.h"
- #include "Event.h"
- #include "EventInstancer.h"
- #include "EventListener.h"
- #include "EventListenerInstancer.h"
- #include "Factory.h"
- #include "FileInterface.h"
- #include "Font.h"
- #include "FontDatabase.h"
- #include "FontEffect.h"
- #include "FontGlyph.h"
- #include "Geometry.h"
- #include "GeometryUtilities.h"
- #include "Input.h"
- #include "Log.h"
- #include "Plugin.h"
- #include "Property.h"
- #include "PropertyDefinition.h"
- #include "PropertyDictionary.h"
- #include "PropertyParser.h"
- #include "PropertySpecification.h"
- #include "RenderInterface.h"
- #include "String.h"
- #include "StyleSheet.h"
- #include "StyleSheetKeywords.h"
- #include "StyleSheetSpecification.h"
- #include "SystemInterface.h"
- #include "Texture.h"
- #include "Types.h"
- #include "Vertex.h"
- #include "XMLNodeHandler.h"
- #include "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
|