#ifndef slic3r_GUI_PopupWindow_hpp_ #define slic3r_GUI_PopupWindow_hpp_ #include class PopupWindow : public wxPopupTransientWindow { public: PopupWindow() {} ~PopupWindow(); PopupWindow(wxWindow *parent, int style = wxBORDER_NONE) { Create(parent, style); } bool Create(wxWindow *parent, int flags = wxBORDER_NONE); private: #ifdef __WXGTK__ void topWindowActiavate(wxActivateEvent &event); #endif }; #endif // !slic3r_GUI_PopupWindow_hpp_