mirror of
https://github.com/godotengine/godot.git
synced 2025-12-07 22:00:10 +00:00
Bring that Whole New World to the Old Continent too
Applies the clang-format style to the 2.1 branch as done for master in
5dbf1809c6.
This commit is contained in:
parent
1d418afe86
commit
f8db8a3faa
1308 changed files with 147754 additions and 174357 deletions
|
|
@ -29,34 +29,35 @@
|
|||
#ifndef RUN_SETTINGS_DIALOG_H
|
||||
#define RUN_SETTINGS_DIALOG_H
|
||||
|
||||
#include "scene/gui/dialogs.h"
|
||||
#include "scene/gui/line_edit.h"
|
||||
#include "scene/gui/check_button.h"
|
||||
#include "scene/gui/dialogs.h"
|
||||
#include "scene/gui/file_dialog.h"
|
||||
#include "scene/gui/line_edit.h"
|
||||
|
||||
class RunSettingsDialog : public AcceptDialog {
|
||||
|
||||
OBJ_TYPE( RunSettingsDialog, AcceptDialog);
|
||||
OBJ_TYPE(RunSettingsDialog, AcceptDialog);
|
||||
|
||||
public:
|
||||
enum RunMode {
|
||||
RUN_LOCAL_SCENE,
|
||||
RUN_MAIN_SCENE,
|
||||
};
|
||||
private:
|
||||
|
||||
private:
|
||||
OptionButton *run_mode;
|
||||
LineEdit *arguments;
|
||||
|
||||
void _run_mode_changed(int idx);
|
||||
|
||||
protected:
|
||||
|
||||
static void _bind_methods();
|
||||
public:
|
||||
|
||||
public:
|
||||
int get_run_mode() const;
|
||||
void set_run_mode(int p_run_mode);
|
||||
|
||||
void set_custom_arguments(const String& p_arguments);
|
||||
void set_custom_arguments(const String &p_arguments);
|
||||
String get_custom_arguments() const;
|
||||
|
||||
void popup_run_settings();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue