Changed: #1034 Implement CCustomMouse for Linux
This commit is contained in:
parent
9a9ea61516
commit
53942e6dca
3 changed files with 0 additions and 7 deletions
|
@ -48,7 +48,6 @@
|
||||||
#include "interface_v3/action_handler.h"
|
#include "interface_v3/action_handler.h"
|
||||||
#include "sound_manager.h"
|
#include "sound_manager.h"
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "interface_v3/custom_mouse.h"
|
|
||||||
#include "login.h"
|
#include "login.h"
|
||||||
#include "login_progress_post_thread.h"
|
#include "login_progress_post_thread.h"
|
||||||
|
|
||||||
|
@ -287,12 +286,10 @@ void setOutGameFullScreen()
|
||||||
/*
|
/*
|
||||||
InitMouseWithCursor (true);
|
InitMouseWithCursor (true);
|
||||||
Driver->showCursor(false);
|
Driver->showCursor(false);
|
||||||
CustomMouse.updateCursor(true); // force a rebuild (may be due to fullscreen, but hotspot broken else ...)
|
|
||||||
Driver->showCursor(true);
|
Driver->showCursor(true);
|
||||||
Driver->clearBuffers(CRGBA::Black);
|
Driver->clearBuffers(CRGBA::Black);
|
||||||
Driver->swapBuffers();
|
Driver->swapBuffers();
|
||||||
Driver->showCursor(false);
|
Driver->showCursor(false);
|
||||||
CustomMouse.updateCursor(true); // force a rebuild (may be due to fullscreen, but hotspot broken else ...)
|
|
||||||
Driver->showCursor(true);
|
Driver->showCursor(true);
|
||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,6 @@
|
||||||
#include "time_client.h"
|
#include "time_client.h"
|
||||||
#include "input.h"
|
#include "input.h"
|
||||||
#include "interface_v3/interface_manager.h"
|
#include "interface_v3/interface_manager.h"
|
||||||
#include "interface_v3/custom_mouse.h"
|
|
||||||
|
|
||||||
|
|
||||||
using namespace NLMISC;
|
using namespace NLMISC;
|
||||||
|
|
|
@ -30,7 +30,6 @@
|
||||||
#include "release.h"
|
#include "release.h"
|
||||||
#include "net_manager.h"
|
#include "net_manager.h"
|
||||||
#include "client_cfg.h"
|
#include "client_cfg.h"
|
||||||
#include "interface_v3/custom_mouse.h"
|
|
||||||
#include "bg_downloader_access.h"
|
#include "bg_downloader_access.h"
|
||||||
#include "nel/misc/system_utils.h"
|
#include "nel/misc/system_utils.h"
|
||||||
|
|
||||||
|
@ -161,7 +160,6 @@ void drawLoadingBitmap (float progress)
|
||||||
|
|
||||||
void CProgress::internalProgress (float value)
|
void CProgress::internalProgress (float value)
|
||||||
{
|
{
|
||||||
//CustomMouse.updateCursor();
|
|
||||||
// Get croped value
|
// Get croped value
|
||||||
value = getCropedValue (value);
|
value = getCropedValue (value);
|
||||||
|
|
||||||
|
@ -396,7 +394,6 @@ void CProgress::internalProgress (float value)
|
||||||
// \todo GUIGUI : Remove this when possible.
|
// \todo GUIGUI : Remove this when possible.
|
||||||
NetMngr.update();
|
NetMngr.update();
|
||||||
CCDBNodeBranch::flushObserversCalls();
|
CCDBNodeBranch::flushObserversCalls();
|
||||||
//CustomMouse.updateCursor();
|
|
||||||
|
|
||||||
// update system dependent progress bar
|
// update system dependent progress bar
|
||||||
static uint previousValue = 0;
|
static uint previousValue = 0;
|
||||||
|
|
Loading…
Reference in a new issue