text stringlengths 9 39.2M | dir stringlengths 26 295 | lang stringclasses 185
values | created_date timestamp[us] | updated_date timestamp[us] | repo_name stringlengths 1 97 | repo_full_name stringlengths 7 106 | star int64 1k 183k | len_tokens int64 1 13.8M |
|---|---|---|---|---|---|---|---|---|
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#if ENGINE_MINOR_VERSION <= 17
#include "Runtime/Core/Public/GenericPlatform/GenericApplication.h"
#else
#include "Runtime/ApplicationCore/Public/GenericPlatform/GenericApplication.h"
#endif
typedef struct
{
PyObject_HEAD
/* Type-specific fields go here.... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFModifierKeysState.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 127 |
```c++
#include "UEPyFSlateIcon.h"
static PyObject *py_ue_fslate_icon_get_icon(ue_PyFSlateIcon *self, PyObject * args)
{
return py_ue_new_owned_uscriptstruct(FSlateBrush::StaticStruct(), (uint8*)self->icon.GetIcon());
}
static PyMethodDef ue_PyFSlateIcon_methods[] = {
{ "get_icon", (PyCFunction)py_ue_fslate_icon_g... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFSlateIcon.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 851 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#if WITH_EDITOR
#include "UEPySCompoundWidget.h"
extern PyTypeObject ue_PySCompoundWidgetType;
typedef struct {
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PyIDetailsView;
void ue_python_init_idetails_view(PyObjec... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyIDetailsView.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 96 |
```objective-c
#pragma once
#include "UEPySLeafWidget.h"
#include "Runtime/Slate/Public/Widgets/Text/STextBlock.h"
extern PyTypeObject ue_PySTextBlockType;
typedef struct
{
ue_PySLeafWidget s_leaf_widget;
/* Type-specific fields go here. */
} ue_PySTextBlock;
void ue_python_init_stext_block(PyObject *);
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySTextBlock.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 82 |
```c++
#include "UEPySDropTarget.h"
#if WITH_EDITOR
static PyMethodDef ue_PySDropTarget_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySDropTargetType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SDropTarget", /* tp_name */
sizeof(ue_PySDropTarget), /* tp_basicsize */
0, ... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySDropTarget.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 419 |
```objective-c
#pragma once
#include "UEPySLeafWidget.h"
#include "Runtime/Slate/Public/Widgets/Colors/SColorBlock.h"
extern PyTypeObject ue_PySColorBlockType;
typedef struct {
ue_PySLeafWidget s_leaf_widget;
/* Type-specific fields go here. */
} ue_PySColorBlock;
void ue_python_init_scolor_block(PyObject *);
`... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySColorBlock.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 80 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "Runtime/Slate/Public/Framework/Docking/TabManager.h"
typedef struct {
PyObject_HEAD
/* Type-specific fields go here. */
FTabSpawnerEntry *spawner_entry;
} ue_PyFTabSpawnerEntry;
PyObject *py_ue_new_ftab_spawner_entry(FTabSpawnerEntry *);
void... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFTabSpawnerEntry.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 91 |
```objective-c
#pragma once
#include "UEPySBorder.h"
#include "Runtime/Slate/Public/Widgets/Input/SEditableTextBox.h"
extern PyTypeObject ue_PySEditableTextBoxType;
typedef struct {
ue_PySBorder s_border;
/* Type-specific fields go here. */
} ue_PySEditableTextBox;
void ue_python_init_seditable_text_box(PyObject... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySEditableTextBox.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 81 |
```c++
#include "UEPySWidget.h"
#include "Runtime/Slate/Public/Framework/Application/SlateApplication.h"
static PyObject *ue_PySWidget_str(ue_PySWidget *self)
{
#if PY_MAJOR_VERSION >= 3
return PyUnicode_FromFormat("<unreal_engine.%s '%p' (slate ref count: %d, py ref count: %d)>",
TCHAR_TO_UTF8(*self->Widget->Ge... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySWidget.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 3,661 |
```c++
#include "UEPySHorizontalBox.h"
static PyObject *py_ue_shorizontal_box_add_slot(ue_PySHorizontalBox *self, PyObject * args, PyObject *kwargs)
{
ue_py_slate_cast(SHorizontalBox);
int32 retCode = [&]() {
ue_py_slate_setup_hack_slot_args(SHorizontalBox, py_SHorizontalBox);
ue_py_slate_farguments_float("fi... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySHorizontalBox.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 724 |
```c++
#include "UEPySPythonWidget.h"
static PyObject *py_ue_spython_widget_set_active(ue_PySPythonWidget *self, PyObject *args)
{
ue_py_slate_cast(SPythonWidget);
PyObject *py_bool = nullptr;
if (!PyArg_ParseTuple(args, "|O:set_active", &py_bool))
{
return nullptr;
}
bool bActive = true;
if (py_bool)
{
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonWidget.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 884 |
```c++
#include "UEPySVerticalBox.h"
static PyObject *py_ue_svertical_box_add_slot(ue_PySVerticalBox *self, PyObject * args, PyObject *kwargs)
{
ue_py_slate_cast(SVerticalBox);
int32 retCode = [&]() {
ue_py_slate_setup_hack_slot_args(SVerticalBox, py_SVerticalBox);
ue_py_slate_farguments_float("fill_height", ... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySVerticalBox.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 724 |
```c++
#include "UEPySListView.h"
static PyMethodDef ue_PySListView_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySListViewType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SListView", /* tp_name */
sizeof(ue_PySListView), /* tp_basicsize */
0, /* tp_itemsize */
0, ... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySListView.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 402 |
```objective-c
#pragma once
#include "UEPySCompoundWidget.h"
#if WITH_EDITOR
#include "Editor/UnrealEd/Public/SEditorViewport.h"
extern PyTypeObject ue_PySEditorViewportType;
typedef struct
{
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PySEditorViewport;
void ue_python_init_... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySEditorViewport.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 88 |
```c++
#include "UEPyFMenuBuilder.h"
#include "Wrappers/UEPyESlateEnums.h"
static PyObject* py_ue_fmenu_builder_begin_section(ue_PyFMenuBuilder* self, PyObject* args)
{
char* name;
char* text;
if (!PyArg_ParseTuple(args, "ss:begin_section", &name, &text))
return nullptr;
self->menu_builder.BeginSection(name, F... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFMenuBuilder.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 2,007 |
```c++
#include "UEPySTableViewBase.h"
static PyObject *py_ue_stable_view_base_set_item_height(ue_PySTableViewBase *self, PyObject * args)
{
ue_py_slate_cast(STableViewBase);
float size;
if (!PyArg_ParseTuple(args, "f:set_item_height", &size))
{
return nullptr;
}
py_STableViewBase->SetItemHeight(size);
P... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySTableViewBase.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 770 |
```objective-c
#pragma once
#include "UEPySListView.h"
extern PyTypeObject ue_PySPythonListViewType;
class SPythonListView : public SListView<TSharedPtr<struct FPythonItem>>
{
public:
~SPythonListView()
{
delete(ItemsSource);
}
void SetHeaderRow(TSharedPtr<SHeaderRow> InHeaderRowWidget);
};
typedef struct
{
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonListView.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 129 |
```c++
#include "UEPyFGeometry.h"
static PyObject *py_ue_fgeometry_get_local_size(ue_PyFGeometry *self, PyObject * args)
{
FVector2D size = self->geometry.GetLocalSize();
return Py_BuildValue("(ff)", size.X, size.Y);
}
static PyObject *py_ue_fgeometry_get_absolute_position(ue_PyFGeometry *self, PyObject * args)
{
#... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFGeometry.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 847 |
```c++
#include "UEPySPanel.h"
static PyMethodDef ue_PySPanel_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySPanelType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SPanel", /* tp_name */
sizeof(ue_PySPanel), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_dea... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPanel.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 400 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySLeafWidget.h"
#if ENGINE_MINOR_VERSION > 21
#include "Runtime/SlateCore/Public/Widgets/Images/SImage.h"
#else
#include "Runtime/Slate/Public/Widgets/Images/SImage.h"
#endif
#include "Runtime/SlateCore/Public/Styling/SlateBrush.h"
extern PyT... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySImage.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 129 |
```c++
#include "UEPySFilePathPicker.h"
#if WITH_EDITOR
#if ENGINE_MINOR_VERSION > 13
static PyMethodDef ue_PySFilePathPicker_methods[] = {
{ NULL } /* Sentinel */
};
DECLARE_UE_PY_SLATE_WIDGET(SFilePathPicker);
static int ue_py_sfile_path_picker_init(ue_PySFilePathPicker *self, PyObject *args, PyObject *kwargs)
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySFilePathPicker.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 416 |
```c++
#include "UEPySCompoundWidget.h"
static PyObject *py_ue_scompound_widget_get_color_and_opacity(ue_PySCompoundWidget *self, PyObject * args)
{
ue_py_slate_cast(SCompoundWidget);
FLinearColor color = py_SCompoundWidget->GetColorAndOpacity();
return py_ue_new_flinearcolor(color);
}
static PyObject *py_ue_sc... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySCompoundWidget.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 672 |
```objective-c
#pragma once
#include "UEPySWidget.h"
#include "Runtime/Slate/Public/Widgets/Text/SMultiLineEditableText.h"
extern PyTypeObject ue_PySMultiLineEditableTextType;
typedef struct
{
ue_PySWidget s_widget;
/* Type-specific fields go here. */
} ue_PySMultiLineEditableText;
void ue_python_init_smulti_lin... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySMultiLineEditableText.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 88 |
```objective-c
#pragma once
#include "UEPyModule.h"
#include "Runtime/SlateCore/Public/Widgets/DeclarativeSyntaxSupport.h"
#if WITH_EDITOR
#include "Editor/WorkspaceMenuStructure/Public/WorkspaceMenuStructureModule.h"
#include "Editor/WorkspaceMenuStructure/Public/WorkspaceMenuStructure.h"
#include "Editor/EditorSt... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySlate.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 4,365 |
```objective-c
#pragma once
#include "UEPyFInputEvent.h"
extern PyTypeObject ue_PyFInputEventType;
typedef struct
{
/* Type-specific fields go here. */
ue_PyFInputEvent f_input;
FCharacterEvent character_event;
} ue_PyFCharacterEvent;
void ue_python_init_fcharacter_event(PyObject *);
PyObject *py_ue_new_fcharac... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFCharacterEvent.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 98 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySCompoundWidget.h"
extern PyTypeObject ue_PySPythonShelfType;
typedef struct {
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PySPythonShelf;
void ue_python_init_spython_shelf(PyObject *);
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonShelf.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 77 |
```objective-c
#pragma once
#include "UEPySBorder.h"
#include "Runtime/Slate/Public/Widgets/Input/SButton.h"
extern PyTypeObject ue_PySButtonType;
typedef struct {
ue_PySBorder s_border;
/* Type-specific fields go here. */
} ue_PySButton;
void ue_python_init_sbutton(PyObject *);
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySButton.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 71 |
```objective-c
#pragma once
#include "UEPySCompoundWidget.h"
#if WITH_EDITOR
#include "Editor/PropertyEditor/Public/PropertyCustomizationHelpers.h"
extern PyTypeObject ue_PySObjectPropertyEntryBoxType;
typedef struct
{
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PySObjectProp... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySObjectPropertyEntryBox.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 93 |
```c++
#include "UEPySCanvas.h"
static PyObject *py_ue_scanvas_clear_children(ue_PySCanvas *self, PyObject * args)
{
ue_py_slate_cast(SCanvas);
py_SCanvas->ClearChildren();
Py_RETURN_NONE;
}
static PyObject *py_ue_scanvas_add_slot(ue_PySCanvas *self, PyObject * args, PyObject *kwargs)
{
ue_py_slate_cast(SCanv... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySCanvas.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,146 |
```c++
#include "UEPySPythonShelf.h"
#if WITH_EDITOR
#if ENGINE_MINOR_VERSION > 14
#include "Editor/ContentBrowser/Public/ContentBrowserModule.h"
#include "Editor/ContentBrowser/Public/IContentBrowserSingleton.h"
#include "Editor/ContentBrowser/Private/SAssetPicker.h"
static PyMethodDef ue_PySPythonShelf_methods... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonShelf.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,507 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySListView.h"
#include "Runtime/Slate/Public/Widgets/Views/STreeView.h"
extern PyTypeObject ue_PySTreeViewType;
typedef struct {
ue_PySListView s_list_view;
/* Type-specific fields go here. */
} ue_PySTreeView;
void ue_python_init_stree_vi... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySTreeView.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 87 |
```c++
#include "UEPySSplitter.h"
static PyObject *py_ue_ssplitter_add_slot(ue_PySSplitter *self, PyObject * args, PyObject *kwargs)
{
ue_py_slate_cast(SSplitter);
PyObject *py_content;
int index = -1;
float size_value = -1;
int sizing_rule = -1;
char *kwlist[] = { (char *)"widget",
(char *)"index",
(char *... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySSplitter.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 957 |
```objective-c
#pragma once
#include "UEPySWidget.h"
#include "Runtime/SlateCore/Public/Widgets/SLeafWidget.h"
extern PyTypeObject ue_PySLeafWidgetType;
typedef struct {
ue_PySWidget s_widget;
/* Type-specific fields go here. */
} ue_PySLeafWidget;
void ue_python_init_sleaf_widget(PyObject *);
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySLeafWidget.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 76 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#if WITH_EDITOR
#include "UEPySCompoundWidget.h"
#include "Editor/UnrealEd/Public/GraphEditor.h"
extern PyTypeObject ue_PySGraphEditorType;
typedef struct {
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PySGraphEditor;... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySGraphEditor.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 92 |
```c++
#include "UEPySGraphPanel.h"
#if WITH_EDITOR
#if ENGINE_MINOR_VERSION > 15
#define sw_graph_panel StaticCastSharedRef<SGraphPanel>(self->s_nodePanel.s_panel.s_widget)
/*
static PyObject *py_ue_sgraph_panel_add_slot(ue_PySGraphPanel* self, PyObject *args, PyObject *kwargs)
{
PyObject *py_content;
int z_orde... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySGraphPanel.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,098 |
```objective-c
#pragma once
#include "UEPySCompoundWidget.h"
#include "UnrealEnginePython.h"
#include "Runtime/Slate/Public/Widgets/Views/STableRow.h"
#include "Runtime/Slate/Public/Widgets/Views/STableViewBase.h"
#include "Runtime/Slate/Public/Widgets/Views/SListView.h"
extern PyTypeObject ue_PySCompoundWidgetType;
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonMultiColumnTableRow.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 832 |
```objective-c
#pragma once
#include "UEPyFInputEvent.h"
extern PyTypeObject ue_PyFInputEventType;
typedef struct
{
/* Type-specific fields go here. */
ue_PyFInputEvent f_input;
FPointerEvent pointer;
} ue_PyFPointerEvent;
void ue_python_init_fpointer_event(PyObject *);
PyObject *py_ue_new_fpointer_event(FPoint... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFPointerEvent.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 97 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPyFInputEvent.h"
extern PyTypeObject ue_PyFInputEventType;
typedef struct {
/* Type-specific fields go here. */
ue_PyFInputEvent f_input;
FKeyEvent key_event;
} ue_PyFKeyEvent;
void ue_python_init_fkey_event(PyObject *);
PyObject *py_ue_ne... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFKeyEvent.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 100 |
```c++
#include "UEPySPythonEditorViewport.h"
#if WITH_EDITOR
#include "Components/DirectionalLightComponent.h"
#include "Wrappers/UEPyFEditorViewportClient.h"
static PyObject *py_ue_spython_editor_viewport_get_world(ue_PySPythonEditorViewport *self, PyObject * args)
{
ue_py_slate_cast(SPythonEditorViewport);
Py_... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonEditorViewport.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 3,610 |
```c++
#include "UEPySEditorViewport.h"
#if WITH_EDITOR
static PyObject *py_ue_seditor_viewport_enable_stereo_rendering(ue_PySEditorViewport *self, PyObject * args)
{
ue_py_slate_cast(SEditorViewport);
PyObject *py_bool;
if (!PyArg_ParseTuple(args, "O:enable_stereo_rendering", &py_bool))
{
return nullptr;
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySEditorViewport.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 555 |
```c++
#include "UEPyFPointerEvent.h"
#include "UEPyFModifierKeysState.h"
static PyObject *py_ue_fpointer_event_get_effecting_button(ue_PyFPointerEvent *self, PyObject * args)
{
FKey key = self->pointer.GetEffectingButton();
return py_ue_new_owned_uscriptstruct(FKey::StaticStruct(), (uint8*)&key);
}
static PyObjec... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFPointerEvent.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,368 |
```c++
#include "UEPySButton.h"
static PyObject *py_ue_sbutton_is_pressed(ue_PySButton *self, PyObject * args)
{
ue_py_slate_cast(SButton);
if (py_SButton->IsPressed())
{
Py_RETURN_TRUE;
}
Py_RETURN_FALSE;
}
static PyObject *py_ue_sbutton_bind_on_clicked(ue_PySButton *self, PyObject * args)
{
ue_py_slate... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySButton.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,245 |
```c++
#include "UEPyFPaintContext.h"
#include "UEPyFGeometry.h"
static FSlateBrush global_simple_brush;
static PyObject *py_ue_fpaint_context_draw_line(ue_PyFPaintContext *self, PyObject * args)
{
float x1, y1, x2, y2;
PyObject *py_linear_color = nullptr;
PyObject *py_antialias = nullptr;
float thickness = 1.0;... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFPaintContext.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 2,755 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySPanel.h"
#include "Runtime/SlateCore/Public/Widgets/SBoxPanel.h"
extern PyTypeObject ue_PySBoxPanelType;
typedef struct {
ue_PySPanel s_panel;
/* Type-specific fields go here. */
} ue_PySBoxPanel;
void ue_python_init_sbox_panel(PyObject... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySBoxPanel.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 84 |
```c++
#include "UEPySLeafWidget.h"
static PyMethodDef ue_PySLeafWidget_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySLeafWidgetType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SLeafWidget", /* tp_name */
sizeof(ue_PySLeafWidget), /* tp_basicsize */
0, /* tp_itemsiz... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySLeafWidget.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 413 |
```c++
#include "UEPyFSlateStyleSet.h"
#include "Runtime/SlateCore/Public/Styling/SlateTypes.h"
#include "Runtime/SlateCore/Public/Styling/SlateStyleRegistry.h"
#include "Runtime/SlateCore/Public/Sound/SlateSound.h"
#include "Runtime/Core/Public/Containers/Map.h"
static PyObject *py_ue_fslate_style_set_set_content_ro... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFSlateStyleSet.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 3,432 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySCompoundWidget.h"
#include "Runtime/Slate/Public/Widgets/Layout/SBorder.h"
extern PyTypeObject ue_PySBorderType;
typedef struct {
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PySBorder;
void ue_python_... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySBorder.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 84 |
```objective-c
#pragma once
#include "UEPyModule.h"
#include "UEPySLeafWidget.h"
#include "Runtime/Slate/Public/Widgets/Layout/SSpacer.h"
extern PyTypeObject ue_PySSpacerType;
typedef struct {
ue_PySLeafWidget s_leaf_widget;
/* Type-specific fields go here. */
} ue_PySSpacer;
void ue_python_init_sspacer(PyObje... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySSpacer.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 86 |
```c++
#include "UEPySMultiLineEditableText.h"
static PyObject *py_ue_smulti_line_editable_text_select_all_text(ue_PySMultiLineEditableText *self, PyObject * args)
{
ue_py_slate_cast(SMultiLineEditableText);
py_SMultiLineEditableText->SelectAllText();
Py_RETURN_NONE;
}
static PyObject *py_ue_smulti_line_edita... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySMultiLineEditableText.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,221 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#if WITH_EDITOR
#if ENGINE_MINOR_VERSION > 15
#include "UEPySNodePanel.h"
#include "Editor/GraphEditor/Public/SGraphPanel.h"
extern PyTypeObject ue_PySGraphPanelType;
typedef struct {
ue_PySNodePanel s_nodePanel;
/* Type-specific fields go here. *... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySGraphPanel.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 101 |
```c++
#include "UEPySBorder.h"
static PyObject *py_ue_sborder_clear_content(ue_PySBorder *self, PyObject * args)
{
ue_py_slate_cast(SBorder);
py_SBorder->ClearContent();
Py_RETURN_NONE;
}
static PyObject *py_ue_sborder_set_content(ue_PySBorder *self, PyObject * args)
{
ue_py_slate_cast(SBorder);
PyObject *p... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySBorder.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,436 |
```objective-c
#pragma once
#include "UEPySEditorViewport.h"
#if WITH_EDITOR
#include "Editor/UnrealEd/Public/SEditorViewport.h"
#include "Editor/UnrealEd/Public/EditorViewportClient.h"
#include "Runtime/Engine/Public/PreviewScene.h"
#include "Editor/UnrealEd/Public/SCommonEditorViewportToolbarBase.h"
#include "Edit... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonEditorViewport.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 385 |
```objective-c
#pragma once
#include "UEPySlate.h"
#include "Wrappers/UEPyFColor.h"
#include "Wrappers/UEPyFLinearColor.h"
typedef struct
{
PyObject_HEAD
/* Type-specific fields go here. */
FSlateStyleSet *style_set;
} ue_PyFSlateStyleSet;
ue_PyFSlateStyleSet* py_ue_new_fslate_style_set(FSlateStyleSet* styleSet... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFSlateStyleSet.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 108 |
```c++
#include "UEPySDirectoryPicker.h"
#if WITH_EDITOR
#if ENGINE_MINOR_VERSION > 13
static PyObject *py_ue_sdirectory_picker_get_directory(ue_PySDirectoryPicker *self, PyObject * args)
{
ue_py_slate_cast(SDirectoryPicker);
FString Directory = py_SDirectoryPicker->GetDirectory();
return PyUnicode_FromString(TC... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySDirectoryPicker.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 502 |
```c++
#include "UEPySObjectPropertyEntryBox.h"
#if WITH_EDITOR
static PyMethodDef ue_PySObjectPropertyEntryBox_methods[] = {
{ NULL } /* Sentinel */
};
DECLARE_UE_PY_SLATE_WIDGET(SObjectPropertyEntryBox);
static int ue_py_sobject_property_entry_box_init(ue_PySObjectPropertyEntryBox *self, PyObject *args, PyObje... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySObjectPropertyEntryBox.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 415 |
```c++
#include "UEPySAssetDropTarget.h"
#if WITH_EDITOR
static PyMethodDef ue_PySAssetDropTarget_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySAssetDropTargetType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SAssetDropTarget", /* tp_name */
sizeof(ue_PySAssetDropTarget), /* tp_basicsize */
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySAssetDropTarget.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 513 |
```c++
#include "UEPySPythonMultiColumnTableRow.h"
#include "UEPySTableViewBase.h"
static PyMethodDef ue_PySPythonMultiColumnTableRow_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySPythonMultiColumnTableRowType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SPythonMultiColumnTableRow", /* tp_na... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonMultiColumnTableRow.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 726 |
```c++
#include "UEPyIStructureDetailsView.h"
#if WITH_EDITOR
#include "Editor/PropertyEditor/Public/PropertyEditorModule.h"
#include "UEPySWidget.h"
#include "Editor/PropertyEditor/Public/IDetailsView.h"
static PyObject *ue_PyIStructureDetailsView_str(ue_PyIStructureDetailsView *self)
{
#if PY_MAJOR_VERSION >= 3... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyIStructureDetailsView.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 2,317 |
```objective-c
#pragma once
#include "UEPySDropTarget.h"
#if WITH_EDITOR
#include "Editor/EditorWidgets/Public/SAssetDropTarget.h"
extern PyTypeObject ue_PySAssetDropTargetType;
typedef struct {
ue_PySDropTarget s_drop_target;
/* Type-specific fields go here. */
} ue_PySAssetDropTarget;
void ue_python_init_sass... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySAssetDropTarget.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 87 |
```objective-c
#pragma once
#include "UEPyModule.h"
#include "Runtime/Slate/Public/Framework/Docking/TabManager.h"
typedef struct
{
PyObject_HEAD
/* Type-specific fields go here. */
TSharedRef<FTabManager> tab_manager;
} ue_PyFTabManager;
PyObject *py_ue_new_ftab_manager(TSharedRef<FTabManager>);
void ue_pyth... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFTabManager.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 89 |
```c++
#include "UEPySLevelViewport.h"
#if WITH_EDITOR
#include "LevelEditor.h"
#include "Editor/LevelEditor/Public/ILevelEditor.h"
static PyObject *py_ue_slevel_viewport_get_world(ue_PySLevelViewport *self, PyObject * args)
{
ue_py_slate_cast(SLevelViewport);
Py_RETURN_UOBJECT(py_SLevelViewport->GetWorld());
}... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySLevelViewport.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,319 |
```objective-c
#pragma once
#include "UEPySlate.h"
#include "Runtime/Slate/Public/Framework/Commands/UIAction.h"
#if WITH_EDITOR
#include "Developer/AssetTools/Public/AssetToolsModule.h"
#include "Developer/AssetTools/Public/IAssetTools.h"
#endif
#include "Runtime/Slate/Public/Framework/MultiBox/MultiBoxBuilder.h"
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFMenuBuilder.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 126 |
```c++
#include "UEPySGraphEditor.h"
#if WITH_EDITOR
#include "Runtime/Engine/Classes/EdGraph/EdGraph.h"
static PyMethodDef ue_PySGraphEditor_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySGraphEditorType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SGraphEditor", /* tp_name */
sizeof(ue_PyS... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySGraphEditor.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 596 |
```c++
#include "UEPySCheckBox.h"
static PyObject *py_ue_scheck_box_is_checked(ue_PySCheckBox *self, PyObject * args)
{
ue_py_slate_cast(SCheckBox);
if (py_SCheckBox->IsChecked())
{
Py_RETURN_TRUE;
}
Py_RETURN_FALSE;
}
static PyObject *py_ue_scheck_box_set_is_checked(ue_PySCheckBox *self, PyObject * args)
{
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySCheckBox.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,334 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#if WITH_EDITOR
#include "UEPySPanel.h"
#include "Editor/GraphEditor/Public/SNodePanel.h"
extern PyTypeObject ue_PySNodePanelType;
typedef struct {
ue_PySPanel s_panel;
/* Type-specific fields go here. */
} ue_PySNodePanel;
void ue_python_init_s... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySNodePanel.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 87 |
```c++
#include "UEPySNodePanel.h"
#if WITH_EDITOR
static PyMethodDef ue_PySNodePanel_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySNodePanelType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SNodePanel", /* tp_name */
sizeof(ue_PySNodePanel), /* tp_basicsize */
0, ... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySNodePanel.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 418 |
```c++
#include "UEPySGridPanel.h"
static PyObject *py_ue_sgrid_panel_clear_children(ue_PySGridPanel *self, PyObject * args)
{
ue_py_slate_cast(SGridPanel);
py_SGridPanel->ClearChildren();
Py_RETURN_NONE;
}
static PyObject *py_ue_sgrid_panel_add_slot(ue_PySGridPanel *self, PyObject * args, PyObject * kwargs)
{... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySGridPanel.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 930 |
```c++
#include "UEPyFToolBarBuilder.h"
#include "UEPyFSlateIcon.h"
#include "Runtime/Slate/Public/Framework/Commands/UIAction.h"
static PyObject *py_ue_ftool_bar_builder_begin_section(ue_PyFToolBarBuilder *self, PyObject * args)
{
char *name;
if (!PyArg_ParseTuple(args, "s:begin_section", &name))
return NULL;
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFToolBarBuilder.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,568 |
```c++
#include "UEPySPythonListView.h"
#include "UEPySHeaderRow.h"
void SPythonListView::SetHeaderRow(TSharedPtr<SHeaderRow> InHeaderRowWidget)
{
HeaderRow = InHeaderRowWidget;
}
static PyObject *py_ue_spython_list_view_get_selected_items(ue_PySPythonListView *self, PyObject * args)
{
ue_py_slate_cast(SPythonLi... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonListView.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,879 |
```objective-c
#pragma once
#include "UEPyModule.h"
#include "Runtime/SlateCore/Public/Textures/SlateIcon.h"
typedef struct
{
PyObject_HEAD
/* Type-specific fields go here. */
FSlateIcon icon;
} ue_PyFSlateIcon;
void ue_python_init_fslate_icon(PyObject *);
ue_PyFSlateIcon *py_ue_new_fslate_icon(const FSlateIc... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFSlateIcon.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 105 |
```objective-c
#pragma once
#include "UEPySBorder.h"
#include "Runtime/Slate/Public/Widgets/Views/SHeaderRow.h"
extern PyTypeObject ue_PySHeaderRowType;
typedef struct {
ue_PySBorder s_border;
/* Type-specific fields go here. */
} ue_PySHeaderRow;
void ue_python_init_sheader_row(PyObject *);
ue_PySHeaderRow *py... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySHeaderRow.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 93 |
```c++
#include "UEPyFModifierKeysState.h"
static PyObject *py_ue_fmodifier_keys_state_are_caps_locked(ue_PyFModifierKeysState *self, PyObject * args)
{
if (self->modifier.AreCapsLocked())
{
Py_RETURN_TRUE;
}
Py_RETURN_FALSE;
}
static PyMethodDef ue_PyFModifierKeysState_methods[] = {
{ "are_caps_locked", (PyCF... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFModifierKeysState.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,305 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySCompoundWidget.h"
#include "Runtime/Slate/Public/Widgets/Input/SCheckBox.h"
extern PyTypeObject ue_PySCheckBoxType;
typedef struct {
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PySCheckBox;
void ue_py... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySCheckBox.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 89 |
```objective-c
#pragma once
#include "UEPySWidget.h"
extern PyTypeObject ue_PySCompoundWidgetType;
typedef struct
{
ue_PySWidget s_widget;
/* Type-specific fields go here. */
} ue_PySCompoundWidget;
void ue_python_init_scompound_widget(PyObject *);
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySCompoundWidget.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 63 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySTableViewBase.h"
#include "Runtime/Slate/Public/Widgets/Views/SListView.h"
extern PyTypeObject ue_PySListViewType;
typedef struct {
ue_PySTableViewBase s_table_view_base;
/* Type-specific fields go here. */
} ue_PySListView;
void ue_pyth... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySListView.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 86 |
```c++
#include "UEPySTextBlock.h"
static PyObject *py_ue_stext_block_set_text(ue_PySTextBlock *self, PyObject * args)
{
ue_py_slate_cast(STextBlock);
char *text;
if (!PyArg_ParseTuple(args, "s:set_text", &text))
{
return nullptr;
}
py_STextBlock->SetText(FString(UTF8_TO_TCHAR(text)));
Py_RETURN_SLATE_SEL... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySTextBlock.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 980 |
```c++
#include "UEPyFKeyEvent.h"
static PyObject *py_ue_fkey_event_get_key(ue_PyFKeyEvent *self, PyObject * args)
{
FKey key = self->key_event.GetKey();
return py_ue_new_owned_uscriptstruct(FKey::StaticStruct(), (uint8*)&key);
}
static PyObject *py_ue_fkey_event_get_key_name(ue_PyFKeyEvent *self, PyObject * args)
... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFKeyEvent.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 894 |
```objective-c
#pragma once
#include "PythonSmartDelegate.h"
#include "UEPySlatePythonItem.h"
#include "Runtime/Slate/Public/Widgets/Views/SHeaderRow.h"
#include "Runtime/Slate/Public/Widgets/Docking/SDockTab.h"
#include "Runtime/Slate/Public/Widgets/Views/STableRow.h"
#include "Runtime/Slate/Public/Framework/MultiB... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySlateDelegate.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 948 |
```objective-c
#pragma once
#include "UEPySCompoundWidget.h"
#if WITH_EDITOR
#if ENGINE_MINOR_VERSION > 13
#include "Developer/DesktopWidgets/Public/Widgets/Input/SDirectoryPicker.h"
extern PyTypeObject ue_PySDirectoryPickerType;
typedef struct
{
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySDirectoryPicker.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 97 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySCompoundWidget.h"
#include "Runtime/Slate/Public/Widgets/Views/STableViewBase.h"
extern PyTypeObject ue_PySTableViewBaseType;
typedef struct {
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PySTableViewBa... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySTableViewBase.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 108 |
```objective-c
#pragma once
#include "UEPySBoxPanel.h"
#include "Runtime/SlateCore/Public/Widgets/SBoxPanel.h"
extern PyTypeObject ue_PySVerticalBoxType;
typedef struct
{
ue_PySBoxPanel s_box_panel;
/* Type-specific fields go here. */
} ue_PySVerticalBox;
void ue_python_init_svertical_box(PyObject *);
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySVerticalBox.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 80 |
```c++
#include "UEPyFTabSpawnerEntry.h"
static PyObject *py_ue_ftab_spawner_entry_set_display_name(ue_PyFTabSpawnerEntry *self, PyObject * args)
{
char *name;
if (!PyArg_ParseTuple(args, "s:set_display_name", &name))
return NULL;
self->spawner_entry->SetDisplayName(FText::FromString(UTF8_TO_TCHAR(name)));
Py... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFTabSpawnerEntry.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 880 |
```c++
#include "UEPySlate.h"
#if WITH_EDITOR
#include "LevelEditor.h"
#include "Editor/UnrealEd/Public/Toolkits/AssetEditorToolkit.h"
#include "Editor/Persona/Public/PersonaModule.h"
#if ENGINE_MINOR_VERSION > 13
#include "Editor/AnimationEditor/Public/IAnimationEditorModule.h"
#endif
#include "Editor/StaticMeshEdit... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySlate.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 11,774 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
struct FPythonItem
{
PyObject *py_object = nullptr;
FPythonItem(PyObject *item)
{
py_object = item;
}
};
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySlatePythonItem.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 46 |
```c++
#include "UEPySNumericEntryBox.h"
static PyMethodDef ue_PySNumericEntryBox_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySNumericEntryBoxType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SNumericEntryBox", /* tp_name */
sizeof(ue_PySNumericEntryBox), /* tp_basicsize */
0, ... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySNumericEntryBox.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,484 |
```c++
#include "UEPySColorBlock.h"
static PyMethodDef ue_PySColorBlock_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySColorBlockType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SColorBlock", /* tp_name */
sizeof(ue_PySColorBlock), /* tp_basicsize */
0, /* tp_itemsize... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySColorBlock.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 614 |
```c++
#include "UEPySSpacer.h"
static PyMethodDef ue_PySSpacer_methods[] = {
{ NULL } /* Sentinel */
};
PyTypeObject ue_PySSpacerType = {
PyVarObject_HEAD_INIT(NULL, 0)
"unreal_engine.SSpacer", /* tp_name */
sizeof(ue_PySSpacer), /* tp_basicsize */
0, /* tp_itemsize */
0, /* tp_d... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySSpacer.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 499 |
```c++
#include "UEPySHeaderRow.h"
static PyObject *py_ue_sheader_row_add_column(ue_PySHeaderRow *self, PyObject *args, PyObject *kwargs)
{
ue_py_slate_cast(SHeaderRow);
int32 retCode = [&]() {
ue_py_slate_setup_farguments(SHeaderRow::FColumn);
// first of all check for values
PyObject *py_columnid = ue_p... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySHeaderRow.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 1,226 |
```objective-c
#pragma once
#include "UEPySPanel.h"
#include "Runtime/Slate/Public/Widgets/Layout/SSplitter.h"
extern PyTypeObject ue_PySSplitterType;
typedef struct
{
ue_PySPanel s_panel;
/* Type-specific fields go here. */
} ue_PySSplitter;
void ue_python_init_ssplitter(PyObject *);
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySSplitter.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 78 |
```c++
#include "UEPySOverlay.h"
static PyObject *py_ue_soverlay_add_slot(ue_PySOverlay *self, PyObject * args, PyObject *kwargs)
{
ue_py_slate_cast(SOverlay);
PyObject *py_content;
int z_order = -1;
int h_align = 0;
PyObject *padding = nullptr;
int v_align = 0;
char *kwlist[] = { (char *)"widget",
(char ... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySOverlay.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 999 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySPanel.h"
#include "Runtime/Slate/Public/Widgets/Layout/SBox.h"
extern PyTypeObject ue_PySBoxType;
typedef struct {
ue_PySPanel s_panel;
/* Type-specific fields go here. */
} ue_PySBox;
void ue_python_init_sbox(PyObject *);
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySBox.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 80 |
```c++
#include "UEPySTreeView.h"
static PyObject *py_ue_stree_view_request_tree_refresh(ue_PySTreeView *self, PyObject * args)
{
ue_py_slate_cast_named(STreeView<TSharedPtr<void>>, py_STreeView);
py_STreeView->RequestTreeRefresh();
Py_RETURN_NONE;
}
static PyObject *py_ue_stree_view_clear_expanded_items(ue_PySTr... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySTreeView.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 590 |
```objective-c
#pragma once
#include "UnrealEnginePython.h"
#include "UEPySCompoundWidget.h"
#include "Runtime/Slate/Public/Widgets/Layout/SScrollBox.h"
extern PyTypeObject ue_PySScrollBoxType;
typedef struct {
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PySScrollBox;
void u... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySScrollBox.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 89 |
```objective-c
#pragma once
#include "UEPySCompoundWidget.h"
#include "Runtime/UMG/Public/Blueprint/UserWidget.h"
extern PyTypeObject ue_PySPythonWidgetType;
class SPythonWidget : public SCompoundWidget
{
public:
SLATE_BEGIN_ARGS(SPythonWidget)
{
}
SLATE_END_ARGS();
void Construct(const FArguments& Args)
{... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySPythonWidget.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 2,220 |
```objective-c
#pragma once
#include "UEPySCompoundWidget.h"
#include "Runtime/Slate/Public/Widgets/Input/SNumericEntryBox.h"
extern PyTypeObject ue_PySNumericEntryBoxType;
typedef struct
{
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go here. */
} ue_PySNumericEntryBox;
void ue_python_init_s... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySNumericEntryBox.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 85 |
```c++
#include "UEPySWindow.h"
#if WITH_EDITOR
#include "Editor/MainFrame/Public/Interfaces/IMainFrameModule.h"
#endif
#if PLATFORM_WINDOWS
#include "Windows/AllowWindowsPlatformTypes.h"
#endif
#include "Runtime/Slate/Public/Framework/Application/SlateApplication.h"
static PyObject *py_ue_swindow_set_title(ue_PyS... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySWindow.cpp | c++ | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 2,981 |
```objective-c
#pragma once
#include "UEPySlate.h"
#include "Runtime/Slate/Public/Framework/MultiBox/MultiBoxBuilder.h"
typedef struct
{
PyObject_HEAD
/* Type-specific fields go here. */
FToolBarBuilder tool_bar_builder;
} ue_PyFToolBarBuilder;
void ue_python_init_ftool_bar_builder(PyObject *);
PyObject *py_u... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyFToolBarBuilder.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 85 |
```objective-c
#pragma once
#include "UEPySCompoundWidget.h"
#if WITH_EDITOR
#if ENGINE_MINOR_VERSION > 13
#include "Developer/DesktopWidgets/Public/Widgets/Input/SFilePathPicker.h"
extern PyTypeObject ue_PySFilePathPickerType;
typedef struct
{
ue_PySCompoundWidget s_compound_widget;
/* Type-specific fields go he... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySFilePathPicker.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 97 |
```objective-c
#pragma once
#include "UEPySLeafWidget.h"
#include "Runtime/Slate/Public/Widgets/Input/SSlider.h"
extern PyTypeObject ue_PySSliderType;
typedef struct
{
ue_PySLeafWidget s_leaf_widget;
/* Type-specific fields go here. */
} ue_PySSlider;
void ue_python_init_sslider(PyObject *);
``` | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPySSlider.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 77 |
```objective-c
#pragma once
#include "UEPyModule.h"
#if WITH_EDITOR
#include "IStructureDetailsView.h"
typedef struct
{
PyObject_HEAD
/* Type-specific fields go here. */
TSharedRef<IStructureDetailsView> istructure_details_view;
ue_PyUScriptStruct *ue_py_struct;
} ue_PyIStructureDetailsView;
void ue_python_... | /content/code_sandbox/Source/UnrealEnginePython/Private/Slate/UEPyIStructureDetailsView.h | objective-c | 2016-08-07T05:00:51 | 2024-08-14T06:32:20 | UnrealEnginePython | 20tab/UnrealEnginePython | 2,715 | 121 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.