SaveDialogPrivate.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef _SAVE_DIALOG_PRIVATE_HH_
18 #define _SAVE_DIALOG_PRIVATE_HH_
19 
20 #include <sdf/sdf.hh>
21 
22 #include "gazebo/gui/qt.h"
23 
24 namespace gazebo
25 {
26  namespace gui
27  {
31  {
33  public: QWidget *advancedOptionsWidget;
34 
36  public: QLabel *messageLabel;
37 
39  public: QLineEdit* modelNameLineEdit;
40 
42  public: QLineEdit* modelVersionLineEdit;
43 
45  public: QLineEdit* modelDescriptionLineEdit;
46 
48  public: QLineEdit* modelAuthorNameLineEdit;
49 
51  public: QLineEdit* modelAuthorEmailLineEdit;
52 
54  public: QLineEdit* modelLocationLineEdit;
55 
57  public: TiXmlDocument modelConfig;
58  };
59  }
60 }
61 #endif
TiXmlDocument modelConfig
The model's config file.
Definition: SaveDialogPrivate.hh:57
QLineEdit * modelLocationLineEdit
Editable line that holds the model's save location.
Definition: SaveDialogPrivate.hh:54
QLineEdit * modelAuthorNameLineEdit
Editable line that holds the model's author's name.
Definition: SaveDialogPrivate.hh:48
QLineEdit * modelAuthorEmailLineEdit
Editable line that holds the model's author's email.
Definition: SaveDialogPrivate.hh:51
QLabel * messageLabel
Label appearing at the top of the dialog box.
Definition: SaveDialogPrivate.hh:36
QLineEdit * modelNameLineEdit
Editable line that holds the model name.
Definition: SaveDialogPrivate.hh:39
QLineEdit * modelDescriptionLineEdit
Editable line that holds the model's description.
Definition: SaveDialogPrivate.hh:45
Private data for the SaveDialog class.
Definition: SaveDialogPrivate.hh:30
QLineEdit * modelVersionLineEdit
Editable line that holds the model's version.
Definition: SaveDialogPrivate.hh:42
QWidget * advancedOptionsWidget
Widget container to hold advanced model saving options.
Definition: SaveDialogPrivate.hh:33