]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/patchmanip.h
Wrap GtkAccelGroup
[xonotic/netradiant.git] / radiant / patchmanip.h
index 4666ae73494a585c802afa8568360fa6e3cffeed..5c776ccf956435b6feb22643c6480bdb19281be4 100644 (file)
@@ -22,7 +22,7 @@
 #if !defined ( INCLUDED_PATCHMANIP_H )
 #define INCLUDED_PATCHMANIP_H
 
-#include "string/stringfwd.h"
+#include <string>
 
 void Patch_registerCommands();
 typedef struct _GtkToolbar GtkToolbar;
@@ -36,7 +36,7 @@ class Graph;
 }
 
 void Scene_PatchSetShader_Selected( scene::Graph& graph, const char* name );
-void Scene_PatchGetShader_Selected( scene::Graph& graph, CopiedString& name );
+void Scene_PatchGetShader_Selected( scene::Graph& graph, std::string& name );
 void Scene_PatchSelectByShader( scene::Graph& graph, const char* name );
 void Scene_PatchFindReplaceShader( scene::Graph& graph, const char* find, const char* replace );
 void Scene_PatchFindReplaceShader_Selected( scene::Graph& graph, const char* find, const char* replace );
@@ -51,6 +51,14 @@ void PatchPreferences_construct();
 
 void Patch_registerPreferencesPage();
 
+void Patch_NaturalTexture();
+void Patch_CapTexture();
+void Patch_ResetTexture();
+void Patch_FitTexture();
+void Patch_FlipTextureX();
+void Patch_FlipTextureY();
+void Patch_AutoCapTexture();
+
 class PatchCreator;
 extern PatchCreator* g_patchCreator;