]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - contrib/meshtex/GetInfoDialog.h
Merge branch 'NateEag-master-patch-12920' into 'master'
[xonotic/netradiant.git] / contrib / meshtex / GetInfoDialog.h
1 /**
2  * @file GetInfoDialog.h
3  * Declares the GetInfoDialog class.
4  * @ingroup meshtex-ui
5  */
6
7 /*
8  * Copyright 2012 Joel Baxter
9  *
10  * This file is part of MeshTex.
11  *
12  * MeshTex is free software: you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation, either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * MeshTex is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with MeshTex.  If not, see <http://www.gnu.org/licenses/>.
24  */
25
26 #if !defined(INCLUDED_GETINFODIALOG_H)
27 #define INCLUDED_GETINFODIALOG_H
28
29 #include "GenericDialog.h"
30 #include "SetScaleDialog.h"
31 #include "MeshVisitor.h"
32
33 #include "generic/referencecounted.h"
34
35 /**
36  * Subclass of GenericDialog that implements the window summoned by selecting
37  * the Get Info menu entry. This window allows the user to query information
38  * about selected meshes and optionally transfer some of that information to
39  * the Set S/T Scale dialog.
40  * 
41  * @image html getinfo.png
42  *
43  * @ingroup meshtex-ui
44  */
45 class GetInfoDialog : public GenericDialog
46 {
47 private: // private types
48
49    /**
50     * Visitor for interrogating a mesh.
51     */
52    class GetInfoVisitor : public MeshVisitor
53    {
54    public:
55       GetInfoVisitor(const int *refRow,
56                      const int *refCol,
57                      const MeshEntity::TexInfoCallback *rowTexInfoCallback,
58                      const MeshEntity::TexInfoCallback *colTexInfoCallback);
59    private:
60       bool Execute(MeshEntity& meshEntity) const;
61    private:
62       const int *_refRow;
63       const int *_refCol;
64       const MeshEntity::TexInfoCallback *_rowTexInfoCallback;
65       const MeshEntity::TexInfoCallback *_colTexInfoCallback;
66    };
67
68 public: // public methods
69
70    GetInfoDialog(const std::string& key,
71                  SmartPointer<SetScaleDialog>& setScaleDialog);
72    ~GetInfoDialog();
73    bool Apply();
74
75 private: // private member vars
76
77    /**
78     * Handle on the Set S/T Scale dialog.
79     */
80    SmartPointer<SetScaleDialog> _setScaleDialog;
81
82    /**
83     * Callback to process row texture scale information from a query.
84     */
85    MeshEntity::TexInfoCallback _rowTexInfoCallback;
86
87    /**
88     * Callback to process column texture scale information from a query.
89     */
90    MeshEntity::TexInfoCallback _colTexInfoCallback;
91
92    /**
93     * Action-less mesh visitor used purely to count the number of selected mesh
94     * entities.
95     */
96    SmartPointer<MeshVisitor> _nullVisitor;
97 };
98
99 #endif // #if !defined(INCLUDED_GETINFODIALOG_H)