Cinder  0.8.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Public Member Functions | Protected Member Functions | Static Protected Member Functions | Protected Attributes | List of all members
cinder::app::WindowImplWinRTBasic Class Reference

#include <AppImplWinRTBasic.h>

Inheritance diagram for cinder::app::WindowImplWinRTBasic:
[legend]

Public Member Functions

 WindowImplWinRTBasic (const Window::Format &format, AppImplWinRTBasic *appImpl)
 
 WindowImplWinRTBasic (DX_WINDOW_TYPE hwnd, RendererRef renderer, AppImplWinRTBasic *appImpl)
 
virtual bool isFullScreen ()
 
virtual void setFullScreen (bool fullScreen, const FullScreenOptions &options)
 
virtual Vec2i getSize () const
 
virtual void setSize (const Vec2i &size)
 
virtual Vec2i getPos () const
 
virtual void setPos (const Vec2i &pos)
 
virtual void close ()
 
virtual std::string getTitle () const
 
virtual void setTitle (const std::string &title)
 
virtual void hide ()
 
virtual void show ()
 
virtual bool isHidden () const
 
virtual DisplayRef getDisplay () const
 
virtual RendererRef getRenderer () const
 
virtual const std::vector
< TouchEvent::Touch > & 
getActiveTouches () const
 
virtual voidgetNative ()
 
DX_WINDOW_TYPE getNativeCoreWindow ()
 
void enableMultiTouch ()
 
bool isBorderless () const
 
void setBorderless (bool borderless)
 
bool isAlwaysOnTop () const
 
void setAlwaysOnTop (bool alwaysOnTop)
 
AppImplWinRTgetAppImpl ()
 
WindowRef getWindow ()
 
virtual void keyDown (const KeyEvent &event)
 
virtual void draw ()
 
virtual void redraw ()
 
virtual void resize ()
 
void privateClose ()
 

Protected Member Functions

void createWindow (const Vec2i &windowSize, const std::string &title)
 
void completeCreation ()
 
void getScreenSize (int clientWidth, int clientHeight, int *resultWidth, int *resultHeight)
 
void toggleFullScreen ()
 
void handlePointerDown (Windows::UI::Core::PointerEventArgs^args)
 
void handlePointerMoved (Windows::UI::Core::PointerEventArgs^args)
 
void handlePointerUp (Windows::UI::Core::PointerEventArgs^args)
 
void handleTouchDown (Windows::UI::Core::PointerEventArgs^args)
 
void handleMouseDown (Windows::UI::Core::PointerEventArgs^args)
 
void handleTouchMoved (Windows::UI::Core::PointerEventArgs^args)
 
void handleMouseMoved (Windows::UI::Core::PointerEventArgs^args)
 
void handleTouchUp (Windows::UI::Core::PointerEventArgs^args)
 
void handleMouseUp (Windows::UI::Core::PointerEventArgs^args)
 
void updateActiveTouches ()
 

Static Protected Member Functions

static void registerWindowClass ()
 

Protected Attributes

friend AppImplWinRTBasic
 
AppImplWinRTmAppImpl
 
WindowRef mWindowRef
 
DX_WINDOW_TYPE mWnd
 
Vec2i mWindowOffset
 
bool mHidden
 
int mWindowWidth
 
int mWindowHeight
 
bool mFullScreen
 
bool mBorderless
 
bool mAlwaysOnTop
 
bool mResizable
 
Vec2i mWindowedPos
 
Vec2i mWindowedSize
 
DisplayRef mDisplay
 
RendererRef mRenderer
 
bool mIsDragging
 
bool mIsMultiTouchEnabled
 
std::map< DWORD, Vec2fmMultiTouchPrev
 
std::map< DWORD, DWORD > mTouchIds
 
std::vector< TouchEvent::TouchmActiveTouches
 
DWORD mTouchId
 
std::string mTitle
 
friend AppImplWinRT
 

Constructor & Destructor Documentation

cinder::app::WindowImplWinRTBasic::WindowImplWinRTBasic ( const Window::Format format,
AppImplWinRTBasic appImpl 
)
cinder::app::WindowImplWinRTBasic::WindowImplWinRTBasic ( DX_WINDOW_TYPE  hwnd,
RendererRef  renderer,
AppImplWinRTBasic appImpl 
)

Member Function Documentation

