├── .hgchurn ├── .hgeol ├── .hgignore ├── CMakeLists.txt ├── COPYING ├── README.md ├── cegui ├── CEGUI-IRRLICHT.pc.in ├── CEGUI-LUA.pc.in ├── CEGUI-NULL.pc.in ├── CEGUI-OGRE.pc.in ├── CEGUI-OPENGL.pc.in ├── CEGUI-OPENGL3.pc.in ├── CEGUI.pc.in ├── include │ └── CEGUI │ │ ├── Affector.h │ │ ├── AndroidUtils.h │ │ ├── Animation.h │ │ ├── AnimationInstance.h │ │ ├── AnimationManager.h │ │ ├── Animation_xmlHandler.h │ │ ├── Base.h │ │ ├── BasicRenderedStringParser.h │ │ ├── BidiVisualMapping.h │ │ ├── BitmapImage.h │ │ ├── BoundSlot.h │ │ ├── CEGUI.h │ │ ├── CentredRenderedString.h │ │ ├── ChainedXMLHandler.h │ │ ├── Clipboard.h │ │ ├── Colour.h │ │ ├── ColourRect.h │ │ ├── CommonDialogs │ │ ├── ColourPicker │ │ │ ├── ColourPicker.h │ │ │ ├── Controls.h │ │ │ ├── Conversions.h │ │ │ └── Types.h │ │ └── Module.h │ │ ├── CompositeResourceProvider.h │ │ ├── Config.h.in │ │ ├── Config_xmlHandler.h │ │ ├── CoordConverter.h │ │ ├── Cursor.h │ │ ├── DataContainer.h │ │ ├── DefaultLogger.h │ │ ├── DefaultRenderedStringParser.h │ │ ├── DefaultResourceProvider.h │ │ ├── DynamicModule.h │ │ ├── Element.h │ │ ├── Event.h │ │ ├── EventArgs.h │ │ ├── EventSet.h │ │ ├── Exceptions.h │ │ ├── FactoryModule.h │ │ ├── FactoryRegisterer.h │ │ ├── Font.h │ │ ├── FontGlyph.h │ │ ├── FontManager.h │ │ ├── Font_xmlHandler.h │ │ ├── FormattedRenderedString.h │ │ ├── ForwardRefs.h │ │ ├── FreeFunctionSlot.h │ │ ├── FreeTypeFont.h │ │ ├── FribidiVisualMapping.h │ │ ├── FunctorCopySlot.h │ │ ├── FunctorPointerSlot.h │ │ ├── FunctorReferenceBinder.h │ │ ├── FunctorReferenceSlot.h │ │ ├── GUIContext.h │ │ ├── GUILayout_xmlHandler.h │ │ ├── GeometryBuffer.h │ │ ├── GlobalEventSet.h │ │ ├── IconvStringTranscoder.h │ │ ├── Image.h │ │ ├── ImageCodec.h │ │ ├── ImageCodecModules │ │ ├── Corona │ │ │ ├── ImageCodec.h │ │ │ └── ImageCodecModule.h │ │ ├── DevIL │ │ │ ├── ImageCodec.h │ │ │ └── ImageCodecModule.h │ │ ├── FreeImage │ │ │ ├── ImageCodec.h │ │ │ └── ImageCodecModule.h │ │ ├── PVR │ │ │ ├── ImageCodec.h │ │ │ └── ImageCodecModule.h │ │ ├── SILLY │ │ │ ├── ImageCodec.h │ │ │ └── ImageCodecModule.h │ │ ├── STB │ │ │ ├── ImageCodec.h │ │ │ └── ImageCodecModule.h │ │ └── TGA │ │ │ ├── ImageCodec.h │ │ │ └── ImageCodecModule.h │ │ ├── ImageFactory.h │ │ ├── ImageManager.h │ │ ├── InjectedInputReceiver.h │ │ ├── InputAggregator.h │ │ ├── InputEvent.h │ │ ├── InputEventReceiver.h │ │ ├── InputEvents.h │ │ ├── Interpolator.h │ │ ├── IteratorBase.h │ │ ├── JustifiedRenderedString.h │ │ ├── KeyFrame.h │ │ ├── LeftAlignedRenderedString.h │ │ ├── LinkedEvent.h │ │ ├── Logger.h │ │ ├── MemberFunctionSlot.h │ │ ├── MinibidiVisualMapping.h │ │ ├── MinizipResourceProvider.h │ │ ├── ModuleConfig.h.in │ │ ├── NamedElement.h │ │ ├── NamedXMLResourceManager.h │ │ ├── PCRERegexMatcher.h │ │ ├── PixmapFont.h │ │ ├── Property.h │ │ ├── PropertyHelper.h │ │ ├── PropertySet.h │ │ ├── Quaternion.h │ │ ├── Rect.h │ │ ├── RefCounted.h │ │ ├── RegexMatcher.h │ │ ├── RenderEffect.h │ │ ├── RenderEffectFactory.h │ │ ├── RenderEffectManager.h │ │ ├── RenderMaterial.h │ │ ├── RenderQueue.h │ │ ├── RenderTarget.h │ │ ├── RenderedString.h │ │ ├── RenderedStringComponent.h │ │ ├── RenderedStringImageComponent.h │ │ ├── RenderedStringParser.h │ │ ├── RenderedStringTextComponent.h │ │ ├── RenderedStringWidgetComponent.h │ │ ├── RenderedStringWordWrapper.h │ │ ├── Renderer.h │ │ ├── RendererModules │ │ ├── Direct3D11 │ │ │ ├── GeometryBuffer.h │ │ │ ├── RenderTarget.h │ │ │ ├── Renderer.h │ │ │ ├── Shader.h │ │ │ ├── ShaderWrapper.h │ │ │ ├── Texture.h │ │ │ ├── TextureTarget.h │ │ │ └── ViewportTarget.h │ │ ├── DirectFB │ │ │ ├── GeometryBuffer.h │ │ │ ├── RenderTarget.h │ │ │ ├── Renderer.h │ │ │ └── Texture.h │ │ ├── Irrlicht │ │ │ ├── EventPusher.h │ │ │ ├── GeometryBuffer.h │ │ │ ├── ImageCodec.h │ │ │ ├── MemoryFile.h │ │ │ ├── Readme.txt │ │ │ ├── RenderTarget.h │ │ │ ├── Renderer.h │ │ │ ├── RendererDef.h │ │ │ ├── ResourceProvider.h │ │ │ ├── Texture.h │ │ │ ├── TextureTarget.h │ │ │ └── WindowTarget.h │ │ ├── Null │ │ │ ├── GeometryBuffer.h │ │ │ ├── RenderTarget.h │ │ │ ├── Renderer.h │ │ │ ├── ShaderWrapper.h │ │ │ ├── Texture.h │ │ │ └── TextureTarget.h │ │ ├── Ogre │ │ │ ├── GeometryBuffer.h │ │ │ ├── ImageCodec.h │ │ │ ├── RenderTarget.h │ │ │ ├── Renderer.h │ │ │ ├── ResourceProvider.h │ │ │ ├── ShaderWrapper.h │ │ │ ├── Texture.h │ │ │ ├── TextureTarget.h │ │ │ └── WindowTarget.h │ │ ├── OpenGL │ │ │ ├── ApplePBTextureTarget.h │ │ │ ├── GL.h │ │ │ ├── GL3FBOTextureTarget.h │ │ │ ├── GL3GeometryBuffer.h │ │ │ ├── GL3Renderer.h │ │ │ ├── GL3Shader.h │ │ │ ├── GL3StateChangeWrapper.h │ │ │ ├── GL3Texture.h │ │ │ ├── GLBaseShaderWrapper.h │ │ │ ├── GLES2FBOTextureTarget.h │ │ │ ├── GLES2GeometryBuffer.h │ │ │ ├── GLES2Renderer.h │ │ │ ├── GLES2StateChangeWrapper.h │ │ │ ├── GLES2Texture.h │ │ │ ├── GLFBOTextureTarget.h │ │ │ ├── GLGeometryBuffer.h │ │ │ ├── GLRenderer.h │ │ │ ├── GLShaderWrapper.h │ │ │ ├── GLTexture.h │ │ │ ├── GLXPBTextureTarget.h │ │ │ ├── GeometryBufferBase.h │ │ │ ├── RenderTarget.h │ │ │ ├── RendererBase.h │ │ │ ├── Shader.h │ │ │ ├── ShaderManager.h │ │ │ ├── StateChangeWrapper.h │ │ │ ├── Texture.h │ │ │ ├── TextureTarget.h │ │ │ ├── ViewportTarget.h │ │ │ └── WGLPBTextureTarget.h │ │ └── OpenGLES │ │ │ ├── FBOTextureTarget.h │ │ │ ├── GLES.h │ │ │ ├── GeometryBuffer.h │ │ │ ├── RenderTarget.h │ │ │ ├── Renderer.h │ │ │ ├── Texture.h │ │ │ └── ViewportTarget.h │ │ ├── RenderingContext.h │ │ ├── RenderingSurface.h │ │ ├── RenderingWindow.h │ │ ├── ResourceProvider.h │ │ ├── RightAlignedRenderedString.h │ │ ├── Scheme.h │ │ ├── SchemeManager.h │ │ ├── Scheme_xmlHandler.h │ │ ├── ScriptModule.h │ │ ├── ScriptModules │ │ └── Lua │ │ │ ├── Functor.h │ │ │ └── ScriptModule.h │ │ ├── SemanticInputEvent.h │ │ ├── ShaderParameterBindings.h │ │ ├── ShaderWrapper.h │ │ ├── SimpleTimer.h │ │ ├── Singleton.h │ │ ├── Size.h │ │ ├── SlotFunctorBase.h │ │ ├── String.h │ │ ├── StringTranscoder.h │ │ ├── SubscriberSlot.h │ │ ├── System.h │ │ ├── TextUtils.h │ │ ├── Texture.h │ │ ├── TextureTarget.h │ │ ├── TplInterpolators.h │ │ ├── TplProperty.h │ │ ├── TplWRFactoryRegisterer.h │ │ ├── TplWindowFactory.h │ │ ├── TplWindowFactoryRegisterer.h │ │ ├── TplWindowProperty.h │ │ ├── TplWindowRendererFactory.h │ │ ├── TplWindowRendererProperty.h │ │ ├── TypedProperty.h │ │ ├── UDim.h │ │ ├── UndoHandler.h │ │ ├── Vector.h │ │ ├── Version.h.in │ │ ├── Vertex.h │ │ ├── Win32ClipboardProvider.h │ │ ├── Win32StringTranscoder.h │ │ ├── Window.h │ │ ├── WindowFactory.h │ │ ├── WindowFactoryManager.h │ │ ├── WindowManager.h │ │ ├── WindowNavigator.h │ │ ├── WindowRenderer.h │ │ ├── WindowRendererManager.h │ │ ├── WindowRendererSets │ │ └── Core │ │ │ ├── Button.h │ │ │ ├── Default.h │ │ │ ├── Editbox.h │ │ │ ├── FrameWindow.h │ │ │ ├── ItemEntry.h │ │ │ ├── ItemViewRenderer.h │ │ │ ├── ListHeader.h │ │ │ ├── ListHeaderSegment.h │ │ │ ├── ListView.h │ │ │ ├── MenuItem.h │ │ │ ├── Menubar.h │ │ │ ├── Module.h │ │ │ ├── MultiColumnList.h │ │ │ ├── MultiLineEditbox.h │ │ │ ├── PopupMenu.h │ │ │ ├── ProgressBar.h │ │ │ ├── ScrollablePane.h │ │ │ ├── Scrollbar.h │ │ │ ├── Slider.h │ │ │ ├── Static.h │ │ │ ├── StaticImage.h │ │ │ ├── StaticText.h │ │ │ ├── TabButton.h │ │ │ ├── TabControl.h │ │ │ ├── Titlebar.h │ │ │ ├── ToggleButton.h │ │ │ ├── Tooltip.h │ │ │ └── TreeView.h │ │ ├── XMLAttributes.h │ │ ├── XMLHandler.h │ │ ├── XMLParser.h │ │ ├── XMLParserModules │ │ ├── Expat │ │ │ ├── XMLParser.h │ │ │ └── XMLParserModule.h │ │ ├── Libxml2 │ │ │ ├── XMLParser.h │ │ │ └── XMLParserModule.h │ │ ├── RapidXML │ │ │ ├── XMLParser.h │ │ │ └── XMLParserModule.h │ │ ├── TinyXML │ │ │ ├── XMLParser.h │ │ │ └── XMLParserModule.h │ │ └── Xerces │ │ │ ├── XMLParser.h │ │ │ ├── XMLParserModule.h │ │ │ └── XMLParserProperties.h │ │ ├── XMLSerializer.h │ │ ├── falagard │ │ ├── ComponentBase.h │ │ ├── Dimensions.h │ │ ├── Enums.h │ │ ├── EventAction.h │ │ ├── EventLinkDefinition.h │ │ ├── FalagardPropertyBase.h │ │ ├── FormattingSetting.h │ │ ├── FrameComponent.h │ │ ├── ImageryComponent.h │ │ ├── ImagerySection.h │ │ ├── LayerSpecification.h │ │ ├── NamedArea.h │ │ ├── NamedDefinitionCollator.h │ │ ├── PropertyDefinition.h │ │ ├── PropertyDefinitionBase.h │ │ ├── PropertyInitialiser.h │ │ ├── PropertyLinkDefinition.h │ │ ├── SectionSpecification.h │ │ ├── StateImagery.h │ │ ├── TextComponent.h │ │ ├── WidgetComponent.h │ │ ├── WidgetLookFeel.h │ │ ├── WidgetLookManager.h │ │ ├── XMLEnumHelper.h │ │ └── XMLHandler.h │ │ ├── svg │ │ ├── SVGBasicShape.h │ │ ├── SVGData.h │ │ ├── SVGDataManager.h │ │ ├── SVGImage.h │ │ ├── SVGPaintStyle.h │ │ └── SVGTesselator.h │ │ ├── views │ │ ├── All.h │ │ ├── GenericItemModel.h │ │ ├── ItemModel.h │ │ ├── ItemView.h │ │ ├── ListView.h │ │ ├── StandardItemModel.h │ │ └── TreeView.h │ │ └── widgets │ │ ├── All.h │ │ ├── ButtonBase.h │ │ ├── ComboDropList.h │ │ ├── Combobox.h │ │ ├── DefaultWindow.h │ │ ├── DragContainer.h │ │ ├── Editbox.h │ │ ├── FrameWindow.h │ │ ├── GridLayoutContainer.h │ │ ├── GroupBox.h │ │ ├── HorizontalLayoutContainer.h │ │ ├── ItemEntry.h │ │ ├── ItemListBase.h │ │ ├── LayoutContainer.h │ │ ├── ListHeader.h │ │ ├── ListHeaderSegment.h │ │ ├── ListWidget.h │ │ ├── ListboxItem.h │ │ ├── ListboxTextItem.h │ │ ├── MenuBase.h │ │ ├── MenuItem.h │ │ ├── Menubar.h │ │ ├── MultiColumnList.h │ │ ├── MultiLineEditbox.h │ │ ├── PopupMenu.h │ │ ├── ProgressBar.h │ │ ├── PushButton.h │ │ ├── RadioButton.h │ │ ├── ScrollablePane.h │ │ ├── Scrollbar.h │ │ ├── ScrolledContainer.h │ │ ├── SequentialLayoutContainer.h │ │ ├── Slider.h │ │ ├── Spinner.h │ │ ├── TabButton.h │ │ ├── TabControl.h │ │ ├── Thumb.h │ │ ├── Titlebar.h │ │ ├── ToggleButton.h │ │ ├── Tooltip.h │ │ ├── TreeWidget.h │ │ └── VerticalLayoutContainer.h └── src │ ├── Affector.cpp │ ├── AndroidUtils.cpp │ ├── Animation.cpp │ ├── AnimationInstance.cpp │ ├── AnimationManager.cpp │ ├── Animation_xmlHandler.cpp │ ├── Base.cpp │ ├── BasicRenderedStringParser.cpp │ ├── BidiVisualMapping.cpp │ ├── BitmapImage.cpp │ ├── BoundSlot.cpp │ ├── CMakeLists.txt │ ├── CentredRenderedString.cpp │ ├── ChainedXMLHandler.cpp │ ├── Clipboard.cpp │ ├── Colour.cpp │ ├── ColourRect.cpp │ ├── CommonDialogs │ ├── CMakeLists.txt │ ├── ColourPicker │ │ ├── ColourPicker.cpp │ │ ├── Controls.cpp │ │ ├── Conversions.cpp │ │ └── Types.cpp │ └── Module.cpp │ ├── CompositeResourceProvider.cpp │ ├── Config_xmlHandler.cpp │ ├── CoordConverter.cpp │ ├── Cursor.cpp │ ├── DataContainer.cpp │ ├── DefaultLogger.cpp │ ├── DefaultRenderedStringParser.cpp │ ├── DefaultResourceProvider.cpp │ ├── DynamicModule.cpp │ ├── Element.cpp │ ├── Event.cpp │ ├── EventArgs.cpp │ ├── EventSet.cpp │ ├── Exceptions.cpp │ ├── FactoryModule.cpp │ ├── FactoryRegisterer.cpp │ ├── Font.cpp │ ├── FontManager.cpp │ ├── Font_xmlHandler.cpp │ ├── FormattedRenderedString.cpp │ ├── FreeTypeFont.cpp │ ├── FribidiVisualMapping.cpp │ ├── GUIContext.cpp │ ├── GUILayout_xmlHandler.cpp │ ├── GeometryBuffer.cpp │ ├── GlobalEventSet.cpp │ ├── IconvStringTranscoder.cpp │ ├── Image.cpp │ ├── ImageCodec.cpp │ ├── ImageCodecModules │ ├── CMakeLists.txt │ ├── Corona │ │ ├── CMakeLists.txt │ │ ├── ImageCodec.cpp │ │ └── ImageCodecModule.cpp │ ├── DevIL │ │ ├── CMakeLists.txt │ │ ├── ImageCodec.cpp │ │ └── ImageCodecModule.cpp │ ├── FreeImage │ │ ├── CMakeLists.txt │ │ ├── ImageCodec.cpp │ │ └── ImageCodecModule.cpp │ ├── PVR │ │ ├── CMakeLists.txt │ │ ├── ImageCodec.cpp │ │ └── ImageCodecModule.cpp │ ├── SILLY │ │ ├── CMakeLists.txt │ │ ├── ImageCodec.cpp │ │ └── ImageCodecModule.cpp │ ├── STB │ │ ├── CMakeLists.txt │ │ ├── ImageCodec.cpp │ │ ├── ImageCodecModule.cpp │ │ └── stb_image.cpp │ └── TGA │ │ ├── CMakeLists.txt │ │ ├── ImageCodec.cpp │ │ └── ImageCodecModule.cpp │ ├── ImageManager.cpp │ ├── InputAggregator.cpp │ ├── JustifiedRenderedString.cpp │ ├── JustifiedRenderedStringWordWrapper.cpp │ ├── KeyFrame.cpp │ ├── LeftAlignedRenderedString.cpp │ ├── LinkedEvent.cpp │ ├── Logger.cpp │ ├── MinibidiVisualMapping.cpp │ ├── MinizipResourceProvider.cpp │ ├── NamedElement.cpp │ ├── NamedXMLResourceManager.cpp │ ├── PCRERegexMatcher.cpp │ ├── PixmapFont.cpp │ ├── Property.cpp │ ├── PropertyHelper.cpp │ ├── PropertySet.cpp │ ├── Quaternion.cpp │ ├── Rect.cpp │ ├── RenderEffectManager.cpp │ ├── RenderMaterial.cpp │ ├── RenderQueue.cpp │ ├── RenderTarget.cpp │ ├── RenderedString.cpp │ ├── RenderedStringComponent.cpp │ ├── RenderedStringImageComponent.cpp │ ├── RenderedStringTextComponent.cpp │ ├── RenderedStringWidgetComponent.cpp │ ├── Renderer.cpp │ ├── RendererModules │ ├── CMakeLists.txt │ ├── Direct3D11 │ │ ├── CMakeLists.txt │ │ ├── GeometryBuffer.cpp │ │ ├── RenderTarget.inl │ │ ├── Renderer.cpp │ │ ├── Shader.cpp │ │ ├── ShaderWrapper.cpp │ │ ├── Shaders.inl │ │ ├── Texture.cpp │ │ ├── TextureTarget.cpp │ │ └── ViewportTarget.cpp │ ├── DirectFB │ │ ├── CMakeLists.txt │ │ ├── GeometryBuffer.cpp │ │ ├── RenderTarget.cpp │ │ ├── Renderer.cpp │ │ └── Texture.cpp │ ├── Irrlicht │ │ ├── CMakeLists.txt │ │ ├── GeometryBuffer.cpp │ │ ├── ImageCodec.cpp │ │ ├── MemoryFile.cpp │ │ ├── RenderTarget.inl │ │ ├── Renderer.cpp │ │ ├── ResourceProvider.cpp │ │ ├── Texture.cpp │ │ ├── TextureTarget.cpp │ │ └── WindowTarget.cpp │ ├── Null │ │ ├── CMakeLists.txt │ │ ├── GeometryBuffer.cpp │ │ ├── RenderTarget.inl │ │ ├── Renderer.cpp │ │ ├── ShaderWrapper.cpp │ │ ├── Texture.cpp │ │ └── TextureTarget.cpp │ ├── Ogre │ │ ├── CMakeLists.txt │ │ ├── GeometryBuffer.cpp │ │ ├── ImageCodec.cpp │ │ ├── RenderTarget.inl │ │ ├── Renderer.cpp │ │ ├── ResourceProvider.cpp │ │ ├── ShaderWrapper.cpp │ │ ├── Shaders.inl │ │ ├── Texture.cpp │ │ ├── TextureTarget.cpp │ │ └── WindowTarget.cpp │ ├── OpenGL │ │ ├── ApplePBTextureTarget.cpp │ │ ├── CMakeLists.txt │ │ ├── GL3FBOTextureTarget.cpp │ │ ├── GL3GeometryBuffer.cpp │ │ ├── GL3Renderer.cpp │ │ ├── GL3Shader.cpp │ │ ├── GL3StateChangeWrapper.cpp │ │ ├── GL3Texture.cpp │ │ ├── GLBaseShaderWrapper.cpp │ │ ├── GLES2FBOTextureTarget.cpp │ │ ├── GLES2GeometryBuffer.cpp │ │ ├── GLES2Renderer.cpp │ │ ├── GLES2StateChangeWrapper.cpp │ │ ├── GLES2Texture.cpp │ │ ├── GLFBOTextureTarget.cpp │ │ ├── GLGeometryBuffer.cpp │ │ ├── GLRenderer.cpp │ │ ├── GLShaderWrapper.cpp │ │ ├── GLTexture.cpp │ │ ├── GLXPBTextureTarget.cpp │ │ ├── GeometryBufferBase.cpp │ │ ├── RenderTarget.inl │ │ ├── RendererBase.cpp │ │ ├── Shader.cpp │ │ ├── ShaderManager.cpp │ │ ├── Shaders.inl │ │ ├── StateChangeWrapper.cpp │ │ ├── Texture.cpp │ │ ├── TextureTarget.cpp │ │ ├── ViewportTarget.cpp │ │ └── WGLPBTextureTarget.cpp │ └── OpenGLES │ │ ├── CMakeLists.txt │ │ ├── FBOTextureTarget.cpp │ │ ├── GeometryBuffer.cpp │ │ ├── RenderTarget.inl │ │ ├── Renderer.cpp │ │ ├── Texture.cpp │ │ └── ViewportTarget.cpp │ ├── RenderingSurface.cpp │ ├── RenderingWindow.cpp │ ├── RightAlignedRenderedString.cpp │ ├── Scheme.cpp │ ├── SchemeManager.cpp │ ├── Scheme_xmlHandler.cpp │ ├── ScriptModule.cpp │ ├── ScriptModules │ ├── CMakeLists.txt │ ├── Lua │ │ ├── CMakeLists.txt │ │ ├── Functor.cpp │ │ ├── ScriptModule.cpp │ │ ├── lua_CEGUI.cpp │ │ ├── package │ │ │ ├── Affector.pkg │ │ │ ├── Animation.pkg │ │ │ ├── AnimationInstance.pkg │ │ │ ├── AnimationManager.pkg │ │ │ ├── Basic.pkg │ │ │ ├── BasicImage.pkg │ │ │ ├── CEGUI.pkg │ │ │ ├── CoordConverter.pkg │ │ │ ├── Element.pkg │ │ │ ├── EventSet.pkg │ │ │ ├── Font.pkg │ │ │ ├── FontManager.pkg │ │ │ ├── GUIContext.pkg │ │ │ ├── GeometryBuffer.pkg │ │ │ ├── HelperFunctions.pkg │ │ │ ├── Image.pkg │ │ │ ├── ImageManager.pkg │ │ │ ├── InjectedInputReceiver.pkg │ │ │ ├── InputEvent.pkg │ │ │ ├── Interpolator.pkg │ │ │ ├── Iterators.pkg │ │ │ ├── Key.pkg │ │ │ ├── KeyFrame.pkg │ │ │ ├── Logger.pkg │ │ │ ├── MouseCursor.pkg │ │ │ ├── NamedElement.pkg │ │ │ ├── OutStream.pkg │ │ │ ├── PropertyHelper.pkg │ │ │ ├── README │ │ │ ├── RegexMatcher.pkg │ │ │ ├── RenderEffect.pkg │ │ │ ├── RenderQueue.pkg │ │ │ ├── RenderTarget.pkg │ │ │ ├── Renderer.pkg │ │ │ ├── RenderingContext.pkg │ │ │ ├── RenderingSurface.pkg │ │ │ ├── RenderingWindow.pkg │ │ │ ├── Scheme.pkg │ │ │ ├── SchemeManager.pkg │ │ │ ├── SimpleTimer.pkg │ │ │ ├── StringTranscoder.pkg │ │ │ ├── System.pkg │ │ │ ├── SystemKeys.pkg │ │ │ ├── Texture.pkg │ │ │ ├── TextureTarget.pkg │ │ │ ├── UnifiedCoordSystem.pkg │ │ │ ├── Vertex.pkg │ │ │ ├── Window.pkg │ │ │ ├── WindowFactoryManager.pkg │ │ │ ├── WindowManager.pkg │ │ │ ├── elements │ │ │ │ ├── ButtonBase.pkg │ │ │ │ ├── ComboDropList.pkg │ │ │ │ ├── Combobox.pkg │ │ │ │ ├── DragContainer.pkg │ │ │ │ ├── Editbox.pkg │ │ │ │ ├── FrameWindow.pkg │ │ │ │ ├── GUISheet.pkg │ │ │ │ ├── GridLayoutContainer.pkg │ │ │ │ ├── GroupBox.pkg │ │ │ │ ├── HorizontalLayoutContainer.pkg │ │ │ │ ├── ItemEntry.pkg │ │ │ │ ├── ItemListBase.pkg │ │ │ │ ├── ItemListbox.pkg │ │ │ │ ├── LayoutContainer.pkg │ │ │ │ ├── ListHeader.pkg │ │ │ │ ├── ListHeaderSegment.pkg │ │ │ │ ├── Listbox.pkg │ │ │ │ ├── ListboxItem.pkg │ │ │ │ ├── ListboxTextItem.pkg │ │ │ │ ├── MenuBase.pkg │ │ │ │ ├── MenuItem.pkg │ │ │ │ ├── Menubar.pkg │ │ │ │ ├── MultiColumnList.pkg │ │ │ │ ├── MultiLineEditbox.pkg │ │ │ │ ├── PopupMenu.pkg │ │ │ │ ├── ProgressBar.pkg │ │ │ │ ├── PushButton.pkg │ │ │ │ ├── RadioButton.pkg │ │ │ │ ├── ScrollablePane.pkg │ │ │ │ ├── Scrollbar.pkg │ │ │ │ ├── ScrolledContainer.pkg │ │ │ │ ├── ScrolledItemListBase.pkg │ │ │ │ ├── SequentialLayoutContainer.pkg │ │ │ │ ├── Slider.pkg │ │ │ │ ├── Spinner.pkg │ │ │ │ ├── TabButton.pkg │ │ │ │ ├── TabControl.pkg │ │ │ │ ├── Thumb.pkg │ │ │ │ ├── Titlebar.pkg │ │ │ │ ├── ToggleButton.pkg │ │ │ │ ├── Tooltip.pkg │ │ │ │ ├── Tree.pkg │ │ │ │ ├── TreeItem.pkg │ │ │ │ └── VerticalLayoutContainer.pkg │ │ │ ├── exceptions.lua │ │ │ ├── falagard │ │ │ │ ├── Dimension.pkg │ │ │ │ ├── Enums.pkg │ │ │ │ ├── FalagardComponentBase.pkg │ │ │ │ ├── FrameComponent.pkg │ │ │ │ ├── ImageryComponent.pkg │ │ │ │ ├── ImagerySection.pkg │ │ │ │ ├── LayerSpecification.pkg │ │ │ │ ├── NamedArea.pkg │ │ │ │ ├── PropertyDefinition.pkg │ │ │ │ ├── PropertyDefinitionBase.pkg │ │ │ │ ├── PropertyInitialiser.pkg │ │ │ │ ├── PropertyLinkDefinition.pkg │ │ │ │ ├── SectionSpecification.pkg │ │ │ │ ├── StateImagery.pkg │ │ │ │ ├── TextComponent.pkg │ │ │ │ ├── WidgetComponent.pkg │ │ │ │ ├── WidgetLookFeel.pkg │ │ │ │ └── WidgetLookManager.pkg │ │ │ └── make.bat │ │ ├── required.cpp │ │ ├── required.h │ │ └── support │ │ │ └── tolua++bin │ │ │ ├── CMakeLists.txt │ │ │ ├── MANUAL │ │ │ ├── README │ │ │ ├── lua │ │ │ ├── all.lua │ │ │ ├── array.lua │ │ │ ├── basic.lua │ │ │ ├── class.lua │ │ │ ├── clean.lua │ │ │ ├── code.lua │ │ │ ├── compat-5.1.lua │ │ │ ├── compat.lua │ │ │ ├── container.lua │ │ │ ├── custom.lua │ │ │ ├── custom_hide.lua │ │ │ ├── declaration.lua │ │ │ ├── define.lua │ │ │ ├── doit.lua │ │ │ ├── enumerate.lua │ │ │ ├── feature.lua │ │ │ ├── function.lua │ │ │ ├── module.lua │ │ │ ├── namespace.lua │ │ │ ├── operator.lua │ │ │ ├── package.lua │ │ │ ├── typedef.lua │ │ │ ├── variable.lua │ │ │ └── verbatim.lua │ │ │ ├── remake_pkg.bat │ │ │ ├── remake_pkg.sh │ │ │ ├── tolua.c │ │ │ ├── tolua_scons.pkg │ │ │ ├── toluabind.c │ │ │ └── toluabind.h │ └── Python │ │ └── bindings │ │ ├── CMakeLists.txt │ │ ├── distutils │ │ ├── PyCEGUI │ │ │ ├── __init__.py │ │ │ └── fake.py │ │ ├── README │ │ ├── WINDOWS_ONLY │ │ └── setup.py │ │ ├── generate.py │ │ ├── generators │ │ ├── __init__.py │ │ ├── cegui_base.py │ │ ├── common_utils.py │ │ ├── extract_documentation.py │ │ ├── include │ │ │ ├── python_CEGUI.h │ │ │ ├── python_CEGUINullRenderer.h │ │ │ ├── python_CEGUIOgreRenderer.h │ │ │ └── python_CEGUIOpenGLRenderer.h │ │ ├── null_renderer.py │ │ ├── ogre_renderer.py │ │ └── opengl_renderer.py │ │ └── output │ │ ├── CEGUI │ │ ├── AbsoluteDim.pypp.cpp │ │ ├── AbsoluteDim.pypp.hpp │ │ ├── ActivationEventArgs.pypp.cpp │ │ ├── ActivationEventArgs.pypp.hpp │ │ ├── Affector.pypp.cpp │ │ ├── Affector.pypp.hpp │ │ ├── Animation.pypp.cpp │ │ ├── Animation.pypp.hpp │ │ ├── AnimationEventArgs.pypp.cpp │ │ ├── AnimationEventArgs.pypp.hpp │ │ ├── AnimationInstance.pypp.cpp │ │ ├── AnimationInstance.pypp.hpp │ │ ├── AnimationManager.pypp.cpp │ │ ├── AnimationManager.pypp.hpp │ │ ├── AnimationNameIterator.pypp.cpp │ │ ├── AnimationNameIterator.pypp.hpp │ │ ├── BaseDim.pypp.cpp │ │ ├── BaseDim.pypp.hpp │ │ ├── BasicImage.pypp.cpp │ │ ├── BasicImage.pypp.hpp │ │ ├── BasicRenderedStringParser.pypp.cpp │ │ ├── BasicRenderedStringParser.pypp.hpp │ │ ├── BoundSlot.pypp.cpp │ │ ├── BoundSlot.pypp.hpp │ │ ├── ButtonBase.pypp.cpp │ │ ├── ButtonBase.pypp.hpp │ │ ├── CentredRenderedString.pypp.cpp │ │ ├── CentredRenderedString.pypp.hpp │ │ ├── Clipboard.pypp.cpp │ │ ├── Clipboard.pypp.hpp │ │ ├── Colour.pypp.cpp │ │ ├── Colour.pypp.hpp │ │ ├── ColourRect.pypp.cpp │ │ ├── ColourRect.pypp.hpp │ │ ├── ComboDropList.pypp.cpp │ │ ├── ComboDropList.pypp.hpp │ │ ├── Combobox.pypp.cpp │ │ ├── Combobox.pypp.hpp │ │ ├── ComponentArea.pypp.cpp │ │ ├── ComponentArea.pypp.hpp │ │ ├── ComponentList.pypp.cpp │ │ ├── ComponentList.pypp.hpp │ │ ├── Connection.pypp.cpp │ │ ├── Connection.pypp.hpp │ │ ├── ConstBaseIterator_23c5f09e76c89ed46f1671ac87f5d133.pypp.cpp │ │ ├── ConstBaseIterator_23c5f09e76c89ed46f1671ac87f5d133.pypp.hpp │ │ ├── ConstBaseIterator_2c9936f57a2ad030e0dfadb6e79a326f.pypp.cpp │ │ ├── ConstBaseIterator_2c9936f57a2ad030e0dfadb6e79a326f.pypp.hpp │ │ ├── ConstBaseIterator_3dfe55a685a628d9556dccd6ce85e923.pypp.cpp │ │ ├── ConstBaseIterator_3dfe55a685a628d9556dccd6ce85e923.pypp.hpp │ │ ├── ConstBaseIterator_45e2d4f27e29c3a5b74179f6cfabbc4c.pypp.cpp │ │ ├── ConstBaseIterator_45e2d4f27e29c3a5b74179f6cfabbc4c.pypp.hpp │ │ ├── ConstBaseIterator_47ddd968107e89ff0051bf3212fbb472.pypp.cpp │ │ ├── ConstBaseIterator_47ddd968107e89ff0051bf3212fbb472.pypp.hpp │ │ ├── ConstBaseIterator_58fce9a3b4ea911d189f971dbf4a6c9b.pypp.cpp │ │ ├── ConstBaseIterator_58fce9a3b4ea911d189f971dbf4a6c9b.pypp.hpp │ │ ├── ConstBaseIterator_6318b664b630c5a4e45127a69c6748cb.pypp.cpp │ │ ├── ConstBaseIterator_6318b664b630c5a4e45127a69c6748cb.pypp.hpp │ │ ├── ConstBaseIterator_663c592fa58613dab4f9509d04eb6cc1.pypp.cpp │ │ ├── ConstBaseIterator_663c592fa58613dab4f9509d04eb6cc1.pypp.hpp │ │ ├── ConstBaseIterator_6cea82a17f94b95b10c333412f843a6d.pypp.cpp │ │ ├── ConstBaseIterator_6cea82a17f94b95b10c333412f843a6d.pypp.hpp │ │ ├── ConstBaseIterator_6da79d61dc2d4c154ee9113f9d44d174.pypp.cpp │ │ ├── ConstBaseIterator_6da79d61dc2d4c154ee9113f9d44d174.pypp.hpp │ │ ├── ConstBaseIterator_6e18222775ccb39f7ec1f5c112d444ec.pypp.cpp │ │ ├── ConstBaseIterator_6e18222775ccb39f7ec1f5c112d444ec.pypp.hpp │ │ ├── ConstBaseIterator_78cd23dcc51d261e1f508a899854e1a9.pypp.cpp │ │ ├── ConstBaseIterator_78cd23dcc51d261e1f508a899854e1a9.pypp.hpp │ │ ├── ConstBaseIterator_7f0012c4899354432f095ef9bb577046.pypp.cpp │ │ ├── ConstBaseIterator_7f0012c4899354432f095ef9bb577046.pypp.hpp │ │ ├── ConstBaseIterator_92b3f0ef60bba0b7bc1aa08b6f3304d6.pypp.cpp │ │ ├── ConstBaseIterator_92b3f0ef60bba0b7bc1aa08b6f3304d6.pypp.hpp │ │ ├── ConstBaseIterator_937e880515ad590c17d4b2b82a347310.pypp.cpp │ │ ├── ConstBaseIterator_937e880515ad590c17d4b2b82a347310.pypp.hpp │ │ ├── ConstBaseIterator_99d0247943ea008baba14993d63dd301.pypp.cpp │ │ ├── ConstBaseIterator_99d0247943ea008baba14993d63dd301.pypp.hpp │ │ ├── ConstBaseIterator_9b6259ec5f5ed443accef2ab6f116fda.pypp.cpp │ │ ├── ConstBaseIterator_9b6259ec5f5ed443accef2ab6f116fda.pypp.hpp │ │ ├── ConstBaseIterator_9dce73c5f5e3a55d1a66a6e740fbf48b.pypp.cpp │ │ ├── ConstBaseIterator_9dce73c5f5e3a55d1a66a6e740fbf48b.pypp.hpp │ │ ├── ConstBaseIterator_a74f832b0a98ff325f0d295bba46f58b.pypp.cpp │ │ ├── ConstBaseIterator_a74f832b0a98ff325f0d295bba46f58b.pypp.hpp │ │ ├── ConstBaseIterator_b33d7bd272dd6c97821cbd9402cb4364.pypp.cpp │ │ ├── ConstBaseIterator_b33d7bd272dd6c97821cbd9402cb4364.pypp.hpp │ │ ├── ConstBaseIterator_ccf46e19ae28e4742a13388873833720.pypp.cpp │ │ ├── ConstBaseIterator_ccf46e19ae28e4742a13388873833720.pypp.hpp │ │ ├── ConstBaseIterator_d0a5fcfab7d8e4121b568ec58e88f4fd.pypp.cpp │ │ ├── ConstBaseIterator_d0a5fcfab7d8e4121b568ec58e88f4fd.pypp.hpp │ │ ├── ConstBaseIterator_e31fba8abb652b91e7a416a794506e4f.pypp.cpp │ │ ├── ConstBaseIterator_e31fba8abb652b91e7a416a794506e4f.pypp.hpp │ │ ├── ConstBaseIterator_e6837f87c747b0388313d47a6a1e8556.pypp.cpp │ │ ├── ConstBaseIterator_e6837f87c747b0388313d47a6a1e8556.pypp.hpp │ │ ├── ConstBaseIterator_e78994bfd2b781a573fdd2cd7ca2ceae.pypp.cpp │ │ ├── ConstBaseIterator_e78994bfd2b781a573fdd2cd7ca2ceae.pypp.hpp │ │ ├── ConstBaseIterator_f0585fb3775a7fa1f905d29be5dc1533.pypp.cpp │ │ ├── ConstBaseIterator_f0585fb3775a7fa1f905d29be5dc1533.pypp.hpp │ │ ├── CoordConverter.pypp.cpp │ │ ├── CoordConverter.pypp.hpp │ │ ├── DefaultLogger.pypp.cpp │ │ ├── DefaultLogger.pypp.hpp │ │ ├── DefaultResourceProvider.pypp.cpp │ │ ├── DefaultResourceProvider.pypp.hpp │ │ ├── DefaultWindow.pypp.cpp │ │ ├── DefaultWindow.pypp.hpp │ │ ├── Dimension.pypp.cpp │ │ ├── Dimension.pypp.hpp │ │ ├── DisplayEventArgs.pypp.cpp │ │ ├── DisplayEventArgs.pypp.hpp │ │ ├── DragContainer.pypp.cpp │ │ ├── DragContainer.pypp.hpp │ │ ├── DragDropEventArgs.pypp.cpp │ │ ├── DragDropEventArgs.pypp.hpp │ │ ├── Editbox.pypp.cpp │ │ ├── Editbox.pypp.hpp │ │ ├── Element.pypp.cpp │ │ ├── Element.pypp.hpp │ │ ├── ElementEventArgs.pypp.cpp │ │ ├── ElementEventArgs.pypp.hpp │ │ ├── Event.pypp.cpp │ │ ├── Event.pypp.hpp │ │ ├── EventAction.pypp.cpp │ │ ├── EventAction.pypp.hpp │ │ ├── EventActionIterator.pypp.cpp │ │ ├── EventActionIterator.pypp.hpp │ │ ├── EventArgs.pypp.cpp │ │ ├── EventArgs.pypp.hpp │ │ ├── EventIterator.pypp.cpp │ │ ├── EventIterator.pypp.hpp │ │ ├── EventLinkDefinition.pypp.cpp │ │ ├── EventLinkDefinition.pypp.hpp │ │ ├── EventLinkDefinitionIterator.pypp.cpp │ │ ├── EventLinkDefinitionIterator.pypp.hpp │ │ ├── EventLinkDefinitionMap.pypp.cpp │ │ ├── EventLinkDefinitionMap.pypp.hpp │ │ ├── EventSet.pypp.cpp │ │ ├── EventSet.pypp.hpp │ │ ├── Exception.pypp.cpp │ │ ├── Exception.pypp.hpp │ │ ├── FalagardComponentBase.pypp.cpp │ │ ├── FalagardComponentBase.pypp.hpp │ │ ├── FalagardMappingIterator.pypp.cpp │ │ ├── FalagardMappingIterator.pypp.hpp │ │ ├── FalagardPropertyBaseBool.pypp.cpp │ │ ├── FalagardPropertyBaseBool.pypp.hpp │ │ ├── FalagardPropertyBaseColour.pypp.cpp │ │ ├── FalagardPropertyBaseColour.pypp.hpp │ │ ├── FalagardPropertyBaseColourRect.pypp.cpp │ │ ├── FalagardPropertyBaseColourRect.pypp.hpp │ │ ├── FalagardPropertyBaseColourUBox.pypp.cpp │ │ ├── FalagardPropertyBaseColourUBox.pypp.hpp │ │ ├── FalagardPropertyBaseColourUDim.pypp.cpp │ │ ├── FalagardPropertyBaseColourUDim.pypp.hpp │ │ ├── FalagardPropertyBaseColourURect.pypp.cpp │ │ ├── FalagardPropertyBaseColourURect.pypp.hpp │ │ ├── FalagardPropertyBaseColourUVector2.pypp.cpp │ │ ├── FalagardPropertyBaseColourUVector2.pypp.hpp │ │ ├── FalagardPropertyBaseFloat.pypp.cpp │ │ ├── FalagardPropertyBaseFloat.pypp.hpp │ │ ├── FalagardPropertyBaseFont.pypp.cpp │ │ ├── FalagardPropertyBaseFont.pypp.hpp │ │ ├── FalagardPropertyBaseHorizontalFormatting.pypp.cpp │ │ ├── FalagardPropertyBaseHorizontalFormatting.pypp.hpp │ │ ├── FalagardPropertyBaseHorizontalTextFormatting.pypp.cpp │ │ ├── FalagardPropertyBaseHorizontalTextFormatting.pypp.hpp │ │ ├── FalagardPropertyBaseImage.pypp.cpp │ │ ├── FalagardPropertyBaseImage.pypp.hpp │ │ ├── FalagardPropertyBaseRectf.pypp.cpp │ │ ├── FalagardPropertyBaseRectf.pypp.hpp │ │ ├── FalagardPropertyBaseSizef.pypp.cpp │ │ ├── FalagardPropertyBaseSizef.pypp.hpp │ │ ├── FalagardPropertyBaseString.pypp.cpp │ │ ├── FalagardPropertyBaseString.pypp.hpp │ │ ├── FalagardPropertyBaseUint.pypp.cpp │ │ ├── FalagardPropertyBaseUint.pypp.hpp │ │ ├── FalagardPropertyBaseVector2f.pypp.cpp │ │ ├── FalagardPropertyBaseVector2f.pypp.hpp │ │ ├── FalagardPropertyBaseVerticalFormatting.pypp.cpp │ │ ├── FalagardPropertyBaseVerticalFormatting.pypp.hpp │ │ ├── FalagardPropertyBaseVerticalTextFormatting.pypp.cpp │ │ ├── FalagardPropertyBaseVerticalTextFormatting.pypp.hpp │ │ ├── FalagardXMLHelper.pypp.cpp │ │ ├── FalagardXMLHelper.pypp.hpp │ │ ├── Font.pypp.cpp │ │ ├── Font.pypp.hpp │ │ ├── FontDim.pypp.cpp │ │ ├── FontDim.pypp.hpp │ │ ├── FontEventArgs.pypp.cpp │ │ ├── FontEventArgs.pypp.hpp │ │ ├── FontGlyph.pypp.cpp │ │ ├── FontGlyph.pypp.hpp │ │ ├── FontIterator.pypp.cpp │ │ ├── FontIterator.pypp.hpp │ │ ├── FontManager.pypp.cpp │ │ ├── FontManager.pypp.hpp │ │ ├── FrameComponent.pypp.cpp │ │ ├── FrameComponent.pypp.hpp │ │ ├── FrameComponentIterator.pypp.cpp │ │ ├── FrameComponentIterator.pypp.hpp │ │ ├── FrameComponentVector.pypp.cpp │ │ ├── FrameComponentVector.pypp.hpp │ │ ├── FrameWindow.pypp.cpp │ │ ├── FrameWindow.pypp.hpp │ │ ├── GUIContext.pypp.cpp │ │ ├── GUIContext.pypp.hpp │ │ ├── GUIContextEventArgs.pypp.cpp │ │ ├── GUIContextEventArgs.pypp.hpp │ │ ├── GUIContextRenderTargetEventArgs.pypp.cpp │ │ ├── GUIContextRenderTargetEventArgs.pypp.hpp │ │ ├── GeometryBuffer.pypp.cpp │ │ ├── GeometryBuffer.pypp.hpp │ │ ├── GlobalEventSet.pypp.cpp │ │ ├── GlobalEventSet.pypp.hpp │ │ ├── GridLayoutContainer.pypp.cpp │ │ ├── GridLayoutContainer.pypp.hpp │ │ ├── GroupBox.pypp.cpp │ │ ├── GroupBox.pypp.hpp │ │ ├── HeaderSequenceEventArgs.pypp.cpp │ │ ├── HeaderSequenceEventArgs.pypp.hpp │ │ ├── HorizontalLayoutContainer.pypp.cpp │ │ ├── HorizontalLayoutContainer.pypp.hpp │ │ ├── Image.pypp.cpp │ │ ├── Image.pypp.hpp │ │ ├── ImageCodec.pypp.cpp │ │ ├── ImageCodec.pypp.hpp │ │ ├── ImageDim.pypp.cpp │ │ ├── ImageDim.pypp.hpp │ │ ├── ImageIterator.pypp.cpp │ │ ├── ImageIterator.pypp.hpp │ │ ├── ImageManager.pypp.cpp │ │ ├── ImageManager.pypp.hpp │ │ ├── ImagePropertyDim.pypp.cpp │ │ ├── ImagePropertyDim.pypp.hpp │ │ ├── ImageryComponent.pypp.cpp │ │ ├── ImageryComponent.pypp.hpp │ │ ├── ImageryComponentIterator.pypp.cpp │ │ ├── ImageryComponentIterator.pypp.hpp │ │ ├── ImageryComponentVector.pypp.cpp │ │ ├── ImageryComponentVector.pypp.hpp │ │ ├── ImageryIterator.pypp.cpp │ │ ├── ImageryIterator.pypp.hpp │ │ ├── ImagerySection.pypp.cpp │ │ ├── ImagerySection.pypp.hpp │ │ ├── ImagerySectionMap.pypp.cpp │ │ ├── ImagerySectionMap.pypp.hpp │ │ ├── Interpolator.pypp.cpp │ │ ├── Interpolator.pypp.hpp │ │ ├── ItemEntry.pypp.cpp │ │ ├── ItemEntry.pypp.hpp │ │ ├── ItemListBase.pypp.cpp │ │ ├── ItemListBase.pypp.hpp │ │ ├── ItemListbox.pypp.cpp │ │ ├── ItemListbox.pypp.hpp │ │ ├── Key.pypp.cpp │ │ ├── Key.pypp.hpp │ │ ├── KeyEventArgs.pypp.cpp │ │ ├── KeyEventArgs.pypp.hpp │ │ ├── KeyFrame.pypp.cpp │ │ ├── KeyFrame.pypp.hpp │ │ ├── LBItemList.pypp.cpp │ │ ├── LBItemList.pypp.hpp │ │ ├── LayerIterator.pypp.cpp │ │ ├── LayerIterator.pypp.hpp │ │ ├── LayerSpecification.pypp.cpp │ │ ├── LayerSpecification.pypp.hpp │ │ ├── LayerSpecificationVector.pypp.cpp │ │ ├── LayerSpecificationVector.pypp.hpp │ │ ├── LayoutContainer.pypp.cpp │ │ ├── LayoutContainer.pypp.hpp │ │ ├── LineList.pypp.cpp │ │ ├── LineList.pypp.hpp │ │ ├── LinkTargetIterator.pypp.cpp │ │ ├── LinkTargetIterator.pypp.hpp │ │ ├── LinkedEventArgs.pypp.cpp │ │ ├── LinkedEventArgs.pypp.hpp │ │ ├── ListHeader.pypp.cpp │ │ ├── ListHeader.pypp.hpp │ │ ├── ListHeaderSegment.pypp.cpp │ │ ├── ListHeaderSegment.pypp.hpp │ │ ├── Listbox.pypp.cpp │ │ ├── Listbox.pypp.hpp │ │ ├── ListboxItem.pypp.cpp │ │ ├── ListboxItem.pypp.hpp │ │ ├── ListboxTextItem.pypp.cpp │ │ ├── ListboxTextItem.pypp.hpp │ │ ├── LoadableUIElementIterator.pypp.cpp │ │ ├── LoadableUIElementIterator.pypp.hpp │ │ ├── Logger.pypp.cpp │ │ ├── Logger.pypp.hpp │ │ ├── MCLGridRef.pypp.cpp │ │ ├── MCLGridRef.pypp.hpp │ │ ├── MenuBase.pypp.cpp │ │ ├── MenuBase.pypp.hpp │ │ ├── MenuItem.pypp.cpp │ │ ├── MenuItem.pypp.hpp │ │ ├── Menubar.pypp.cpp │ │ ├── Menubar.pypp.hpp │ │ ├── MouseCursor.pypp.cpp │ │ ├── MouseCursor.pypp.hpp │ │ ├── MouseCursorEventArgs.pypp.cpp │ │ ├── MouseCursorEventArgs.pypp.hpp │ │ ├── MouseEventArgs.pypp.cpp │ │ ├── MouseEventArgs.pypp.hpp │ │ ├── MultiColumnList.pypp.cpp │ │ ├── MultiColumnList.pypp.hpp │ │ ├── MultiLineEditbox.pypp.cpp │ │ ├── MultiLineEditbox.pypp.hpp │ │ ├── NamedArea.pypp.cpp │ │ ├── NamedArea.pypp.hpp │ │ ├── NamedAreaIterator.pypp.cpp │ │ ├── NamedAreaIterator.pypp.hpp │ │ ├── NamedAreaMap.pypp.cpp │ │ ├── NamedAreaMap.pypp.hpp │ │ ├── NamedElement.pypp.cpp │ │ ├── NamedElement.pypp.hpp │ │ ├── NamedElementEventArgs.pypp.cpp │ │ ├── NamedElementEventArgs.pypp.hpp │ │ ├── NamedXMLResourceManagerFont.pypp.cpp │ │ ├── NamedXMLResourceManagerFont.pypp.hpp │ │ ├── NamedXMLResourceManagerScheme.pypp.cpp │ │ ├── NamedXMLResourceManagerScheme.pypp.hpp │ │ ├── OperatorDim.pypp.cpp │ │ ├── OperatorDim.pypp.hpp │ │ ├── PopupMenu.pypp.cpp │ │ ├── PopupMenu.pypp.hpp │ │ ├── ProgressBar.pypp.cpp │ │ ├── ProgressBar.pypp.hpp │ │ ├── Property.pypp.cpp │ │ ├── Property.pypp.hpp │ │ ├── PropertyDefinitionBase.pypp.cpp │ │ ├── PropertyDefinitionBase.pypp.hpp │ │ ├── PropertyDefinitionBaseMap.pypp.cpp │ │ ├── PropertyDefinitionBaseMap.pypp.hpp │ │ ├── PropertyDefinitionBool.pypp.cpp │ │ ├── PropertyDefinitionBool.pypp.hpp │ │ ├── PropertyDefinitionColour.pypp.cpp │ │ ├── PropertyDefinitionColour.pypp.hpp │ │ ├── PropertyDefinitionColourRect.pypp.cpp │ │ ├── PropertyDefinitionColourRect.pypp.hpp │ │ ├── PropertyDefinitionColourUBox.pypp.cpp │ │ ├── PropertyDefinitionColourUBox.pypp.hpp │ │ ├── PropertyDefinitionColourUDim.pypp.cpp │ │ ├── PropertyDefinitionColourUDim.pypp.hpp │ │ ├── PropertyDefinitionColourURect.pypp.cpp │ │ ├── PropertyDefinitionColourURect.pypp.hpp │ │ ├── PropertyDefinitionColourUVector2.pypp.cpp │ │ ├── PropertyDefinitionColourUVector2.pypp.hpp │ │ ├── PropertyDefinitionFloat.pypp.cpp │ │ ├── PropertyDefinitionFloat.pypp.hpp │ │ ├── PropertyDefinitionFont.pypp.cpp │ │ ├── PropertyDefinitionFont.pypp.hpp │ │ ├── PropertyDefinitionHorizontalFormatting.pypp.cpp │ │ ├── PropertyDefinitionHorizontalFormatting.pypp.hpp │ │ ├── PropertyDefinitionHorizontalTextFormatting.pypp.cpp │ │ ├── PropertyDefinitionHorizontalTextFormatting.pypp.hpp │ │ ├── PropertyDefinitionImage.pypp.cpp │ │ ├── PropertyDefinitionImage.pypp.hpp │ │ ├── PropertyDefinitionIterator.pypp.cpp │ │ ├── PropertyDefinitionIterator.pypp.hpp │ │ ├── PropertyDefinitionRectf.pypp.cpp │ │ ├── PropertyDefinitionRectf.pypp.hpp │ │ ├── PropertyDefinitionSizef.pypp.cpp │ │ ├── PropertyDefinitionSizef.pypp.hpp │ │ ├── PropertyDefinitionString.pypp.cpp │ │ ├── PropertyDefinitionString.pypp.hpp │ │ ├── PropertyDefinitionUint.pypp.cpp │ │ ├── PropertyDefinitionUint.pypp.hpp │ │ ├── PropertyDefinitionVector2f.pypp.cpp │ │ ├── PropertyDefinitionVector2f.pypp.hpp │ │ ├── PropertyDefinitionVerticalFormatting.pypp.cpp │ │ ├── PropertyDefinitionVerticalFormatting.pypp.hpp │ │ ├── PropertyDefinitionVerticalTextFormatting.pypp.cpp │ │ ├── PropertyDefinitionVerticalTextFormatting.pypp.hpp │ │ ├── PropertyDim.pypp.cpp │ │ ├── PropertyDim.pypp.hpp │ │ ├── PropertyHelper.pypp.cpp │ │ ├── PropertyHelper.pypp.hpp │ │ ├── PropertyInitialiser.pypp.cpp │ │ ├── PropertyInitialiser.pypp.hpp │ │ ├── PropertyInitialiserIterator.pypp.cpp │ │ ├── PropertyInitialiserIterator.pypp.hpp │ │ ├── PropertyInitialiserMap.pypp.cpp │ │ ├── PropertyInitialiserMap.pypp.hpp │ │ ├── PropertyInitialiserVector.pypp.cpp │ │ ├── PropertyInitialiserVector.pypp.hpp │ │ ├── PropertyIterator.pypp.cpp │ │ ├── PropertyIterator.pypp.hpp │ │ ├── PropertyLinkDefinitionBool.pypp.cpp │ │ ├── PropertyLinkDefinitionBool.pypp.hpp │ │ ├── PropertyLinkDefinitionColour.pypp.cpp │ │ ├── PropertyLinkDefinitionColour.pypp.hpp │ │ ├── PropertyLinkDefinitionColourRect.pypp.cpp │ │ ├── PropertyLinkDefinitionColourRect.pypp.hpp │ │ ├── PropertyLinkDefinitionColourUBox.pypp.cpp │ │ ├── PropertyLinkDefinitionColourUBox.pypp.hpp │ │ ├── PropertyLinkDefinitionColourUDim.pypp.cpp │ │ ├── PropertyLinkDefinitionColourUDim.pypp.hpp │ │ ├── PropertyLinkDefinitionColourURect.pypp.cpp │ │ ├── PropertyLinkDefinitionColourURect.pypp.hpp │ │ ├── PropertyLinkDefinitionColourUVector2.pypp.cpp │ │ ├── PropertyLinkDefinitionColourUVector2.pypp.hpp │ │ ├── PropertyLinkDefinitionFloat.pypp.cpp │ │ ├── PropertyLinkDefinitionFloat.pypp.hpp │ │ ├── PropertyLinkDefinitionFont.pypp.cpp │ │ ├── PropertyLinkDefinitionFont.pypp.hpp │ │ ├── PropertyLinkDefinitionHorizontalFormatting.pypp.cpp │ │ ├── PropertyLinkDefinitionHorizontalFormatting.pypp.hpp │ │ ├── PropertyLinkDefinitionHorizontalTextFormatting.pypp.cpp │ │ ├── PropertyLinkDefinitionHorizontalTextFormatting.pypp.hpp │ │ ├── PropertyLinkDefinitionImage.pypp.cpp │ │ ├── PropertyLinkDefinitionImage.pypp.hpp │ │ ├── PropertyLinkDefinitionRectf.pypp.cpp │ │ ├── PropertyLinkDefinitionRectf.pypp.hpp │ │ ├── PropertyLinkDefinitionSizef.pypp.cpp │ │ ├── PropertyLinkDefinitionSizef.pypp.hpp │ │ ├── PropertyLinkDefinitionString.pypp.cpp │ │ ├── PropertyLinkDefinitionString.pypp.hpp │ │ ├── PropertyLinkDefinitionUint.pypp.cpp │ │ ├── PropertyLinkDefinitionUint.pypp.hpp │ │ ├── PropertyLinkDefinitionVector2f.pypp.cpp │ │ ├── PropertyLinkDefinitionVector2f.pypp.hpp │ │ ├── PropertyLinkDefinitionVerticalFormatting.pypp.cpp │ │ ├── PropertyLinkDefinitionVerticalFormatting.pypp.hpp │ │ ├── PropertyLinkDefinitionVerticalTextFormatting.pypp.cpp │ │ ├── PropertyLinkDefinitionVerticalTextFormatting.pypp.hpp │ │ ├── PropertyReceiver.pypp.cpp │ │ ├── PropertyReceiver.pypp.hpp │ │ ├── PropertySet.pypp.cpp │ │ ├── PropertySet.pypp.hpp │ │ ├── PushButton.pypp.cpp │ │ ├── PushButton.pypp.hpp │ │ ├── PyCEGUI.main.cpp │ │ ├── PyCEGUI_enumerations.pypp.cpp │ │ ├── PyCEGUI_enumerations.pypp.hpp │ │ ├── Quaternion.pypp.cpp │ │ ├── Quaternion.pypp.hpp │ │ ├── RadioButton.pypp.cpp │ │ ├── RadioButton.pypp.hpp │ │ ├── RawDataContainer.pypp.cpp │ │ ├── RawDataContainer.pypp.hpp │ │ ├── Rectf.pypp.cpp │ │ ├── Rectf.pypp.hpp │ │ ├── RegexMatchStateEventArgs.pypp.cpp │ │ ├── RegexMatchStateEventArgs.pypp.hpp │ │ ├── RegexMatcher.pypp.cpp │ │ ├── RegexMatcher.pypp.hpp │ │ ├── RenderEffect.pypp.cpp │ │ ├── RenderEffect.pypp.hpp │ │ ├── RenderEffectFactory.pypp.cpp │ │ ├── RenderEffectFactory.pypp.hpp │ │ ├── RenderEffectManager.pypp.cpp │ │ ├── RenderEffectManager.pypp.hpp │ │ ├── RenderQueue.pypp.cpp │ │ ├── RenderQueue.pypp.hpp │ │ ├── RenderQueueEventArgs.pypp.cpp │ │ ├── RenderQueueEventArgs.pypp.hpp │ │ ├── RenderTarget.pypp.cpp │ │ ├── RenderTarget.pypp.hpp │ │ ├── RenderTargetEventArgs.pypp.cpp │ │ ├── RenderTargetEventArgs.pypp.hpp │ │ ├── RenderedString.pypp.cpp │ │ ├── RenderedString.pypp.hpp │ │ ├── RenderedStringComponent.pypp.cpp │ │ ├── RenderedStringComponent.pypp.hpp │ │ ├── RenderedStringImageComponent.pypp.cpp │ │ ├── RenderedStringImageComponent.pypp.hpp │ │ ├── RenderedStringParser.pypp.cpp │ │ ├── RenderedStringParser.pypp.hpp │ │ ├── RenderedStringTextComponent.pypp.cpp │ │ ├── RenderedStringTextComponent.pypp.hpp │ │ ├── RenderedStringWidgetComponent.pypp.cpp │ │ ├── RenderedStringWidgetComponent.pypp.hpp │ │ ├── Renderer.pypp.cpp │ │ ├── Renderer.pypp.hpp │ │ ├── RenderingContext.pypp.cpp │ │ ├── RenderingContext.pypp.hpp │ │ ├── RenderingSurface.pypp.cpp │ │ ├── RenderingSurface.pypp.hpp │ │ ├── RenderingWindow.pypp.cpp │ │ ├── RenderingWindow.pypp.hpp │ │ ├── ResourceEventArgs.pypp.cpp │ │ ├── ResourceEventArgs.pypp.hpp │ │ ├── ResourceEventSet.pypp.cpp │ │ ├── ResourceEventSet.pypp.hpp │ │ ├── ResourceProvider.pypp.cpp │ │ ├── ResourceProvider.pypp.hpp │ │ ├── Scheme.pypp.cpp │ │ ├── Scheme.pypp.hpp │ │ ├── SchemeIterator.pypp.cpp │ │ ├── SchemeIterator.pypp.hpp │ │ ├── SchemeManager.pypp.cpp │ │ ├── SchemeManager.pypp.hpp │ │ ├── ScriptModule.pypp.cpp │ │ ├── ScriptModule.pypp.hpp │ │ ├── ScrollablePane.pypp.cpp │ │ ├── ScrollablePane.pypp.hpp │ │ ├── Scrollbar.pypp.cpp │ │ ├── Scrollbar.pypp.hpp │ │ ├── ScrolledContainer.pypp.cpp │ │ ├── ScrolledContainer.pypp.hpp │ │ ├── ScrolledItemListBase.pypp.cpp │ │ ├── ScrolledItemListBase.pypp.hpp │ │ ├── SectionIterator.pypp.cpp │ │ ├── SectionIterator.pypp.hpp │ │ ├── SectionSpecification.pypp.cpp │ │ ├── SectionSpecification.pypp.hpp │ │ ├── SectionSpecificationVector.pypp.cpp │ │ ├── SectionSpecificationVector.pypp.hpp │ │ ├── SequentialLayoutContainer.pypp.cpp │ │ ├── SequentialLayoutContainer.pypp.hpp │ │ ├── SimpleTimer.pypp.cpp │ │ ├── SimpleTimer.pypp.hpp │ │ ├── SingletonAnimationManager.pypp.cpp │ │ ├── SingletonAnimationManager.pypp.hpp │ │ ├── SingletonFontManager.pypp.cpp │ │ ├── SingletonFontManager.pypp.hpp │ │ ├── SingletonGlobalEventSet.pypp.cpp │ │ ├── SingletonGlobalEventSet.pypp.hpp │ │ ├── SingletonImageManager.pypp.cpp │ │ ├── SingletonImageManager.pypp.hpp │ │ ├── SingletonLogger.pypp.cpp │ │ ├── SingletonLogger.pypp.hpp │ │ ├── SingletonRenderEffectManager.pypp.cpp │ │ ├── SingletonRenderEffectManager.pypp.hpp │ │ ├── SingletonSchemeManager.pypp.cpp │ │ ├── SingletonSchemeManager.pypp.hpp │ │ ├── SingletonSystem.pypp.cpp │ │ ├── SingletonSystem.pypp.hpp │ │ ├── SingletonWidgetLookManager.pypp.cpp │ │ ├── SingletonWidgetLookManager.pypp.hpp │ │ ├── SingletonWindowFactoryManager.pypp.cpp │ │ ├── SingletonWindowFactoryManager.pypp.hpp │ │ ├── SingletonWindowManager.pypp.cpp │ │ ├── SingletonWindowManager.pypp.hpp │ │ ├── SingletonWindowRendererManager.pypp.cpp │ │ ├── SingletonWindowRendererManager.pypp.hpp │ │ ├── Sizef.pypp.cpp │ │ ├── Sizef.pypp.hpp │ │ ├── Slider.pypp.cpp │ │ ├── Slider.pypp.hpp │ │ ├── Spinner.pypp.cpp │ │ ├── Spinner.pypp.hpp │ │ ├── StateImagery.pypp.cpp │ │ ├── StateImagery.pypp.hpp │ │ ├── StateImageryMap.pypp.cpp │ │ ├── StateImageryMap.pypp.hpp │ │ ├── StateIterator.pypp.cpp │ │ ├── StateIterator.pypp.hpp │ │ ├── StdPairCEGUIImageImageFactory.pypp.cpp │ │ ├── StdPairCEGUIImageImageFactory.pypp.hpp │ │ ├── StdPairCEGUIStringString.pypp.cpp │ │ ├── StdPairCEGUIStringString.pypp.hpp │ │ ├── StdPairFloatFloat.pypp.cpp │ │ ├── StdPairFloatFloat.pypp.hpp │ │ ├── StringSet.pypp.cpp │ │ ├── StringSet.pypp.hpp │ │ ├── Subscriber.pypp.cpp │ │ ├── Subscriber.pypp.hpp │ │ ├── System.pypp.cpp │ │ ├── System.pypp.hpp │ │ ├── SystemKeys.pypp.cpp │ │ ├── SystemKeys.pypp.hpp │ │ ├── TabButton.pypp.cpp │ │ ├── TabButton.pypp.hpp │ │ ├── TabControl.pypp.cpp │ │ ├── TabControl.pypp.hpp │ │ ├── TargetTypeStack.pypp.cpp │ │ ├── TargetTypeStack.pypp.hpp │ │ ├── TextComponent.pypp.cpp │ │ ├── TextComponent.pypp.hpp │ │ ├── TextComponentIterator.pypp.cpp │ │ ├── TextComponentIterator.pypp.hpp │ │ ├── TextComponentVector.pypp.cpp │ │ ├── TextComponentVector.pypp.hpp │ │ ├── TextUtils.pypp.cpp │ │ ├── TextUtils.pypp.hpp │ │ ├── Texture.pypp.cpp │ │ ├── Texture.pypp.hpp │ │ ├── TextureTarget.pypp.cpp │ │ ├── TextureTarget.pypp.hpp │ │ ├── Thumb.pypp.cpp │ │ ├── Thumb.pypp.hpp │ │ ├── Titlebar.pypp.cpp │ │ ├── Titlebar.pypp.hpp │ │ ├── ToggleButton.pypp.cpp │ │ ├── ToggleButton.pypp.hpp │ │ ├── Tooltip.pypp.cpp │ │ ├── Tooltip.pypp.hpp │ │ ├── Tree.pypp.cpp │ │ ├── Tree.pypp.hpp │ │ ├── TreeEventArgs.pypp.cpp │ │ ├── TreeEventArgs.pypp.hpp │ │ ├── TreeItem.pypp.cpp │ │ ├── TreeItem.pypp.hpp │ │ ├── TypeAliasIterator.pypp.cpp │ │ ├── TypeAliasIterator.pypp.hpp │ │ ├── TypedPropertyBool.pypp.cpp │ │ ├── TypedPropertyBool.pypp.hpp │ │ ├── TypedPropertyColour.pypp.cpp │ │ ├── TypedPropertyColour.pypp.hpp │ │ ├── TypedPropertyColourRect.pypp.cpp │ │ ├── TypedPropertyColourRect.pypp.hpp │ │ ├── TypedPropertyColourUBox.pypp.cpp │ │ ├── TypedPropertyColourUBox.pypp.hpp │ │ ├── TypedPropertyColourUDim.pypp.cpp │ │ ├── TypedPropertyColourUDim.pypp.hpp │ │ ├── TypedPropertyColourURect.pypp.cpp │ │ ├── TypedPropertyColourURect.pypp.hpp │ │ ├── TypedPropertyColourUVector2.pypp.cpp │ │ ├── TypedPropertyColourUVector2.pypp.hpp │ │ ├── TypedPropertyFloat.pypp.cpp │ │ ├── TypedPropertyFloat.pypp.hpp │ │ ├── TypedPropertyFont.pypp.cpp │ │ ├── TypedPropertyFont.pypp.hpp │ │ ├── TypedPropertyHorizontalFormatting.pypp.cpp │ │ ├── TypedPropertyHorizontalFormatting.pypp.hpp │ │ ├── TypedPropertyHorizontalTextFormatting.pypp.cpp │ │ ├── TypedPropertyHorizontalTextFormatting.pypp.hpp │ │ ├── TypedPropertyImage.pypp.cpp │ │ ├── TypedPropertyImage.pypp.hpp │ │ ├── TypedPropertyRectf.pypp.cpp │ │ ├── TypedPropertyRectf.pypp.hpp │ │ ├── TypedPropertySizef.pypp.cpp │ │ ├── TypedPropertySizef.pypp.hpp │ │ ├── TypedPropertyString.pypp.cpp │ │ ├── TypedPropertyString.pypp.hpp │ │ ├── TypedPropertyUint.pypp.cpp │ │ ├── TypedPropertyUint.pypp.hpp │ │ ├── TypedPropertyVector2f.pypp.cpp │ │ ├── TypedPropertyVector2f.pypp.hpp │ │ ├── TypedPropertyVerticalFormatting.pypp.cpp │ │ ├── TypedPropertyVerticalFormatting.pypp.hpp │ │ ├── TypedPropertyVerticalTextFormatting.pypp.cpp │ │ ├── TypedPropertyVerticalTextFormatting.pypp.hpp │ │ ├── UBox.pypp.cpp │ │ ├── UBox.pypp.hpp │ │ ├── UDim.pypp.cpp │ │ ├── UDim.pypp.hpp │ │ ├── URect.pypp.cpp │ │ ├── URect.pypp.hpp │ │ ├── USize.pypp.cpp │ │ ├── USize.pypp.hpp │ │ ├── UVector2.pypp.cpp │ │ ├── UVector2.pypp.hpp │ │ ├── UnifiedDim.pypp.cpp │ │ ├── UnifiedDim.pypp.hpp │ │ ├── UpdateEventArgs.pypp.cpp │ │ ├── UpdateEventArgs.pypp.hpp │ │ ├── Vector2f.pypp.cpp │ │ ├── Vector2f.pypp.hpp │ │ ├── Vector3f.pypp.cpp │ │ ├── Vector3f.pypp.hpp │ │ ├── Vertex.pypp.cpp │ │ ├── Vertex.pypp.hpp │ │ ├── VerticalLayoutContainer.pypp.cpp │ │ ├── VerticalLayoutContainer.pypp.hpp │ │ ├── WidgetComponent.pypp.cpp │ │ ├── WidgetComponent.pypp.hpp │ │ ├── WidgetComponentIterator.pypp.cpp │ │ ├── WidgetComponentIterator.pypp.hpp │ │ ├── WidgetComponentMap.pypp.cpp │ │ ├── WidgetComponentMap.pypp.hpp │ │ ├── WidgetDim.pypp.cpp │ │ ├── WidgetDim.pypp.hpp │ │ ├── WidgetLookFeel.pypp.cpp │ │ ├── WidgetLookFeel.pypp.hpp │ │ ├── WidgetLookFeelMap.pypp.cpp │ │ ├── WidgetLookFeelMap.pypp.hpp │ │ ├── WidgetLookIterator.pypp.cpp │ │ ├── WidgetLookIterator.pypp.hpp │ │ ├── WidgetLookManager.pypp.cpp │ │ ├── WidgetLookManager.pypp.hpp │ │ ├── Window.pypp.cpp │ │ ├── Window.pypp.hpp │ │ ├── WindowEventArgs.pypp.cpp │ │ ├── WindowEventArgs.pypp.hpp │ │ ├── WindowFactory.pypp.cpp │ │ ├── WindowFactory.pypp.hpp │ │ ├── WindowFactoryIterator.pypp.cpp │ │ ├── WindowFactoryIterator.pypp.hpp │ │ ├── WindowFactoryManager.pypp.cpp │ │ ├── WindowFactoryManager.pypp.hpp │ │ ├── WindowIterator.pypp.cpp │ │ ├── WindowIterator.pypp.hpp │ │ ├── WindowManager.pypp.cpp │ │ ├── WindowManager.pypp.hpp │ │ ├── WindowRenderer.pypp.cpp │ │ ├── WindowRenderer.pypp.hpp │ │ ├── WindowRendererFactory.pypp.cpp │ │ ├── WindowRendererFactory.pypp.hpp │ │ ├── WindowRendererManager.pypp.cpp │ │ ├── WindowRendererManager.pypp.hpp │ │ ├── Workarounds.pypp.cpp │ │ ├── Workarounds.pypp.hpp │ │ ├── XMLAttributes.pypp.cpp │ │ ├── XMLAttributes.pypp.hpp │ │ ├── XMLHandler.pypp.cpp │ │ ├── XMLHandler.pypp.hpp │ │ ├── XMLParser.pypp.cpp │ │ ├── XMLParser.pypp.hpp │ │ ├── XMLSerializer.pypp.cpp │ │ ├── XMLSerializer.pypp.hpp │ │ ├── _LineInfo__value_traits.pypp.hpp │ │ ├── _PropertyInitialiser__value_traits.pypp.hpp │ │ ├── _UDim__value_traits.pypp.hpp │ │ ├── indexing_suite │ │ │ ├── algorithms.hpp │ │ │ ├── container_proxy.hpp │ │ │ ├── container_suite.hpp │ │ │ ├── container_traits.hpp │ │ │ ├── deque.hpp │ │ │ ├── element_proxy.hpp │ │ │ ├── element_proxy_traits.hpp │ │ │ ├── int_slice_helper.hpp │ │ │ ├── iterator_range.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── methods.hpp │ │ │ ├── multimap.hpp │ │ │ ├── pair.hpp │ │ │ ├── proxy_iterator.hpp │ │ │ ├── python_iterator.hpp │ │ │ ├── registry_utils.hpp │ │ │ ├── set.hpp │ │ │ ├── shared_proxy_impl.hpp │ │ │ ├── slice.hpp │ │ │ ├── slice_handler.hpp │ │ │ ├── suite_utils.hpp │ │ │ ├── value_traits.hpp │ │ │ ├── vector.hpp │ │ │ ├── visitor.hpp │ │ │ └── workaround.hpp │ │ ├── named_tuple.py │ │ ├── vector_less__CEGUI_scope_PropertyDefinitionBase_ptr___greater_.pypp.cpp │ │ ├── vector_less__CEGUI_scope_PropertyDefinitionBase_ptr___greater_.pypp.hpp │ │ ├── vector_less__CEGUI_scope_UDim__greater_.pypp.cpp │ │ └── vector_less__CEGUI_scope_UDim__greater_.pypp.hpp │ │ ├── CEGUINullRenderer │ │ ├── NullRenderer.pypp.cpp │ │ ├── NullRenderer.pypp.hpp │ │ ├── PyCEGUINullRenderer.main.cpp │ │ └── named_tuple.py │ │ ├── CEGUIOgreRenderer │ │ ├── OgreImageCodec.pypp.cpp │ │ ├── OgreImageCodec.pypp.hpp │ │ ├── OgreRenderer.pypp.cpp │ │ ├── OgreRenderer.pypp.hpp │ │ ├── OgreResourceProvider.pypp.cpp │ │ ├── OgreResourceProvider.pypp.hpp │ │ ├── PyCEGUIOgreRenderer.main.cpp │ │ └── named_tuple.py │ │ └── CEGUIOpenGLRenderer │ │ ├── OpenGL3Renderer.pypp.cpp │ │ ├── OpenGL3Renderer.pypp.hpp │ │ ├── OpenGL3Shader.pypp.cpp │ │ ├── OpenGL3Shader.pypp.hpp │ │ ├── OpenGL3StateChangeWrapper.pypp.cpp │ │ ├── OpenGL3StateChangeWrapper.pypp.hpp │ │ ├── OpenGLGeometryBufferBase.pypp.cpp │ │ ├── OpenGLGeometryBufferBase.pypp.hpp │ │ ├── OpenGLRenderer.pypp.cpp │ │ ├── OpenGLRenderer.pypp.hpp │ │ ├── OpenGLRendererBase.pypp.cpp │ │ ├── OpenGLRendererBase.pypp.hpp │ │ ├── OpenGLTextureTarget.pypp.cpp │ │ ├── OpenGLTextureTarget.pypp.hpp │ │ ├── OpenGLViewportTarget.pypp.cpp │ │ ├── OpenGLViewportTarget.pypp.hpp │ │ ├── PyCEGUIOpenGLRenderer.main.cpp │ │ └── named_tuple.py │ ├── ShaderParameterBindings.cpp │ ├── SimpleTimer.cpp │ ├── String.cpp │ ├── SubscriberSlot.cpp │ ├── System.cpp │ ├── TextUtils.cpp │ ├── UndoHandler.cpp │ ├── Vertex.cpp │ ├── Win32ClipboardProvider.cpp │ ├── Win32StringTranscoder.cpp │ ├── Window.cpp │ ├── WindowFactory.cpp │ ├── WindowFactoryManager.cpp │ ├── WindowManager.cpp │ ├── WindowNavigator.cpp │ ├── WindowRenderer.cpp │ ├── WindowRendererManager.cpp │ ├── WindowRendererSets │ ├── CMakeLists.txt │ └── Core │ │ ├── Button.cpp │ │ ├── CMakeLists.txt │ │ ├── Default.cpp │ │ ├── Editbox.cpp │ │ ├── FrameWindow.cpp │ │ ├── ItemEntry.cpp │ │ ├── ItemViewRenderer.cpp │ │ ├── ListHeader.cpp │ │ ├── ListHeaderSegment.cpp │ │ ├── ListView.cpp │ │ ├── MenuItem.cpp │ │ ├── Menubar.cpp │ │ ├── Module.cpp │ │ ├── MultiColumnList.cpp │ │ ├── MultiLineEditbox.cpp │ │ ├── PopupMenu.cpp │ │ ├── ProgressBar.cpp │ │ ├── ScrollablePane.cpp │ │ ├── Scrollbar.cpp │ │ ├── Slider.cpp │ │ ├── Static.cpp │ │ ├── StaticImage.cpp │ │ ├── StaticText.cpp │ │ ├── TabButton.cpp │ │ ├── TabControl.cpp │ │ ├── Titlebar.cpp │ │ ├── ToggleButton.cpp │ │ ├── Tooltip.cpp │ │ └── TreeView.cpp │ ├── XMLAttributes.cpp │ ├── XMLHandler.cpp │ ├── XMLParser.cpp │ ├── XMLParserModules │ ├── CMakeLists.txt │ ├── Expat │ │ ├── CMakeLists.txt │ │ ├── XMLParser.cpp │ │ └── XMLParserModule.cpp │ ├── Libxml2 │ │ ├── CMakeLists.txt │ │ ├── XMLParser.cpp │ │ └── XMLParserModule.cpp │ ├── RapidXML │ │ ├── CMakeLists.txt │ │ ├── XMLParser.cpp │ │ └── XMLParserModule.cpp │ ├── TinyXML │ │ ├── CMakeLists.txt │ │ ├── XMLParser.cpp │ │ └── XMLParserModule.cpp │ └── Xerces │ │ ├── CMakeLists.txt │ │ ├── XMLParser.cpp │ │ ├── XMLParserModule.cpp │ │ └── XMLParserProperties.cpp │ ├── XMLSerializer.cpp │ ├── falagard │ ├── ComponentBase.cpp │ ├── Dimensions.cpp │ ├── EventAction.cpp │ ├── EventLinkDefinition.cpp │ ├── FormattingSetting.cpp │ ├── FrameComponent.cpp │ ├── ImageryComponent.cpp │ ├── ImagerySection.cpp │ ├── LayerSpecification.cpp │ ├── NamedArea.cpp │ ├── PropertyDefinitionBase.cpp │ ├── PropertyInitialiser.cpp │ ├── SectionSpecification.cpp │ ├── StateImagery.cpp │ ├── TextComponent.cpp │ ├── WidgetComponent.cpp │ ├── WidgetLookFeel.cpp │ ├── WidgetLookManager.cpp │ ├── XMLEnumHelper.cpp │ └── XMLHandler.cpp │ ├── implementations │ └── mac │ │ ├── macPlugins.cpp │ │ └── macPlugins.h │ ├── minibidi.cpp │ ├── svg │ ├── SVGBasicShape.cpp │ ├── SVGData.cpp │ ├── SVGDataManager.cpp │ ├── SVGImage.cpp │ ├── SVGPaintStyle.cpp │ └── SVGTesselator.cpp │ ├── views │ ├── GenericItemModel.cpp │ ├── ItemModel.cpp │ ├── ItemView.cpp │ ├── ListView.cpp │ ├── StandardItemModel.cpp │ └── TreeView.cpp │ └── widgets │ ├── ButtonBase.cpp │ ├── ComboDropList.cpp │ ├── Combobox.cpp │ ├── DefaultWindow.cpp │ ├── DragContainer.cpp │ ├── Editbox.cpp │ ├── FrameWindow.cpp │ ├── GridLayoutContainer.cpp │ ├── GroupBox.cpp │ ├── HorizontalLayoutContainer.cpp │ ├── ItemEntry.cpp │ ├── ItemListBase.cpp │ ├── LayoutContainer.cpp │ ├── ListHeader.cpp │ ├── ListHeaderSegment.cpp │ ├── ListWidget.cpp │ ├── ListboxItem.cpp │ ├── ListboxTextItem.cpp │ ├── MenuBase.cpp │ ├── MenuItem.cpp │ ├── Menubar.cpp │ ├── MultiColumnList.cpp │ ├── MultiLineEditbox.cpp │ ├── PopupMenu.cpp │ ├── ProgressBar.cpp │ ├── PushButton.cpp │ ├── RadioButton.cpp │ ├── ScrollablePane.cpp │ ├── Scrollbar.cpp │ ├── ScrolledContainer.cpp │ ├── SequentialLayoutContainer.cpp │ ├── Slider.cpp │ ├── Spinner.cpp │ ├── TabButton.cpp │ ├── TabControl.cpp │ ├── Thumb.cpp │ ├── Titlebar.cpp │ ├── ToggleButton.cpp │ ├── Tooltip.cpp │ ├── TreeWidget.cpp │ └── VerticalLayoutContainer.cpp ├── cmake ├── CEGUIAndroid.cmake ├── CEGUIFindHelpers.cmake ├── CEGUIMacros.cmake ├── FindCEGUI.cmake ├── FindCorona.cmake ├── FindDevIL.cmake ├── FindDirectFB.cmake ├── FindDirectXSDK.cmake ├── FindEXPAT.cmake ├── FindFreeImage.cmake ├── FindFreetype.cmake ├── FindFribidi.cmake ├── FindGLEW.cmake ├── FindGLFW.cmake ├── FindGLM.cmake ├── FindGLUT.cmake ├── FindIconv.cmake ├── FindIrrlicht.cmake ├── FindLua51.cmake ├── FindMinizip.cmake ├── FindOIS.cmake ├── FindOgre.cmake ├── FindOpenGLES.cmake ├── FindOpenGLES2.cmake ├── FindOpenGLES3.cmake ├── FindPCRE.cmake ├── FindPVRTools.cmake ├── FindRapidXML.cmake ├── FindSILLY.cmake ├── FindTOLUAPP.cmake ├── FindTinyXML.cmake ├── FindXercesC.cmake ├── FindZLIB.cmake ├── FindZZip.cmake ├── templates │ ├── Android.GLES2.mk.in │ ├── Android.GLES3.mk.in │ ├── Android.OgreGLES2.mk.in │ ├── AndroidManifest.xml.in │ ├── VisualStudioUserFile.vcproj.user.in │ └── VisualStudioUserFile.vcxproj.user.in └── toolchain │ └── android.toolchain.cmake ├── datafiles ├── CMakeLists.txt ├── animations │ ├── GameMenuSample.anims │ └── example.anims ├── fonts │ ├── Batang-18.font │ ├── DejaVuSans-10-NoScale.font │ ├── DejaVuSans-10.font │ ├── DejaVuSans-12-NoScale.font │ ├── DejaVuSans-12.font │ ├── DejaVuSans-14-NoScale.font │ ├── DejaVuSans-14.font │ ├── DejaVuSans.ttf │ ├── DejaVuSerif.ttf │ ├── FairChar-30.font │ ├── FetteClassicUNZFraktur.ttf │ ├── Futhark Adapted.ttf │ ├── GreatVibes-16.font │ ├── GreatVibes-22.font │ ├── GreatVibes-Regular.ttf │ ├── IMFePIrm29P.ttf │ ├── Junicode-13.font │ ├── Junicode.ttf │ ├── Jura-10.font │ ├── Jura-13.font │ ├── Jura-18.font │ ├── Jura-DemiBold.ttf │ ├── Jura-Light.ttf │ ├── Jura-Medium.ttf │ ├── Jura-Regular.ttf │ ├── Klingon-pIqaD-HaSta.ttf │ ├── Legal.txt │ ├── LicenseApache.txt │ ├── LicenseDejaVu.txt │ ├── LicenseGPL.txt │ ├── LicenseMIT.txt │ ├── LicenseSIL.txt │ ├── LicenseUbuntuFont.txt │ ├── RichStyle.ttf │ ├── Tnua-Libre.ttf │ ├── batang.ttf │ └── mizufalp.ttf ├── imagesets │ ├── AlfiskoSkin.imageset │ ├── AlfiskoSkin.png │ ├── Aliasing.jpg │ ├── BackgroundSampleBrowser.jpg │ ├── DriveIcons.imageset │ ├── DriveIcons.png │ ├── FairChar.imageset │ ├── FairChar.png │ ├── GameMenuSample.imageset │ ├── GameMenuSample.png │ ├── OgreTray.imageset │ ├── OgreTrayImages.png │ ├── ReadMe.txt │ ├── RestaurantGameSample.imageset │ ├── RestaurantGameSample.png │ ├── RestaurantGameSampleGameOver.png │ ├── SVGSampleImage.svg │ ├── SVGSampleImageset.imageset │ ├── SampleBrowser.imageset │ ├── SampleBrowser.png │ ├── SpaceBackground.jpg │ ├── TaharezLook.imageset │ ├── TaharezLook.png │ ├── Vanilla.imageset │ ├── WindowsLook.imageset │ ├── WindowsLook.png │ ├── ic_launcher.png │ ├── logo.png │ └── vanilla.png ├── layouts │ ├── Console.layout │ ├── Demo8.layout │ ├── DragDropSample.layout │ ├── EffectsSample.layout │ ├── FontsSample.layout │ ├── GameMenuSample.layout │ ├── MenuNavigationSample.layout │ ├── MenuNavigationSampleTabPage1.layout │ ├── MenuNavigationSampleTabPage2.layout │ ├── ModelViewSample.layout │ ├── RestaurantGameSampleGameOver.layout │ ├── RestaurantGameSampleIngame.layout │ ├── SampleBrowser.layout │ ├── SampleBrowserLoadScreen.layout │ ├── SimpleGameMenuSample.layout │ ├── TabControlSample.layout │ ├── TabPage.layout │ ├── TabPage1.layout │ ├── TabPage2.layout │ ├── TextSample.layout │ ├── TreeSampleTaharez.layout │ ├── VanillaConsole.layout │ └── VanillaWindows.layout ├── looknfeel │ ├── AlfiskoSkin.looknfeel │ ├── GameMenuSample.looknfeel │ ├── Generic.looknfeel │ ├── InventoryComponents.looknfeel │ ├── OgreTray.looknfeel │ ├── RestaurantGameSample.looknfeel │ ├── SampleBrowser.looknfeel │ ├── TaharezLook.looknfeel │ ├── Vanilla.looknfeel │ ├── VanillaCommonDialogs.looknfeel │ └── WindowsLook.looknfeel ├── lua_scripts │ └── demo8.lua ├── schemes │ ├── AlfiskoSkin.scheme │ ├── GameMenuSample.scheme │ ├── Generic.scheme │ ├── OgreTray.scheme │ ├── RestaurantGameSample.scheme │ ├── SampleBrowser.scheme │ ├── TaharezLook.scheme │ ├── VanillaCommonDialogs.scheme │ ├── VanillaSkin.scheme │ └── WindowsLook.scheme └── xml_schemas │ ├── Animation.xsd │ ├── CEGUIConfig.xsd │ ├── Falagard.xsd │ ├── Font.xsd │ ├── GUILayout.xsd │ ├── GUIScheme.xsd │ └── Imageset.xsd ├── doc ├── PCRE-LICENSE └── doxygen │ ├── BuildDocs.bat │ ├── arch_overview.dox │ ├── authors.dox │ ├── build_myths.dox │ ├── build_options.dox │ ├── building_deps.dox │ ├── changelog.dox │ ├── code_standards.dox │ ├── compiling.dox │ ├── data_licensing.dox │ ├── dependencies.dox │ ├── devel.dox │ ├── downloading.dox │ ├── doxyfile.in │ ├── falagard │ ├── fal_baseclass_ref.dox │ ├── fal_element_ref.dox │ ├── fal_enum_ref.dox │ ├── fal_intro.dox │ ├── fal_main.dox │ ├── fal_tut1.dox │ ├── fal_wr_ref.dox │ └── gnufdl.dox │ ├── licensing.dox │ ├── mainpage.dox │ ├── pcre-lic.dox │ ├── porting6to7.dox │ ├── stringencoders-lic.dox │ ├── tolua++README.dox │ ├── tutorials │ ├── ce_guide_1.dox │ ├── ce_guide_2.dox │ ├── ce_guide_3.dox │ ├── ce_guide_4.dox │ ├── ce_guide_5.dox │ └── ce_guide_5_gui_navigation.dox │ ├── xml_animation.dox │ ├── xml_confg.dox │ ├── xml_font.dox │ ├── xml_imageset.dox │ ├── xml_layout.dox │ └── xml_scheme.dox ├── perform-cppcheck ├── promo ├── BrushScriptStd.otf ├── LICENSE ├── logo.svg └── square_logo.svg ├── samples ├── CMakeLists.txt ├── CMakeLists.txt.template ├── CommonDialogs │ ├── CMakeLists.txt │ ├── CommonDialogs.cpp │ └── CommonDialogs.h ├── CustomShapesDrawing │ ├── CMakeLists.txt │ ├── CustomShapesDrawing.cpp │ └── CustomShapesDrawing.h ├── Demo6 │ ├── CMakeLists.txt │ ├── Demo6.cpp │ ├── Demo6.h │ └── SampleMetaData.xml ├── Demo8 │ ├── CMakeLists.txt │ ├── Demo8.cpp │ ├── Demo8.h │ └── SampleMetaData.xml ├── DragDrop │ ├── CMakeLists.txt │ ├── DragDrop.cpp │ └── DragDrop.h ├── EditboxValidation │ ├── CMakeLists.txt │ ├── EditboxValidation.cpp │ └── EditboxValidation.h ├── Fonts │ ├── CMakeLists.txt │ ├── Fonts.cpp │ └── Fonts.h ├── FormNavigation │ ├── CMakeLists.txt │ ├── FormNavigation.cpp │ └── FormNavigation.h ├── GLESTest │ ├── CMakeLists.txt │ └── GLESTest.cpp ├── GameMenu │ ├── CMakeLists.txt │ ├── GameMenu.cpp │ └── GameMenu.h ├── HelloWorld │ ├── CMakeLists.txt │ ├── HelloWorld.cpp │ └── HelloWorld.h ├── Inventory │ ├── BoolArray2D.cpp │ ├── BoolArray2D.h │ ├── CMakeLists.txt │ ├── Inventory.cpp │ ├── Inventory.h │ ├── InventoryBase.cpp │ ├── InventoryBase.h │ ├── InventoryItem.cpp │ ├── InventoryItem.h │ ├── InventoryItemRenderer.cpp │ ├── InventoryItemRenderer.h │ ├── InventoryReceiver.cpp │ └── InventoryReceiver.h ├── MenuNavigation │ ├── CMakeLists.txt │ ├── MenuNavigation.cpp │ └── MenuNavigation.h ├── Minesweeper │ ├── CMakeLists.txt │ ├── Minesweeper.cpp │ ├── Minesweeper.h │ ├── Minesweeper_Timer.cpp │ └── Minesweeper_Timer.h ├── ModelView │ ├── CMakeLists.txt │ ├── InventoryModel.cpp │ ├── InventoryModel.h │ ├── ModelView.cpp │ └── ModelView.h ├── README.md ├── RenderEffects │ ├── CMakeLists.txt │ ├── RenderEffects.cpp │ └── RenderEffects.h ├── RestaurantGame │ ├── CMakeLists.txt │ ├── RestaurantGame.cpp │ └── RestaurantGame.h ├── SVG │ ├── CMakeLists.txt │ ├── SVG.cpp │ └── SVG.h ├── SampleTemplate.cpp ├── SampleTemplate.h ├── ScrollablePane │ ├── CMakeLists.txt │ ├── ScrollablePane.cpp │ └── ScrollablePane.h ├── SimpleGameMenu │ ├── CMakeLists.txt │ ├── SimpleGameMenu.cpp │ └── SimpleGameMenu.h ├── TabControl │ ├── CMakeLists.txt │ ├── TabControl.cpp │ └── TabControl.h ├── Text │ ├── CMakeLists.txt │ ├── Text.cpp │ └── Text.h ├── Tree │ ├── CMakeLists.txt │ ├── Tree.cpp │ └── Tree.h ├── Widgets │ ├── CMakeLists.txt │ ├── Widgets.cpp │ └── Widgets.h ├── browser │ ├── CMakeLists.txt │ ├── include │ │ ├── AndroidAppHelper.h │ │ ├── CEGuiBaseApplication.h │ │ ├── CEGuiD3D11BaseApplication.h │ │ ├── CEGuiDirectFBBaseApplication.h │ │ ├── CEGuiEGLBaseApplication.h │ │ ├── CEGuiGLFWSharedBase.h │ │ ├── CEGuiIrrlichtBaseApplication.h │ │ ├── CEGuiOgreBaseApplication.h │ │ ├── CEGuiOpenGL3BaseApplication.h │ │ ├── CEGuiOpenGLBaseApplication.h │ │ ├── CEGuiRendererSelector.h │ │ ├── CLICEGuiRendererSelector.h │ │ ├── GTK2CEGuiRendererSelector.h │ │ ├── MacCEGuiRendererSelector.h │ │ ├── MetaDataWindowManager.h │ │ ├── SampleBrowser.h │ │ ├── SampleBrowserBase.h │ │ ├── SampleBrowserManager.h │ │ ├── SampleHandler.h │ │ ├── Win32AppHelper.h │ │ └── Win32CEGuiRendererSelector.h │ └── src │ │ ├── AndroidAppHelper.cpp │ │ ├── CEGuiBaseApplication.cpp │ │ ├── CEGuiD3D11BaseApplication.cpp │ │ ├── CEGuiDirectFBBaseApplication.cpp │ │ ├── CEGuiEGLBaseApplication.cpp │ │ ├── CEGuiGLFWSharedBase.cpp │ │ ├── CEGuiIrrlichtBaseApplication.cpp │ │ ├── CEGuiOgreBaseApplication.cpp │ │ ├── CEGuiOpenGL3BaseApplication.cpp │ │ ├── CEGuiOpenGLBaseApplication.cpp │ │ ├── CEGuiRendererSelector.cpp │ │ ├── CLICEGuiRendererSelector.cpp │ │ ├── DeviceReset_Direct3D11.cpp │ │ ├── GTK2CEGuiRendererSelector.cpp │ │ ├── MacCEGuiRendererSelector.mm │ │ ├── MetaDataWindowManager.cpp │ │ ├── SampleBrowser.cpp │ │ ├── SampleBrowserBase.cpp │ │ ├── SampleBrowserManager.cpp │ │ ├── SampleHandler.cpp │ │ ├── Win32AppHelper.cpp │ │ └── Win32CEGuiRendererSelector.cpp └── common │ ├── NavigationStrategies.cpp │ └── include │ ├── CEGUISamplesConfig.h.in │ ├── NavigationStrategies.h │ ├── Sample.h │ └── SampleBase.h └── tests ├── BoostTestEntry.inc ├── CEGUIDatafilesTest.py ├── CMakeLists.txt ├── README.md ├── performance ├── CMakeLists.txt ├── EventSet.cpp ├── ListView.cpp ├── PerformanceTest.h ├── README.md ├── TestEntry.cpp ├── TreeView.cpp └── Window.cpp └── unit ├── AnimationSystem.cpp ├── CMakeLists.txt ├── Clipboard.cpp ├── Element.cpp ├── EventSet.cpp ├── InputAggregator.cpp ├── InputInjection.cpp ├── ItemModel.cpp ├── ItemModelStub.cpp ├── ItemModelStub.h ├── ItemView.cpp ├── ListView.cpp ├── ListWidget.cpp ├── NamedElement.cpp ├── PropertyHelper.cpp ├── PropertySet.cpp ├── README.md ├── RegexMatching.cpp ├── Size.cpp ├── Spinner.cpp ├── StandardItemModel.cpp ├── String.cpp ├── TestEntry.cpp ├── TreeView.cpp └── Window.cpp /.hgchurn: -------------------------------------------------------------------------------- 1 | paul@farragut.deltur.co.uk = paul@cegui.org.uk 2 | 3 | Martin Preisler = martin@preisler.me 4 | preisler.m@gmail.com = martin@preisler.me 5 | mpreisler@users.sourceforge.net = martin@preisler.me 6 | Admin@Admin-VBOXWIN7.harcov.czenet.com = martin@preisler.me 7 | kulik@localhost6.localdomain6 = martin@preisler.me 8 | 9 | Hamnac = hanmac@gmx.de 10 | Hanmac = hanmac@gmx.de 11 | -------------------------------------------------------------------------------- /.hgeol: -------------------------------------------------------------------------------- 1 | [patterns] 2 | **.h = native 3 | **.cpp = native 4 | **.inl = native 5 | 6 | **.txt = native 7 | **.xml = native 8 | **.svg = native 9 | 10 | **.layout = native 11 | **.looknfeel = native 12 | **.imageset = native 13 | **.font = native 14 | **.scheme = native 15 | **.anims = native 16 | 17 | **.xsd = native 18 | **.dox = native 19 | 20 | **.py = native 21 | **.lua = native 22 | 23 | **.pkg = native 24 | 25 | [repository] 26 | native = LF 27 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | 3 | .DS_Store 4 | Thumbs.db 5 | .directory 6 | 7 | .clang_complete 8 | 9 | *.tmp 10 | *~ 11 | 12 | *.swp 13 | *.orig 14 | *.rej 15 | *.pyc 16 | 17 | dependencies/ 18 | build/ 19 | debug/ 20 | release/ 21 | doc/doxygen/html/ 22 | 23 | xcuserdata/ 24 | *.xcworkspace/ 25 | *.kdev4 26 | .settings 27 | .project 28 | .cproject 29 | .pydevproject 30 | .ropeproject 31 | 32 | cppcheck-output 33 | 34 | **exposed_decl.pypp.txt 35 | 36 | glob:CEGUI-DEPS-0.8.x-beta3 37 | -------------------------------------------------------------------------------- /cegui/src/ImageCodecModules/Corona/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set( CEGUI_TARGET_NAME ${CEGUI_CORONA_IMAGECODEC_LIBNAME} ) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | cegui_add_dependency(${CEGUI_TARGET_NAME} CORONA) 6 | 7 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/ImageCodecModules/DevIL/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_DEVIL_IMAGECODEC_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | 6 | cegui_add_dependency(${CEGUI_TARGET_NAME} IL) 7 | 8 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 9 | 10 | -------------------------------------------------------------------------------- /cegui/src/ImageCodecModules/FreeImage/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_FREEIMAGE_IMAGECODEC_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | cegui_add_dependency(${CEGUI_TARGET_NAME} FREEIMAGE) 6 | 7 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/ImageCodecModules/PVR/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_PVR_IMAGECODEC_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | cegui_add_dependency(${CEGUI_TARGET_NAME} PVRTOOLS) 6 | 7 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/ImageCodecModules/SILLY/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_SILLY_IMAGECODEC_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | cegui_add_dependency(${CEGUI_TARGET_NAME} SILLY) 6 | 7 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 8 | 9 | 10 | -------------------------------------------------------------------------------- /cegui/src/ImageCodecModules/STB/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set( CEGUI_TARGET_NAME ${CEGUI_STB_IMAGECODEC_LIBNAME} ) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | 6 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 7 | 8 | -------------------------------------------------------------------------------- /cegui/src/ImageCodecModules/TGA/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set( CEGUI_TARGET_NAME ${CEGUI_TGA_IMAGECODEC_LIBNAME} ) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | 6 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 7 | 8 | -------------------------------------------------------------------------------- /cegui/src/RendererModules/DirectFB/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_DIRECTFB_RENDERER_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_library(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | cegui_add_dependency(${CEGUI_TARGET_NAME} DIRECTFB) 6 | 7 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/RendererModules/Irrlicht/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_IRRLICHT_RENDERER_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_library(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | cegui_add_dependency(${CEGUI_TARGET_NAME} IRRLICHT) 6 | 7 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/RendererModules/Null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_NULL_RENDERER_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_library(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | 6 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 7 | 8 | -------------------------------------------------------------------------------- /cegui/src/RendererModules/Ogre/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_OGRE_RENDERER_LIBNAME}) 2 | 3 | # this prevents the boost auto-link dis-feature 4 | add_definitions(-DBOOST_ALL_NO_LIB) 5 | 6 | cegui_gather_files() 7 | cegui_add_library(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 8 | cegui_add_dependency(${CEGUI_TARGET_NAME} OGRE) 9 | 10 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 11 | 12 | -------------------------------------------------------------------------------- /cegui/src/RendererModules/OpenGLES/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_OPENGLES_RENDERER_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | 5 | cegui_add_library(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 6 | cegui_add_dependency(${CEGUI_TARGET_NAME} OPENGLES) 7 | 8 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 9 | 10 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (CEGUI_BUILD_LUA_GENERATOR) 2 | add_subdirectory(Lua/support/tolua++bin) 3 | endif() 4 | 5 | if (CEGUI_BUILD_LUA_MODULE) 6 | add_subdirectory(Lua) 7 | endif() 8 | 9 | if (CEGUI_BUILD_PYTHON_MODULES) 10 | add_subdirectory(Python/bindings) 11 | endif() 12 | 13 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set( CEGUI_TARGET_NAME ${CEGUI_LUA_SCRIPTMODULE_LIBNAME} ) 2 | 3 | cegui_gather_files() 4 | cegui_add_library(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | cegui_add_dependency(${CEGUI_TARGET_NAME} TOLUAPP) 6 | cegui_add_dependency(${CEGUI_TARGET_NAME} LUA51) 7 | 8 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 9 | 10 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/OutStream.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | OutStream 3 | ***********************************************************************/ 4 | 5 | class OutStream 6 | { 7 | }; 8 | 9 | class FileStream : public OutStream 10 | { 11 | FileStream(); 12 | 13 | bool is_open(); 14 | tolua_outside void CEGUI::ceguiLua_FileStream_open @ open(const char* filename); 15 | void close(); 16 | }; 17 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/RenderEffect.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | RenderEffect 3 | ***********************************************************************/ 4 | class RenderEffect 5 | { 6 | //void performPreRenderFunctions(); 7 | //void performPostRenderFunctions(); 8 | //bool realiseGeometry(RenderingWindow& window, GeometryBuffer& geometry); 9 | //bool update(const float elapsed, RenderingWindow& window); 10 | }; 11 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/RenderQueue.pkg: -------------------------------------------------------------------------------- 1 | class RenderQueue 2 | { 3 | void addGeometryBuffer(const GeometryBuffer& buffer); 4 | void removeGeometryBuffer(const GeometryBuffer& buffer); 5 | 6 | void draw() const; 7 | void reset(); 8 | }; 9 | 10 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/RenderingContext.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | RenderingContext 3 | ***********************************************************************/ 4 | struct RenderingContext 5 | { 6 | RenderingSurface* surface; 7 | const Window* owner; 8 | Vector2 offset; 9 | }; 10 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/Scheme.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | Scheme 3 | ***********************************************************************/ 4 | class Scheme 5 | { 6 | void loadResources(); 7 | void unloadResources(); 8 | bool resourcesLoaded() const; 9 | string getName() const; 10 | 11 | static void setDefaultResourceGroup(utf8string resourceGroup); 12 | static string getDefaultResourceGroup(); 13 | }; 14 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/SimpleTimer.pkg: -------------------------------------------------------------------------------- 1 | class SimpleTimer 2 | { 3 | SimpleTimer(); 4 | 5 | static double currentTime(); 6 | void restart(); 7 | double elapsed(); 8 | }; 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/StringTranscoder.pkg: -------------------------------------------------------------------------------- 1 | class StringTranscoder 2 | { 3 | /* we do not expose this, since lua just has its basic string type 4 | 5 | uint16* stringToUTF16(const String& input) const; 6 | std::wstring stringToStdWString(const String& input) const; 7 | String stringFromUTF16(const uint16* input) const; 8 | String stringFromStdWString(const std::wstring& input) const; 9 | void deleteUTF16Buffer(const uint16* input) const; 10 | */ 11 | }; 12 | 13 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/TextureTarget.pkg: -------------------------------------------------------------------------------- 1 | class TextureTarget : public RenderTarget 2 | { 3 | void clear(); 4 | Texture& getTexture() const; 5 | void declareRenderSize(const Size& sz); 6 | bool isRenderingInverted() const; 7 | }; 8 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/Vertex.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | Vertex struct 3 | ***********************************************************************/ 4 | struct Vertex 5 | { 6 | Vector3 position; 7 | Vector2 tex_coords; 8 | Colour colour_val; 9 | }; 10 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/ButtonBase.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | ButtonBase 3 | ***********************************************************************/ 4 | class ButtonBase : public Window 5 | { 6 | bool isHovering() const; 7 | bool isPushed() const; 8 | }; 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/ComboDropList.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | ComboDropList 3 | ***********************************************************************/ 4 | class ComboDropList : public Listbox 5 | { 6 | void setArmed(bool setting); 7 | bool isArmed(void) const; 8 | void setAutoArmEnabled(bool setting); 9 | bool isAutoArmEnabled(void) const; 10 | void resizeToContent(bool fit_width, bool fit_height); 11 | }; 12 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/GUISheet.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | GUISheet 3 | ***********************************************************************/ 4 | class GUISheet : public Window 5 | { 6 | }; 7 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/GroupBox.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | GroupBox 3 | ***********************************************************************/ 4 | class GroupBox : public Window 5 | { 6 | bool drawAroundWidget(utf8string name); 7 | }; 8 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/HorizontalLayoutContainer.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | HorizontalLayoutContainer 3 | *************************************************************************/ 4 | 5 | class HorizontalLayoutContainer : public SequentialLayoutContainer 6 | { 7 | }; 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/LayoutContainer.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | LayoutContainer 3 | *************************************************************************/ 4 | 5 | class LayoutContainer : public Window 6 | { 7 | void markNeedsLayouting(); 8 | bool needsLayouting() const; 9 | 10 | void layout(); 11 | void layoutIfNecessary(); 12 | }; 13 | 14 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/Menubar.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | Menubar 3 | ***********************************************************************/ 4 | class Menubar : public MenuBase 5 | { 6 | }; 7 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/PopupMenu.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | PopupMenu 3 | ***********************************************************************/ 4 | class PopupMenu : public MenuBase 5 | { 6 | float getFadeInTime() const; 7 | float getFadeOutTime() const; 8 | 9 | void setFadeInTime(float fadetime); 10 | void setFadeOutTime(float fadetime); 11 | void openPopupMenu(); 12 | void closePopupMenu(); 13 | }; 14 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/ProgressBar.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | ProgressBar 3 | ***********************************************************************/ 4 | class ProgressBar : public Window 5 | { 6 | float getProgress() const; 7 | float getStepSize() const; 8 | 9 | void setProgress(float progress); 10 | void setStepSize(float step); 11 | void step(); 12 | void adjustProgress(float delta); 13 | }; 14 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/PushButton.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | PushButton 3 | ***********************************************************************/ 4 | class PushButton : public ButtonBase 5 | { 6 | }; 7 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/RadioButton.pkg: -------------------------------------------------------------------------------- 1 | class RadioButton : public ToggleButton 2 | { 3 | unsigned long getGroupID() const; 4 | void setGroupID(unsigned long group); 5 | 6 | RadioButton* getSelectedButtonInGroup() const; 7 | }; 8 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/Slider.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | Slider 3 | ***********************************************************************/ 4 | class Slider : public Window 5 | { 6 | float getCurrentValue() const; 7 | float getMaxValue() const; 8 | float getClickStep() const; 9 | 10 | void setMaxValue(float maxVal); 11 | void setCurrentValue(float value); 12 | void setClickStep(float step); 13 | }; 14 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/TabButton.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | TabButton 3 | ***********************************************************************/ 4 | class TabButton : public ButtonBase 5 | { 6 | bool isSelected() const; 7 | void setSelected(bool select); 8 | 9 | void setTargetWindow(Window* wnd); 10 | Window* getTargetWindow(); 11 | }; 12 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/Titlebar.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | Titlebar 3 | ***********************************************************************/ 4 | class Titlebar : public Window 5 | { 6 | bool isDraggingEnabled() const; 7 | void setDraggingEnabled(bool setting); 8 | }; 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/ToggleButton.pkg: -------------------------------------------------------------------------------- 1 | class ToggleButton : public ButtonBase 2 | { 3 | bool isSelected() const; 4 | void setSelected(bool select); 5 | }; 6 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/elements/VerticalLayoutContainer.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | VerticalLayoutContainer 3 | *************************************************************************/ 4 | 5 | class VerticalLayoutContainer : public SequentialLayoutContainer 6 | { 7 | }; 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/exceptions.lua: -------------------------------------------------------------------------------- 1 | exceptionDefs["CEGUI::Exception"] = {} 2 | exceptionDefs["CEGUI::Exception"]["var"] = "&e" 3 | exceptionDefs["CEGUI::Exception"]["c_str"] = "e.getMessage().c_str()" 4 | 5 | exceptionDefs["CEGUI::AlreadyExistsException"] = exceptionDefs["CEGUI::Exception"] 6 | exceptionDefs["CEGUI::InvalidRequestException"] = exceptionDefs["CEGUI::Exception"] 7 | exceptionDefs["CEGUI::UnknownObjectException"] = exceptionDefs["CEGUI::Exception"] 8 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/falagard/NamedArea.pkg: -------------------------------------------------------------------------------- 1 | /*********************************************************************** 2 | NamedArea 3 | ***********************************************************************/ 4 | class NamedArea 5 | { 6 | string getName() const; 7 | const ComponentArea& getArea() const; 8 | void setArea(ComponentArea area); 9 | //void writeXMLToStream(OutStream& out_stream) const; 10 | 11 | NamedArea(); 12 | NamedArea(utf8string name); 13 | }; 14 | 15 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/package/make.bat: -------------------------------------------------------------------------------- 1 | tolua++cegui -o ../lua_CEGUI.cpp -L exceptions.lua CEGUI.pkg 2 | pause 3 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/support/tolua++bin/README: -------------------------------------------------------------------------------- 1 | In here we have a modified version of the tolua++ 1.0.91 code generator with 2 | added support for exception handling. 3 | 4 | The original tolua++ readme can be found at: '../tolua++/README' 5 | if you need more details. 6 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/support/tolua++bin/remake_pkg.bat: -------------------------------------------------------------------------------- 1 | tolua++cegui -H toluabind.h -o toluabind.c -n tolua tolua_scons.pkg 2 | pause 3 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/support/tolua++bin/remake_pkg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | tolua++ -H toluabind.h -o toluabind.c -n tolua tolua_scons.pkg 3 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Lua/support/tolua++bin/toluabind.h: -------------------------------------------------------------------------------- 1 | /* 2 | ** Lua binding: tolua 3 | ** Generated automatically by tolua++-1.0.93 on Sun Jun 15 09:20:27 2014. 4 | */ 5 | 6 | /* Exported function */ 7 | int tolua_tolua_open (lua_State* tolua_S); 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/distutils/PyCEGUI/__init__.py: -------------------------------------------------------------------------------- 1 | import os 2 | import os.path 3 | 4 | # atrocious and unholy! 5 | def get_my_path(): 6 | import fake 7 | return os.path.dirname(os.path.abspath(fake.__file__)) 8 | 9 | libpath = get_my_path() 10 | #print "libpath =", libpath 11 | os.environ['PATH'] = libpath + ";" + os.environ['PATH'] 12 | 13 | from PyCEGUI import * 14 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/distutils/PyCEGUI/fake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/cegui/src/ScriptModules/Python/bindings/distutils/PyCEGUI/fake.py -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/distutils/README: -------------------------------------------------------------------------------- 1 | How to generate distutils package: 2 | 3 | 1) generate the bindings sources 4 | 2) cd into this folder 5 | 3) call python setup.py bdist_msi ("python" has to be the python you want this package for!) 6 | 7 | bdist_msi could be bdist_wininst but wininst has problems with UAC elevation and 8 | other things so MSI is probably the way to go 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/distutils/WINDOWS_ONLY: -------------------------------------------------------------------------------- 1 | Since Linux has standards and autotools install PyCEGUI nicely there, there 2 | is no need to support distutils there. Windows however has no standards what 3 | so ever plus it has up to 93% more noobs than Linux. Therefore Windows MSI 4 | installers can be created with distutils and setup.py here. 5 | 6 | Thanks for understanding 7 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/generators/include/python_CEGUINullRenderer.h: -------------------------------------------------------------------------------- 1 | #include "CEGUI/String.h" 2 | #include "CEGUI/GeometryBuffer.h" 3 | #include "CEGUI/Texture.h" 4 | #include "CEGUI/TextureTarget.h" 5 | #include "CEGUI/GUIContext.h" 6 | 7 | #include "CEGUI/RendererModules/Null/Renderer.h" 8 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/AbsoluteDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef AbsoluteDim_hpp__pyplusplus_wrapper 4 | #define AbsoluteDim_hpp__pyplusplus_wrapper 5 | 6 | void register_AbsoluteDim_class(); 7 | 8 | #endif//AbsoluteDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ActivationEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ActivationEventArgs_hpp__pyplusplus_wrapper 4 | #define ActivationEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_ActivationEventArgs_class(); 7 | 8 | #endif//ActivationEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Affector.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Affector_hpp__pyplusplus_wrapper 4 | #define Affector_hpp__pyplusplus_wrapper 5 | 6 | void register_Affector_class(); 7 | 8 | #endif//Affector_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Animation.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Animation_hpp__pyplusplus_wrapper 4 | #define Animation_hpp__pyplusplus_wrapper 5 | 6 | void register_Animation_class(); 7 | 8 | #endif//Animation_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/AnimationEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef AnimationEventArgs_hpp__pyplusplus_wrapper 4 | #define AnimationEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_AnimationEventArgs_class(); 7 | 8 | #endif//AnimationEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/AnimationInstance.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef AnimationInstance_hpp__pyplusplus_wrapper 4 | #define AnimationInstance_hpp__pyplusplus_wrapper 5 | 6 | void register_AnimationInstance_class(); 7 | 8 | #endif//AnimationInstance_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/AnimationManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef AnimationManager_hpp__pyplusplus_wrapper 4 | #define AnimationManager_hpp__pyplusplus_wrapper 5 | 6 | void register_AnimationManager_class(); 7 | 8 | #endif//AnimationManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/AnimationNameIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef AnimationNameIterator_hpp__pyplusplus_wrapper 4 | #define AnimationNameIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_AnimationNameIterator_class(); 7 | 8 | #endif//AnimationNameIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/BaseDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef BaseDim_hpp__pyplusplus_wrapper 4 | #define BaseDim_hpp__pyplusplus_wrapper 5 | 6 | void register_BaseDim_class(); 7 | 8 | #endif//BaseDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/BasicImage.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef BasicImage_hpp__pyplusplus_wrapper 4 | #define BasicImage_hpp__pyplusplus_wrapper 5 | 6 | void register_BasicImage_class(); 7 | 8 | #endif//BasicImage_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/BasicRenderedStringParser.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef BasicRenderedStringParser_hpp__pyplusplus_wrapper 4 | #define BasicRenderedStringParser_hpp__pyplusplus_wrapper 5 | 6 | void register_BasicRenderedStringParser_class(); 7 | 8 | #endif//BasicRenderedStringParser_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/BoundSlot.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef BoundSlot_hpp__pyplusplus_wrapper 4 | #define BoundSlot_hpp__pyplusplus_wrapper 5 | 6 | void register_BoundSlot_class(); 7 | 8 | #endif//BoundSlot_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ButtonBase.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ButtonBase_hpp__pyplusplus_wrapper 4 | #define ButtonBase_hpp__pyplusplus_wrapper 5 | 6 | void register_ButtonBase_class(); 7 | 8 | #endif//ButtonBase_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/CentredRenderedString.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef CentredRenderedString_hpp__pyplusplus_wrapper 4 | #define CentredRenderedString_hpp__pyplusplus_wrapper 5 | 6 | void register_CentredRenderedString_class(); 7 | 8 | #endif//CentredRenderedString_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Clipboard.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Clipboard_hpp__pyplusplus_wrapper 4 | #define Clipboard_hpp__pyplusplus_wrapper 5 | 6 | void register_Clipboard_class(); 7 | 8 | #endif//Clipboard_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Colour.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Colour_hpp__pyplusplus_wrapper 4 | #define Colour_hpp__pyplusplus_wrapper 5 | 6 | void register_Colour_class(); 7 | 8 | #endif//Colour_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ColourRect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ColourRect_hpp__pyplusplus_wrapper 4 | #define ColourRect_hpp__pyplusplus_wrapper 5 | 6 | void register_ColourRect_class(); 7 | 8 | #endif//ColourRect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ComboDropList.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ComboDropList_hpp__pyplusplus_wrapper 4 | #define ComboDropList_hpp__pyplusplus_wrapper 5 | 6 | void register_ComboDropList_class(); 7 | 8 | #endif//ComboDropList_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Combobox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Combobox_hpp__pyplusplus_wrapper 4 | #define Combobox_hpp__pyplusplus_wrapper 5 | 6 | void register_Combobox_class(); 7 | 8 | #endif//Combobox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ComponentArea.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ComponentArea_hpp__pyplusplus_wrapper 4 | #define ComponentArea_hpp__pyplusplus_wrapper 5 | 6 | void register_ComponentArea_class(); 7 | 8 | #endif//ComponentArea_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ComponentList.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ComponentList_hpp__pyplusplus_wrapper 4 | #define ComponentList_hpp__pyplusplus_wrapper 5 | 6 | void register_ComponentList_class(); 7 | 8 | #endif//ComponentList_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Connection.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Connection_hpp__pyplusplus_wrapper 4 | #define Connection_hpp__pyplusplus_wrapper 5 | 6 | void register_Connection_class(); 7 | 8 | #endif//Connection_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_23c5f09e76c89ed46f1671ac87f5d133.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_23c5f09e76c89ed46f1671ac87f5d133_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_23c5f09e76c89ed46f1671ac87f5d133_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_23c5f09e76c89ed46f1671ac87f5d133_class(); 7 | 8 | #endif//ConstBaseIterator_23c5f09e76c89ed46f1671ac87f5d133_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_2c9936f57a2ad030e0dfadb6e79a326f.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_2c9936f57a2ad030e0dfadb6e79a326f_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_2c9936f57a2ad030e0dfadb6e79a326f_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_2c9936f57a2ad030e0dfadb6e79a326f_class(); 7 | 8 | #endif//ConstBaseIterator_2c9936f57a2ad030e0dfadb6e79a326f_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_3dfe55a685a628d9556dccd6ce85e923.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_3dfe55a685a628d9556dccd6ce85e923_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_3dfe55a685a628d9556dccd6ce85e923_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_3dfe55a685a628d9556dccd6ce85e923_class(); 7 | 8 | #endif//ConstBaseIterator_3dfe55a685a628d9556dccd6ce85e923_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_45e2d4f27e29c3a5b74179f6cfabbc4c.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_45e2d4f27e29c3a5b74179f6cfabbc4c_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_45e2d4f27e29c3a5b74179f6cfabbc4c_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_45e2d4f27e29c3a5b74179f6cfabbc4c_class(); 7 | 8 | #endif//ConstBaseIterator_45e2d4f27e29c3a5b74179f6cfabbc4c_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_47ddd968107e89ff0051bf3212fbb472.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_47ddd968107e89ff0051bf3212fbb472_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_47ddd968107e89ff0051bf3212fbb472_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_47ddd968107e89ff0051bf3212fbb472_class(); 7 | 8 | #endif//ConstBaseIterator_47ddd968107e89ff0051bf3212fbb472_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_58fce9a3b4ea911d189f971dbf4a6c9b.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_58fce9a3b4ea911d189f971dbf4a6c9b_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_58fce9a3b4ea911d189f971dbf4a6c9b_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_58fce9a3b4ea911d189f971dbf4a6c9b_class(); 7 | 8 | #endif//ConstBaseIterator_58fce9a3b4ea911d189f971dbf4a6c9b_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_6318b664b630c5a4e45127a69c6748cb.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_6318b664b630c5a4e45127a69c6748cb_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_6318b664b630c5a4e45127a69c6748cb_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_6318b664b630c5a4e45127a69c6748cb_class(); 7 | 8 | #endif//ConstBaseIterator_6318b664b630c5a4e45127a69c6748cb_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_663c592fa58613dab4f9509d04eb6cc1.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_663c592fa58613dab4f9509d04eb6cc1_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_663c592fa58613dab4f9509d04eb6cc1_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_663c592fa58613dab4f9509d04eb6cc1_class(); 7 | 8 | #endif//ConstBaseIterator_663c592fa58613dab4f9509d04eb6cc1_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_6cea82a17f94b95b10c333412f843a6d.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_6cea82a17f94b95b10c333412f843a6d_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_6cea82a17f94b95b10c333412f843a6d_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_6cea82a17f94b95b10c333412f843a6d_class(); 7 | 8 | #endif//ConstBaseIterator_6cea82a17f94b95b10c333412f843a6d_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_6da79d61dc2d4c154ee9113f9d44d174.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_6da79d61dc2d4c154ee9113f9d44d174_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_6da79d61dc2d4c154ee9113f9d44d174_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_6da79d61dc2d4c154ee9113f9d44d174_class(); 7 | 8 | #endif//ConstBaseIterator_6da79d61dc2d4c154ee9113f9d44d174_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_6e18222775ccb39f7ec1f5c112d444ec.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_6e18222775ccb39f7ec1f5c112d444ec_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_6e18222775ccb39f7ec1f5c112d444ec_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_6e18222775ccb39f7ec1f5c112d444ec_class(); 7 | 8 | #endif//ConstBaseIterator_6e18222775ccb39f7ec1f5c112d444ec_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_78cd23dcc51d261e1f508a899854e1a9.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_78cd23dcc51d261e1f508a899854e1a9_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_78cd23dcc51d261e1f508a899854e1a9_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_78cd23dcc51d261e1f508a899854e1a9_class(); 7 | 8 | #endif//ConstBaseIterator_78cd23dcc51d261e1f508a899854e1a9_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_7f0012c4899354432f095ef9bb577046.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_7f0012c4899354432f095ef9bb577046_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_7f0012c4899354432f095ef9bb577046_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_7f0012c4899354432f095ef9bb577046_class(); 7 | 8 | #endif//ConstBaseIterator_7f0012c4899354432f095ef9bb577046_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_92b3f0ef60bba0b7bc1aa08b6f3304d6.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_92b3f0ef60bba0b7bc1aa08b6f3304d6_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_92b3f0ef60bba0b7bc1aa08b6f3304d6_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_92b3f0ef60bba0b7bc1aa08b6f3304d6_class(); 7 | 8 | #endif//ConstBaseIterator_92b3f0ef60bba0b7bc1aa08b6f3304d6_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_937e880515ad590c17d4b2b82a347310.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_937e880515ad590c17d4b2b82a347310_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_937e880515ad590c17d4b2b82a347310_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_937e880515ad590c17d4b2b82a347310_class(); 7 | 8 | #endif//ConstBaseIterator_937e880515ad590c17d4b2b82a347310_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_99d0247943ea008baba14993d63dd301.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_99d0247943ea008baba14993d63dd301_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_99d0247943ea008baba14993d63dd301_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_99d0247943ea008baba14993d63dd301_class(); 7 | 8 | #endif//ConstBaseIterator_99d0247943ea008baba14993d63dd301_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_9b6259ec5f5ed443accef2ab6f116fda.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_9b6259ec5f5ed443accef2ab6f116fda_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_9b6259ec5f5ed443accef2ab6f116fda_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_9b6259ec5f5ed443accef2ab6f116fda_class(); 7 | 8 | #endif//ConstBaseIterator_9b6259ec5f5ed443accef2ab6f116fda_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_9dce73c5f5e3a55d1a66a6e740fbf48b.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_9dce73c5f5e3a55d1a66a6e740fbf48b_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_9dce73c5f5e3a55d1a66a6e740fbf48b_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_9dce73c5f5e3a55d1a66a6e740fbf48b_class(); 7 | 8 | #endif//ConstBaseIterator_9dce73c5f5e3a55d1a66a6e740fbf48b_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_a74f832b0a98ff325f0d295bba46f58b.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_a74f832b0a98ff325f0d295bba46f58b_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_a74f832b0a98ff325f0d295bba46f58b_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_a74f832b0a98ff325f0d295bba46f58b_class(); 7 | 8 | #endif//ConstBaseIterator_a74f832b0a98ff325f0d295bba46f58b_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_b33d7bd272dd6c97821cbd9402cb4364.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_b33d7bd272dd6c97821cbd9402cb4364_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_b33d7bd272dd6c97821cbd9402cb4364_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_b33d7bd272dd6c97821cbd9402cb4364_class(); 7 | 8 | #endif//ConstBaseIterator_b33d7bd272dd6c97821cbd9402cb4364_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_ccf46e19ae28e4742a13388873833720.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_ccf46e19ae28e4742a13388873833720_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_ccf46e19ae28e4742a13388873833720_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_ccf46e19ae28e4742a13388873833720_class(); 7 | 8 | #endif//ConstBaseIterator_ccf46e19ae28e4742a13388873833720_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_d0a5fcfab7d8e4121b568ec58e88f4fd.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_d0a5fcfab7d8e4121b568ec58e88f4fd_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_d0a5fcfab7d8e4121b568ec58e88f4fd_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_d0a5fcfab7d8e4121b568ec58e88f4fd_class(); 7 | 8 | #endif//ConstBaseIterator_d0a5fcfab7d8e4121b568ec58e88f4fd_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_e31fba8abb652b91e7a416a794506e4f.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_e31fba8abb652b91e7a416a794506e4f_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_e31fba8abb652b91e7a416a794506e4f_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_e31fba8abb652b91e7a416a794506e4f_class(); 7 | 8 | #endif//ConstBaseIterator_e31fba8abb652b91e7a416a794506e4f_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_e6837f87c747b0388313d47a6a1e8556.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_e6837f87c747b0388313d47a6a1e8556_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_e6837f87c747b0388313d47a6a1e8556_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_e6837f87c747b0388313d47a6a1e8556_class(); 7 | 8 | #endif//ConstBaseIterator_e6837f87c747b0388313d47a6a1e8556_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_e78994bfd2b781a573fdd2cd7ca2ceae.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_e78994bfd2b781a573fdd2cd7ca2ceae_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_e78994bfd2b781a573fdd2cd7ca2ceae_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_e78994bfd2b781a573fdd2cd7ca2ceae_class(); 7 | 8 | #endif//ConstBaseIterator_e78994bfd2b781a573fdd2cd7ca2ceae_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ConstBaseIterator_f0585fb3775a7fa1f905d29be5dc1533.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ConstBaseIterator_f0585fb3775a7fa1f905d29be5dc1533_hpp__pyplusplus_wrapper 4 | #define ConstBaseIterator_f0585fb3775a7fa1f905d29be5dc1533_hpp__pyplusplus_wrapper 5 | 6 | void register_ConstBaseIterator_f0585fb3775a7fa1f905d29be5dc1533_class(); 7 | 8 | #endif//ConstBaseIterator_f0585fb3775a7fa1f905d29be5dc1533_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/CoordConverter.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef CoordConverter_hpp__pyplusplus_wrapper 4 | #define CoordConverter_hpp__pyplusplus_wrapper 5 | 6 | void register_CoordConverter_class(); 7 | 8 | #endif//CoordConverter_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/DefaultLogger.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef DefaultLogger_hpp__pyplusplus_wrapper 4 | #define DefaultLogger_hpp__pyplusplus_wrapper 5 | 6 | void register_DefaultLogger_class(); 7 | 8 | #endif//DefaultLogger_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/DefaultResourceProvider.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef DefaultResourceProvider_hpp__pyplusplus_wrapper 4 | #define DefaultResourceProvider_hpp__pyplusplus_wrapper 5 | 6 | void register_DefaultResourceProvider_class(); 7 | 8 | #endif//DefaultResourceProvider_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/DefaultWindow.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef DefaultWindow_hpp__pyplusplus_wrapper 4 | #define DefaultWindow_hpp__pyplusplus_wrapper 5 | 6 | void register_DefaultWindow_class(); 7 | 8 | #endif//DefaultWindow_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Dimension.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Dimension_hpp__pyplusplus_wrapper 4 | #define Dimension_hpp__pyplusplus_wrapper 5 | 6 | void register_Dimension_class(); 7 | 8 | #endif//Dimension_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/DisplayEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef DisplayEventArgs_hpp__pyplusplus_wrapper 4 | #define DisplayEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_DisplayEventArgs_class(); 7 | 8 | #endif//DisplayEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/DragContainer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef DragContainer_hpp__pyplusplus_wrapper 4 | #define DragContainer_hpp__pyplusplus_wrapper 5 | 6 | void register_DragContainer_class(); 7 | 8 | #endif//DragContainer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/DragDropEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef DragDropEventArgs_hpp__pyplusplus_wrapper 4 | #define DragDropEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_DragDropEventArgs_class(); 7 | 8 | #endif//DragDropEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Editbox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Editbox_hpp__pyplusplus_wrapper 4 | #define Editbox_hpp__pyplusplus_wrapper 5 | 6 | void register_Editbox_class(); 7 | 8 | #endif//Editbox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Element.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Element_hpp__pyplusplus_wrapper 4 | #define Element_hpp__pyplusplus_wrapper 5 | 6 | void register_Element_class(); 7 | 8 | #endif//Element_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ElementEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ElementEventArgs_hpp__pyplusplus_wrapper 4 | #define ElementEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_ElementEventArgs_class(); 7 | 8 | #endif//ElementEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Event.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Event_hpp__pyplusplus_wrapper 4 | #define Event_hpp__pyplusplus_wrapper 5 | 6 | void register_Event_class(); 7 | 8 | #endif//Event_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/EventAction.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef EventAction_hpp__pyplusplus_wrapper 4 | #define EventAction_hpp__pyplusplus_wrapper 5 | 6 | void register_EventAction_class(); 7 | 8 | #endif//EventAction_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/EventActionIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef EventActionIterator_hpp__pyplusplus_wrapper 4 | #define EventActionIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_EventActionIterator_class(); 7 | 8 | #endif//EventActionIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/EventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef EventArgs_hpp__pyplusplus_wrapper 4 | #define EventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_EventArgs_class(); 7 | 8 | #endif//EventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/EventIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef EventIterator_hpp__pyplusplus_wrapper 4 | #define EventIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_EventIterator_class(); 7 | 8 | #endif//EventIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/EventLinkDefinition.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef EventLinkDefinition_hpp__pyplusplus_wrapper 4 | #define EventLinkDefinition_hpp__pyplusplus_wrapper 5 | 6 | void register_EventLinkDefinition_class(); 7 | 8 | #endif//EventLinkDefinition_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/EventLinkDefinitionIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef EventLinkDefinitionIterator_hpp__pyplusplus_wrapper 4 | #define EventLinkDefinitionIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_EventLinkDefinitionIterator_class(); 7 | 8 | #endif//EventLinkDefinitionIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/EventLinkDefinitionMap.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef EventLinkDefinitionMap_hpp__pyplusplus_wrapper 4 | #define EventLinkDefinitionMap_hpp__pyplusplus_wrapper 5 | 6 | void register_EventLinkDefinitionMap_class(); 7 | 8 | #endif//EventLinkDefinitionMap_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/EventSet.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef EventSet_hpp__pyplusplus_wrapper 4 | #define EventSet_hpp__pyplusplus_wrapper 5 | 6 | void register_EventSet_class(); 7 | 8 | #endif//EventSet_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Exception.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Exception_hpp__pyplusplus_wrapper 4 | #define Exception_hpp__pyplusplus_wrapper 5 | 6 | void register_Exception_class(); 7 | 8 | #endif//Exception_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardComponentBase.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardComponentBase_hpp__pyplusplus_wrapper 4 | #define FalagardComponentBase_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardComponentBase_class(); 7 | 8 | #endif//FalagardComponentBase_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardMappingIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardMappingIterator_hpp__pyplusplus_wrapper 4 | #define FalagardMappingIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardMappingIterator_class(); 7 | 8 | #endif//FalagardMappingIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseBool.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseBool_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseBool_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseBool_class(); 7 | 8 | #endif//FalagardPropertyBaseBool_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseColour.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseColour_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseColour_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseColour_class(); 7 | 8 | #endif//FalagardPropertyBaseColour_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseColourRect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseColourRect_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseColourRect_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseColourRect_class(); 7 | 8 | #endif//FalagardPropertyBaseColourRect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseColourUBox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseColourUBox_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseColourUBox_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseColourUBox_class(); 7 | 8 | #endif//FalagardPropertyBaseColourUBox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseColourUDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseColourUDim_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseColourUDim_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseColourUDim_class(); 7 | 8 | #endif//FalagardPropertyBaseColourUDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseColourURect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseColourURect_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseColourURect_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseColourURect_class(); 7 | 8 | #endif//FalagardPropertyBaseColourURect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseColourUVector2.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseColourUVector2_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseColourUVector2_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseColourUVector2_class(); 7 | 8 | #endif//FalagardPropertyBaseColourUVector2_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseFloat.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseFloat_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseFloat_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseFloat_class(); 7 | 8 | #endif//FalagardPropertyBaseFloat_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseFont.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseFont_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseFont_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseFont_class(); 7 | 8 | #endif//FalagardPropertyBaseFont_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseHorizontalFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseHorizontalFormatting_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseHorizontalFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseHorizontalFormatting_class(); 7 | 8 | #endif//FalagardPropertyBaseHorizontalFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseHorizontalTextFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseHorizontalTextFormatting_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseHorizontalTextFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseHorizontalTextFormatting_class(); 7 | 8 | #endif//FalagardPropertyBaseHorizontalTextFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseImage.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseImage_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseImage_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseImage_class(); 7 | 8 | #endif//FalagardPropertyBaseImage_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseRectf.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseRectf_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseRectf_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseRectf_class(); 7 | 8 | #endif//FalagardPropertyBaseRectf_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseSizef.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseSizef_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseSizef_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseSizef_class(); 7 | 8 | #endif//FalagardPropertyBaseSizef_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseString.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseString_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseString_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseString_class(); 7 | 8 | #endif//FalagardPropertyBaseString_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseUint.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseUint_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseUint_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseUint_class(); 7 | 8 | #endif//FalagardPropertyBaseUint_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseVector2f.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseVector2f_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseVector2f_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseVector2f_class(); 7 | 8 | #endif//FalagardPropertyBaseVector2f_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseVerticalFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseVerticalFormatting_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseVerticalFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseVerticalFormatting_class(); 7 | 8 | #endif//FalagardPropertyBaseVerticalFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardPropertyBaseVerticalTextFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardPropertyBaseVerticalTextFormatting_hpp__pyplusplus_wrapper 4 | #define FalagardPropertyBaseVerticalTextFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardPropertyBaseVerticalTextFormatting_class(); 7 | 8 | #endif//FalagardPropertyBaseVerticalTextFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FalagardXMLHelper.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FalagardXMLHelper_hpp__pyplusplus_wrapper 4 | #define FalagardXMLHelper_hpp__pyplusplus_wrapper 5 | 6 | void register_FalagardXMLHelper_class(); 7 | 8 | #endif//FalagardXMLHelper_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Font.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Font_hpp__pyplusplus_wrapper 4 | #define Font_hpp__pyplusplus_wrapper 5 | 6 | void register_Font_class(); 7 | 8 | #endif//Font_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FontDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FontDim_hpp__pyplusplus_wrapper 4 | #define FontDim_hpp__pyplusplus_wrapper 5 | 6 | void register_FontDim_class(); 7 | 8 | #endif//FontDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FontEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FontEventArgs_hpp__pyplusplus_wrapper 4 | #define FontEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_FontEventArgs_class(); 7 | 8 | #endif//FontEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FontGlyph.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FontGlyph_hpp__pyplusplus_wrapper 4 | #define FontGlyph_hpp__pyplusplus_wrapper 5 | 6 | void register_FontGlyph_class(); 7 | 8 | #endif//FontGlyph_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FontIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FontIterator_hpp__pyplusplus_wrapper 4 | #define FontIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_FontIterator_class(); 7 | 8 | #endif//FontIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FontManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FontManager_hpp__pyplusplus_wrapper 4 | #define FontManager_hpp__pyplusplus_wrapper 5 | 6 | void register_FontManager_class(); 7 | 8 | #endif//FontManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FrameComponent.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FrameComponent_hpp__pyplusplus_wrapper 4 | #define FrameComponent_hpp__pyplusplus_wrapper 5 | 6 | void register_FrameComponent_class(); 7 | 8 | #endif//FrameComponent_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FrameComponentIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FrameComponentIterator_hpp__pyplusplus_wrapper 4 | #define FrameComponentIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_FrameComponentIterator_class(); 7 | 8 | #endif//FrameComponentIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FrameComponentVector.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FrameComponentVector_hpp__pyplusplus_wrapper 4 | #define FrameComponentVector_hpp__pyplusplus_wrapper 5 | 6 | void register_FrameComponentVector_class(); 7 | 8 | #endif//FrameComponentVector_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/FrameWindow.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef FrameWindow_hpp__pyplusplus_wrapper 4 | #define FrameWindow_hpp__pyplusplus_wrapper 5 | 6 | void register_FrameWindow_class(); 7 | 8 | #endif//FrameWindow_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/GUIContext.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef GUIContext_hpp__pyplusplus_wrapper 4 | #define GUIContext_hpp__pyplusplus_wrapper 5 | 6 | void register_GUIContext_class(); 7 | 8 | #endif//GUIContext_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/GUIContextEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef GUIContextEventArgs_hpp__pyplusplus_wrapper 4 | #define GUIContextEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_GUIContextEventArgs_class(); 7 | 8 | #endif//GUIContextEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/GUIContextRenderTargetEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef GUIContextRenderTargetEventArgs_hpp__pyplusplus_wrapper 4 | #define GUIContextRenderTargetEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_GUIContextRenderTargetEventArgs_class(); 7 | 8 | #endif//GUIContextRenderTargetEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/GeometryBuffer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef GeometryBuffer_hpp__pyplusplus_wrapper 4 | #define GeometryBuffer_hpp__pyplusplus_wrapper 5 | 6 | void register_GeometryBuffer_class(); 7 | 8 | #endif//GeometryBuffer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/GlobalEventSet.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef GlobalEventSet_hpp__pyplusplus_wrapper 4 | #define GlobalEventSet_hpp__pyplusplus_wrapper 5 | 6 | void register_GlobalEventSet_class(); 7 | 8 | #endif//GlobalEventSet_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/GridLayoutContainer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef GridLayoutContainer_hpp__pyplusplus_wrapper 4 | #define GridLayoutContainer_hpp__pyplusplus_wrapper 5 | 6 | void register_GridLayoutContainer_class(); 7 | 8 | #endif//GridLayoutContainer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/GroupBox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef GroupBox_hpp__pyplusplus_wrapper 4 | #define GroupBox_hpp__pyplusplus_wrapper 5 | 6 | void register_GroupBox_class(); 7 | 8 | #endif//GroupBox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/HeaderSequenceEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef HeaderSequenceEventArgs_hpp__pyplusplus_wrapper 4 | #define HeaderSequenceEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_HeaderSequenceEventArgs_class(); 7 | 8 | #endif//HeaderSequenceEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/HorizontalLayoutContainer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef HorizontalLayoutContainer_hpp__pyplusplus_wrapper 4 | #define HorizontalLayoutContainer_hpp__pyplusplus_wrapper 5 | 6 | void register_HorizontalLayoutContainer_class(); 7 | 8 | #endif//HorizontalLayoutContainer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Image.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Image_hpp__pyplusplus_wrapper 4 | #define Image_hpp__pyplusplus_wrapper 5 | 6 | void register_Image_class(); 7 | 8 | #endif//Image_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImageCodec.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImageCodec_hpp__pyplusplus_wrapper 4 | #define ImageCodec_hpp__pyplusplus_wrapper 5 | 6 | void register_ImageCodec_class(); 7 | 8 | #endif//ImageCodec_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImageDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImageDim_hpp__pyplusplus_wrapper 4 | #define ImageDim_hpp__pyplusplus_wrapper 5 | 6 | void register_ImageDim_class(); 7 | 8 | #endif//ImageDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImageIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImageIterator_hpp__pyplusplus_wrapper 4 | #define ImageIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_ImageIterator_class(); 7 | 8 | #endif//ImageIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImageManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImageManager_hpp__pyplusplus_wrapper 4 | #define ImageManager_hpp__pyplusplus_wrapper 5 | 6 | void register_ImageManager_class(); 7 | 8 | #endif//ImageManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImagePropertyDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImagePropertyDim_hpp__pyplusplus_wrapper 4 | #define ImagePropertyDim_hpp__pyplusplus_wrapper 5 | 6 | void register_ImagePropertyDim_class(); 7 | 8 | #endif//ImagePropertyDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImageryComponent.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImageryComponent_hpp__pyplusplus_wrapper 4 | #define ImageryComponent_hpp__pyplusplus_wrapper 5 | 6 | void register_ImageryComponent_class(); 7 | 8 | #endif//ImageryComponent_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImageryComponentIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImageryComponentIterator_hpp__pyplusplus_wrapper 4 | #define ImageryComponentIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_ImageryComponentIterator_class(); 7 | 8 | #endif//ImageryComponentIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImageryComponentVector.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImageryComponentVector_hpp__pyplusplus_wrapper 4 | #define ImageryComponentVector_hpp__pyplusplus_wrapper 5 | 6 | void register_ImageryComponentVector_class(); 7 | 8 | #endif//ImageryComponentVector_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImageryIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImageryIterator_hpp__pyplusplus_wrapper 4 | #define ImageryIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_ImageryIterator_class(); 7 | 8 | #endif//ImageryIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImagerySection.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImagerySection_hpp__pyplusplus_wrapper 4 | #define ImagerySection_hpp__pyplusplus_wrapper 5 | 6 | void register_ImagerySection_class(); 7 | 8 | #endif//ImagerySection_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ImagerySectionMap.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ImagerySectionMap_hpp__pyplusplus_wrapper 4 | #define ImagerySectionMap_hpp__pyplusplus_wrapper 5 | 6 | void register_ImagerySectionMap_class(); 7 | 8 | #endif//ImagerySectionMap_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Interpolator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Interpolator_hpp__pyplusplus_wrapper 4 | #define Interpolator_hpp__pyplusplus_wrapper 5 | 6 | void register_Interpolator_class(); 7 | 8 | #endif//Interpolator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ItemEntry.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ItemEntry_hpp__pyplusplus_wrapper 4 | #define ItemEntry_hpp__pyplusplus_wrapper 5 | 6 | void register_ItemEntry_class(); 7 | 8 | #endif//ItemEntry_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ItemListBase.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ItemListBase_hpp__pyplusplus_wrapper 4 | #define ItemListBase_hpp__pyplusplus_wrapper 5 | 6 | void register_ItemListBase_class(); 7 | 8 | #endif//ItemListBase_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ItemListbox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ItemListbox_hpp__pyplusplus_wrapper 4 | #define ItemListbox_hpp__pyplusplus_wrapper 5 | 6 | void register_ItemListbox_class(); 7 | 8 | #endif//ItemListbox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Key.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Key_hpp__pyplusplus_wrapper 4 | #define Key_hpp__pyplusplus_wrapper 5 | 6 | void register_Key_class(); 7 | 8 | #endif//Key_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/KeyEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef KeyEventArgs_hpp__pyplusplus_wrapper 4 | #define KeyEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_KeyEventArgs_class(); 7 | 8 | #endif//KeyEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/KeyFrame.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef KeyFrame_hpp__pyplusplus_wrapper 4 | #define KeyFrame_hpp__pyplusplus_wrapper 5 | 6 | void register_KeyFrame_class(); 7 | 8 | #endif//KeyFrame_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/LBItemList.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef LBItemList_hpp__pyplusplus_wrapper 4 | #define LBItemList_hpp__pyplusplus_wrapper 5 | 6 | void register_LBItemList_class(); 7 | 8 | #endif//LBItemList_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/LayerIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef LayerIterator_hpp__pyplusplus_wrapper 4 | #define LayerIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_LayerIterator_class(); 7 | 8 | #endif//LayerIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/LayerSpecification.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef LayerSpecification_hpp__pyplusplus_wrapper 4 | #define LayerSpecification_hpp__pyplusplus_wrapper 5 | 6 | void register_LayerSpecification_class(); 7 | 8 | #endif//LayerSpecification_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/LayerSpecificationVector.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef LayerSpecificationVector_hpp__pyplusplus_wrapper 4 | #define LayerSpecificationVector_hpp__pyplusplus_wrapper 5 | 6 | void register_LayerSpecificationVector_class(); 7 | 8 | #endif//LayerSpecificationVector_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/LayoutContainer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef LayoutContainer_hpp__pyplusplus_wrapper 4 | #define LayoutContainer_hpp__pyplusplus_wrapper 5 | 6 | void register_LayoutContainer_class(); 7 | 8 | #endif//LayoutContainer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/LineList.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef LineList_hpp__pyplusplus_wrapper 4 | #define LineList_hpp__pyplusplus_wrapper 5 | 6 | void register_LineList_class(); 7 | 8 | #endif//LineList_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/LinkTargetIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef LinkTargetIterator_hpp__pyplusplus_wrapper 4 | #define LinkTargetIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_LinkTargetIterator_class(); 7 | 8 | #endif//LinkTargetIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/LinkedEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef LinkedEventArgs_hpp__pyplusplus_wrapper 4 | #define LinkedEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_LinkedEventArgs_class(); 7 | 8 | #endif//LinkedEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ListHeader.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ListHeader_hpp__pyplusplus_wrapper 4 | #define ListHeader_hpp__pyplusplus_wrapper 5 | 6 | void register_ListHeader_class(); 7 | 8 | #endif//ListHeader_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ListHeaderSegment.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ListHeaderSegment_hpp__pyplusplus_wrapper 4 | #define ListHeaderSegment_hpp__pyplusplus_wrapper 5 | 6 | void register_ListHeaderSegment_class(); 7 | 8 | #endif//ListHeaderSegment_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Listbox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Listbox_hpp__pyplusplus_wrapper 4 | #define Listbox_hpp__pyplusplus_wrapper 5 | 6 | void register_Listbox_class(); 7 | 8 | #endif//Listbox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ListboxItem.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ListboxItem_hpp__pyplusplus_wrapper 4 | #define ListboxItem_hpp__pyplusplus_wrapper 5 | 6 | void register_ListboxItem_class(); 7 | 8 | #endif//ListboxItem_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ListboxTextItem.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ListboxTextItem_hpp__pyplusplus_wrapper 4 | #define ListboxTextItem_hpp__pyplusplus_wrapper 5 | 6 | void register_ListboxTextItem_class(); 7 | 8 | #endif//ListboxTextItem_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/LoadableUIElementIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef LoadableUIElementIterator_hpp__pyplusplus_wrapper 4 | #define LoadableUIElementIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_LoadableUIElementIterator_class(); 7 | 8 | #endif//LoadableUIElementIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Logger.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Logger_hpp__pyplusplus_wrapper 4 | #define Logger_hpp__pyplusplus_wrapper 5 | 6 | void register_Logger_class(); 7 | 8 | #endif//Logger_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/MCLGridRef.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef MCLGridRef_hpp__pyplusplus_wrapper 4 | #define MCLGridRef_hpp__pyplusplus_wrapper 5 | 6 | void register_MCLGridRef_class(); 7 | 8 | #endif//MCLGridRef_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/MenuBase.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef MenuBase_hpp__pyplusplus_wrapper 4 | #define MenuBase_hpp__pyplusplus_wrapper 5 | 6 | void register_MenuBase_class(); 7 | 8 | #endif//MenuBase_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/MenuItem.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef MenuItem_hpp__pyplusplus_wrapper 4 | #define MenuItem_hpp__pyplusplus_wrapper 5 | 6 | void register_MenuItem_class(); 7 | 8 | #endif//MenuItem_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Menubar.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Menubar_hpp__pyplusplus_wrapper 4 | #define Menubar_hpp__pyplusplus_wrapper 5 | 6 | void register_Menubar_class(); 7 | 8 | #endif//Menubar_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/MouseCursor.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef MouseCursor_hpp__pyplusplus_wrapper 4 | #define MouseCursor_hpp__pyplusplus_wrapper 5 | 6 | void register_MouseCursor_class(); 7 | 8 | #endif//MouseCursor_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/MouseCursorEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef MouseCursorEventArgs_hpp__pyplusplus_wrapper 4 | #define MouseCursorEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_MouseCursorEventArgs_class(); 7 | 8 | #endif//MouseCursorEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/MouseEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef MouseEventArgs_hpp__pyplusplus_wrapper 4 | #define MouseEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_MouseEventArgs_class(); 7 | 8 | #endif//MouseEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/MultiColumnList.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef MultiColumnList_hpp__pyplusplus_wrapper 4 | #define MultiColumnList_hpp__pyplusplus_wrapper 5 | 6 | void register_MultiColumnList_class(); 7 | 8 | #endif//MultiColumnList_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/MultiLineEditbox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef MultiLineEditbox_hpp__pyplusplus_wrapper 4 | #define MultiLineEditbox_hpp__pyplusplus_wrapper 5 | 6 | void register_MultiLineEditbox_class(); 7 | 8 | #endif//MultiLineEditbox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/NamedArea.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef NamedArea_hpp__pyplusplus_wrapper 4 | #define NamedArea_hpp__pyplusplus_wrapper 5 | 6 | void register_NamedArea_class(); 7 | 8 | #endif//NamedArea_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/NamedAreaIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef NamedAreaIterator_hpp__pyplusplus_wrapper 4 | #define NamedAreaIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_NamedAreaIterator_class(); 7 | 8 | #endif//NamedAreaIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/NamedAreaMap.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef NamedAreaMap_hpp__pyplusplus_wrapper 4 | #define NamedAreaMap_hpp__pyplusplus_wrapper 5 | 6 | void register_NamedAreaMap_class(); 7 | 8 | #endif//NamedAreaMap_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/NamedElement.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef NamedElement_hpp__pyplusplus_wrapper 4 | #define NamedElement_hpp__pyplusplus_wrapper 5 | 6 | void register_NamedElement_class(); 7 | 8 | #endif//NamedElement_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/NamedElementEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef NamedElementEventArgs_hpp__pyplusplus_wrapper 4 | #define NamedElementEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_NamedElementEventArgs_class(); 7 | 8 | #endif//NamedElementEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/NamedXMLResourceManagerFont.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef NamedXMLResourceManagerFont_hpp__pyplusplus_wrapper 4 | #define NamedXMLResourceManagerFont_hpp__pyplusplus_wrapper 5 | 6 | void register_NamedXMLResourceManagerFont_class(); 7 | 8 | #endif//NamedXMLResourceManagerFont_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/NamedXMLResourceManagerScheme.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef NamedXMLResourceManagerScheme_hpp__pyplusplus_wrapper 4 | #define NamedXMLResourceManagerScheme_hpp__pyplusplus_wrapper 5 | 6 | void register_NamedXMLResourceManagerScheme_class(); 7 | 8 | #endif//NamedXMLResourceManagerScheme_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/OperatorDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OperatorDim_hpp__pyplusplus_wrapper 4 | #define OperatorDim_hpp__pyplusplus_wrapper 5 | 6 | void register_OperatorDim_class(); 7 | 8 | #endif//OperatorDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PopupMenu.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PopupMenu_hpp__pyplusplus_wrapper 4 | #define PopupMenu_hpp__pyplusplus_wrapper 5 | 6 | void register_PopupMenu_class(); 7 | 8 | #endif//PopupMenu_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ProgressBar.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ProgressBar_hpp__pyplusplus_wrapper 4 | #define ProgressBar_hpp__pyplusplus_wrapper 5 | 6 | void register_ProgressBar_class(); 7 | 8 | #endif//ProgressBar_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Property.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Property_hpp__pyplusplus_wrapper 4 | #define Property_hpp__pyplusplus_wrapper 5 | 6 | void register_Property_class(); 7 | 8 | #endif//Property_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionBase.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionBase_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionBase_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionBase_class(); 7 | 8 | #endif//PropertyDefinitionBase_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionBaseMap.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionBaseMap_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionBaseMap_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionBaseMap_class(); 7 | 8 | #endif//PropertyDefinitionBaseMap_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionBool.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionBool_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionBool_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionBool_class(); 7 | 8 | #endif//PropertyDefinitionBool_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionColour.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionColour_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionColour_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionColour_class(); 7 | 8 | #endif//PropertyDefinitionColour_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionColourRect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionColourRect_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionColourRect_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionColourRect_class(); 7 | 8 | #endif//PropertyDefinitionColourRect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionColourUBox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionColourUBox_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionColourUBox_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionColourUBox_class(); 7 | 8 | #endif//PropertyDefinitionColourUBox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionColourUDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionColourUDim_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionColourUDim_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionColourUDim_class(); 7 | 8 | #endif//PropertyDefinitionColourUDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionColourURect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionColourURect_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionColourURect_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionColourURect_class(); 7 | 8 | #endif//PropertyDefinitionColourURect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionColourUVector2.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionColourUVector2_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionColourUVector2_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionColourUVector2_class(); 7 | 8 | #endif//PropertyDefinitionColourUVector2_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionFloat.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionFloat_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionFloat_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionFloat_class(); 7 | 8 | #endif//PropertyDefinitionFloat_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionFont.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionFont_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionFont_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionFont_class(); 7 | 8 | #endif//PropertyDefinitionFont_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionHorizontalFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionHorizontalFormatting_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionHorizontalFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionHorizontalFormatting_class(); 7 | 8 | #endif//PropertyDefinitionHorizontalFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionHorizontalTextFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionHorizontalTextFormatting_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionHorizontalTextFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionHorizontalTextFormatting_class(); 7 | 8 | #endif//PropertyDefinitionHorizontalTextFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionImage.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionImage_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionImage_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionImage_class(); 7 | 8 | #endif//PropertyDefinitionImage_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionIterator_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionIterator_class(); 7 | 8 | #endif//PropertyDefinitionIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionRectf.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionRectf_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionRectf_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionRectf_class(); 7 | 8 | #endif//PropertyDefinitionRectf_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionSizef.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionSizef_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionSizef_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionSizef_class(); 7 | 8 | #endif//PropertyDefinitionSizef_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionString.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionString_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionString_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionString_class(); 7 | 8 | #endif//PropertyDefinitionString_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionUint.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionUint_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionUint_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionUint_class(); 7 | 8 | #endif//PropertyDefinitionUint_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionVector2f.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionVector2f_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionVector2f_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionVector2f_class(); 7 | 8 | #endif//PropertyDefinitionVector2f_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionVerticalFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionVerticalFormatting_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionVerticalFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionVerticalFormatting_class(); 7 | 8 | #endif//PropertyDefinitionVerticalFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDefinitionVerticalTextFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDefinitionVerticalTextFormatting_hpp__pyplusplus_wrapper 4 | #define PropertyDefinitionVerticalTextFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDefinitionVerticalTextFormatting_class(); 7 | 8 | #endif//PropertyDefinitionVerticalTextFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyDim_hpp__pyplusplus_wrapper 4 | #define PropertyDim_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyDim_class(); 7 | 8 | #endif//PropertyDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyHelper.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyHelper_hpp__pyplusplus_wrapper 4 | #define PropertyHelper_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyHelper_class(); 7 | 8 | #endif//PropertyHelper_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyInitialiser.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyInitialiser_hpp__pyplusplus_wrapper 4 | #define PropertyInitialiser_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyInitialiser_class(); 7 | 8 | #endif//PropertyInitialiser_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyInitialiserIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyInitialiserIterator_hpp__pyplusplus_wrapper 4 | #define PropertyInitialiserIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyInitialiserIterator_class(); 7 | 8 | #endif//PropertyInitialiserIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyInitialiserMap.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyInitialiserMap_hpp__pyplusplus_wrapper 4 | #define PropertyInitialiserMap_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyInitialiserMap_class(); 7 | 8 | #endif//PropertyInitialiserMap_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyInitialiserVector.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyInitialiserVector_hpp__pyplusplus_wrapper 4 | #define PropertyInitialiserVector_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyInitialiserVector_class(); 7 | 8 | #endif//PropertyInitialiserVector_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyIterator_hpp__pyplusplus_wrapper 4 | #define PropertyIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyIterator_class(); 7 | 8 | #endif//PropertyIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionBool.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionBool_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionBool_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionBool_class(); 7 | 8 | #endif//PropertyLinkDefinitionBool_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionColour.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionColour_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionColour_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionColour_class(); 7 | 8 | #endif//PropertyLinkDefinitionColour_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionColourRect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionColourRect_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionColourRect_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionColourRect_class(); 7 | 8 | #endif//PropertyLinkDefinitionColourRect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionColourUBox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionColourUBox_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionColourUBox_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionColourUBox_class(); 7 | 8 | #endif//PropertyLinkDefinitionColourUBox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionColourUDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionColourUDim_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionColourUDim_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionColourUDim_class(); 7 | 8 | #endif//PropertyLinkDefinitionColourUDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionColourURect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionColourURect_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionColourURect_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionColourURect_class(); 7 | 8 | #endif//PropertyLinkDefinitionColourURect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionColourUVector2.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionColourUVector2_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionColourUVector2_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionColourUVector2_class(); 7 | 8 | #endif//PropertyLinkDefinitionColourUVector2_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionFloat.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionFloat_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionFloat_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionFloat_class(); 7 | 8 | #endif//PropertyLinkDefinitionFloat_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionFont.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionFont_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionFont_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionFont_class(); 7 | 8 | #endif//PropertyLinkDefinitionFont_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionHorizontalFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionHorizontalFormatting_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionHorizontalFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionHorizontalFormatting_class(); 7 | 8 | #endif//PropertyLinkDefinitionHorizontalFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionHorizontalTextFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionHorizontalTextFormatting_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionHorizontalTextFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionHorizontalTextFormatting_class(); 7 | 8 | #endif//PropertyLinkDefinitionHorizontalTextFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionImage.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionImage_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionImage_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionImage_class(); 7 | 8 | #endif//PropertyLinkDefinitionImage_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionRectf.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionRectf_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionRectf_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionRectf_class(); 7 | 8 | #endif//PropertyLinkDefinitionRectf_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionSizef.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionSizef_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionSizef_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionSizef_class(); 7 | 8 | #endif//PropertyLinkDefinitionSizef_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionString.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionString_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionString_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionString_class(); 7 | 8 | #endif//PropertyLinkDefinitionString_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionUint.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionUint_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionUint_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionUint_class(); 7 | 8 | #endif//PropertyLinkDefinitionUint_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionVector2f.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionVector2f_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionVector2f_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionVector2f_class(); 7 | 8 | #endif//PropertyLinkDefinitionVector2f_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionVerticalFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionVerticalFormatting_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionVerticalFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionVerticalFormatting_class(); 7 | 8 | #endif//PropertyLinkDefinitionVerticalFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyLinkDefinitionVerticalTextFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyLinkDefinitionVerticalTextFormatting_hpp__pyplusplus_wrapper 4 | #define PropertyLinkDefinitionVerticalTextFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyLinkDefinitionVerticalTextFormatting_class(); 7 | 8 | #endif//PropertyLinkDefinitionVerticalTextFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertyReceiver.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertyReceiver_hpp__pyplusplus_wrapper 4 | #define PropertyReceiver_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertyReceiver_class(); 7 | 8 | #endif//PropertyReceiver_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PropertySet.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PropertySet_hpp__pyplusplus_wrapper 4 | #define PropertySet_hpp__pyplusplus_wrapper 5 | 6 | void register_PropertySet_class(); 7 | 8 | #endif//PropertySet_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PushButton.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PushButton_hpp__pyplusplus_wrapper 4 | #define PushButton_hpp__pyplusplus_wrapper 5 | 6 | void register_PushButton_class(); 7 | 8 | #endif//PushButton_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/PyCEGUI_enumerations.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef PyCEGUI_enumerations_hpp__pyplusplus_wrapper 4 | #define PyCEGUI_enumerations_hpp__pyplusplus_wrapper 5 | 6 | void register_enumerations(); 7 | 8 | #endif//PyCEGUI_enumerations_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Quaternion.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Quaternion_hpp__pyplusplus_wrapper 4 | #define Quaternion_hpp__pyplusplus_wrapper 5 | 6 | void register_Quaternion_class(); 7 | 8 | #endif//Quaternion_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RadioButton.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RadioButton_hpp__pyplusplus_wrapper 4 | #define RadioButton_hpp__pyplusplus_wrapper 5 | 6 | void register_RadioButton_class(); 7 | 8 | #endif//RadioButton_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RawDataContainer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RawDataContainer_hpp__pyplusplus_wrapper 4 | #define RawDataContainer_hpp__pyplusplus_wrapper 5 | 6 | void register_RawDataContainer_class(); 7 | 8 | #endif//RawDataContainer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Rectf.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Rectf_hpp__pyplusplus_wrapper 4 | #define Rectf_hpp__pyplusplus_wrapper 5 | 6 | void register_Rectf_class(); 7 | 8 | #endif//Rectf_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RegexMatchStateEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RegexMatchStateEventArgs_hpp__pyplusplus_wrapper 4 | #define RegexMatchStateEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_RegexMatchStateEventArgs_class(); 7 | 8 | #endif//RegexMatchStateEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RegexMatcher.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RegexMatcher_hpp__pyplusplus_wrapper 4 | #define RegexMatcher_hpp__pyplusplus_wrapper 5 | 6 | void register_RegexMatcher_class(); 7 | 8 | #endif//RegexMatcher_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderEffect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderEffect_hpp__pyplusplus_wrapper 4 | #define RenderEffect_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderEffect_class(); 7 | 8 | #endif//RenderEffect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderEffectFactory.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderEffectFactory_hpp__pyplusplus_wrapper 4 | #define RenderEffectFactory_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderEffectFactory_class(); 7 | 8 | #endif//RenderEffectFactory_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderEffectManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderEffectManager_hpp__pyplusplus_wrapper 4 | #define RenderEffectManager_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderEffectManager_class(); 7 | 8 | #endif//RenderEffectManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderQueue.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderQueue_hpp__pyplusplus_wrapper 4 | #define RenderQueue_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderQueue_class(); 7 | 8 | #endif//RenderQueue_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderQueueEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderQueueEventArgs_hpp__pyplusplus_wrapper 4 | #define RenderQueueEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderQueueEventArgs_class(); 7 | 8 | #endif//RenderQueueEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderTarget.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderTarget_hpp__pyplusplus_wrapper 4 | #define RenderTarget_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderTarget_class(); 7 | 8 | #endif//RenderTarget_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderTargetEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderTargetEventArgs_hpp__pyplusplus_wrapper 4 | #define RenderTargetEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderTargetEventArgs_class(); 7 | 8 | #endif//RenderTargetEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderedString.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderedString_hpp__pyplusplus_wrapper 4 | #define RenderedString_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderedString_class(); 7 | 8 | #endif//RenderedString_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderedStringComponent.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderedStringComponent_hpp__pyplusplus_wrapper 4 | #define RenderedStringComponent_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderedStringComponent_class(); 7 | 8 | #endif//RenderedStringComponent_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderedStringImageComponent.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderedStringImageComponent_hpp__pyplusplus_wrapper 4 | #define RenderedStringImageComponent_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderedStringImageComponent_class(); 7 | 8 | #endif//RenderedStringImageComponent_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderedStringParser.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderedStringParser_hpp__pyplusplus_wrapper 4 | #define RenderedStringParser_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderedStringParser_class(); 7 | 8 | #endif//RenderedStringParser_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderedStringTextComponent.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderedStringTextComponent_hpp__pyplusplus_wrapper 4 | #define RenderedStringTextComponent_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderedStringTextComponent_class(); 7 | 8 | #endif//RenderedStringTextComponent_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderedStringWidgetComponent.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderedStringWidgetComponent_hpp__pyplusplus_wrapper 4 | #define RenderedStringWidgetComponent_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderedStringWidgetComponent_class(); 7 | 8 | #endif//RenderedStringWidgetComponent_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Renderer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Renderer_hpp__pyplusplus_wrapper 4 | #define Renderer_hpp__pyplusplus_wrapper 5 | 6 | void register_Renderer_class(); 7 | 8 | #endif//Renderer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderingContext.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderingContext_hpp__pyplusplus_wrapper 4 | #define RenderingContext_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderingContext_class(); 7 | 8 | #endif//RenderingContext_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderingSurface.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderingSurface_hpp__pyplusplus_wrapper 4 | #define RenderingSurface_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderingSurface_class(); 7 | 8 | #endif//RenderingSurface_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/RenderingWindow.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef RenderingWindow_hpp__pyplusplus_wrapper 4 | #define RenderingWindow_hpp__pyplusplus_wrapper 5 | 6 | void register_RenderingWindow_class(); 7 | 8 | #endif//RenderingWindow_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ResourceEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ResourceEventArgs_hpp__pyplusplus_wrapper 4 | #define ResourceEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_ResourceEventArgs_class(); 7 | 8 | #endif//ResourceEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ResourceEventSet.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ResourceEventSet_hpp__pyplusplus_wrapper 4 | #define ResourceEventSet_hpp__pyplusplus_wrapper 5 | 6 | void register_ResourceEventSet_class(); 7 | 8 | #endif//ResourceEventSet_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ResourceProvider.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ResourceProvider_hpp__pyplusplus_wrapper 4 | #define ResourceProvider_hpp__pyplusplus_wrapper 5 | 6 | void register_ResourceProvider_class(); 7 | 8 | #endif//ResourceProvider_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Scheme.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Scheme_hpp__pyplusplus_wrapper 4 | #define Scheme_hpp__pyplusplus_wrapper 5 | 6 | void register_Scheme_class(); 7 | 8 | #endif//Scheme_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SchemeIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SchemeIterator_hpp__pyplusplus_wrapper 4 | #define SchemeIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_SchemeIterator_class(); 7 | 8 | #endif//SchemeIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SchemeManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SchemeManager_hpp__pyplusplus_wrapper 4 | #define SchemeManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SchemeManager_class(); 7 | 8 | #endif//SchemeManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ScriptModule.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ScriptModule_hpp__pyplusplus_wrapper 4 | #define ScriptModule_hpp__pyplusplus_wrapper 5 | 6 | void register_ScriptModule_class(); 7 | 8 | #endif//ScriptModule_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ScrollablePane.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ScrollablePane_hpp__pyplusplus_wrapper 4 | #define ScrollablePane_hpp__pyplusplus_wrapper 5 | 6 | void register_ScrollablePane_class(); 7 | 8 | #endif//ScrollablePane_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Scrollbar.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Scrollbar_hpp__pyplusplus_wrapper 4 | #define Scrollbar_hpp__pyplusplus_wrapper 5 | 6 | void register_Scrollbar_class(); 7 | 8 | #endif//Scrollbar_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ScrolledContainer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ScrolledContainer_hpp__pyplusplus_wrapper 4 | #define ScrolledContainer_hpp__pyplusplus_wrapper 5 | 6 | void register_ScrolledContainer_class(); 7 | 8 | #endif//ScrolledContainer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ScrolledItemListBase.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ScrolledItemListBase_hpp__pyplusplus_wrapper 4 | #define ScrolledItemListBase_hpp__pyplusplus_wrapper 5 | 6 | void register_ScrolledItemListBase_class(); 7 | 8 | #endif//ScrolledItemListBase_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SectionIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SectionIterator_hpp__pyplusplus_wrapper 4 | #define SectionIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_SectionIterator_class(); 7 | 8 | #endif//SectionIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SectionSpecification.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SectionSpecification_hpp__pyplusplus_wrapper 4 | #define SectionSpecification_hpp__pyplusplus_wrapper 5 | 6 | void register_SectionSpecification_class(); 7 | 8 | #endif//SectionSpecification_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SectionSpecificationVector.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SectionSpecificationVector_hpp__pyplusplus_wrapper 4 | #define SectionSpecificationVector_hpp__pyplusplus_wrapper 5 | 6 | void register_SectionSpecificationVector_class(); 7 | 8 | #endif//SectionSpecificationVector_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SequentialLayoutContainer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SequentialLayoutContainer_hpp__pyplusplus_wrapper 4 | #define SequentialLayoutContainer_hpp__pyplusplus_wrapper 5 | 6 | void register_SequentialLayoutContainer_class(); 7 | 8 | #endif//SequentialLayoutContainer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SimpleTimer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SimpleTimer_hpp__pyplusplus_wrapper 4 | #define SimpleTimer_hpp__pyplusplus_wrapper 5 | 6 | void register_SimpleTimer_class(); 7 | 8 | #endif//SimpleTimer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonAnimationManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonAnimationManager_hpp__pyplusplus_wrapper 4 | #define SingletonAnimationManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonAnimationManager_class(); 7 | 8 | #endif//SingletonAnimationManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonFontManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonFontManager_hpp__pyplusplus_wrapper 4 | #define SingletonFontManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonFontManager_class(); 7 | 8 | #endif//SingletonFontManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonGlobalEventSet.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonGlobalEventSet_hpp__pyplusplus_wrapper 4 | #define SingletonGlobalEventSet_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonGlobalEventSet_class(); 7 | 8 | #endif//SingletonGlobalEventSet_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonImageManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonImageManager_hpp__pyplusplus_wrapper 4 | #define SingletonImageManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonImageManager_class(); 7 | 8 | #endif//SingletonImageManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonLogger.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonLogger_hpp__pyplusplus_wrapper 4 | #define SingletonLogger_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonLogger_class(); 7 | 8 | #endif//SingletonLogger_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonRenderEffectManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonRenderEffectManager_hpp__pyplusplus_wrapper 4 | #define SingletonRenderEffectManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonRenderEffectManager_class(); 7 | 8 | #endif//SingletonRenderEffectManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonSchemeManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonSchemeManager_hpp__pyplusplus_wrapper 4 | #define SingletonSchemeManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonSchemeManager_class(); 7 | 8 | #endif//SingletonSchemeManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonSystem.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonSystem_hpp__pyplusplus_wrapper 4 | #define SingletonSystem_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonSystem_class(); 7 | 8 | #endif//SingletonSystem_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonWidgetLookManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonWidgetLookManager_hpp__pyplusplus_wrapper 4 | #define SingletonWidgetLookManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonWidgetLookManager_class(); 7 | 8 | #endif//SingletonWidgetLookManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonWindowFactoryManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonWindowFactoryManager_hpp__pyplusplus_wrapper 4 | #define SingletonWindowFactoryManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonWindowFactoryManager_class(); 7 | 8 | #endif//SingletonWindowFactoryManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonWindowManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonWindowManager_hpp__pyplusplus_wrapper 4 | #define SingletonWindowManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonWindowManager_class(); 7 | 8 | #endif//SingletonWindowManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SingletonWindowRendererManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SingletonWindowRendererManager_hpp__pyplusplus_wrapper 4 | #define SingletonWindowRendererManager_hpp__pyplusplus_wrapper 5 | 6 | void register_SingletonWindowRendererManager_class(); 7 | 8 | #endif//SingletonWindowRendererManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Sizef.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Sizef_hpp__pyplusplus_wrapper 4 | #define Sizef_hpp__pyplusplus_wrapper 5 | 6 | void register_Sizef_class(); 7 | 8 | #endif//Sizef_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Slider.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Slider_hpp__pyplusplus_wrapper 4 | #define Slider_hpp__pyplusplus_wrapper 5 | 6 | void register_Slider_class(); 7 | 8 | #endif//Slider_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Spinner.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Spinner_hpp__pyplusplus_wrapper 4 | #define Spinner_hpp__pyplusplus_wrapper 5 | 6 | void register_Spinner_class(); 7 | 8 | #endif//Spinner_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/StateImagery.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef StateImagery_hpp__pyplusplus_wrapper 4 | #define StateImagery_hpp__pyplusplus_wrapper 5 | 6 | void register_StateImagery_class(); 7 | 8 | #endif//StateImagery_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/StateImageryMap.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef StateImageryMap_hpp__pyplusplus_wrapper 4 | #define StateImageryMap_hpp__pyplusplus_wrapper 5 | 6 | void register_StateImageryMap_class(); 7 | 8 | #endif//StateImageryMap_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/StateIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef StateIterator_hpp__pyplusplus_wrapper 4 | #define StateIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_StateIterator_class(); 7 | 8 | #endif//StateIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/StdPairCEGUIImageImageFactory.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef StdPairCEGUIImageImageFactory_hpp__pyplusplus_wrapper 4 | #define StdPairCEGUIImageImageFactory_hpp__pyplusplus_wrapper 5 | 6 | void register_StdPairCEGUIImageImageFactory_class(); 7 | 8 | #endif//StdPairCEGUIImageImageFactory_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/StdPairCEGUIStringString.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef StdPairCEGUIStringString_hpp__pyplusplus_wrapper 4 | #define StdPairCEGUIStringString_hpp__pyplusplus_wrapper 5 | 6 | void register_StdPairCEGUIStringString_class(); 7 | 8 | #endif//StdPairCEGUIStringString_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/StdPairFloatFloat.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef StdPairFloatFloat_hpp__pyplusplus_wrapper 4 | #define StdPairFloatFloat_hpp__pyplusplus_wrapper 5 | 6 | void register_StdPairFloatFloat_class(); 7 | 8 | #endif//StdPairFloatFloat_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/StringSet.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef StringSet_hpp__pyplusplus_wrapper 4 | #define StringSet_hpp__pyplusplus_wrapper 5 | 6 | void register_StringSet_class(); 7 | 8 | #endif//StringSet_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Subscriber.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Subscriber_hpp__pyplusplus_wrapper 4 | #define Subscriber_hpp__pyplusplus_wrapper 5 | 6 | void register_Subscriber_class(); 7 | 8 | #endif//Subscriber_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/System.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef System_hpp__pyplusplus_wrapper 4 | #define System_hpp__pyplusplus_wrapper 5 | 6 | void register_System_class(); 7 | 8 | #endif//System_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/SystemKeys.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef SystemKeys_hpp__pyplusplus_wrapper 4 | #define SystemKeys_hpp__pyplusplus_wrapper 5 | 6 | void register_SystemKeys_class(); 7 | 8 | #endif//SystemKeys_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TabButton.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TabButton_hpp__pyplusplus_wrapper 4 | #define TabButton_hpp__pyplusplus_wrapper 5 | 6 | void register_TabButton_class(); 7 | 8 | #endif//TabButton_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TabControl.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TabControl_hpp__pyplusplus_wrapper 4 | #define TabControl_hpp__pyplusplus_wrapper 5 | 6 | void register_TabControl_class(); 7 | 8 | #endif//TabControl_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TargetTypeStack.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TargetTypeStack_hpp__pyplusplus_wrapper 4 | #define TargetTypeStack_hpp__pyplusplus_wrapper 5 | 6 | void register_TargetTypeStack_class(); 7 | 8 | #endif//TargetTypeStack_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TextComponent.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TextComponent_hpp__pyplusplus_wrapper 4 | #define TextComponent_hpp__pyplusplus_wrapper 5 | 6 | void register_TextComponent_class(); 7 | 8 | #endif//TextComponent_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TextComponentIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TextComponentIterator_hpp__pyplusplus_wrapper 4 | #define TextComponentIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_TextComponentIterator_class(); 7 | 8 | #endif//TextComponentIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TextComponentVector.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TextComponentVector_hpp__pyplusplus_wrapper 4 | #define TextComponentVector_hpp__pyplusplus_wrapper 5 | 6 | void register_TextComponentVector_class(); 7 | 8 | #endif//TextComponentVector_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TextUtils.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TextUtils_hpp__pyplusplus_wrapper 4 | #define TextUtils_hpp__pyplusplus_wrapper 5 | 6 | void register_TextUtils_class(); 7 | 8 | #endif//TextUtils_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Texture.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Texture_hpp__pyplusplus_wrapper 4 | #define Texture_hpp__pyplusplus_wrapper 5 | 6 | void register_Texture_class(); 7 | 8 | #endif//Texture_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TextureTarget.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TextureTarget_hpp__pyplusplus_wrapper 4 | #define TextureTarget_hpp__pyplusplus_wrapper 5 | 6 | void register_TextureTarget_class(); 7 | 8 | #endif//TextureTarget_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Thumb.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Thumb_hpp__pyplusplus_wrapper 4 | #define Thumb_hpp__pyplusplus_wrapper 5 | 6 | void register_Thumb_class(); 7 | 8 | #endif//Thumb_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Titlebar.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Titlebar_hpp__pyplusplus_wrapper 4 | #define Titlebar_hpp__pyplusplus_wrapper 5 | 6 | void register_Titlebar_class(); 7 | 8 | #endif//Titlebar_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/ToggleButton.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef ToggleButton_hpp__pyplusplus_wrapper 4 | #define ToggleButton_hpp__pyplusplus_wrapper 5 | 6 | void register_ToggleButton_class(); 7 | 8 | #endif//ToggleButton_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Tooltip.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Tooltip_hpp__pyplusplus_wrapper 4 | #define Tooltip_hpp__pyplusplus_wrapper 5 | 6 | void register_Tooltip_class(); 7 | 8 | #endif//Tooltip_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Tree.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Tree_hpp__pyplusplus_wrapper 4 | #define Tree_hpp__pyplusplus_wrapper 5 | 6 | void register_Tree_class(); 7 | 8 | #endif//Tree_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TreeEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TreeEventArgs_hpp__pyplusplus_wrapper 4 | #define TreeEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_TreeEventArgs_class(); 7 | 8 | #endif//TreeEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TreeItem.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TreeItem_hpp__pyplusplus_wrapper 4 | #define TreeItem_hpp__pyplusplus_wrapper 5 | 6 | void register_TreeItem_class(); 7 | 8 | #endif//TreeItem_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypeAliasIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypeAliasIterator_hpp__pyplusplus_wrapper 4 | #define TypeAliasIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_TypeAliasIterator_class(); 7 | 8 | #endif//TypeAliasIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyBool.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyBool_hpp__pyplusplus_wrapper 4 | #define TypedPropertyBool_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyBool_class(); 7 | 8 | #endif//TypedPropertyBool_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyColour.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyColour_hpp__pyplusplus_wrapper 4 | #define TypedPropertyColour_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyColour_class(); 7 | 8 | #endif//TypedPropertyColour_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyColourRect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyColourRect_hpp__pyplusplus_wrapper 4 | #define TypedPropertyColourRect_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyColourRect_class(); 7 | 8 | #endif//TypedPropertyColourRect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyColourUBox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyColourUBox_hpp__pyplusplus_wrapper 4 | #define TypedPropertyColourUBox_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyColourUBox_class(); 7 | 8 | #endif//TypedPropertyColourUBox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyColourUDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyColourUDim_hpp__pyplusplus_wrapper 4 | #define TypedPropertyColourUDim_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyColourUDim_class(); 7 | 8 | #endif//TypedPropertyColourUDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyColourURect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyColourURect_hpp__pyplusplus_wrapper 4 | #define TypedPropertyColourURect_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyColourURect_class(); 7 | 8 | #endif//TypedPropertyColourURect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyColourUVector2.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyColourUVector2_hpp__pyplusplus_wrapper 4 | #define TypedPropertyColourUVector2_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyColourUVector2_class(); 7 | 8 | #endif//TypedPropertyColourUVector2_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyFloat.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyFloat_hpp__pyplusplus_wrapper 4 | #define TypedPropertyFloat_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyFloat_class(); 7 | 8 | #endif//TypedPropertyFloat_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyFont.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyFont_hpp__pyplusplus_wrapper 4 | #define TypedPropertyFont_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyFont_class(); 7 | 8 | #endif//TypedPropertyFont_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyHorizontalFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyHorizontalFormatting_hpp__pyplusplus_wrapper 4 | #define TypedPropertyHorizontalFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyHorizontalFormatting_class(); 7 | 8 | #endif//TypedPropertyHorizontalFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyHorizontalTextFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyHorizontalTextFormatting_hpp__pyplusplus_wrapper 4 | #define TypedPropertyHorizontalTextFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyHorizontalTextFormatting_class(); 7 | 8 | #endif//TypedPropertyHorizontalTextFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyImage.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyImage_hpp__pyplusplus_wrapper 4 | #define TypedPropertyImage_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyImage_class(); 7 | 8 | #endif//TypedPropertyImage_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyRectf.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyRectf_hpp__pyplusplus_wrapper 4 | #define TypedPropertyRectf_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyRectf_class(); 7 | 8 | #endif//TypedPropertyRectf_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertySizef.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertySizef_hpp__pyplusplus_wrapper 4 | #define TypedPropertySizef_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertySizef_class(); 7 | 8 | #endif//TypedPropertySizef_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyString.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyString_hpp__pyplusplus_wrapper 4 | #define TypedPropertyString_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyString_class(); 7 | 8 | #endif//TypedPropertyString_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyUint.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyUint_hpp__pyplusplus_wrapper 4 | #define TypedPropertyUint_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyUint_class(); 7 | 8 | #endif//TypedPropertyUint_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyVector2f.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyVector2f_hpp__pyplusplus_wrapper 4 | #define TypedPropertyVector2f_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyVector2f_class(); 7 | 8 | #endif//TypedPropertyVector2f_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyVerticalFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyVerticalFormatting_hpp__pyplusplus_wrapper 4 | #define TypedPropertyVerticalFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyVerticalFormatting_class(); 7 | 8 | #endif//TypedPropertyVerticalFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/TypedPropertyVerticalTextFormatting.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef TypedPropertyVerticalTextFormatting_hpp__pyplusplus_wrapper 4 | #define TypedPropertyVerticalTextFormatting_hpp__pyplusplus_wrapper 5 | 6 | void register_TypedPropertyVerticalTextFormatting_class(); 7 | 8 | #endif//TypedPropertyVerticalTextFormatting_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/UBox.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef UBox_hpp__pyplusplus_wrapper 4 | #define UBox_hpp__pyplusplus_wrapper 5 | 6 | void register_UBox_class(); 7 | 8 | #endif//UBox_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/UDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef UDim_hpp__pyplusplus_wrapper 4 | #define UDim_hpp__pyplusplus_wrapper 5 | 6 | void register_UDim_class(); 7 | 8 | #endif//UDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/URect.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef URect_hpp__pyplusplus_wrapper 4 | #define URect_hpp__pyplusplus_wrapper 5 | 6 | void register_URect_class(); 7 | 8 | #endif//URect_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/USize.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef USize_hpp__pyplusplus_wrapper 4 | #define USize_hpp__pyplusplus_wrapper 5 | 6 | void register_USize_class(); 7 | 8 | #endif//USize_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/UVector2.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef UVector2_hpp__pyplusplus_wrapper 4 | #define UVector2_hpp__pyplusplus_wrapper 5 | 6 | void register_UVector2_class(); 7 | 8 | #endif//UVector2_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/UnifiedDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef UnifiedDim_hpp__pyplusplus_wrapper 4 | #define UnifiedDim_hpp__pyplusplus_wrapper 5 | 6 | void register_UnifiedDim_class(); 7 | 8 | #endif//UnifiedDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/UpdateEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef UpdateEventArgs_hpp__pyplusplus_wrapper 4 | #define UpdateEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_UpdateEventArgs_class(); 7 | 8 | #endif//UpdateEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Vector2f.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Vector2f_hpp__pyplusplus_wrapper 4 | #define Vector2f_hpp__pyplusplus_wrapper 5 | 6 | void register_Vector2f_class(); 7 | 8 | #endif//Vector2f_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Vector3f.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Vector3f_hpp__pyplusplus_wrapper 4 | #define Vector3f_hpp__pyplusplus_wrapper 5 | 6 | void register_Vector3f_class(); 7 | 8 | #endif//Vector3f_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Vertex.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Vertex_hpp__pyplusplus_wrapper 4 | #define Vertex_hpp__pyplusplus_wrapper 5 | 6 | void register_Vertex_class(); 7 | 8 | #endif//Vertex_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/VerticalLayoutContainer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef VerticalLayoutContainer_hpp__pyplusplus_wrapper 4 | #define VerticalLayoutContainer_hpp__pyplusplus_wrapper 5 | 6 | void register_VerticalLayoutContainer_class(); 7 | 8 | #endif//VerticalLayoutContainer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WidgetComponent.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WidgetComponent_hpp__pyplusplus_wrapper 4 | #define WidgetComponent_hpp__pyplusplus_wrapper 5 | 6 | void register_WidgetComponent_class(); 7 | 8 | #endif//WidgetComponent_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WidgetComponentIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WidgetComponentIterator_hpp__pyplusplus_wrapper 4 | #define WidgetComponentIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_WidgetComponentIterator_class(); 7 | 8 | #endif//WidgetComponentIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WidgetComponentMap.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WidgetComponentMap_hpp__pyplusplus_wrapper 4 | #define WidgetComponentMap_hpp__pyplusplus_wrapper 5 | 6 | void register_WidgetComponentMap_class(); 7 | 8 | #endif//WidgetComponentMap_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WidgetDim.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WidgetDim_hpp__pyplusplus_wrapper 4 | #define WidgetDim_hpp__pyplusplus_wrapper 5 | 6 | void register_WidgetDim_class(); 7 | 8 | #endif//WidgetDim_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WidgetLookFeel.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WidgetLookFeel_hpp__pyplusplus_wrapper 4 | #define WidgetLookFeel_hpp__pyplusplus_wrapper 5 | 6 | void register_WidgetLookFeel_class(); 7 | 8 | #endif//WidgetLookFeel_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WidgetLookFeelMap.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WidgetLookFeelMap_hpp__pyplusplus_wrapper 4 | #define WidgetLookFeelMap_hpp__pyplusplus_wrapper 5 | 6 | void register_WidgetLookFeelMap_class(); 7 | 8 | #endif//WidgetLookFeelMap_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WidgetLookIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WidgetLookIterator_hpp__pyplusplus_wrapper 4 | #define WidgetLookIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_WidgetLookIterator_class(); 7 | 8 | #endif//WidgetLookIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WidgetLookManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WidgetLookManager_hpp__pyplusplus_wrapper 4 | #define WidgetLookManager_hpp__pyplusplus_wrapper 5 | 6 | void register_WidgetLookManager_class(); 7 | 8 | #endif//WidgetLookManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Window.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Window_hpp__pyplusplus_wrapper 4 | #define Window_hpp__pyplusplus_wrapper 5 | 6 | void register_Window_class(); 7 | 8 | #endif//Window_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WindowEventArgs.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WindowEventArgs_hpp__pyplusplus_wrapper 4 | #define WindowEventArgs_hpp__pyplusplus_wrapper 5 | 6 | void register_WindowEventArgs_class(); 7 | 8 | #endif//WindowEventArgs_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WindowFactory.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WindowFactory_hpp__pyplusplus_wrapper 4 | #define WindowFactory_hpp__pyplusplus_wrapper 5 | 6 | void register_WindowFactory_class(); 7 | 8 | #endif//WindowFactory_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WindowFactoryIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WindowFactoryIterator_hpp__pyplusplus_wrapper 4 | #define WindowFactoryIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_WindowFactoryIterator_class(); 7 | 8 | #endif//WindowFactoryIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WindowFactoryManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WindowFactoryManager_hpp__pyplusplus_wrapper 4 | #define WindowFactoryManager_hpp__pyplusplus_wrapper 5 | 6 | void register_WindowFactoryManager_class(); 7 | 8 | #endif//WindowFactoryManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WindowIterator.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WindowIterator_hpp__pyplusplus_wrapper 4 | #define WindowIterator_hpp__pyplusplus_wrapper 5 | 6 | void register_WindowIterator_class(); 7 | 8 | #endif//WindowIterator_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WindowManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WindowManager_hpp__pyplusplus_wrapper 4 | #define WindowManager_hpp__pyplusplus_wrapper 5 | 6 | void register_WindowManager_class(); 7 | 8 | #endif//WindowManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WindowRenderer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WindowRenderer_hpp__pyplusplus_wrapper 4 | #define WindowRenderer_hpp__pyplusplus_wrapper 5 | 6 | void register_WindowRenderer_class(); 7 | 8 | #endif//WindowRenderer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WindowRendererFactory.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WindowRendererFactory_hpp__pyplusplus_wrapper 4 | #define WindowRendererFactory_hpp__pyplusplus_wrapper 5 | 6 | void register_WindowRendererFactory_class(); 7 | 8 | #endif//WindowRendererFactory_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/WindowRendererManager.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef WindowRendererManager_hpp__pyplusplus_wrapper 4 | #define WindowRendererManager_hpp__pyplusplus_wrapper 5 | 6 | void register_WindowRendererManager_class(); 7 | 8 | #endif//WindowRendererManager_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/Workarounds.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef Workarounds_hpp__pyplusplus_wrapper 4 | #define Workarounds_hpp__pyplusplus_wrapper 5 | 6 | void register_Workarounds_class(); 7 | 8 | #endif//Workarounds_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/XMLAttributes.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef XMLAttributes_hpp__pyplusplus_wrapper 4 | #define XMLAttributes_hpp__pyplusplus_wrapper 5 | 6 | void register_XMLAttributes_class(); 7 | 8 | #endif//XMLAttributes_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/XMLHandler.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef XMLHandler_hpp__pyplusplus_wrapper 4 | #define XMLHandler_hpp__pyplusplus_wrapper 5 | 6 | void register_XMLHandler_class(); 7 | 8 | #endif//XMLHandler_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/XMLParser.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef XMLParser_hpp__pyplusplus_wrapper 4 | #define XMLParser_hpp__pyplusplus_wrapper 5 | 6 | void register_XMLParser_class(); 7 | 8 | #endif//XMLParser_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/XMLSerializer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef XMLSerializer_hpp__pyplusplus_wrapper 4 | #define XMLSerializer_hpp__pyplusplus_wrapper 5 | 6 | void register_XMLSerializer_class(); 7 | 8 | #endif//XMLSerializer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUI/vector_less__CEGUI_scope_UDim__greater_.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef vector_less__CEGUI_scope_UDim__greater__hpp__pyplusplus_wrapper 4 | #define vector_less__CEGUI_scope_UDim__greater__hpp__pyplusplus_wrapper 5 | 6 | void register_vector_less__CEGUI_scope_UDim__greater__class(); 7 | 8 | #endif//vector_less__CEGUI_scope_UDim__greater__hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUINullRenderer/NullRenderer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef NullRenderer_hpp__pyplusplus_wrapper 4 | #define NullRenderer_hpp__pyplusplus_wrapper 5 | 6 | void register_NullRenderer_class(); 7 | 8 | #endif//NullRenderer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOgreRenderer/OgreImageCodec.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OgreImageCodec_hpp__pyplusplus_wrapper 4 | #define OgreImageCodec_hpp__pyplusplus_wrapper 5 | 6 | void register_OgreImageCodec_class(); 7 | 8 | #endif//OgreImageCodec_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOgreRenderer/OgreRenderer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OgreRenderer_hpp__pyplusplus_wrapper 4 | #define OgreRenderer_hpp__pyplusplus_wrapper 5 | 6 | void register_OgreRenderer_class(); 7 | 8 | #endif//OgreRenderer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOgreRenderer/OgreResourceProvider.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OgreResourceProvider_hpp__pyplusplus_wrapper 4 | #define OgreResourceProvider_hpp__pyplusplus_wrapper 5 | 6 | void register_OgreResourceProvider_class(); 7 | 8 | #endif//OgreResourceProvider_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOpenGLRenderer/OpenGL3Renderer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OpenGL3Renderer_hpp__pyplusplus_wrapper 4 | #define OpenGL3Renderer_hpp__pyplusplus_wrapper 5 | 6 | void register_OpenGL3Renderer_class(); 7 | 8 | #endif//OpenGL3Renderer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOpenGLRenderer/OpenGL3Shader.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OpenGL3Shader_hpp__pyplusplus_wrapper 4 | #define OpenGL3Shader_hpp__pyplusplus_wrapper 5 | 6 | void register_OpenGL3Shader_class(); 7 | 8 | #endif//OpenGL3Shader_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOpenGLRenderer/OpenGL3StateChangeWrapper.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OpenGL3StateChangeWrapper_hpp__pyplusplus_wrapper 4 | #define OpenGL3StateChangeWrapper_hpp__pyplusplus_wrapper 5 | 6 | void register_OpenGL3StateChangeWrapper_class(); 7 | 8 | #endif//OpenGL3StateChangeWrapper_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOpenGLRenderer/OpenGLGeometryBufferBase.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OpenGLGeometryBufferBase_hpp__pyplusplus_wrapper 4 | #define OpenGLGeometryBufferBase_hpp__pyplusplus_wrapper 5 | 6 | void register_OpenGLGeometryBufferBase_class(); 7 | 8 | #endif//OpenGLGeometryBufferBase_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOpenGLRenderer/OpenGLRenderer.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OpenGLRenderer_hpp__pyplusplus_wrapper 4 | #define OpenGLRenderer_hpp__pyplusplus_wrapper 5 | 6 | void register_OpenGLRenderer_class(); 7 | 8 | #endif//OpenGLRenderer_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOpenGLRenderer/OpenGLRendererBase.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OpenGLRendererBase_hpp__pyplusplus_wrapper 4 | #define OpenGLRendererBase_hpp__pyplusplus_wrapper 5 | 6 | void register_OpenGLRendererBase_class(); 7 | 8 | #endif//OpenGLRendererBase_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOpenGLRenderer/OpenGLTextureTarget.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OpenGLTextureTarget_hpp__pyplusplus_wrapper 4 | #define OpenGLTextureTarget_hpp__pyplusplus_wrapper 5 | 6 | void register_OpenGLTextureTarget_class(); 7 | 8 | #endif//OpenGLTextureTarget_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/ScriptModules/Python/bindings/output/CEGUIOpenGLRenderer/OpenGLViewportTarget.pypp.hpp: -------------------------------------------------------------------------------- 1 | // This file has been generated by Py++. 2 | 3 | #ifndef OpenGLViewportTarget_hpp__pyplusplus_wrapper 4 | #define OpenGLViewportTarget_hpp__pyplusplus_wrapper 5 | 6 | void register_OpenGLViewportTarget_class(); 7 | 8 | #endif//OpenGLViewportTarget_hpp__pyplusplus_wrapper 9 | -------------------------------------------------------------------------------- /cegui/src/WindowRendererSets/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(Core) 2 | 3 | -------------------------------------------------------------------------------- /cegui/src/WindowRendererSets/Core/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_CORE_WR_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | 6 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 7 | 8 | -------------------------------------------------------------------------------- /cegui/src/XMLParserModules/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | if (CEGUI_BUILD_XMLPARSER_EXPAT) 2 | add_subdirectory(Expat) 3 | endif() 4 | 5 | if (CEGUI_BUILD_XMLPARSER_XERCES) 6 | add_subdirectory(Xerces) 7 | endif() 8 | 9 | if (CEGUI_BUILD_XMLPARSER_LIBXML2) 10 | add_subdirectory(Libxml2) 11 | endif() 12 | 13 | if (CEGUI_BUILD_XMLPARSER_TINYXML) 14 | add_subdirectory(TinyXML) 15 | endif() 16 | 17 | if (CEGUI_BUILD_XMLPARSER_RAPIDXML) 18 | add_subdirectory(RapidXML) 19 | endif() 20 | 21 | -------------------------------------------------------------------------------- /cegui/src/XMLParserModules/Expat/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_EXPAT_PARSER_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | cegui_add_dependency(${CEGUI_TARGET_NAME} EXPAT) 6 | 7 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/XMLParserModules/Libxml2/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_LIBXML2_PARSER_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | cegui_add_dependency(${CEGUI_TARGET_NAME} LIBXML2) 6 | 7 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/XMLParserModules/RapidXML/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_RAPIDXML_PARSER_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 5 | include_directories(${RAPIDXML_INCLUDE_DIR}) 6 | 7 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 8 | 9 | -------------------------------------------------------------------------------- /cegui/src/XMLParserModules/TinyXML/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set (CEGUI_TARGET_NAME ${CEGUI_TINYXML_PARSER_LIBNAME}) 2 | 3 | cegui_gather_files() 4 | 5 | cegui_add_loadable_module(${CEGUI_TARGET_NAME} CORE_SOURCE_FILES CORE_HEADER_FILES) 6 | 7 | cegui_add_dependency(${CEGUI_TARGET_NAME} TINYXML) 8 | 9 | cegui_target_link_libraries(${CEGUI_TARGET_NAME} ${CEGUI_BASE_LIBNAME}) 10 | 11 | -------------------------------------------------------------------------------- /cmake/FindFribidi.cmake: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # Custom cmake module for CEGUI to find the fribidi library & header 3 | ################################################################################ 4 | include(CEGUIFindHelpers) 5 | 6 | cegui_find_package(FRIBIDI fribidi fribidi.h fribidi fribidi) 7 | 8 | -------------------------------------------------------------------------------- /datafiles/fonts/Batang-18.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/DejaVuSans-10-NoScale.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/DejaVuSans-10.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/DejaVuSans-12-NoScale.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/DejaVuSans-12.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/DejaVuSans-14-NoScale.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/DejaVuSans-14.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /datafiles/fonts/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/DejaVuSerif.ttf -------------------------------------------------------------------------------- /datafiles/fonts/FetteClassicUNZFraktur.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/FetteClassicUNZFraktur.ttf -------------------------------------------------------------------------------- /datafiles/fonts/Futhark Adapted.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/Futhark Adapted.ttf -------------------------------------------------------------------------------- /datafiles/fonts/GreatVibes-16.font: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /datafiles/fonts/GreatVibes-22.font: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /datafiles/fonts/GreatVibes-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/GreatVibes-Regular.ttf -------------------------------------------------------------------------------- /datafiles/fonts/IMFePIrm29P.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/IMFePIrm29P.ttf -------------------------------------------------------------------------------- /datafiles/fonts/Junicode-13.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/Junicode.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/Junicode.ttf -------------------------------------------------------------------------------- /datafiles/fonts/Jura-10.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/Jura-13.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/Jura-18.font: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /datafiles/fonts/Jura-DemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/Jura-DemiBold.ttf -------------------------------------------------------------------------------- /datafiles/fonts/Jura-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/Jura-Light.ttf -------------------------------------------------------------------------------- /datafiles/fonts/Jura-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/Jura-Medium.ttf -------------------------------------------------------------------------------- /datafiles/fonts/Jura-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/Jura-Regular.ttf -------------------------------------------------------------------------------- /datafiles/fonts/Klingon-pIqaD-HaSta.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/Klingon-pIqaD-HaSta.ttf -------------------------------------------------------------------------------- /datafiles/fonts/Legal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/Legal.txt -------------------------------------------------------------------------------- /datafiles/fonts/RichStyle.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/RichStyle.ttf -------------------------------------------------------------------------------- /datafiles/fonts/Tnua-Libre.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/Tnua-Libre.ttf -------------------------------------------------------------------------------- /datafiles/fonts/batang.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/batang.ttf -------------------------------------------------------------------------------- /datafiles/fonts/mizufalp.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/fonts/mizufalp.ttf -------------------------------------------------------------------------------- /datafiles/imagesets/AlfiskoSkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/AlfiskoSkin.png -------------------------------------------------------------------------------- /datafiles/imagesets/Aliasing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/Aliasing.jpg -------------------------------------------------------------------------------- /datafiles/imagesets/BackgroundSampleBrowser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/BackgroundSampleBrowser.jpg -------------------------------------------------------------------------------- /datafiles/imagesets/DriveIcons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/DriveIcons.png -------------------------------------------------------------------------------- /datafiles/imagesets/FairChar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/FairChar.png -------------------------------------------------------------------------------- /datafiles/imagesets/GameMenuSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/GameMenuSample.png -------------------------------------------------------------------------------- /datafiles/imagesets/OgreTrayImages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/OgreTrayImages.png -------------------------------------------------------------------------------- /datafiles/imagesets/RestaurantGameSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/RestaurantGameSample.png -------------------------------------------------------------------------------- /datafiles/imagesets/RestaurantGameSampleGameOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/RestaurantGameSampleGameOver.png -------------------------------------------------------------------------------- /datafiles/imagesets/SVGSampleImageset.imageset: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /datafiles/imagesets/SampleBrowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/SampleBrowser.png -------------------------------------------------------------------------------- /datafiles/imagesets/SpaceBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/SpaceBackground.jpg -------------------------------------------------------------------------------- /datafiles/imagesets/TaharezLook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/TaharezLook.png -------------------------------------------------------------------------------- /datafiles/imagesets/WindowsLook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/WindowsLook.png -------------------------------------------------------------------------------- /datafiles/imagesets/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/ic_launcher.png -------------------------------------------------------------------------------- /datafiles/imagesets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/logo.png -------------------------------------------------------------------------------- /datafiles/imagesets/vanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/datafiles/imagesets/vanilla.png -------------------------------------------------------------------------------- /doc/doxygen/pcre-lic.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @page pcre_lic PCRE LICENCE 3 | @verbinclude PCRE-LICENSE 4 | */ -------------------------------------------------------------------------------- /doc/doxygen/stringencoders-lic.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @page stringencoders_lic stringencoders library License 3 | @verbinclude stringencoders-license 4 | */ 5 | -------------------------------------------------------------------------------- /doc/doxygen/tolua++README.dox: -------------------------------------------------------------------------------- 1 | /** 2 | @page toluapp_readme tolua++ Customised Generator Manual 3 | @verbinclude MANUAL 4 | */ 5 | -------------------------------------------------------------------------------- /perform-cppcheck: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | jobs=1 4 | if [ -f /proc/cpuinfo ] 5 | then 6 | jobs=`cat /proc/cpuinfo | grep processor | wc -l` 7 | fi 8 | 9 | # allow overwriting the number of jobs 10 | if [ -n "$1" ]; then jobs=$1; fi 11 | 12 | cppcheck -j $jobs --enable=all -f \ 13 | -I cegui/include cegui/ 2> cppcheck-output 14 | 15 | -------------------------------------------------------------------------------- /promo/BrushScriptStd.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/promo/BrushScriptStd.otf -------------------------------------------------------------------------------- /promo/LICENSE: -------------------------------------------------------------------------------- 1 | Art in this folder was donated by Charles "Syg" Mattei 2 | 3 | Licensed under CC-BY-SA -------------------------------------------------------------------------------- /samples/Demo6/SampleMetaData.xml: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /samples/Demo8/SampleMetaData.xml: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /samples/ModelView/InventoryModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenTechEngine/CEGUI/6f00952d31f318f9482766d1ad2206cb540a78b9/samples/ModelView/InventoryModel.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # provide access to common test files 2 | include_directories("${CMAKE_CURRENT_SOURCE_DIR}") 3 | 4 | if (CEGUI_BUILD_TESTS) 5 | add_subdirectory(unit) 6 | endif() 7 | 8 | if (CEGUI_BUILD_PERFORMANCE_TESTS) 9 | add_subdirectory(performance) 10 | endif() 11 | 12 | if (CEGUI_BUILD_DATAFILES_TEST) 13 | add_test(NAME CEGUIDatafilesTest COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/CEGUIDatafilesTest.py) 14 | endif() 15 | -------------------------------------------------------------------------------- /tests/performance/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cegui_add_test_executable(CEGUIPerformanceTests) 2 | -------------------------------------------------------------------------------- /tests/performance/README.md: -------------------------------------------------------------------------------- 1 | Performance tests 2 | ==================================== 3 | 4 | This directory contains performance tests of the CEGUI library. 5 | 6 | The whole system uses boost::test as a driving framework and boost::timer 7 | for measuring the time it takes to execute certain steps. The results 8 | of each test are appended in the performance-test-results.csv file for 9 | further later inspection. -------------------------------------------------------------------------------- /tests/unit/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | set(EXTRA_HEADER_FILES 2 | ${CMAKE_SOURCE_DIR}/samples/ModelView/InventoryModel.h 3 | ) 4 | set(EXTRA_SOURCE_FILES 5 | ${CMAKE_SOURCE_DIR}/samples/ModelView/InventoryModel.cpp 6 | ) 7 | 8 | include_directories(${CMAKE_SOURCE_DIR}/samples/ModelView) 9 | 10 | cegui_add_test_executable_with_extra_files(CEGUITests "${EXTRA_HEADER_FILES}" "${EXTRA_SOURCE_FILES}") 11 | --------------------------------------------------------------------------------