Touch Screen input

For help with anything that CEGUI doesn't offer straight out-of-the-box, e.g.:
- Implementation of new features, such as new Core classes, widgets, WindowRenderers, etc. ...
- Modification of any existing features for specific purposes
- Integration of CEGUI in new engines or frameworks and writing of new plugins (Renderer, Parser, ...) or modules

Moderators: CEGUI MVP, CEGUI Team

ranboh
Just popping in
Just popping in
Posts: 6
Joined: Sun Dec 30, 2012 21:55

Touch Screen input

Postby ranboh » Sun Dec 30, 2012 22:02

Hello,
I am working on an application that can accept input from either a touchscreen or a mouse. The application has been working well with an older HyVision touchscreen. We recently upgraded to a new Plannar PT1701MX. The application no longer registers clicks on the screen properly. The drivers are loaded and configured correctly. The touchscreen behaves correctly in Windows and all other applications on the computer. Here is the code that handles the input:

Code: Select all

bool InputManager::mouseMoved(const OIS::MouseEvent &e)
{
   // Inject mouse movements so CEGUI can move the cursor
   // Since we're using the touchscreen, we inject the absolute position
   CEGUI::System::getSingleton().injectMousePosition((float)e.state.X.abs, (float)e.state.Y.abs);
   if(e.state.Z.rel != 0)
      CEGUI::System::getSingleton().injectMouseWheelChange((float)e.state.Z.rel / 120.0f);

   // Now that we have the new position and skipped injecting the initial click,
   // we can move the cursor to the correct position and inject the click there.
   if (mNumClicks > 0)
   {
      CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::LeftButton);
      mNumClicks = 0;
   }
   // The first click acts wierd, I'm forcing a button click here on the very first touch of the screen
   else if (mNumClicks == -1)
   {
      CEGUI::System::getSingleton().injectMouseButtonDown(CEGUI::LeftButton);
      CEGUI::System::getSingleton().injectMouseButtonUp(CEGUI::LeftButton);
      mNumClicks = 0;
   }

   return true;
}
bool InputManager::mousePressed(const OIS::MouseEvent &e, OIS::MouseButtonID id)
{
   // If the relative x & y are both 0, we're using the mouse
   // otherwise we're using the touch screen and we want to skip
   // injecting the click
   if (e.state.X.rel == 0 && e.state.Y.rel == 0)
   {
      if(CEGUI::System::getSingleton().injectMouseButtonDown(static_cast<CEGUI::MouseButton>(id)))
         return true;
   }
   else
      mNumClicks++;

   return true;
}

bool InputManager::mouseReleased(const OIS::MouseEvent &e, OIS::MouseButtonID id)
{
   if(CEGUI::System::getSingleton().injectMouseButtonUp(static_cast<CEGUI::MouseButton>(id)))
      return true;

   return true;
}

What do I need to change to use the new touchscreen?
Thanks,
Randy

