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