demotool/window.hh

53 lines
1.4 KiB
C++
Raw Normal View History

#pragma once
#include "dialogs.hh"
#include "mousectrl.hh"
/*= WINDOW MANAGEMENT ========================================================*/
struct T_Window
{
T_Window( );
~T_Window( );
//----------------------------------------------------------------------
2017-11-22 14:13:02 +01:00
void pushDialog( P_ModalDialog dialog ) noexcept
{ modals_.add( std::move( dialog ) ); }
void msgbox( char const* title ,
char const* text ,
T_MessageBox::F_Handler handler = { } ,
T_MessageBox::T_Buttons buttons = T_MessageBox::BT_OK )
{ pushDialog( NewOwned< T_MessageBox >( title , text , handler , buttons ) ); }
void msgbox( T_String const& title ,
T_String const& text ,
T_MessageBox::F_Handler handler = { } ,
T_MessageBox::T_Buttons buttons = T_MessageBox::BT_OK )
{ pushDialog( NewOwned< T_MessageBox >( title , text , handler , buttons ) ); }
//----------------------------------------------------------------------
2017-11-22 14:13:02 +01:00
ImFont* defaultFont( ) const noexcept
{ return defaultFont_; }
ImFont* smallFont( ) const noexcept
{ return smallFont_; }
//----------------------------------------------------------------------
void startFrame( const bool capture ,
ImVec2 const& mouseInitial ) const;
void warpMouse( ImVec2 const& pos ) const;
void swap( ) const;
void handleDialogs( ) noexcept;
private:
SDL_Window * window;
SDL_GLContext gl;
ImFont* defaultFont_;
ImFont* smallFont_;
2017-11-22 14:13:02 +01:00
T_AutoArray< P_ModalDialog , 8 > modals_;
};