PlugNotFoundDlg.h 759 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*
  2. * PlugNotFoundDlg.h
  3. * -----------------
  4. * Purpose: Dialog for handling missing plugins
  5. * Notes : (currently none)
  6. * Authors: OpenMPT Devs
  7. * The OpenMPT source code is released under the BSD license. Read LICENSE for more details.
  8. */
  9. #pragma once
  10. #include "openmpt/all/BuildSettings.hpp"
  11. #include "ResizableDialog.h"
  12. #include "CListCtrl.h"
  13. OPENMPT_NAMESPACE_BEGIN
  14. struct VSTPluginLib;
  15. class PlugNotFoundDialog : public ResizableDialog
  16. {
  17. std::vector<VSTPluginLib *> &m_plugins;
  18. CListCtrlEx m_List;
  19. public:
  20. PlugNotFoundDialog(std::vector<VSTPluginLib *> &plugins, CWnd *parent);
  21. void DoDataExchange(CDataExchange *pDX) override;
  22. BOOL OnInitDialog() override;
  23. afx_msg void OnRemove();
  24. DECLARE_MESSAGE_MAP();
  25. };
  26. OPENMPT_NAMESPACE_END