aboutsummaryrefslogtreecommitdiff
path: root/src/game_tab/editor/LiveEngineDialogFB.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_tab/editor/LiveEngineDialogFB.cpp')
-rw-r--r--src/game_tab/editor/LiveEngineDialogFB.cpp35
1 files changed, 33 insertions, 2 deletions
diff --git a/src/game_tab/editor/LiveEngineDialogFB.cpp b/src/game_tab/editor/LiveEngineDialogFB.cpp
index 11234dd..52624e3 100644
--- a/src/game_tab/editor/LiveEngineDialogFB.cpp
+++ b/src/game_tab/editor/LiveEngineDialogFB.cpp
@@ -30,12 +30,43 @@ LiveEngineDialogFB::LiveEngineDialogFB( wxWindow* parent, wxWindowID id, const w
current_engine_sizer->Add( 0, 0, 1, wxEXPAND, 5 );
- engine_pause_button = new wxButton( this, LIVE_ENGINE_PAUSE_BUTTON, wxT("Pause"), wxDefaultPosition, wxDefaultSize, 0 );
- current_engine_sizer->Add( engine_pause_button, 0, wxALL, 5 );
+ engine_stop_button = new wxButton( this, LIVE_ENGINE_PAUSE_BUTTON, wxT("Stop"), wxDefaultPosition, wxDefaultSize, 0 );
+ current_engine_sizer->Add( engine_stop_button, 0, wxALL, 5 );
main_sizer->Add( current_engine_sizer, 0, wxEXPAND, 5 );
+ wxGridSizer* infos_sizer;
+ infos_sizer = new wxGridSizer( 0, 6, 0, 0 );
+
+ multipv_label = new wxStaticText( this, wxID_ANY, wxT("MultiPV:"), wxDefaultPosition, wxDefaultSize, 0 );
+ multipv_label->Wrap( -1 );
+ infos_sizer->Add( multipv_label, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
+
+ multipv = new wxStaticText( this, wxID_ANY, wxT("?"), wxDefaultPosition, wxDefaultSize, 0 );
+ multipv->Wrap( -1 );
+ infos_sizer->Add( multipv, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
+
+ threads_label = new wxStaticText( this, wxID_ANY, wxT("Threads:"), wxDefaultPosition, wxDefaultSize, 0 );
+ threads_label->Wrap( -1 );
+ infos_sizer->Add( threads_label, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
+
+ threads = new wxStaticText( this, wxID_ANY, wxT("?"), wxDefaultPosition, wxDefaultSize, 0 );
+ threads->Wrap( -1 );
+ infos_sizer->Add( threads, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
+
+ m_staticText13 = new wxStaticText( this, wxID_ANY, wxT("Depth:"), wxDefaultPosition, wxDefaultSize, 0 );
+ m_staticText13->Wrap( -1 );
+ infos_sizer->Add( m_staticText13, 0, wxALIGN_CENTER_VERTICAL|wxALL, 5 );
+
+ depth = new wxSpinCtrl( this, wxID_ANY, wxT("30"), wxDefaultPosition, wxDefaultSize, wxSP_ARROW_KEYS, 1, 10000, 0 );
+ depth->Enable( false );
+
+ infos_sizer->Add( depth, 0, wxALL, 5 );
+
+
+ main_sizer->Add( infos_sizer, 0, 0, 5 );
+
lines_list = new wxListCtrl( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxLC_REPORT );
main_sizer->Add( lines_list, 1, wxALL|wxEXPAND, 5 );