CEGUI.log:
31/12/2012 16:22:05 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
31/12/2012 16:22:05 (Std) + Crazy Eddie's GUI System - Event log +
31/12/2012 16:22:05 (Std) + (http://www.cegui.org.uk/) +
31/12/2012 16:22:05 (Std) +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+

31/12/2012 16:22:05 (Std) CEGUI::Logger singleton created. (01DA27E0)
31/12/2012 16:22:05 (Std)
31/12/2012 16:22:05 (Std) ********************************************************************************
31/12/2012 16:22:05 (Std) * Important: *
31/12/2012 16:22:05 (Std) * To get support at the CEGUI forums, you must post _at least_ the section *
31/12/2012 16:22:05 (Std) * of this log file indicated below. Failure to do this will result in no *
31/12/2012 16:22:05 (Std) * support being given; please do not waste our time. *
31/12/2012 16:22:05 (Std) ********************************************************************************
31/12/2012 16:22:05 (Std) ********************************************************************************
31/12/2012 16:22:05 (Std) * -------- START OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
31/12/2012 16:22:05 (Std) ********************************************************************************
31/12/2012 16:22:05 (Std) ---- Version 0.7.7 (Build: Aug 20 2012 Microsoft Windows MSVC++ 9.0 32 bit) ----
31/12/2012 16:22:05 (Std) ---- Renderer module is: CEGUI::OgreRenderer - Official OGRE based 2nd generation renderer module. ----
31/12/2012 16:22:05 (Std) ---- XML Parser module is: CEGUI::ExpatParser - Official expat based parser module for CEGUI ----
31/12/2012 16:22:05 (Std) ---- Image Codec module is: OgreImageCodec - Integrated ImageCodec using the Ogre engine. ----
31/12/2012 16:22:05 (Std) ---- Scripting module is: None ----
31/12/2012 16:22:05 (Std) ********************************************************************************
31/12/2012 16:22:05 (Std) * -------- END OF ESSENTIAL SECTION TO BE POSTED ON THE FORUM -------- *
31/12/2012 16:22:05 (Std) ********************************************************************************
31/12/2012 16:22:05 (Std)
31/12/2012 16:22:05 (Std) ---- Begining CEGUI System initialisation ----
31/12/2012 16:22:05 (Std) CEGUI::ImagesetManager singleton created (01E34D30)
31/12/2012 16:22:05 (Std) CEGUI::FontManager singleton created. (01E28660)
31/12/2012 16:22:05 (Std) CEGUI::WindowFactoryManager singleton created
31/12/2012 16:22:05 (Std) CEGUI::WindowManager singleton created (01E04010)
31/12/2012 16:22:05 (Std) CEGUI::SchemeManager singleton created. (01E28AF8)
31/12/2012 16:22:05 (Std) CEGUI::MouseCursor singleton created. (01DD6008)
31/12/2012 16:22:05 (Std) CEGUI::GlobalEventSet singleton created. (01E05A58)
31/12/2012 16:22:05 (Std) CEGUI::AnimationManager singleton created (01E34660)
31/12/2012 16:22:05 (Std) CEGUI::WidgetLookManager singleton created. (01E1B6C0)
31/12/2012 16:22:05 (Std) CEGUI::WindowRendererManager singleton created (01E1BFD0)
31/12/2012 16:22:05 (Std) CEGUI::RenderEffectManager singleton created (07CE0E78)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'DefaultWindow' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'DefaultWindow' windows added. (01E0DEA8)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'DragContainer' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'DragContainer' windows added. (01E2E2B8)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'ScrolledContainer' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'ScrolledContainer' windows added. (01E2E418)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'ClippedContainer' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'ClippedContainer' windows added. (01E2E7B8)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Checkbox' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Checkbox' windows added. (01E2E9D0)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/PushButton' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/PushButton' windows added. (01E2EA78)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/RadioButton' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/RadioButton' windows added. (01E2EC90)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Combobox' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Combobox' windows added. (01E2ED38)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/ComboDropList' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/ComboDropList' windows added. (01E2EE98)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Editbox' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Editbox' windows added. (01E2F0C0)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/FrameWindow' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/FrameWindow' windows added. (01E2F168)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/ItemEntry' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/ItemEntry' windows added. (01E2F490)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Listbox' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Listbox' windows added. (01E2F6A8)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/ListHeader' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/ListHeader' windows added. (01E2F750)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/ListHeaderSegment' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/ListHeaderSegment' windows added. (01E2F968)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Menubar' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Menubar' windows added. (01E1DFF0)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/PopupMenu' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/PopupMenu' windows added. (01E1E0F0)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/MenuItem' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/MenuItem' windows added. (01E1E250)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/MultiColumnList' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/MultiColumnList' windows added. (01E1E2F8)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/MultiLineEditbox' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/MultiLineEditbox' windows added. (01E1E548)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/ProgressBar' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/ProgressBar' windows added. (01E1E6A8)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/ScrollablePane' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/ScrollablePane' windows added. (01E1E808)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Scrollbar' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Scrollbar' windows added. (01E1E968)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Slider' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Slider' windows added. (01E1EA10)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Spinner' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Spinner' windows added. (01E1EC28)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/TabButton' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/TabButton' windows added. (01E1ECD0)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/TabControl' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/TabControl' windows added. (01E1EFA0)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Thumb' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Thumb' windows added. (01E1F100)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Titlebar' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Titlebar' windows added. (01E1F1A8)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Tooltip' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Tooltip' windows added. (01E1F250)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/ItemListbox' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/ItemListbox' windows added. (01E1F518)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/GroupBox' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/GroupBox' windows added. (01E1F678)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'CEGUI/Tree' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'CEGUI/Tree' windows added. (01E1F7D8)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'HorizontalLayoutContainer' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'HorizontalLayoutContainer' windows added. (01E1F938)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'VerticalLayoutContainer' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'VerticalLayoutContainer' windows added. (01E1FB98)
31/12/2012 16:22:05 (Std) Created WindowFactory for 'GridLayoutContainer' windows.
31/12/2012 16:22:05 (Std) WindowFactory for 'GridLayoutContainer' windows added. (01E1FE68)
31/12/2012 16:22:05 (Std) Window type alias named 'DefaultGUISheet' added for window type 'DefaultWindow'.
31/12/2012 16:22:05 (Std) CEGUI::System singleton created. (01D74950)
31/12/2012 16:22:05 (Std) ---- CEGUI System initialisation completed ----
31/12/2012 16:22:05 (Std)
31/12/2012 16:22:05 (Std) Started creation of Scheme from XML specification:
31/12/2012 16:22:05 (Std) ---- CEGUI GUIScheme name: WaveloreGUI
31/12/2012 16:22:05 (Std) Started creation of Imageset from XML specification:
31/12/2012 16:22:05 (Std) ---- CEGUI Imageset name: WaveloreGUI
31/12/2012 16:22:05 (Std) ---- Source texture file: WaveloreGUI.tga in resource group: (Default)
31/12/2012 16:22:05 (Std) Started creation of Font from XML specification:
31/12/2012 16:22:05 (Std) ---- CEGUI font name: LucidaSans
31/12/2012 16:22:05 (Std) ---- Font type: FreeType
31/12/2012 16:22:05 (Std) ---- Source file: lucidasansuni.ttf in resource group: (Default)
31/12/2012 16:22:05 (Std) ---- Real point size: 14
31/12/2012 16:22:05 (Std) ===== Falagard 'root' element: look and feel parsing begins =====
31/12/2012 16:22:05 (Std) ===== Look and feel parsing completed =====
31/12/2012 16:22:05 (Std) No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Button' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Button' added. (07EDB568)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Default' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Default' added. (07CE1AE8)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Editbox' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Editbox' added. (01E36428)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/FrameWindow' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/FrameWindow' added. (01E365A0)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/ItemEntry' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/ItemEntry' added. (07CE1B90)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/ListHeader' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/ListHeader' added. (01E3D358)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/ListHeaderSegment' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/ListHeaderSegment' added. (01E3D570)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Listbox' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Listbox' added. (01E3D618)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Menubar' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Menubar' added. (01E3D6C0)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/MenuItem' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/MenuItem' added. (01E3D768)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/MultiColumnList' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/MultiColumnList' added. (01E3D8C8)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/MultiLineEditbox' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/MultiLineEditbox' added. (07ED8FD8)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/PopupMenu' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/PopupMenu' added. (07ED9138)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/ProgressBar' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/ProgressBar' added. (07ED9298)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/ScrollablePane' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/ScrollablePane' added. (07ED9568)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Scrollbar' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Scrollbar' added. (07ED9610)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Slider' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Slider' added. (07ED96B8)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Static' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Static' added. (07D82740)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/StaticImage' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/StaticImage' added. (07D827E8)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/StaticText' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/StaticText' added. (07D82948)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/SystemButton' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/SystemButton' added. (07D82CD0)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/TabButton' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/TabButton' added. (07D82D78)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/TabControl' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/TabControl' added. (07CE1008)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Titlebar' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Titlebar' added. (07CE1350)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/ToggleButton' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/ToggleButton' added. (07CE13F8)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Tooltip' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Tooltip' added. (07CE14A0)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/ItemListbox' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/ItemListbox' added. (07CE1600)
31/12/2012 16:22:05 (Std) Created WindowRendererFactory for 'Falagard/Tree' WindowRenderers.
31/12/2012 16:22:05 (Std) WindowRendererFactory 'Falagard/Tree' added. (07CE16A8)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/Button' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/PlusButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/PlusButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/MinusButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/MinusButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/Checkbox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/ImageButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/RadioButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/RadioPushButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/RadioPushButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'WaveloreGUI/FrameWindow' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'WaveloreGUI/Titlebar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/SystemButton' Look'N'Feel 'WaveloreGUI/Button' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'WaveloreGUI/Editbox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'WaveloreGUI/VerticalScrollbar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'WaveloreGUI/HorizontalScrollbar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/VerticalScrollbarThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/HorizontalScrollbarThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WaveloreGUI/Slider' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/HorzSlider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WaveloreGUI/HorzSlider' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/SliderLeft' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WaveloreGUI/SliderLeft' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/LargeSliderLeft' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WaveloreGUI/LargeSliderLeft' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/SliderRight' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WaveloreGUI/SliderRight' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/LargeSliderRight' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WaveloreGUI/LargeSliderRight' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/SliderThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/HorzSliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/HorzSliderThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/SliderThumbLeft' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/SliderThumbLeft' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/LargeSliderThumbLeft' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/LargeSliderThumbLeft' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/SliderThumbRight' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/SliderThumbRight' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/LargeSliderThumbRight' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/LargeSliderThumbRight' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'WaveloreGUI/StaticImage' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'WaveloreGUI/StaticText' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/DragImage' using base type 'DragContainer', window renderer 'Falagard/StaticImage' Look'N'Feel 'WaveloreGUI/StaticImage' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/ItemListbox' using base type 'CEGUI/ItemListbox', window renderer 'Falagard/ItemListbox' Look'N'Feel 'WaveloreGUI/ItemListbox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/ListboxItem' using base type 'CEGUI/ItemEntry', window renderer 'Falagard/ItemEntry' Look'N'Feel 'WaveloreGUI/ListboxItem' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'WaveloreGUI/ComboDropList' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'WaveloreGUI/ComboEditbox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'WaveloreGUI/Combobox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/SmallRadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/SmallRadioButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/PentagonSliderVert' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WaveloreGUI/PentagonSliderVert' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/PentagonVertThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/PentagonVertThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/TriangleSliderVert' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WaveloreGUI/TriangleSliderVert' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/TriangleVertThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/TriangleVertThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/TriangleDown' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/TriangleDown' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/TriangleUp' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/TriangleUp' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/PentagonSliderHorz' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'WaveloreGUI/PentagonSliderHorz' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/PentagonHorzThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/PentagonHorzThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/MiniRadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/MiniRadioButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/StopButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/StopButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/RecordButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/RecordButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/PauseButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/PauseButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/FastForwardButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/FastForwardButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/RewindButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/RewindButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/PlayButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/PlayButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/NextChapterButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/NextChapterButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/PrevChapterButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/PrevChapterButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/BookmarkButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'WaveloreGUI/BookmarkButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'WaveloreGUI/IndicatorLight' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'WaveloreGUI/IndicatorLight' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Started creation of Scheme from XML specification:
31/12/2012 16:22:05 (Std) ---- CEGUI GUIScheme name: TaharezLook
31/12/2012 16:22:05 (Std) Started creation of Imageset from XML specification:
31/12/2012 16:22:05 (Std) ---- CEGUI Imageset name: TaharezLook
31/12/2012 16:22:05 (Std) ---- Source texture file: TaharezLook.tga in resource group: (Default)
31/12/2012 16:22:05 (Std) Started creation of Font from XML specification:
31/12/2012 16:22:05 (Std) ---- CEGUI font name: BlueHighway-12
31/12/2012 16:22:05 (Std) ---- Font type: FreeType
31/12/2012 16:22:05 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
31/12/2012 16:22:05 (Std) ---- Real point size: 12
31/12/2012 16:22:05 (Std) Started creation of Font from XML specification:
31/12/2012 16:22:05 (Std) ---- CEGUI font name: BlueHighway-10
31/12/2012 16:22:05 (Std) ---- Font type: FreeType
31/12/2012 16:22:05 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
31/12/2012 16:22:05 (Std) ---- Real point size: 10
31/12/2012 16:22:05 (Std) Started creation of Font from XML specification:
31/12/2012 16:22:05 (Std) ---- CEGUI font name: BlueHighway-8
31/12/2012 16:22:05 (Std) ---- Font type: FreeType
31/12/2012 16:22:05 (Std) ---- Source file: bluehigh.ttf in resource group: (Default)
31/12/2012 16:22:05 (Std) ---- Real point size: 8
31/12/2012 16:22:05 (Std) ===== Falagard 'root' element: look and feel parsing begins =====
31/12/2012 16:22:05 (Std) ===== Look and feel parsing completed =====
31/12/2012 16:22:05 (Std) No window renderer factories specified for module 'CEGUIFalagardWRBase' - adding all available factories...
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Button' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Checkbox' using base type 'CEGUI/Checkbox', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/Checkbox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/ImageButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/ImageButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/RadioButton' using base type 'CEGUI/RadioButton', window renderer 'Falagard/ToggleButton' Look'N'Feel 'TaharezLook/RadioButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/FrameWindow' using base type 'CEGUI/FrameWindow', window renderer 'Falagard/FrameWindow' Look'N'Feel 'TaharezLook/FrameWindow' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Titlebar' using base type 'CEGUI/Titlebar', window renderer 'Falagard/Titlebar' Look'N'Feel 'TaharezLook/Titlebar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/SystemButton' using base type 'CEGUI/PushButton', window renderer 'Falagard/SystemButton' Look'N'Feel 'TaharezLook/Button' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Editbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/Editbox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/MultiLineEditbox' using base type 'CEGUI/MultiLineEditbox', window renderer 'Falagard/MultiLineEditbox' Look'N'Feel 'TaharezLook/MultiLineEditbox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Menubar' using base type 'CEGUI/Menubar', window renderer 'Falagard/Menubar' Look'N'Feel 'TaharezLook/Menubar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/PopupMenu' using base type 'CEGUI/PopupMenu', window renderer 'Falagard/PopupMenu' Look'N'Feel 'TaharezLook/PopupMenu' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/MenuItem' using base type 'CEGUI/MenuItem', window renderer 'Falagard/MenuItem' Look'N'Feel 'TaharezLook/MenuItem' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/AlternateProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/AltProgressBar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/ProgressBar' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/ProgressBar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/VUMeter' using base type 'CEGUI/ProgressBar', window renderer 'Falagard/ProgressBar' Look'N'Feel 'TaharezLook/VUMeter' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/VerticalScrollbar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/HorizontalScrollbar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/VerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/VerticalScrollbarThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/HorizontalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/HorizontalScrollbarThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbar' using base type 'CEGUI/Scrollbar', window renderer 'Falagard/Scrollbar' Look'N'Feel 'TaharezLook/LargeVerticalScrollbar' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/LargeVerticalScrollbarThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/LargeVerticalScrollbarThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/TabButton' using base type 'CEGUI/TabButton', window renderer 'Falagard/TabButton' Look'N'Feel 'TaharezLook/TabButton' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/TabControl' using base type 'CEGUI/TabControl', window renderer 'Falagard/TabControl' Look'N'Feel 'TaharezLook/TabControl' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/TabContentPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabContentPane' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/TabButtonPane' using base type 'DefaultWindow', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/TabButtonPane' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/ComboDropList' using base type 'CEGUI/ComboDropList', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/ComboDropList' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/ComboEditbox' using base type 'CEGUI/Editbox', window renderer 'Falagard/Editbox' Look'N'Feel 'TaharezLook/ComboEditbox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Combobox' using base type 'CEGUI/Combobox', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Combobox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Listbox' using base type 'CEGUI/Listbox', window renderer 'Falagard/Listbox' Look'N'Feel 'TaharezLook/Listbox' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/ListHeader' using base type 'CEGUI/ListHeader', window renderer 'Falagard/ListHeader' Look'N'Feel 'TaharezLook/ListHeader' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/ListHeaderSegment' using base type 'CEGUI/ListHeaderSegment', window renderer 'Falagard/ListHeaderSegment' Look'N'Feel 'TaharezLook/ListHeaderSegment' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/MultiColumnList' using base type 'CEGUI/MultiColumnList', window renderer 'Falagard/MultiColumnList' Look'N'Feel 'TaharezLook/MultiColumnList' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Slider' using base type 'CEGUI/Slider', window renderer 'Falagard/Slider' Look'N'Feel 'TaharezLook/Slider' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/SliderThumb' using base type 'CEGUI/Thumb', window renderer 'Falagard/Button' Look'N'Feel 'TaharezLook/SliderThumb' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/ScrollablePane' using base type 'CEGUI/ScrollablePane', window renderer 'Falagard/ScrollablePane' Look'N'Feel 'TaharezLook/ScrollablePane' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Spinner' using base type 'CEGUI/Spinner', window renderer 'Falagard/Default' Look'N'Feel 'TaharezLook/Spinner' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/Tooltip' using base type 'CEGUI/Tooltip', window renderer 'Falagard/Tooltip' Look'N'Feel 'TaharezLook/Tooltip' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/StaticImage' using base type 'DefaultWindow', window renderer 'Falagard/StaticImage' Look'N'Feel 'TaharezLook/StaticImage' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Creating falagard mapping for type 'TaharezLook/StaticText' using base type 'DefaultWindow', window renderer 'Falagard/StaticText' Look'N'Feel 'TaharezLook/StaticText' and RenderEffect ''. (0012D270)
31/12/2012 16:22:05 (Std) Attempting to create Imageset 'WaveloreGUITitle' using image file 'wavelore_title.dds'.
31/12/2012 16:22:15 (Std) Attempting to create Imageset 'LucidaSans_auto_glyph_images_ ' with texture only.
31/12/2012 16:22:15 (Std) ---- Successfully completed loading of GUI layout from 'RoleSelectionRHIB.layout' ----
31/12/2012 16:22:15 (Std) ---- Successfully completed loading of GUI layout from 'Options.layout' ----

ranboh
Just popping in
Just popping in
Posts: 6
Joined: Sun Dec 30, 2012 21:55

Re: Touch Screen input

Postby ranboh » Wed Jan 02, 2013 00:32

I conducted an expirement by clicking on the center then each of the four corners and recording the values from the mouse state : e.state.X.abs, e.state.Y.abs, e.state.X.rel, e.state.Y.rel, e.state.X.absonly, e.state.Y.absonly, e.state.width and e.state.height.
Using the mouse the results were:
0 0 0 0 0 0 1280 1024
0 1 0 0 0 0 1280 1024
4 1012 0 0 0 0 1280 1024
1271 1012 0 0 0 0 1280 1024
1275 11 0 0 0 0 1280 1024

using the touchscreen:
0 0 -31104 -31744 0 0 1280 1024
0 0 -1184 62336 0 0 1280 1024
0 1024 64320 128 0 0 1280 1024
1280 1024 -448 -61888 0 0 1280 1024

User avatar
Kulik
CEGUI Team
Posts: 1382
Joined: Mon Jul 26, 2010 18:47
Location: Czech Republic
Contact:

Re: Touch Screen input

Postby Kulik » Wed Jan 02, 2013 13:01

This is likely OIS related. As I do not own the said touch screen I cannot provide any input.


Return to “Modifications / Integrations / Customisations”

Who is online

Users browsing this forum: No registered users and 16 guests