You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.9 KiB

  1. /*
  2. * This program source code file is part of KICAD, a free EDA CAD application.
  3. *
  4. * Copyright (C) 2016 CERN
  5. * Copyright The KiCad Developers, see AUTHORS.txt for contributors.
  6. *
  7. * @author Maciej Suminski <maciej.suminski@cern.ch>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, you may find one here:
  21. * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
  22. * or you may search the http://www.gnu.org website for the version 2 license,
  23. * or you may write to the Free Software Foundation, Inc.,
  24. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  25. */
  26. #ifndef GRAPHICS_IMPORT_MGR_H
  27. #define GRAPHICS_IMPORT_MGR_H
  28. #include <memory>
  29. #include <vector>
  30. class GRAPHICS_IMPORT_PLUGIN;
  31. class wxString;
  32. /**
  33. * Manage vector graphics importers.
  34. */
  35. class GRAPHICS_IMPORT_MGR
  36. {
  37. public:
  38. /// List of handled file types.
  39. enum GFX_FILE_T
  40. {
  41. DXF,
  42. SVG
  43. };
  44. /// Vector containing all GFX_FILE_T values that can be imported.
  45. std::vector<GFX_FILE_T> GetImportableFileTypes() const
  46. {
  47. return { DXF, SVG };
  48. }
  49. /// Return a plugin that handles a specific file extension.
  50. std::unique_ptr<GRAPHICS_IMPORT_PLUGIN> GetPluginByExt( const wxString& aExtension ) const;
  51. /// Return a plugin instance for a specific file type.
  52. std::unique_ptr<GRAPHICS_IMPORT_PLUGIN> GetPlugin( GFX_FILE_T aType ) const;
  53. };
  54. #endif /* GRAPHICS_IMPORT_MGR_H */