KiCad PCB EDA Suite
Loading...
Searching...
No Matches
3d_cache_dialogs.cpp
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) 2015-2016 Cirilo Bernardo <[email protected]>
5 * Copyright (C) 2020-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
26
27#include "3d_info.h"
28#include "3d_cache.h"
29#include "3d_cache_dialogs.h"
31
32
33bool S3D::Select3DModel( wxWindow* aParent, S3D_CACHE* aCache, wxString& prevModelSelectDir,
34 int& prevModelWildcard, FP_3DMODEL* aModel )
35{
36 if( nullptr == aModel )
37 return false;
38
39 DIALOG_SELECT_3DMODEL dm( aParent, aCache, aModel, prevModelSelectDir, prevModelWildcard );
40
41 // Use QuasiModal so that Configure3DPaths (and its help window) will work
42 return dm.ShowQuasiModal() == wxID_OK;
43}
44
45
46bool S3D::Configure3DPaths( wxWindow* aParent, FILENAME_RESOLVER* aResolver )
47{
48 DIALOG_CONFIGURE_PATHS dlg( aParent );
49
50 // Use QuasiModal so that HTML help window will work
51 return( dlg.ShowQuasiModal() == wxID_OK );
52}
defines the basic data associated with a single 3D model.
int ShowQuasiModal()
Provide an extensible class to resolve 3D model paths.
Cache for storing the 3D shapes.
Definition: 3d_cache.h:53
bool Configure3DPaths(wxWindow *aParent, FILENAME_RESOLVER *aResolver)
bool Select3DModel(wxWindow *aParent, S3D_CACHE *aCache, wxString &prevModelSelectDir, int &prevModelWildcard, FP_3DMODEL *aModel)