]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/patchdialog.h
Merge branch 'illwieckz/vfs' fix !101
[xonotic/netradiant.git] / radiant / patchdialog.h
index 1304ccbe23cac1f203b0dd5fc9d674f7a551fd8c..692ccfe8cab8f3d87711d57465fe6126b0cf4f17 100644 (file)
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#include <uilib/uilib.h>
+
 #if !defined( INCLUDED_PATCHDIALOG_H )
 #define INCLUDED_PATCHDIALOG_H
 
 void PatchInspector_Construct();
+
 void PatchInspector_Destroy();
 
-typedef struct _GtkWidget GtkWidget;
-typedef struct _GtkWindow GtkWindow;
-void PatchInspector_constructWindow( GtkWindow* main_window );
+void PatchInspector_constructWindow(ui::Window main_window);
+
 void PatchInspector_destroyWindow();
 
-namespace scene
-{
-class Graph;
+namespace scene {
+    class Graph;
 }
 
-void Scene_PatchTranslateTexture_Selected( scene::Graph& graph, float s, float t );
-void Scene_PatchRotateTexture_Selected( scene::Graph& graph, float angle );
-void Scene_PatchScaleTexture_Selected( scene::Graph& graph, float s, float t );
+void Scene_PatchTranslateTexture_Selected(scene::Graph &graph, float s, float t);
+
+void Scene_PatchRotateTexture_Selected(scene::Graph &graph, float angle);
+
+void Scene_PatchScaleTexture_Selected(scene::Graph &graph, float s, float t);
 
 
 #endif