X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=blobdiff_plain;f=radiant%2Fsurfacedialog.h;h=739a1bf534e05f5f6f38d2fe3022c75cc8784949;hp=2c1d945dcd83c413f70d636f9376c7f51068a85f;hb=9dfae1c9b270ee369c6362903a9205b30751b95f;hpb=0a6d5683b0cfa1a0bd7ef64bada105dbe4ddd6e1 diff --git a/radiant/surfacedialog.h b/radiant/surfacedialog.h index 2c1d945d..739a1bf5 100644 --- a/radiant/surfacedialog.h +++ b/radiant/surfacedialog.h @@ -26,34 +26,40 @@ void SurfaceInspector_Construct(); + void SurfaceInspector_Destroy(); -void SurfaceInspector_constructWindow( ui::Window widget ); +void SurfaceInspector_constructWindow(ui::Window widget); + void SurfaceInspector_destroyWindow(); bool SelectedFaces_empty(); + void SelectedFaces_copyTexture(); + void SelectedFaces_pasteTexture(); + void FaceTextureClipboard_setDefault(); // the increment we are using for the surface inspector (this is saved in the prefs) -struct si_globals_t -{ - float shift[2]; - float scale[2]; - float rotate; - - bool m_bSnapTToGrid; - - si_globals_t() : m_bSnapTToGrid( false ){ - shift[0] = 8.0f; - shift[1] = 8.0f; - scale[0] = 0.5f; - scale[1] = 0.5f; - rotate = 45.0f; - } +struct si_globals_t { + float shift[2]; + float scale[2]; + float rotate; + + bool m_bSnapTToGrid; + + si_globals_t() : m_bSnapTToGrid(false) + { + shift[0] = 8.0f; + shift[1] = 8.0f; + scale[0] = 0.5f; + scale[1] = 0.5f; + rotate = 45.0f; + } }; + extern si_globals_t g_si_globals; #endif