Initial commit.

This commit is contained in:
Saleem Edah-Tally
2025-06-28 17:40:42 +02:00
commit ef6f25ef27
52 changed files with 8156 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
* 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 */