Files
s7/Resources/Utilities/PopupTransientWindow.h
Saleem Edah-Tally ef6f25ef27 Initial commit.
2025-06-28 17:40:42 +02:00

34 lines
730 B
C++

/*
* File: PopupTransientWindow.h
* Author: Saleem EDAH-TALLY - nmset@yandex.com
* License: CeCILL-C
* Copyright Saleem EDAH-TALLY - © 2017
*
* Created on 3 mars 2017, 19:45
*/
#ifndef POPUPTRANSIENTWINDOW_H
#define POPUPTRANSIENTWINDOW_H
#include <wx/wx.h>
#include <wx/popupwin.h>
/** No further functionality provided here on top of wxPopupTransientWindow.\n
* Just calls Destroy() on dismiss.
*/
class PopupTransientWindow : public wxPopupTransientWindow
{
DECLARE_CLASS ( PopupTransientWindow )
public:
PopupTransientWindow();
PopupTransientWindow ( wxWindow *parent, int flags = wxBORDER_NONE );
virtual ~PopupTransientWindow();
void Dismiss() override;
private:
};
#endif /* POPUPTRANSIENTWINDOW_H */