KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_select_3d_model.h
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 2016 Cirilo Bernardo <[email protected]>
5 * Copyright (C) 2018-2021 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, you may find one here:
19 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
20 * or you may search the http://www.gnu.org website for the version 2 license,
21 * or you may write to the Free Software Foundation, Inc.,
22 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
23 */
24
25#ifndef DIALOG_SELECT_3DMODEL_H
26#define DIALOG_SELECT_3DMODEL_H
27
29
30class FP_3DMODEL;
31class S3D_CACHE;
34
36{
37public:
38 DIALOG_SELECT_3DMODEL( wxWindow* aParent, S3D_CACHE* aCacheManager, FP_3DMODEL* aModelItem,
39 wxString& prevModelSelectDir, int& prevModelWildcard );
40
41 bool TransferDataFromWindow() override;
42 void OnSelectionChanged( wxCommandEvent& event )override;
43 void OnFileActivated( wxCommandEvent& event )override;
44 void SetRootDir( wxCommandEvent& event ) override;
45 void Cfg3DPaths( wxCommandEvent& event ) override;
46
47private:
48 void updateDirChoiceList( void );
49
50 FP_3DMODEL* m_model; // data for the selected model
51 S3D_CACHE* m_cache; // cache manager
52 FILENAME_RESOLVER* m_resolver; // 3D filename resolver
53
54 wxString& m_previousDir;
55
57};
58
59#endif // DIALOG_SELECT_3DMODEL_H
void OnSelectionChanged(wxCommandEvent &event) override
void SetRootDir(wxCommandEvent &event) override
FILENAME_RESOLVER * m_resolver
EDA_3D_MODEL_VIEWER * m_modelViewer
void OnFileActivated(wxCommandEvent &event) override
void Cfg3DPaths(wxCommandEvent &event) override
bool TransferDataFromWindow() override
Class DIALOG_SELECT_3D_MODEL_BASE.
Implement a canvas based on a wxGLCanvas.
Provide an extensible class to resolve 3D model paths.
Cache for storing the 3D shapes.
Definition: 3d_cache.h:53