virtual bool cinder::app::WindowImplWinRT::isFullScreen ( )
virtualinherited
void cinder::app::WindowImplWinRT::setFullScreen ( bool  fullScreen,
const FullScreenOptions options 
)
virtualinherited
virtual Vec2i cinder::app::WindowImplWinRT::getSize ( ) const
virtualinherited
void cinder::app::WindowImplWinRT::setSize ( const Vec2i size)
virtualinherited
virtual Vec2i cinder::app::WindowImplWinRT::getPos ( ) const
virtualinherited
void cinder::app::WindowImplWinRT::setPos ( const Vec2i pos)
virtualinherited
void cinder::app::WindowImplWinRT::close ( )
virtualinherited
std::string cinder::app::WindowImplWinRT::getTitle ( ) const
virtualinherited
void cinder::app::WindowImplWinRT::setTitle ( const std::string title)
virtualinherited
void cinder::app::WindowImplWinRT::hide ( )
virtualinherited
void cinder::app::WindowImplWinRT::show ( )
virtualinherited
bool cinder::app::WindowImplWinRT::isHidden ( ) const
virtualinherited
virtual DisplayRef cinder::app::WindowImplWinRT::getDisplay ( ) const
virtualinherited
virtual RendererRef cinder::app::WindowImplWinRT::getRenderer ( ) const
virtualinherited
virtual const std::vector<TouchEvent::Touch>& cinder::app::WindowImplWinRT::getActiveTouches ( ) const
virtualinherited
virtual void* cinder::app::WindowImplWinRT::getNative ( )
virtualinherited
DX_WINDOW_TYPE cinder::app::WindowImplWinRT::getNativeCoreWindow ( )
inherited
void cinder::app::WindowImplWinRT::enableMultiTouch ( )
inherited
bool cinder::app::WindowImplWinRT::isBorderless ( ) const
inherited
void cinder::app::WindowImplWinRT::setBorderless ( bool  borderless)
inherited
bool cinder::app::WindowImplWinRT::isAlwaysOnTop ( ) const
inherited
void cinder::app::WindowImplWinRT::setAlwaysOnTop ( bool  alwaysOnTop)
inherited
AppImplWinRT* cinder::app::WindowImplWinRT::getAppImpl ( )
inherited
WindowRef cinder::app::WindowImplWinRT::getWindow ( )
inherited
void cinder::app::WindowImplWinRT::keyDown ( const KeyEvent event)
virtualinherited
void cinder::app::WindowImplWinRT::draw ( )
virtualinherited
void cinder::app::WindowImplWinRT::redraw ( )
virtualinherited
void cinder::app::WindowImplWinRT::resize ( )
virtualinherited
void cinder::app::WindowImplWinRT::privateClose ( )
inherited
void cinder::app::WindowImplWinRT::createWindow ( const Vec2i windowSize,
const std::string title 
)
protectedinherited
void cinder::app::WindowImplWinRT::completeCreation ( )
protectedinherited
static void cinder::app::WindowImplWinRT::registerWindowClass ( )
staticprotectedinherited
void cinder::app::WindowImplWinRT::getScreenSize ( int  clientWidth,
int  clientHeight,
int resultWidth,
int resultHeight 
)
protectedinherited
void cinder::app::WindowImplWinRT::toggleFullScreen ( )
protectedinherited
void cinder::app::WindowImplWinRT::handlePointerDown ( Windows::UI::Core::PointerEventArgs^  args)
protectedinherited
void cinder::app::WindowImplWinRT::handlePointerMoved ( Windows::UI::Core::PointerEventArgs^  args)
protectedinherited
void cinder::app::WindowImplWinRT::handlePointerUp ( Windows::UI::Core::PointerEventArgs^  args)
protectedinherited
void cinder::app::WindowImplWinRT::handleTouchDown ( Windows::UI::Core::PointerEventArgs^  args)
protectedinherited
void cinder::app::WindowImplWinRT::handleMouseDown ( Windows::UI::Core::PointerEventArgs^  args)
protectedinherited
void cinder::app::WindowImplWinRT::handleTouchMoved ( Windows::UI::Core::PointerEventArgs^  args)
protectedinherited
void cinder::app::WindowImplWinRT::handleMouseMoved ( Windows::UI::Core::PointerEventArgs^  args)
protectedinherited
void cinder::app::WindowImplWinRT::handleTouchUp ( Windows::UI::Core::PointerEventArgs^  args)
protectedinherited
void cinder::app::WindowImplWinRT::handleMouseUp ( Windows::UI::Core::PointerEventArgs^  args)
protectedinherited
void cinder::app::WindowImplWinRT::updateActiveTouches ( )
protectedinherited

Member Data Documentation

friend cinder::app::WindowImplWinRTBasic::AppImplWinRTBasic
protected
AppImplWinRT* cinder::app::WindowImplWinRT::mAppImpl
protectedinherited
WindowRef cinder::app::WindowImplWinRT::mWindowRef
protectedinherited
DX_WINDOW_TYPE cinder::app::WindowImplWinRT::mWnd
protectedinherited
Vec2i cinder::app::WindowImplWinRT::mWindowOffset
protectedinherited
bool cinder::app::WindowImplWinRT::mHidden
protectedinherited
int cinder::app::WindowImplWinRT::mWindowWidth
protectedinherited
int cinder::app::WindowImplWinRT::mWindowHeight
protectedinherited
bool cinder::app::WindowImplWinRT::mFullScreen
protectedinherited
bool cinder::app::WindowImplWinRT::mBorderless
protectedinherited
bool cinder::app::WindowImplWinRT::mAlwaysOnTop
protectedinherited
bool cinder::app::WindowImplWinRT::mResizable
protectedinherited
Vec2i cinder::app::WindowImplWinRT::mWindowedPos
protectedinherited
Vec2i cinder::app::WindowImplWinRT::mWindowedSize
protectedinherited
DisplayRef cinder::app::WindowImplWinRT::mDisplay
protectedinherited
RendererRef cinder::app::WindowImplWinRT::mRenderer
protectedinherited
bool cinder::app::WindowImplWinRT::mIsDragging
protectedinherited
bool cinder::app::WindowImplWinRT::mIsMultiTouchEnabled
protectedinherited
std::map<DWORD,Vec2f> cinder::app::WindowImplWinRT::mMultiTouchPrev
protectedinherited
std::map<DWORD,DWORD> cinder::app::WindowImplWinRT::mTouchIds
protectedinherited
std::vector<TouchEvent::Touch> cinder::app::WindowImplWinRT::mActiveTouches
protectedinherited
DWORD cinder::app::WindowImplWinRT::mTouchId
protectedinherited
std::string cinder::app::WindowImplWinRT::mTitle
protectedinherited
friend cinder::app::WindowImplWinRT::AppImplWinRT
protectedinherited

The documentation for this class was generated from the following file: