17 #include <core_ui/properties_widget.h> 18 #include <third_party/box2d/box2d.h> 30 class Box2dSandboxWindow;
40 static constexpr
int kDefaultTimerSpeed = 20;
42 const QIcon kPlayIcon{
":/resources/mc_play.png" };
43 const QIcon kPauseIcon{
":/resources/mc_pause.png" };
47 enum class State { None, Running, Paused, Failed, Completed };
54 void addBottomPane(QWidget* widget);
56 void setDebugRendering(
bool enable);
57 void setRenderLights(
bool enable);
60 void focusInEvent(QFocusEvent* event)
override;
66 QString stateDescription()
const;
69 virtual void newScene() = 0;
72 virtual void singleStep() = 0;
75 virtual void updateUI() = 0;
78 void setWorld(b2World* world,
const QRectF& viewport);
90 void stop(State state);
93 Box2dWidget* box2dWidget()
const;
99 void on_play_pause_clicked();
100 void on_single_step_clicked();
101 void on_restart_clicked();
102 void on_simulation_speed_valueChanged(
int value);
103 void on_debug_rendering_toggled(
bool checked);
104 void on_render_lights_toggled(
bool checked);
107 Ui::Box2dSandboxWindow* ui =
nullptr;
109 State state_ = State::None;
Definition: evolution_window.h:22
State state() const
Current state.
Definition: box2d_sandbox_window.h:63
Custom box2d scene rendering & input processing.
Definition: box2d_widget.h:27
Definition: accelerometer_widget.cpp:23
State
Sandbox state.
Definition: box2d_sandbox_window.h:47
A reusable sandbox window for domains based on Box2D physics simulations.
Definition: box2d_sandbox_window.h:37