[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
}
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
{
if (m_hWnd == NULL) { return; }

View File

@ -18,12 +18,12 @@ class CNotification :
CNotificationSettings
{
public:
CNotification ( void );
CNotification(void);
void AppInitDone ( void );
void AppInitDone(void);
// Make sure we are not in full screen
void WindowMode ( void ) const;
void WindowMode(void) const;
//Error Messages
virtual void DisplayError(const wchar_t * Message) const;
@ -39,21 +39,20 @@ public:
virtual void DisplayMessage2(const wchar_t * Message) const;
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
void AddRecentDir ( const char * RomDir );
void AddRecentDir(const char * RomDir);
//Gui for responses
void SetMainWindow ( CMainGui * Gui );
void RefreshMenu ( void );
void HideRomBrowser ( void );
void ShowRomBrowser ( void );
void MakeWindowOnTop ( bool OnTop );
void BringToTop ( void );
bool ProcessGuiMessages ( void ) const;
void ChangeFullScreen ( void ) const;
void SetGfxPlugin ( CGfxPlugin * Plugin );
void SetMainWindow(CMainGui * Gui);
void RefreshMenu(void);
void HideRomBrowser(void);
void ShowRomBrowser(void);
void BringToTop(void);
bool ProcessGuiMessages(void) const;
void ChangeFullScreen(void) const;
void SetGfxPlugin(CGfxPlugin * Plugin);
private:
CNotification(const CNotification&); // Disable copy constructor
@ -65,4 +64,4 @@ private:
mutable time_t m_NextMsg;
};
CNotification & Notify ( void );
CNotification & Notify(void);