]> git.xonotic.org Git - xonotic/netradiant.git/blob - radiant/patchdialog.cpp
Clean up and fix actions, menus and dialogs for patch meshes
[xonotic/netradiant.git] / radiant / patchdialog.cpp
1 /*
2    Copyright (C) 1999-2006 Id Software, Inc. and contributors.
3    For a list of contributors, see the accompanying CONTRIBUTORS file.
4
5    This file is part of GtkRadiant.
6
7    GtkRadiant is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    GtkRadiant is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GtkRadiant; if not, write to the Free Software
19    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21
22 //
23 // Patch Dialog
24 //
25 // Leonardo Zide (leo@lokigames.com)
26 //
27
28 #include "patchdialog.h"
29
30 #include "itexdef.h"
31
32 #include "debugging/debugging.h"
33
34 #include <gtk/gtkvbox.h>
35 #include <gtk/gtkhbox.h>
36 #include <gtk/gtkframe.h>
37 #include <gtk/gtklabel.h>
38 #include <gtk/gtktable.h>
39 #include <gtk/gtkcombobox.h>
40 #include <gtk/gtkbutton.h>
41 #include <gtk/gtkspinbutton.h>
42 #include <gtk/gtkcheckbutton.h>
43
44 #include "gtkutil/idledraw.h"
45 #include "gtkutil/entry.h"
46 #include "gtkutil/button.h"
47 #include "gtkutil/nonmodal.h"
48 #include "dialog.h"
49 #include "gtkdlgs.h"
50 #include "mainframe.h"
51 #include "patchmanip.h"
52 #include "patch.h"
53 #include "commands.h"
54 #include "preferences.h"
55 #include "signal/isignal.h"
56
57
58 #include <gdk/gdkkeysyms.h>
59
60 // the increment we are using for the patch inspector (this is saved in the prefs)
61 struct pi_globals_t
62 {
63         float shift[2];
64         float scale[2];
65         float rotate;
66
67         pi_globals_t(){
68                 shift[0] = 8.0f;
69                 shift[1] = 8.0f;
70                 scale[0] = 0.5f;
71                 scale[1] = 0.5f;
72                 rotate = 45.0f;
73         }
74 };
75
76 pi_globals_t g_pi_globals;
77
78 class PatchFixedSubdivisions
79 {
80 public:
81 PatchFixedSubdivisions() : m_enabled( false ), m_x( 0 ), m_y( 0 ){
82 }
83 PatchFixedSubdivisions( bool enabled, std::size_t x, std::size_t y ) : m_enabled( enabled ), m_x( x ), m_y( y ){
84 }
85 bool m_enabled;
86 std::size_t m_x;
87 std::size_t m_y;
88 };
89
90 void Patch_getFixedSubdivisions( const Patch& patch, PatchFixedSubdivisions& subdivisions ){
91         subdivisions.m_enabled = patch.m_patchDef3;
92         subdivisions.m_x = patch.m_subdivisions_x;
93         subdivisions.m_y = patch.m_subdivisions_y;
94 }
95
96 const std::size_t MAX_PATCH_SUBDIVISIONS = 32;
97
98 void Patch_setFixedSubdivisions( Patch& patch, const PatchFixedSubdivisions& subdivisions ){
99         patch.undoSave();
100
101         patch.m_patchDef3 = subdivisions.m_enabled;
102         patch.m_subdivisions_x = subdivisions.m_x;
103         patch.m_subdivisions_y = subdivisions.m_y;
104
105         if ( patch.m_subdivisions_x == 0 ) {
106                 patch.m_subdivisions_x = 4;
107         }
108         else if ( patch.m_subdivisions_x > MAX_PATCH_SUBDIVISIONS ) {
109                 patch.m_subdivisions_x = MAX_PATCH_SUBDIVISIONS;
110         }
111         if ( patch.m_subdivisions_y == 0 ) {
112                 patch.m_subdivisions_y = 4;
113         }
114         else if ( patch.m_subdivisions_y > MAX_PATCH_SUBDIVISIONS ) {
115                 patch.m_subdivisions_y = MAX_PATCH_SUBDIVISIONS;
116         }
117
118         SceneChangeNotify();
119         Patch_textureChanged();
120         patch.controlPointsChanged();
121 }
122
123 class PatchGetFixedSubdivisions
124 {
125 PatchFixedSubdivisions& m_subdivisions;
126 public:
127 PatchGetFixedSubdivisions( PatchFixedSubdivisions& subdivisions ) : m_subdivisions( subdivisions ){
128 }
129 void operator()( Patch& patch ){
130         Patch_getFixedSubdivisions( patch, m_subdivisions );
131         SceneChangeNotify();
132 }
133 };
134
135 void Scene_PatchGetFixedSubdivisions( PatchFixedSubdivisions& subdivisions ){
136 #if 1
137         if ( GlobalSelectionSystem().countSelected() != 0 ) {
138                 Patch* patch = Node_getPatch( GlobalSelectionSystem().ultimateSelected().path().top() );
139                 if ( patch != 0 ) {
140                         Patch_getFixedSubdivisions( *patch, subdivisions );
141                 }
142         }
143 #else
144         Scene_forEachVisibleSelectedPatch( PatchGetFixedSubdivisions( subdivisions ) );
145 #endif
146 }
147
148 class PatchSetFixedSubdivisions
149 {
150 const PatchFixedSubdivisions& m_subdivisions;
151 public:
152 PatchSetFixedSubdivisions( const PatchFixedSubdivisions& subdivisions ) : m_subdivisions( subdivisions ){
153 }
154 void operator()( Patch& patch ) const {
155         Patch_setFixedSubdivisions( patch, m_subdivisions );
156 }
157 };
158
159 void Scene_PatchSetFixedSubdivisions( const PatchFixedSubdivisions& subdivisions ){
160         UndoableCommand command( "patchSetFixedSubdivisions" );
161         Scene_forEachVisibleSelectedPatch( PatchSetFixedSubdivisions( subdivisions ) );
162 }
163
164 typedef struct _GtkCheckButton GtkCheckButton;
165
166 class Subdivisions
167 {
168 public:
169 GtkCheckButton* m_enabled;
170 GtkEntry* m_horizontal;
171 GtkEntry* m_vertical;
172 Subdivisions() : m_enabled( 0 ), m_horizontal( 0 ), m_vertical( 0 ){
173 }
174 void update(){
175         PatchFixedSubdivisions subdivisions;
176         Scene_PatchGetFixedSubdivisions( subdivisions );
177
178         toggle_button_set_active_no_signal( GTK_TOGGLE_BUTTON( m_enabled ), subdivisions.m_enabled );
179
180         if ( subdivisions.m_enabled ) {
181                 entry_set_int( m_horizontal, static_cast<int>( subdivisions.m_x ) );
182                 entry_set_int( m_vertical, static_cast<int>( subdivisions.m_y ) );
183                 gtk_widget_set_sensitive( GTK_WIDGET( m_horizontal ), TRUE );
184                 gtk_widget_set_sensitive( GTK_WIDGET( m_vertical ), TRUE );
185         }
186         else
187         {
188                 gtk_entry_set_text( m_horizontal, "" );
189                 gtk_entry_set_text( m_vertical, "" );
190                 gtk_widget_set_sensitive( GTK_WIDGET( m_horizontal ), FALSE );
191                 gtk_widget_set_sensitive( GTK_WIDGET( m_vertical ), FALSE );
192         }
193 }
194 void cancel(){
195         update();
196 }
197 typedef MemberCaller<Subdivisions, &Subdivisions::cancel> CancelCaller;
198 void apply(){
199         Scene_PatchSetFixedSubdivisions(
200                 PatchFixedSubdivisions(
201                         gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON( m_enabled ) ) != FALSE,
202                         static_cast<std::size_t>( entry_get_int( m_horizontal ) ),
203                         static_cast<std::size_t>( entry_get_int( m_vertical ) )
204                         )
205                 );
206 }
207 typedef MemberCaller<Subdivisions, &Subdivisions::apply> ApplyCaller;
208 static void applyGtk( GtkToggleButton* toggle, Subdivisions* self ){
209         self->apply();
210 }
211 };
212
213 class PatchInspector : public Dialog
214 {
215 GtkWindow* BuildDialog();
216 Subdivisions m_subdivisions;
217 NonModalEntry m_horizontalSubdivisionsEntry;
218 NonModalEntry m_verticalSubdivisionsEntry;
219 public:
220 IdleDraw m_idleDraw;
221 WindowPositionTracker m_position_tracker;
222
223 Patch *m_Patch;
224
225 CopiedString m_strName;
226 float m_fS;
227 float m_fT;
228 float m_fX;
229 float m_fY;
230 float m_fZ;
231 /*  float       m_fHScale;
232    float        m_fHShift;
233    float        m_fRotate;
234    float        m_fVScale;
235    float        m_fVShift; */
236 int m_nCol;
237 int m_nRow;
238 GtkComboBox *m_pRowCombo;
239 GtkComboBox *m_pColCombo;
240 std::size_t m_countRows;
241 std::size_t m_countCols;
242
243 // turn on/off processing of the "changed" "value_changed" messages
244 // (need to turn off when we are feeding data in)
245 // NOTE: much more simple than blocking signals
246 bool m_bListenChanged;
247
248 PatchInspector() :
249         m_horizontalSubdivisionsEntry( Subdivisions::ApplyCaller( m_subdivisions ), Subdivisions::CancelCaller( m_subdivisions ) ),
250         m_verticalSubdivisionsEntry( Subdivisions::ApplyCaller( m_subdivisions ), Subdivisions::CancelCaller( m_subdivisions ) ),
251         m_idleDraw( MemberCaller<PatchInspector, &PatchInspector::GetPatchInfo>( *this ) ){
252         m_fS = 0.0f;
253         m_fT = 0.0f;
254         m_fX = 0.0f;
255         m_fY = 0.0f;
256         m_fZ = 0.0f;
257         m_nCol = 0;
258         m_nRow = 0;
259         m_countRows = 0;
260         m_countCols = 0;
261         m_Patch = 0;
262         m_bListenChanged = true;
263
264         m_position_tracker.setPosition( c_default_window_pos );
265 }
266
267 bool visible(){
268         return GTK_WIDGET_VISIBLE( GetWidget() );
269 }
270
271 //  void UpdateInfo();
272 //  void SetPatchInfo();
273 void GetPatchInfo();
274 void UpdateSpinners( bool bUp, int nID );
275 // read the current patch on map and initialize m_fX m_fY accordingly
276 void UpdateRowColInfo();
277 // sync the dialog our internal data structures
278 // depending on the flag it will read or write
279 // we use m_nCol m_nRow m_fX m_fY m_fZ m_fS m_fT m_strName
280 // (NOTE: this doesn't actually commit stuff to the map or read from it)
281 void importData();
282 void exportData();
283 };
284
285 PatchInspector g_PatchInspector;
286
287 void PatchInspector_constructWindow( GtkWindow* main_window ){
288         g_PatchInspector.m_parent = main_window;
289         g_PatchInspector.Create();
290 }
291 void PatchInspector_destroyWindow(){
292         g_PatchInspector.Destroy();
293 }
294
295 void PatchInspector_queueDraw(){
296         if ( g_PatchInspector.visible() ) {
297                 g_PatchInspector.m_idleDraw.queueDraw();
298         }
299 }
300
301 void DoPatchInspector(){
302         g_PatchInspector.GetPatchInfo();
303         if ( !g_PatchInspector.visible() ) {
304                 g_PatchInspector.ShowDlg();
305         }
306 }
307
308 void PatchInspector_toggleShown(){
309         if ( g_PatchInspector.visible() ) {
310                 g_PatchInspector.m_Patch = 0;
311                 g_PatchInspector.HideDlg();
312         }
313         else{
314                 DoPatchInspector();
315         }
316 }
317
318
319 // =============================================================================
320 // static functions
321
322 // memorize the current state (that is don't try to undo our do before changing something else)
323 static void OnApply( GtkWidget *widget, gpointer data ){
324         g_PatchInspector.exportData();
325         if ( g_PatchInspector.m_Patch != 0 ) {
326                 UndoableCommand command( "patchSetTexture" );
327                 g_PatchInspector.m_Patch->undoSave();
328
329                 if ( !texdef_name_valid( g_PatchInspector.m_strName.c_str() ) ) {
330                         globalErrorStream() << "invalid texture name '" << g_PatchInspector.m_strName.c_str() << "'\n";
331                         g_PatchInspector.m_strName = texdef_name_default();
332                 }
333                 g_PatchInspector.m_Patch->SetShader( g_PatchInspector.m_strName.c_str() );
334
335                 std::size_t r = g_PatchInspector.m_nRow;
336                 std::size_t c = g_PatchInspector.m_nCol;
337                 if ( r < g_PatchInspector.m_Patch->getHeight()
338                          && c < g_PatchInspector.m_Patch->getWidth() ) {
339                         PatchControl& p = g_PatchInspector.m_Patch->ctrlAt( r,c );
340                         p.m_vertex[0] = g_PatchInspector.m_fX;
341                         p.m_vertex[1] = g_PatchInspector.m_fY;
342                         p.m_vertex[2] = g_PatchInspector.m_fZ;
343                         p.m_texcoord[0] = g_PatchInspector.m_fS;
344                         p.m_texcoord[1] = g_PatchInspector.m_fT;
345                         g_PatchInspector.m_Patch->controlPointsChanged();
346                 }
347         }
348 }
349
350 static void OnSelchangeComboColRow( GtkWidget *widget, gpointer data ){
351         if ( !g_PatchInspector.m_bListenChanged ) {
352                 return;
353         }
354         // retrieve the current m_nRow and m_nCol, other params are not relevant
355         g_PatchInspector.exportData();
356         // read the changed values ourselves
357         g_PatchInspector.UpdateRowColInfo();
358         // now reflect our changes
359         g_PatchInspector.importData();
360 }
361
362 class PatchSetTextureRepeat
363 {
364 float m_s, m_t;
365 public:
366 PatchSetTextureRepeat( float s, float t ) : m_s( s ), m_t( t ){
367 }
368 void operator()( Patch& patch ) const {
369         patch.SetTextureRepeat( m_s, m_t );
370 }
371 };
372
373 void Scene_PatchTileTexture_Selected( scene::Graph& graph, float s, float t ){
374         Scene_forEachVisibleSelectedPatch( PatchSetTextureRepeat( s, t ) );
375         SceneChangeNotify();
376 }
377
378 static void OnBtnPatchdetails( GtkWidget *widget, gpointer data ){
379         Patch_CapTexture();
380 }
381
382 static void OnBtnPatchfit( GtkWidget *widget, gpointer data ){
383         Patch_FitTexture();
384 }
385
386 static void OnBtnPatchnatural( GtkWidget *widget, gpointer data ){
387         Patch_NaturalTexture();
388 }
389
390 static void OnBtnPatchreset( GtkWidget *widget, gpointer data ){
391         Patch_ResetTexture();
392 }
393
394 struct PatchRotateTexture
395 {
396         float m_angle;
397 public:
398         PatchRotateTexture( float angle ) : m_angle( angle ){
399         }
400         void operator()( Patch& patch ) const {
401                 patch.RotateTexture( m_angle );
402         }
403 };
404
405 void Scene_PatchRotateTexture_Selected( scene::Graph& graph, float angle ){
406         Scene_forEachVisibleSelectedPatch( PatchRotateTexture( angle ) );
407 }
408
409 class PatchScaleTexture
410 {
411 float m_s, m_t;
412 public:
413 PatchScaleTexture( float s, float t ) : m_s( s ), m_t( t ){
414 }
415 void operator()( Patch& patch ) const {
416         patch.ScaleTexture( m_s, m_t );
417 }
418 };
419
420 float Patch_convertScale( float scale ){
421         if ( scale > 0 ) {
422                 return scale;
423         }
424         if ( scale < 0 ) {
425                 return -1 / scale;
426         }
427         return 1;
428 }
429
430 void Scene_PatchScaleTexture_Selected( scene::Graph& graph, float s, float t ){
431         Scene_forEachVisibleSelectedPatch( PatchScaleTexture( Patch_convertScale( s ), Patch_convertScale( t ) ) );
432 }
433
434 class PatchTranslateTexture
435 {
436 float m_s, m_t;
437 public:
438 PatchTranslateTexture( float s, float t )
439         : m_s( s ), m_t( t ){
440 }
441 void operator()( Patch& patch ) const {
442         patch.TranslateTexture( m_s, m_t );
443 }
444 };
445
446 void Scene_PatchTranslateTexture_Selected( scene::Graph& graph, float s, float t ){
447         Scene_forEachVisibleSelectedPatch( PatchTranslateTexture( s, t ) );
448 }
449
450 static void OnSpinChanged( GtkAdjustment *adj, gpointer data ){
451         texdef_t td;
452
453         td.rotate = 0;
454         td.scale[0] = td.scale[1] = 0;
455         td.shift[0] = td.shift[1] = 0;
456
457         if ( adj->value == 0 ) {
458                 return;
459         }
460
461         if ( adj == g_object_get_data( G_OBJECT( g_PatchInspector.GetWidget() ), "hshift_adj" ) ) {
462                 g_pi_globals.shift[0] = static_cast<float>( atof( gtk_entry_get_text( GTK_ENTRY( data ) ) ) );
463
464                 if ( adj->value > 0 ) {
465                         td.shift[0] = g_pi_globals.shift[0];
466                 }
467                 else{
468                         td.shift[0] = -g_pi_globals.shift[0];
469                 }
470         }
471         else if ( adj == g_object_get_data( G_OBJECT( g_PatchInspector.GetWidget() ), "vshift_adj" ) ) {
472                 g_pi_globals.shift[1] = static_cast<float>( atof( gtk_entry_get_text( GTK_ENTRY( data ) ) ) );
473
474                 if ( adj->value > 0 ) {
475                         td.shift[1] = g_pi_globals.shift[1];
476                 }
477                 else{
478                         td.shift[1] = -g_pi_globals.shift[1];
479                 }
480         }
481         else if ( adj == g_object_get_data( G_OBJECT( g_PatchInspector.GetWidget() ), "hscale_adj" ) ) {
482                 g_pi_globals.scale[0] = static_cast<float>( atof( gtk_entry_get_text( GTK_ENTRY( data ) ) ) );
483                 if ( g_pi_globals.scale[0] == 0.0f ) {
484                         return;
485                 }
486                 if ( adj->value > 0 ) {
487                         td.scale[0] = g_pi_globals.scale[0];
488                 }
489                 else{
490                         td.scale[0] = -g_pi_globals.scale[0];
491                 }
492         }
493         else if ( adj == g_object_get_data( G_OBJECT( g_PatchInspector.GetWidget() ), "vscale_adj" ) ) {
494                 g_pi_globals.scale[1] = static_cast<float>( atof( gtk_entry_get_text( GTK_ENTRY( data ) ) ) );
495                 if ( g_pi_globals.scale[1] == 0.0f ) {
496                         return;
497                 }
498                 if ( adj->value > 0 ) {
499                         td.scale[1] = g_pi_globals.scale[1];
500                 }
501                 else{
502                         td.scale[1] = -g_pi_globals.scale[1];
503                 }
504         }
505         else if ( adj == g_object_get_data( G_OBJECT( g_PatchInspector.GetWidget() ), "rotate_adj" ) ) {
506                 g_pi_globals.rotate = static_cast<float>( atof( gtk_entry_get_text( GTK_ENTRY( data ) ) ) );
507
508                 if ( adj->value > 0 ) {
509                         td.rotate = g_pi_globals.rotate;
510                 }
511                 else{
512                         td.rotate = -g_pi_globals.rotate;
513                 }
514         }
515
516         adj->value = 0;
517
518         // will scale shift rotate the patch accordingly
519
520
521         if ( td.shift[0] || td.shift[1] ) {
522                 UndoableCommand command( "patchTranslateTexture" );
523                 Scene_PatchTranslateTexture_Selected( GlobalSceneGraph(), td.shift[0], td.shift[1] );
524         }
525         else if ( td.scale[0] || td.scale[1] ) {
526                 UndoableCommand command( "patchScaleTexture" );
527                 Scene_PatchScaleTexture_Selected( GlobalSceneGraph(), td.scale[0], td.scale[1] );
528         }
529         else if ( td.rotate ) {
530                 UndoableCommand command( "patchRotateTexture" );
531                 Scene_PatchRotateTexture_Selected( GlobalSceneGraph(), td.rotate );
532         }
533
534         // update the point-by-point view
535         OnSelchangeComboColRow( 0,0 );
536 }
537
538 static gint OnDialogKey( GtkWidget* widget, GdkEventKey* event, gpointer data ){
539         if ( event->keyval == GDK_Return ) {
540                 OnApply( 0, 0 );
541                 return TRUE;
542         }
543         else if ( event->keyval == GDK_Escape ) {
544                 g_PatchInspector.GetPatchInfo();
545                 return TRUE;
546         }
547         return FALSE;
548 }
549
550 // =============================================================================
551 // PatchInspector class
552
553 GtkWindow* PatchInspector::BuildDialog(){
554         GtkWindow* window = create_floating_window( "Patch Properties", m_parent );
555
556         m_position_tracker.connect( window );
557
558         global_accel_connect_window( window );
559
560         window_connect_focus_in_clear_focus_widget( window );
561
562
563         {
564                 GtkVBox* vbox = GTK_VBOX( gtk_vbox_new( FALSE, 5 ) );
565                 gtk_container_set_border_width( GTK_CONTAINER( vbox ), 5 );
566                 gtk_widget_show( GTK_WIDGET( vbox ) );
567                 gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( vbox ) );
568                 {
569                         GtkHBox* hbox = GTK_HBOX( gtk_hbox_new( FALSE, 5 ) );
570                         gtk_widget_show( GTK_WIDGET( hbox ) );
571                         gtk_box_pack_start( GTK_BOX( vbox ), GTK_WIDGET( hbox ), TRUE, TRUE, 0 );
572                         {
573                                 GtkVBox* vbox2 = GTK_VBOX( gtk_vbox_new( FALSE, 0 ) );
574                                 gtk_container_set_border_width( GTK_CONTAINER( vbox2 ), 0 );
575                                 gtk_widget_show( GTK_WIDGET( vbox2 ) );
576                                 gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( vbox2 ), TRUE, TRUE, 0 );
577                                 {
578                                         GtkFrame* frame = GTK_FRAME( gtk_frame_new( "Details" ) );
579                                         gtk_widget_show( GTK_WIDGET( frame ) );
580                                         gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( frame ), TRUE, TRUE, 0 );
581                                         {
582                                                 GtkVBox* vbox3 = GTK_VBOX( gtk_vbox_new( FALSE, 5 ) );
583                                                 gtk_container_set_border_width( GTK_CONTAINER( vbox3 ), 5 );
584                                                 gtk_widget_show( GTK_WIDGET( vbox3 ) );
585                                                 gtk_container_add( GTK_CONTAINER( frame ), GTK_WIDGET( vbox3 ) );
586                                                 {
587                                                         GtkTable* table = GTK_TABLE( gtk_table_new( 2, 2, FALSE ) );
588                                                         gtk_widget_show( GTK_WIDGET( table ) );
589                                                         gtk_box_pack_start( GTK_BOX( vbox3 ), GTK_WIDGET( table ), TRUE, TRUE, 0 );
590                                                         gtk_table_set_row_spacings( table, 5 );
591                                                         gtk_table_set_col_spacings( table, 5 );
592                                                         {
593                                                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Row:" ) );
594                                                                 gtk_widget_show( GTK_WIDGET( label ) );
595                                                                 gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 0, 1,
596                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
597                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
598                                                         }
599                                                         {
600                                                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Column:" ) );
601                                                                 gtk_widget_show( GTK_WIDGET( label ) );
602                                                                 gtk_table_attach( table, GTK_WIDGET( label ), 1, 2, 0, 1,
603                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
604                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
605                                                         }
606                                                         {
607                                                                 GtkComboBox* combo = GTK_COMBO_BOX( gtk_combo_box_new_text() );
608                                                                 g_signal_connect( G_OBJECT( combo ), "changed", G_CALLBACK( OnSelchangeComboColRow ), this );
609                                                                 AddDialogData( *combo, m_nRow );
610
611                                                                 gtk_widget_show( GTK_WIDGET( combo ) );
612                                                                 gtk_table_attach( table, GTK_WIDGET( combo ), 0, 1, 1, 2,
613                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
614                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
615                                                                 gtk_widget_set_usize( GTK_WIDGET( combo ), 60, -1 );
616                                                                 m_pRowCombo = combo;
617                                                         }
618
619                                                         {
620                                                                 GtkComboBox* combo = GTK_COMBO_BOX( gtk_combo_box_new_text() );
621                                                                 g_signal_connect( G_OBJECT( combo ), "changed", G_CALLBACK( OnSelchangeComboColRow ), this );
622                                                                 AddDialogData( *combo, m_nCol );
623
624                                                                 gtk_widget_show( GTK_WIDGET( combo ) );
625                                                                 gtk_table_attach( table, GTK_WIDGET( combo ), 1, 2, 1, 2,
626                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
627                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
628                                                                 gtk_widget_set_usize( GTK_WIDGET( combo ), 60, -1 );
629                                                                 m_pColCombo = combo;
630                                                         }
631                                                 }
632                                                 GtkTable* table = GTK_TABLE( gtk_table_new( 5, 2, FALSE ) );
633                                                 gtk_widget_show( GTK_WIDGET( table ) );
634                                                 gtk_box_pack_start( GTK_BOX( vbox3 ), GTK_WIDGET( table ), TRUE, TRUE, 0 );
635                                                 gtk_table_set_row_spacings( table, 5 );
636                                                 gtk_table_set_col_spacings( table, 5 );
637                                                 {
638                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "X:" ) );
639                                                         gtk_widget_show( GTK_WIDGET( label ) );
640                                                         gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 0, 1,
641                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
642                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
643                                                 }
644                                                 {
645                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "Y:" ) );
646                                                         gtk_widget_show( GTK_WIDGET( label ) );
647                                                         gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 1, 2,
648                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
649                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
650                                                 }
651                                                 {
652                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "Z:" ) );
653                                                         gtk_widget_show( GTK_WIDGET( label ) );
654                                                         gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 2, 3,
655                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
656                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
657                                                 }
658                                                 {
659                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "S:" ) );
660                                                         gtk_widget_show( GTK_WIDGET( label ) );
661                                                         gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 3, 4,
662                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
663                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
664                                                 }
665                                                 {
666                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "T:" ) );
667                                                         gtk_widget_show( GTK_WIDGET( label ) );
668                                                         gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 4, 5,
669                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
670                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
671                                                 }
672                                                 {
673                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
674                                                         gtk_widget_show( GTK_WIDGET( entry ) );
675                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 1, 2, 0, 1,
676                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
677                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
678                                                         AddDialogData( *entry, m_fX );
679
680                                                         g_signal_connect( G_OBJECT( entry ), "key_press_event", G_CALLBACK( OnDialogKey ), 0 );
681                                                 }
682                                                 {
683                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
684                                                         gtk_widget_show( GTK_WIDGET( entry ) );
685                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 1, 2, 1, 2,
686                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
687                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
688                                                         AddDialogData( *entry, m_fY );
689
690                                                         g_signal_connect( G_OBJECT( entry ), "key_press_event", G_CALLBACK( OnDialogKey ), 0 );
691                                                 }
692                                                 {
693                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
694                                                         gtk_widget_show( GTK_WIDGET( entry ) );
695                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 1, 2, 2, 3,
696                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
697                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
698                                                         AddDialogData( *entry, m_fZ );
699
700                                                         g_signal_connect( G_OBJECT( entry ), "key_press_event", G_CALLBACK( OnDialogKey ), 0 );
701                                                 }
702                                                 {
703                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
704                                                         gtk_widget_show( GTK_WIDGET( entry ) );
705                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 1, 2, 3, 4,
706                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
707                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
708                                                         AddDialogData( *entry, m_fS );
709
710                                                         g_signal_connect( G_OBJECT( entry ), "key_press_event", G_CALLBACK( OnDialogKey ), 0 );
711                                                 }
712                                                 {
713                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
714                                                         gtk_widget_show( GTK_WIDGET( entry ) );
715                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 1, 2, 4, 5,
716                                                                                           (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
717                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
718                                                         AddDialogData( *entry, m_fT );
719
720                                                         g_signal_connect( G_OBJECT( entry ), "key_press_event", G_CALLBACK( OnDialogKey ), 0 );
721                                                 }
722                                         }
723                                 }
724                                 if ( g_pGameDescription->mGameType == "doom3" ) {
725                                         GtkFrame* frame = GTK_FRAME( gtk_frame_new( "Tesselation" ) );
726                                         gtk_widget_show( GTK_WIDGET( frame ) );
727                                         gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( frame ), TRUE, TRUE, 0 );
728                                         {
729                                                 GtkVBox* vbox3 = GTK_VBOX( gtk_vbox_new( FALSE, 5 ) );
730                                                 gtk_container_set_border_width( GTK_CONTAINER( vbox3 ), 5 );
731                                                 gtk_widget_show( GTK_WIDGET( vbox3 ) );
732                                                 gtk_container_add( GTK_CONTAINER( frame ), GTK_WIDGET( vbox3 ) );
733                                                 {
734                                                         GtkTable* table = GTK_TABLE( gtk_table_new( 3, 2, FALSE ) );
735                                                         gtk_widget_show( GTK_WIDGET( table ) );
736                                                         gtk_box_pack_start( GTK_BOX( vbox3 ), GTK_WIDGET( table ), TRUE, TRUE, 0 );
737                                                         gtk_table_set_row_spacings( table, 5 );
738                                                         gtk_table_set_col_spacings( table, 5 );
739                                                         {
740                                                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Fixed" ) );
741                                                                 gtk_widget_show( GTK_WIDGET( label ) );
742                                                                 gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 0, 1,
743                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
744                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
745                                                         }
746                                                         {
747                                                                 GtkCheckButton* check = GTK_CHECK_BUTTON( gtk_check_button_new() );
748                                                                 gtk_widget_show( GTK_WIDGET( check ) );
749                                                                 gtk_table_attach( table, GTK_WIDGET( check ), 1, 2, 0, 1,
750                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
751                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
752                                                                 m_subdivisions.m_enabled = check;
753                                                                 guint handler_id = g_signal_connect( G_OBJECT( check ), "toggled", G_CALLBACK( &Subdivisions::applyGtk ), &m_subdivisions );
754                                                                 g_object_set_data( G_OBJECT( check ), "handler", gint_to_pointer( handler_id ) );
755                                                         }
756                                                         {
757                                                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Horizontal" ) );
758                                                                 gtk_widget_show( GTK_WIDGET( label ) );
759                                                                 gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 1, 2,
760                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
761                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
762                                                         }
763                                                         {
764                                                                 GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
765                                                                 gtk_widget_show( GTK_WIDGET( entry ) );
766                                                                 gtk_table_attach( table, GTK_WIDGET( entry ), 1, 2, 1, 2,
767                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
768                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
769                                                                 m_subdivisions.m_horizontal = entry;
770                                                                 m_horizontalSubdivisionsEntry.connect( entry );
771                                                         }
772                                                         {
773                                                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Vertical" ) );
774                                                                 gtk_widget_show( GTK_WIDGET( label ) );
775                                                                 gtk_table_attach( table, GTK_WIDGET( label ), 0, 1, 2, 3,
776                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
777                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
778                                                         }
779                                                         {
780                                                                 GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
781                                                                 gtk_widget_show( GTK_WIDGET( entry ) );
782                                                                 gtk_table_attach( table, GTK_WIDGET( entry ), 1, 2, 2, 3,
783                                                                                                   (GtkAttachOptions)( GTK_EXPAND | GTK_FILL ),
784                                                                                                   (GtkAttachOptions)( 0 ), 0, 0 );
785                                                                 m_subdivisions.m_vertical = entry;
786                                                                 m_verticalSubdivisionsEntry.connect( entry );
787                                                         }
788                                                 }
789                                         }
790                                 }
791                         }
792                         {
793                                 GtkFrame* frame = GTK_FRAME( gtk_frame_new( "Texturing" ) );
794                                 gtk_widget_show( GTK_WIDGET( frame ) );
795                                 gtk_box_pack_start( GTK_BOX( hbox ), GTK_WIDGET( frame ), TRUE, TRUE, 0 );
796                                 {
797                                         GtkVBox* vbox2 = GTK_VBOX( gtk_vbox_new( FALSE, 5 ) );
798                                         gtk_widget_show( GTK_WIDGET( vbox2 ) );
799                                         gtk_container_add( GTK_CONTAINER( frame ), GTK_WIDGET( vbox2 ) );
800                                         gtk_container_set_border_width( GTK_CONTAINER( vbox2 ), 5 );
801                                         {
802                                                 GtkLabel* label = GTK_LABEL( gtk_label_new( "Name:" ) );
803                                                 gtk_widget_show( GTK_WIDGET( label ) );
804                                                 gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( label ), TRUE, TRUE, 0 );
805                                                 gtk_label_set_justify( label, GTK_JUSTIFY_LEFT );
806                                                 gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
807                                         }
808                                         {
809                                                 GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
810                                                 //  gtk_entry_set_editable (GTK_ENTRY (entry), false);
811                                                 gtk_widget_show( GTK_WIDGET( entry ) );
812                                                 gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( entry ), TRUE, TRUE, 0 );
813                                                 AddDialogData( *entry, m_strName );
814
815                                                 g_signal_connect( G_OBJECT( entry ), "key_press_event", G_CALLBACK( OnDialogKey ), 0 );
816                                         }
817                                         {
818                                                 GtkTable* table = GTK_TABLE( gtk_table_new( 5, 3, FALSE ) );
819                                                 gtk_widget_show( GTK_WIDGET( table ) );
820                                                 gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( table ), TRUE, TRUE, 0 );
821                                                 gtk_table_set_row_spacings( table, 5 );
822                                                 gtk_table_set_col_spacings( table, 5 );
823                                                 {
824                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "Horizontal Shift Step" ) );
825                                                         gtk_widget_show( GTK_WIDGET( label ) );
826                                                         gtk_table_attach( table, GTK_WIDGET( label ), 2, 3, 0, 1,
827                                                                                           (GtkAttachOptions)( GTK_FILL ),
828                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
829                                                         gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
830                                                 }
831                                                 {
832                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "Vertical Shift Step" ) );
833                                                         gtk_widget_show( GTK_WIDGET( label ) );
834                                                         gtk_table_attach( table, GTK_WIDGET( label ), 2, 3, 1, 2,
835                                                                                           (GtkAttachOptions)( GTK_FILL ),
836                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
837                                                         gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
838                                                 }
839                                                 {
840                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "Horizontal Stretch Step" ) );
841                                                         gtk_widget_show( GTK_WIDGET( label ) );
842                                                         gtk_table_attach( table, GTK_WIDGET( label ), 2, 3, 2, 3,
843                                                                                           (GtkAttachOptions)( GTK_FILL ),
844                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
845                                                         gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
846                                                 }
847                                                 {
848                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "Vertical Stretch Step" ) );
849                                                         gtk_widget_show( GTK_WIDGET( label ) );
850                                                         gtk_table_attach( table, GTK_WIDGET( label ), 2, 3, 3, 4,
851                                                                                           (GtkAttachOptions)( GTK_FILL ),
852                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
853                                                         gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
854                                                 }
855                                                 {
856                                                         GtkLabel* label = GTK_LABEL( gtk_label_new( "Rotate Step" ) );
857                                                         gtk_widget_show( GTK_WIDGET( label ) );
858                                                         gtk_table_attach( table, GTK_WIDGET( label ), 2, 3, 4, 5,
859                                                                                           (GtkAttachOptions)( GTK_FILL ),
860                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
861                                                         gtk_misc_set_alignment( GTK_MISC( label ), 0, 0.5 );
862                                                 }
863                                                 {
864                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
865                                                         gtk_widget_show( GTK_WIDGET( entry ) );
866                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 0, 1, 0, 1,
867                                                                                           (GtkAttachOptions)( GTK_FILL ),
868                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
869                                                         gtk_widget_set_usize( GTK_WIDGET( entry ), 50, -2 );
870                                                         g_object_set_data( G_OBJECT( window ), "hshift_entry", entry );
871                                                         // we fill in this data, if no patch is selected the widgets are unmodified when the inspector is raised
872                                                         // so we need to have at least one initialisation somewhere
873                                                         entry_set_float( entry, g_pi_globals.shift[0] );
874
875                                                         GtkAdjustment* adj = GTK_ADJUSTMENT( gtk_adjustment_new( 0, -8192, 8192, 1, 1, 0 ) );
876                                                         g_signal_connect( G_OBJECT( adj ), "value_changed", G_CALLBACK( OnSpinChanged ), entry );
877                                                         g_object_set_data( G_OBJECT( window ), "hshift_adj", adj );
878
879                                                         GtkSpinButton* spin = GTK_SPIN_BUTTON( gtk_spin_button_new( adj, 1, 0 ) );
880                                                         gtk_widget_show( GTK_WIDGET( spin ) );
881                                                         gtk_table_attach( table, GTK_WIDGET( spin ), 1, 2, 0, 1,
882                                                                                           (GtkAttachOptions)( 0 ),
883                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
884                                                         gtk_widget_set_usize( GTK_WIDGET( spin ), 10, -2 );
885                                                         GTK_WIDGET_UNSET_FLAGS( spin, GTK_CAN_FOCUS );
886                                                 }
887                                                 {
888                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
889                                                         gtk_widget_show( GTK_WIDGET( entry ) );
890                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 0, 1, 1, 2,
891                                                                                           (GtkAttachOptions)( GTK_FILL ),
892                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
893                                                         gtk_widget_set_usize( GTK_WIDGET( entry ), 50, -2 );
894                                                         entry_set_float( entry, g_pi_globals.shift[1] );
895
896                                                         GtkAdjustment* adj = GTK_ADJUSTMENT( gtk_adjustment_new( 0, -8192, 8192, 1, 1, 0 ) );
897                                                         g_signal_connect( G_OBJECT( adj ), "value_changed", G_CALLBACK( OnSpinChanged ), entry );
898                                                         g_object_set_data( G_OBJECT( window ), "vshift_adj", adj );
899
900                                                         GtkSpinButton* spin = GTK_SPIN_BUTTON( gtk_spin_button_new( adj, 1, 0 ) );
901                                                         gtk_widget_show( GTK_WIDGET( spin ) );
902                                                         gtk_table_attach( table, GTK_WIDGET( spin ), 1, 2, 1, 2,
903                                                                                           (GtkAttachOptions)( 0 ),
904                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
905                                                         gtk_widget_set_usize( GTK_WIDGET( spin ), 10, -2 );
906                                                         GTK_WIDGET_UNSET_FLAGS( spin, GTK_CAN_FOCUS );
907                                                 }
908                                                 {
909                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
910                                                         gtk_widget_show( GTK_WIDGET( entry ) );
911                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 0, 1, 2, 3,
912                                                                                           (GtkAttachOptions)( GTK_FILL ),
913                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
914                                                         gtk_widget_set_usize( GTK_WIDGET( entry ), 50, -2 );
915                                                         entry_set_float( entry, g_pi_globals.scale[0] );
916
917                                                         GtkAdjustment* adj = GTK_ADJUSTMENT( gtk_adjustment_new( 0, -1000, 1000, 1, 1, 0 ) );
918                                                         g_signal_connect( G_OBJECT( adj ), "value_changed", G_CALLBACK( OnSpinChanged ), entry );
919                                                         g_object_set_data( G_OBJECT( window ), "hscale_adj", adj );
920
921                                                         GtkSpinButton* spin = GTK_SPIN_BUTTON( gtk_spin_button_new( adj, 1, 0 ) );
922                                                         gtk_widget_show( GTK_WIDGET( spin ) );
923                                                         gtk_table_attach( table, GTK_WIDGET( spin ), 1, 2, 2, 3,
924                                                                                           (GtkAttachOptions)( 0 ),
925                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
926                                                         gtk_widget_set_usize( GTK_WIDGET( spin ), 10, -2 );
927                                                         GTK_WIDGET_UNSET_FLAGS( spin, GTK_CAN_FOCUS );
928                                                 }
929                                                 {
930                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
931                                                         gtk_widget_show( GTK_WIDGET( entry ) );
932                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 0, 1, 3, 4,
933                                                                                           (GtkAttachOptions)( GTK_FILL ),
934                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
935                                                         gtk_widget_set_usize( GTK_WIDGET( entry ), 50, -2 );
936                                                         entry_set_float( entry, g_pi_globals.scale[1] );
937
938                                                         GtkAdjustment* adj = GTK_ADJUSTMENT( gtk_adjustment_new( 0, -1000, 1000, 1, 1, 0 ) );
939                                                         g_signal_connect( G_OBJECT( adj ), "value_changed", G_CALLBACK( OnSpinChanged ), entry );
940                                                         g_object_set_data( G_OBJECT( window ), "vscale_adj", adj );
941
942                                                         GtkSpinButton* spin = GTK_SPIN_BUTTON( gtk_spin_button_new( adj, 1, 0 ) );
943                                                         gtk_widget_show( GTK_WIDGET( spin ) );
944                                                         gtk_table_attach( table, GTK_WIDGET( spin ), 1, 2, 3, 4,
945                                                                                           (GtkAttachOptions)( 0 ),
946                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
947                                                         gtk_widget_set_usize( GTK_WIDGET( spin ), 10, -2 );
948                                                         GTK_WIDGET_UNSET_FLAGS( spin, GTK_CAN_FOCUS );
949                                                 }
950                                                 {
951                                                         GtkEntry* entry = GTK_ENTRY( gtk_entry_new() );
952                                                         gtk_widget_show( GTK_WIDGET( entry ) );
953                                                         gtk_table_attach( table, GTK_WIDGET( entry ), 0, 1, 4, 5,
954                                                                                           (GtkAttachOptions)( GTK_FILL ),
955                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
956                                                         gtk_widget_set_usize( GTK_WIDGET( entry ), 50, -2 );
957                                                         entry_set_float( entry, g_pi_globals.rotate );
958
959                                                         GtkAdjustment* adj = GTK_ADJUSTMENT( gtk_adjustment_new( 0, -1000, 1000, 1, 1, 0 ) ); // NOTE: Arnout - this really should be 360 but can't change it anymore as it could break existing maps
960                                                         g_signal_connect( G_OBJECT( adj ), "value_changed", G_CALLBACK( OnSpinChanged ), entry );
961                                                         g_object_set_data( G_OBJECT( window ), "rotate_adj", adj );
962
963                                                         GtkSpinButton* spin = GTK_SPIN_BUTTON( gtk_spin_button_new( adj, 1, 0 ) );
964                                                         gtk_widget_show( GTK_WIDGET( spin ) );
965                                                         gtk_table_attach( table, GTK_WIDGET( spin ), 1, 2, 4, 5,
966                                                                                           (GtkAttachOptions)( 0 ),
967                                                                                           (GtkAttachOptions)( 0 ), 0, 0 );
968                                                         gtk_widget_set_usize( GTK_WIDGET( spin ), 10, -2 );
969                                                         GTK_WIDGET_UNSET_FLAGS( spin, GTK_CAN_FOCUS );
970                                                 }
971                                         }
972                                         GtkHBox* hbox2 = GTK_HBOX( gtk_hbox_new( TRUE, 5 ) );
973                                         gtk_widget_show( GTK_WIDGET( hbox2 ) );
974                                         gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( hbox2 ), TRUE, FALSE, 0 );
975                                         {
976                                                 GtkButton* button = GTK_BUTTON( gtk_button_new_with_label( "CAP" ) );
977                                                 gtk_widget_show( GTK_WIDGET( button ) );
978                                                 gtk_box_pack_end( GTK_BOX( hbox2 ), GTK_WIDGET( button ), TRUE, FALSE, 0 );
979                                                 g_signal_connect( G_OBJECT( button ), "clicked", G_CALLBACK( OnBtnPatchdetails ), 0 );
980                                                 gtk_widget_set_usize( GTK_WIDGET( button ), 60, -1 );
981                                         }
982                                         {
983                                                 GtkButton* button = GTK_BUTTON( gtk_button_new_with_label( "Set..." ) );
984                                                 gtk_widget_show( GTK_WIDGET( button ) );
985                                                 gtk_box_pack_end( GTK_BOX( hbox2 ), GTK_WIDGET( button ), TRUE, FALSE, 0 );
986                                                 g_signal_connect( G_OBJECT( button ), "clicked", G_CALLBACK( OnBtnPatchreset ), 0 );
987                                                 gtk_widget_set_usize( GTK_WIDGET( button ), 60, -1 );
988                                         }
989                                         {
990                                                 GtkButton* button = GTK_BUTTON( gtk_button_new_with_label( "Natural" ) );
991                                                 gtk_widget_show( GTK_WIDGET( button ) );
992                                                 gtk_box_pack_end( GTK_BOX( hbox2 ), GTK_WIDGET( button ), TRUE, FALSE, 0 );
993                                                 g_signal_connect( G_OBJECT( button ), "clicked", G_CALLBACK( OnBtnPatchnatural ), 0 );
994                                                 gtk_widget_set_usize( GTK_WIDGET( button ), 60, -1 );
995                                         }
996                                         {
997                                                 GtkButton* button = GTK_BUTTON( gtk_button_new_with_label( "Fit" ) );
998                                                 gtk_widget_show( GTK_WIDGET( button ) );
999                                                 gtk_box_pack_end( GTK_BOX( hbox2 ), GTK_WIDGET( button ), TRUE, FALSE, 0 );
1000                                                 g_signal_connect( G_OBJECT( button ), "clicked", G_CALLBACK( OnBtnPatchfit ), 0 );
1001                                                 gtk_widget_set_usize( GTK_WIDGET( button ), 60, -1 );
1002                                         }
1003                                 }
1004                         }
1005                 }
1006         }
1007
1008         return window;
1009 }
1010
1011 // sync the dialog our internal data structures
1012 void PatchInspector::exportData(){
1013         m_bListenChanged = false;
1014         Dialog::exportData();
1015         m_bListenChanged = true;
1016 }
1017 void PatchInspector::importData(){
1018         m_bListenChanged = false;
1019         Dialog::importData();
1020         m_bListenChanged = true;
1021 }
1022
1023 // read the map and feed in the stuff to the dialog box
1024 void PatchInspector::GetPatchInfo(){
1025         if ( g_pGameDescription->mGameType == "doom3" ) {
1026                 m_subdivisions.update();
1027         }
1028
1029         if ( GlobalSelectionSystem().countSelected() == 0 ) {
1030                 m_Patch = 0;
1031         }
1032         else
1033         {
1034                 m_Patch = Node_getPatch( GlobalSelectionSystem().ultimateSelected().path().top() );
1035         }
1036
1037         if ( m_Patch != 0 ) {
1038                 m_strName = m_Patch->GetShader();
1039
1040                 // fill in the numbers for Row / Col selection
1041                 m_bListenChanged = false;
1042
1043                 {
1044                         gtk_combo_box_set_active( m_pRowCombo, 0 );
1045
1046                         for ( std::size_t i = 0; i < m_countRows; ++i )
1047                         {
1048                                 gtk_combo_box_remove_text( m_pRowCombo, gint( m_countRows - i - 1 ) );
1049                         }
1050
1051                         m_countRows = m_Patch->getHeight();
1052                         for ( std::size_t i = 0; i < m_countRows; ++i )
1053                         {
1054                                 char buffer[16];
1055                                 sprintf( buffer, "%u", Unsigned( i ) );
1056                                 gtk_combo_box_append_text( m_pRowCombo, buffer );
1057                         }
1058
1059                         gtk_combo_box_set_active( m_pRowCombo, 0 );
1060                 }
1061
1062                 {
1063                         gtk_combo_box_set_active( m_pColCombo, 0 );
1064
1065                         for ( std::size_t i = 0; i < m_countCols; ++i )
1066                         {
1067                                 gtk_combo_box_remove_text( m_pColCombo, gint( m_countCols - i - 1 ) );
1068                         }
1069
1070                         m_countCols = m_Patch->getWidth();
1071                         for ( std::size_t i = 0; i < m_countCols; ++i )
1072                         {
1073                                 char buffer[16];
1074                                 sprintf( buffer, "%u", Unsigned( i ) );
1075                                 gtk_combo_box_append_text( m_pColCombo, buffer );
1076                         }
1077
1078                         gtk_combo_box_set_active( m_pColCombo, 0 );
1079                 }
1080
1081                 m_bListenChanged = true;
1082
1083         }
1084         else
1085         {
1086                 //globalOutputStream() << "WARNING: no patch\n";
1087         }
1088         // fill in our internal structs
1089         m_nRow = 0; m_nCol = 0;
1090         UpdateRowColInfo();
1091         // now update the dialog box
1092         importData();
1093 }
1094
1095 // read the current patch on map and initialize m_fX m_fY accordingly
1096 // NOTE: don't call UpdateData in there, it's not meant for
1097 void PatchInspector::UpdateRowColInfo(){
1098         m_fX = m_fY = m_fZ = m_fS = m_fT = 0.0;
1099
1100         if ( m_Patch != 0 ) {
1101                 // we rely on whatever active row/column has been set before we get called
1102                 std::size_t r = m_nRow;
1103                 std::size_t c = m_nCol;
1104                 if ( r < m_Patch->getHeight()
1105                          && c < m_Patch->getWidth() ) {
1106                         const PatchControl& p = m_Patch->ctrlAt( r,c );
1107                         m_fX = p.m_vertex[0];
1108                         m_fY = p.m_vertex[1];
1109                         m_fZ = p.m_vertex[2];
1110                         m_fS = p.m_texcoord[0];
1111                         m_fT = p.m_texcoord[1];
1112                 }
1113         }
1114 }
1115
1116
1117 void PatchInspector_SelectionChanged( const Selectable& selectable ){
1118         PatchInspector_queueDraw();
1119 }
1120
1121
1122 #include "preferencesystem.h"
1123
1124
1125 void PatchInspector_Construct(){
1126         GlobalCommands_insert( "PatchInspector", FreeCaller<PatchInspector_toggleShown>(), Accelerator( 'S', (GdkModifierType)GDK_SHIFT_MASK ) );
1127
1128         GlobalPreferenceSystem().registerPreference( "PatchWnd", WindowPositionTrackerImportStringCaller( g_PatchInspector.m_position_tracker ), WindowPositionTrackerExportStringCaller( g_PatchInspector.m_position_tracker ) );
1129         GlobalPreferenceSystem().registerPreference( "SI_PatchTexdef_Scale1", FloatImportStringCaller( g_pi_globals.scale[0] ), FloatExportStringCaller( g_pi_globals.scale[0] ) );
1130         GlobalPreferenceSystem().registerPreference( "SI_PatchTexdef_Scale2", FloatImportStringCaller( g_pi_globals.scale[1] ), FloatExportStringCaller( g_pi_globals.scale[1] ) );
1131         GlobalPreferenceSystem().registerPreference( "SI_PatchTexdef_Shift1", FloatImportStringCaller( g_pi_globals.shift[0] ), FloatExportStringCaller( g_pi_globals.shift[0] ) );
1132         GlobalPreferenceSystem().registerPreference( "SI_PatchTexdef_Shift2", FloatImportStringCaller( g_pi_globals.shift[1] ), FloatExportStringCaller( g_pi_globals.shift[1] ) );
1133         GlobalPreferenceSystem().registerPreference( "SI_PatchTexdef_Rotate", FloatImportStringCaller( g_pi_globals.rotate ), FloatExportStringCaller( g_pi_globals.rotate ) );
1134
1135         typedef FreeCaller1<const Selectable&, PatchInspector_SelectionChanged> PatchInspectorSelectionChangedCaller;
1136         GlobalSelectionSystem().addSelectionChangeCallback( PatchInspectorSelectionChangedCaller() );
1137         typedef FreeCaller<PatchInspector_queueDraw> PatchInspectorQueueDrawCaller;
1138         Patch_addTextureChangedCallback( PatchInspectorQueueDrawCaller() );
1139 }
1140 void PatchInspector_Destroy(){
1141 }