| 42 | static const ProjectWindow *Find( const AudacityProject *pProject ); |
| 43 | |
| 44 | explicit ProjectWindow( |
| 45 | wxWindow * parent, wxWindowID id, |
| 46 | const wxPoint & pos, const wxSize &size, |
| 47 | AudacityProject &project ); |
| 48 | ~ProjectWindow() override; |
| 49 | |
| 50 | // Next available ID for sub-windows |
| 51 | int NextWindowID(); |
| 52 | |
| 53 | bool IsActive() override; |
| 54 | bool IsIconized() const override; |
| 55 | |
| 56 | bool IsBeingDeleted() const { return mIsDeleting; } |
| 57 | void SetIsBeingDeleted() { mIsDeleting = true; } |
| 58 | |
| 59 | /** |