-
Notifications
You must be signed in to change notification settings - Fork 5
/
robotSimGoTo.H
49 lines (38 loc) · 1.12 KB
/
robotSimGoTo.H
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#ifndef __APOLO__ROBOT_SIM_GOTO__H
#define __APOLO__ROBOT_SIM_GOTO__H
#include "bitmaps/goto.xpm"
#include "apoloPanel.h"
#include "nodeTree.h"
#include "manageWindows.h"
#include "tree.h"
#include <vector>
#include <wx/wx.h>
#include "genericSlider.h"
class ManageWindows;
class RobotSimGoTo : public wxFrame
{
public:
RobotSimGoTo(wxWindow* parent, wxWindowID id,const wxString& title_frame, NodeTree* itemData,NodeTree * parentData=NULL);
void OnValueChanges();
wxStaticText* getTitle(){return title;}
NodeTree* getItemNode () {return itemnode;}
void setManageWindow (ManageWindows* mg);
void OnClose(wxCloseEvent& event);
void Delete();
void OnButton(wxCommandEvent& event);
void checkSelections();
bool checkEmptyStringBoxes();
private:
bool noDelete;
bool coordAbsolute, cartesian;
wxStaticText* title;
NodeTree* itemnode;
ManageWindows* managewindow;
wxTextCtrl* coorX,* coorY,* coorZ, *roll, *pitch, *yaw;
wxStaticText* trajectSelected;
wxRadioBox* move, *refsys, *typemov, *typetraj;
vector <GenericSlider *> listJoints;
GenericSlider* joint;
DECLARE_EVENT_TABLE();
};
#endif //__APOLO__ROBOT_SIM_GOTO__H