[Project64] Remove CNotification::MakeWindowOnTop

This commit is contained in:
zilmar 2015-11-16 07:07:02 +11:00
parent 1a4166a1de
commit f78b812d66
2 changed files with 36 additions and 48 deletions

View File

@ -221,17 +221,6 @@ void CNotification::BringToTop(void)
#endif #endif
} }
void CNotification::MakeWindowOnTop(bool OnTop)
{
if (m_hWnd == NULL) { return; }
#if defined(WINDOWS_UI)
m_hWnd->MakeWindowOnTop(OnTop);
#else
g_Notify->BreakPoint(__FILEW__, __LINE__);
#endif
}
void CNotification::ChangeFullScreen(void) const void CNotification::ChangeFullScreen(void) const
{ {
if (m_hWnd == NULL) { return; } if (m_hWnd == NULL) { return; }

View File

@ -18,12 +18,12 @@ class CNotification :
CNotificationSettings CNotificationSettings
{ {
public: public:
CNotification ( void ); CNotification(void);
void AppInitDone ( void ); void AppInitDone(void);
// Make sure we are not in full screen // Make sure we are not in full screen
void WindowMode ( void ) const; void WindowMode(void) const;
//Error Messages //Error Messages
virtual void DisplayError(const wchar_t * Message) const; virtual void DisplayError(const wchar_t * Message) const;
@ -39,21 +39,20 @@ public:
virtual void DisplayMessage2(const wchar_t * Message) const; virtual void DisplayMessage2(const wchar_t * Message) const;
virtual void BreakPoint(const wchar_t * FileName, const int LineNumber); virtual void BreakPoint(const wchar_t * FileName, const int LineNumber);
void SetWindowCaption ( const wchar_t * Caption ); void SetWindowCaption(const wchar_t * Caption);
//Remember roms loaded and Rom Dir selected //Remember roms loaded and Rom Dir selected
void AddRecentDir ( const char * RomDir ); void AddRecentDir(const char * RomDir);
//Gui for responses //Gui for responses
void SetMainWindow ( CMainGui * Gui ); void SetMainWindow(CMainGui * Gui);
void RefreshMenu ( void ); void RefreshMenu(void);
void HideRomBrowser ( void ); void HideRomBrowser(void);
void ShowRomBrowser ( void ); void ShowRomBrowser(void);
void MakeWindowOnTop ( bool OnTop ); void BringToTop(void);
void BringToTop ( void ); bool ProcessGuiMessages(void) const;
bool ProcessGuiMessages ( void ) const; void ChangeFullScreen(void) const;
void ChangeFullScreen ( void ) const; void SetGfxPlugin(CGfxPlugin * Plugin);
void SetGfxPlugin ( CGfxPlugin * Plugin );
private: private:
CNotification(const CNotification&); // Disable copy constructor CNotification(const CNotification&); // Disable copy constructor
@ -65,4 +64,4 @@ private:
mutable time_t m_NextMsg; mutable time_t m_NextMsg;
}; };
CNotification & Notify ( void ); CNotification & Notify(void);