185 lines
4.5 KiB
C++
185 lines
4.5 KiB
C++
/**
|
|
*******************************************************************************
|
|
* @file ewol/WidgetManager.cpp
|
|
* @brief basic ewol Widget Manager (Sources)
|
|
* @author Edouard DUPIN
|
|
* @date 13/11/2011
|
|
* @par Project
|
|
* ewol
|
|
*
|
|
* @par Copyright
|
|
* Copyright 2011 Edouard DUPIN, all right reserved
|
|
*
|
|
* This software is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY.
|
|
*
|
|
* Licence summary :
|
|
* You can modify and redistribute the sources code and binaries.
|
|
* You can send me the bug-fix
|
|
*
|
|
* Term of the licence in in the file licence.txt.
|
|
*
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#include <ewol/WidgetManager.h>
|
|
|
|
#undef __class__
|
|
#define __class__ "WidgetManager"
|
|
|
|
static pthread_mutex_t localMutex;
|
|
static bool IsInit = false;
|
|
|
|
// For the focus Management
|
|
static ewol::Widget * m_focusWidgetDefault = NULL;
|
|
static ewol::Widget * m_focusWidgetCurrent = NULL;
|
|
|
|
void ewol::widgetManager::Init(void)
|
|
{
|
|
EWOL_DEBUG("==> Init Widget-Manager");
|
|
// create interface mutex :
|
|
int ret = pthread_mutex_init(&localMutex, NULL);
|
|
EWOL_ASSERT(ret == 0, "Error creating Mutex ...");
|
|
// prevent android error ==> can create memory leak but I prefer
|
|
m_focusWidgetDefault = NULL;
|
|
m_focusWidgetCurrent = NULL;
|
|
IsInit = true;
|
|
}
|
|
|
|
void ewol::widgetManager::UnInit(void)
|
|
{
|
|
EWOL_DEBUG("==> Un-Init Widget-Manager");
|
|
EWOL_INFO("Realease all FOCUS");
|
|
ewol::widgetManager::FocusSetDefault(NULL);
|
|
ewol::widgetManager::FocusRelease();
|
|
|
|
IsInit = false;
|
|
|
|
int ret = pthread_mutex_destroy(&localMutex);
|
|
EWOL_ASSERT(ret == 0, "Error destroying Mutex ...");
|
|
}
|
|
|
|
void ewol::widgetManager::Rm(ewol::Widget * newWidget)
|
|
{
|
|
FocusRemoveIfRemove(newWidget);
|
|
}
|
|
|
|
/* *************************************************************************
|
|
* Focus Area :
|
|
* *************************************************************************/
|
|
|
|
void ewol::widgetManager::FocusKeep(ewol::Widget * newWidget)
|
|
{
|
|
if (NULL == newWidget) {
|
|
// nothing to do ...
|
|
return;
|
|
}
|
|
if (false == newWidget->CanHaveFocus()) {
|
|
EWOL_VERBOSE("Widget can not have Focus, id=" << ewol::widgetManager::Get(newWidget));
|
|
return;
|
|
}
|
|
if (newWidget == m_focusWidgetCurrent) {
|
|
// nothing to do ...
|
|
return;
|
|
}
|
|
if (NULL != m_focusWidgetCurrent) {
|
|
EWOL_DEBUG("Rm Focus on WidgetID=" << m_focusWidgetCurrent->GetId() );
|
|
m_focusWidgetCurrent->RmFocus();
|
|
}
|
|
m_focusWidgetCurrent = newWidget;
|
|
if (NULL != m_focusWidgetCurrent) {
|
|
EWOL_DEBUG("Set Focus on WidgetID=" << m_focusWidgetCurrent->GetId() );
|
|
m_focusWidgetCurrent->SetFocus();
|
|
}
|
|
}
|
|
|
|
|
|
void ewol::widgetManager::FocusSetDefault(ewol::Widget * newWidget)
|
|
{
|
|
if (NULL != newWidget && false == newWidget->CanHaveFocus()) {
|
|
EWOL_VERBOSE("Widget can not have Focus, id=" << newWidget->GetId() );
|
|
return;
|
|
}
|
|
if (m_focusWidgetDefault == m_focusWidgetCurrent) {
|
|
if (NULL != m_focusWidgetCurrent) {
|
|
EWOL_DEBUG("Rm Focus on WidgetID=" << m_focusWidgetCurrent->GetId() );
|
|
m_focusWidgetCurrent->RmFocus();
|
|
}
|
|
m_focusWidgetCurrent = newWidget;
|
|
if (NULL != m_focusWidgetCurrent) {
|
|
EWOL_DEBUG("Set Focus on WidgetID=" << m_focusWidgetCurrent->GetId() );
|
|
m_focusWidgetCurrent->SetFocus();
|
|
}
|
|
}
|
|
m_focusWidgetDefault = newWidget;
|
|
}
|
|
|
|
|
|
void ewol::widgetManager::FocusRelease(void)
|
|
{
|
|
if (m_focusWidgetDefault == m_focusWidgetCurrent) {
|
|
// nothink to do ...
|
|
return;
|
|
}
|
|
if (NULL != m_focusWidgetCurrent) {
|
|
EWOL_DEBUG("Rm Focus on WidgetID=" << m_focusWidgetCurrent->GetId() );
|
|
m_focusWidgetCurrent->RmFocus();
|
|
}
|
|
m_focusWidgetCurrent = m_focusWidgetDefault;
|
|
if (NULL != m_focusWidgetCurrent) {
|
|
EWOL_DEBUG("Set Focus on WidgetID=" << m_focusWidgetCurrent->GetId() );
|
|
m_focusWidgetCurrent->SetFocus();
|
|
}
|
|
}
|
|
|
|
|
|
ewol::Widget * ewol::widgetManager::FocusGet(void)
|
|
{
|
|
return m_focusWidgetCurrent;
|
|
}
|
|
|
|
void ewol::widgetManager::FocusRemoveIfRemove(ewol::Widget * newWidget)
|
|
{
|
|
if (m_focusWidgetCurrent == newWidget) {
|
|
EWOL_WARNING("Release Focus when remove widget");
|
|
FocusRelease();
|
|
}
|
|
if (m_focusWidgetDefault == newWidget) {
|
|
EWOL_WARNING("Release default Focus when remove widget");
|
|
FocusSetDefault(NULL);
|
|
}
|
|
}
|
|
|
|
|
|
static bool needRedraw = true;
|
|
|
|
void ewol::widgetManager::DoubleBufferLock(void)
|
|
{
|
|
if (IsInit) {
|
|
pthread_mutex_lock(&localMutex);
|
|
}
|
|
}
|
|
|
|
void ewol::widgetManager::SetDoubleBufferNeedDraw(void)
|
|
{
|
|
needRedraw = true;
|
|
}
|
|
|
|
bool ewol::widgetManager::GetDoubleBufferNeedDraw(void)
|
|
{
|
|
if (true == needRedraw) {
|
|
needRedraw = false;
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void ewol::widgetManager::DoubleBufferUnLock(void)
|
|
{
|
|
if (IsInit) {
|
|
pthread_mutex_unlock(&localMutex);
|
|
}
|
|
}
|
|
|
|
|