From: Stijn Buys Date: Thu, 27 Jun 2013 19:32:37 +0000 (+0200) Subject: Replaced bmp icons in bitmaps/ with png files, changed the code accordingly. X-Git-Tag: xonotic-v0.8.1~1^2^2~3 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e5f1c473e4252eedcc66faed00eed8324a033692;p=xonotic%2Fnetradiant.git Replaced bmp icons in bitmaps/ with png files, changed the code accordingly. --- diff --git a/plugins/shaders/plugin.cpp b/plugins/shaders/plugin.cpp index 3f2cc483..ee021936 100644 --- a/plugins/shaders/plugin.cpp +++ b/plugins/shaders/plugin.cpp @@ -41,7 +41,7 @@ class ShadersDependencies : ImageModuleRef m_bitmapModule; public: ShadersDependencies() : - m_bitmapModule( "bmp" ){ + m_bitmapModule( "png" ){ } ImageModuleRef& getBitmapModule(){ return m_bitmapModule; diff --git a/plugins/shaders/shaders.cpp b/plugins/shaders/shaders.cpp index 54df7abc..a7a3078d 100644 --- a/plugins/shaders/shaders.cpp +++ b/plugins/shaders/shaders.cpp @@ -207,7 +207,7 @@ Image* loadHeightmap( void* environment, const char* name ){ Image* loadSpecial( void* environment, const char* name ){ if ( *name == '_' ) { // special image StringOutputStream bitmapName( 256 ); - bitmapName << GlobalRadiant().getAppPath() << "bitmaps/" << name + 1 << ".bmp"; + bitmapName << GlobalRadiant().getAppPath() << "bitmaps/" << name + 1 << ".png"; Image* image = loadBitmap( environment, bitmapName.c_str() ); if ( image != 0 ) { return image; @@ -951,7 +951,7 @@ void realise(){ { StringOutputStream name( 256 ); - name << GlobalRadiant().getAppPath() << "bitmaps/" << ( IsDefault() ? "notex.bmp" : "shadernotex.bmp" ); + name << GlobalRadiant().getAppPath() << "bitmaps/" << ( IsDefault() ? "notex.png" : "shadernotex.png" ); m_pTexture = GlobalTexturesCache().capture( LoadImageCallback( 0, loadBitmap ), name.c_str() ); } } diff --git a/radiant/camwindow.cpp b/radiant/camwindow.cpp index de2e03e0..9e97ce96 100644 --- a/radiant/camwindow.cpp +++ b/radiant/camwindow.cpp @@ -1664,7 +1664,7 @@ void Camera_ToggleFarClip(){ void CamWnd_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_toggle_button( toolbar, "Cubic clip the camera view (\\)", "view_cubicclipping.bmp", "ToggleCubicClip" ); + toolbar_append_toggle_button( toolbar, "Cubic clip the camera view (\\)", "view_cubicclipping.png", "ToggleCubicClip" ); } void CamWnd_registerShortcuts(){ diff --git a/radiant/gtkdlgs.cpp b/radiant/gtkdlgs.cpp index dddbcc92..696758d4 100644 --- a/radiant/gtkdlgs.cpp +++ b/radiant/gtkdlgs.cpp @@ -465,7 +465,7 @@ void DoAbout(){ GtkFrame* frame = create_dialog_frame( 0, GTK_SHADOW_IN ); gtk_box_pack_start( GTK_BOX( vbox2 ), GTK_WIDGET( frame ), FALSE, FALSE, 0 ); { - GtkImage* image = new_local_image( "logo.bmp" ); + GtkImage* image = new_local_image( "logo.png" ); gtk_widget_show( GTK_WIDGET( image ) ); gtk_container_add( GTK_CONTAINER( frame ), GTK_WIDGET( image ) ); } diff --git a/radiant/mainframe.cpp b/radiant/mainframe.cpp index abb12ef6..e2739a11 100644 --- a/radiant/mainframe.cpp +++ b/radiant/mainframe.cpp @@ -2271,55 +2271,55 @@ void register_shortcuts(){ } void File_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_button( toolbar, "Open an existing map (CTRL + O)", "file_open.bmp", "OpenMap" ); - toolbar_append_button( toolbar, "Save the active map (CTRL + S)", "file_save.bmp", "SaveMap" ); + toolbar_append_button( toolbar, "Open an existing map (CTRL + O)", "file_open.png", "OpenMap" ); + toolbar_append_button( toolbar, "Save the active map (CTRL + S)", "file_save.png", "SaveMap" ); } void UndoRedo_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_button( toolbar, "Undo (CTRL + Z)", "undo.bmp", "Undo" ); - toolbar_append_button( toolbar, "Redo (CTRL + Y)", "redo.bmp", "Redo" ); + toolbar_append_button( toolbar, "Undo (CTRL + Z)", "undo.png", "Undo" ); + toolbar_append_button( toolbar, "Redo (CTRL + Y)", "redo.png", "Redo" ); } void RotateFlip_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_button( toolbar, "x-axis Flip", "brush_flipx.bmp", "MirrorSelectionX" ); - toolbar_append_button( toolbar, "x-axis Rotate", "brush_rotatex.bmp", "RotateSelectionX" ); - toolbar_append_button( toolbar, "y-axis Flip", "brush_flipy.bmp", "MirrorSelectionY" ); - toolbar_append_button( toolbar, "y-axis Rotate", "brush_rotatey.bmp", "RotateSelectionY" ); - toolbar_append_button( toolbar, "z-axis Flip", "brush_flipz.bmp", "MirrorSelectionZ" ); - toolbar_append_button( toolbar, "z-axis Rotate", "brush_rotatez.bmp", "RotateSelectionZ" ); + toolbar_append_button( toolbar, "x-axis Flip", "brush_flipx.png", "MirrorSelectionX" ); + toolbar_append_button( toolbar, "x-axis Rotate", "brush_rotatex.png", "RotateSelectionX" ); + toolbar_append_button( toolbar, "y-axis Flip", "brush_flipy.png", "MirrorSelectionY" ); + toolbar_append_button( toolbar, "y-axis Rotate", "brush_rotatey.png", "RotateSelectionY" ); + toolbar_append_button( toolbar, "z-axis Flip", "brush_flipz.png", "MirrorSelectionZ" ); + toolbar_append_button( toolbar, "z-axis Rotate", "brush_rotatez.png", "RotateSelectionZ" ); } void Select_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_button( toolbar, "Select touching", "selection_selecttouching.bmp", "SelectTouching" ); - toolbar_append_button( toolbar, "Select inside", "selection_selectinside.bmp", "SelectInside" ); + toolbar_append_button( toolbar, "Select touching", "selection_selecttouching.png", "SelectTouching" ); + toolbar_append_button( toolbar, "Select inside", "selection_selectinside.png", "SelectInside" ); } void CSG_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_button( toolbar, "CSG Subtract (SHIFT + U)", "selection_csgsubtract.bmp", "CSGSubtract" ); - toolbar_append_button( toolbar, "CSG Merge (CTRL + U)", "selection_csgmerge.bmp", "CSGMerge" ); - toolbar_append_button( toolbar, "Hollow", "selection_makehollow.bmp", "CSGHollow" ); + toolbar_append_button( toolbar, "CSG Subtract (SHIFT + U)", "selection_csgsubtract.png", "CSGSubtract" ); + toolbar_append_button( toolbar, "CSG Merge (CTRL + U)", "selection_csgmerge.png", "CSGMerge" ); + toolbar_append_button( toolbar, "Hollow", "selection_makehollow.png", "CSGHollow" ); } void ComponentModes_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_toggle_button( toolbar, "Select Vertices (V)", "modify_vertices.bmp", "DragVertices" ); - toolbar_append_toggle_button( toolbar, "Select Edges (E)", "modify_edges.bmp", "DragEdges" ); - toolbar_append_toggle_button( toolbar, "Select Faces (F)", "modify_faces.bmp", "DragFaces" ); + toolbar_append_toggle_button( toolbar, "Select Vertices (V)", "modify_vertices.png", "DragVertices" ); + toolbar_append_toggle_button( toolbar, "Select Edges (E)", "modify_edges.png", "DragEdges" ); + toolbar_append_toggle_button( toolbar, "Select Faces (F)", "modify_faces.png", "DragFaces" ); } void Clipper_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_toggle_button( toolbar, "Clipper (X)", "view_clipper.bmp", "ToggleClipper" ); + toolbar_append_toggle_button( toolbar, "Clipper (X)", "view_clipper.png", "ToggleClipper" ); } void XYWnd_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_button( toolbar, "Change views", "view_change.bmp", "NextView" ); + toolbar_append_button( toolbar, "Change views", "view_change.png", "NextView" ); } void Manipulators_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_toggle_button( toolbar, "Translate (W)", "select_mousetranslate.bmp", "MouseTranslate" ); - toolbar_append_toggle_button( toolbar, "Rotate (R)", "select_mouserotate.bmp", "MouseRotate" ); - toolbar_append_toggle_button( toolbar, "Scale", "select_mousescale.bmp", "MouseScale" ); - toolbar_append_toggle_button( toolbar, "Resize (Q)", "select_mouseresize.bmp", "MouseDrag" ); + toolbar_append_toggle_button( toolbar, "Translate (W)", "select_mousetranslate.png", "MouseTranslate" ); + toolbar_append_toggle_button( toolbar, "Rotate (R)", "select_mouserotate.png", "MouseRotate" ); + toolbar_append_toggle_button( toolbar, "Scale", "select_mousescale.png", "MouseScale" ); + toolbar_append_toggle_button( toolbar, "Resize (Q)", "select_mouseresize.png", "MouseDrag" ); Clipper_constructToolbar( toolbar ); } @@ -2375,18 +2375,18 @@ GtkToolbar* create_main_toolbar( MainFrame::EViewStyle style ){ gtk_toolbar_append_space( GTK_TOOLBAR( toolbar ) ); - toolbar_append_toggle_button( toolbar, "Texture Lock (SHIFT +T)", "texture_lock.bmp", "TogTexLock" ); + toolbar_append_toggle_button( toolbar, "Texture Lock (SHIFT +T)", "texture_lock.png", "TogTexLock" ); gtk_toolbar_append_space( GTK_TOOLBAR( toolbar ) ); - GtkButton* g_view_entities_button = toolbar_append_button( toolbar, "Entities (N)", "entities.bmp", "ToggleEntityInspector" ); - GtkButton* g_view_console_button = toolbar_append_button( toolbar, "Console (O)", "console.bmp", "ToggleConsole" ); - GtkButton* g_view_textures_button = toolbar_append_button( toolbar, "Texture Browser (T)", "texture_browser.bmp", "ToggleTextures" ); + GtkButton* g_view_entities_button = toolbar_append_button( toolbar, "Entities (N)", "entities.png", "ToggleEntityInspector" ); + GtkButton* g_view_console_button = toolbar_append_button( toolbar, "Console (O)", "console.png", "ToggleConsole" ); + GtkButton* g_view_textures_button = toolbar_append_button( toolbar, "Texture Browser (T)", "texture_browser.png", "ToggleTextures" ); // TODO: call light inspector - //GtkButton* g_view_lightinspector_button = toolbar_append_button(toolbar, "Light Inspector", "lightinspector.bmp", "ToggleLightInspector"); + //GtkButton* g_view_lightinspector_button = toolbar_append_button(toolbar, "Light Inspector", "lightinspector.png", "ToggleLightInspector"); gtk_toolbar_append_space( GTK_TOOLBAR( toolbar ) ); - GtkButton* g_refresh_models_button = toolbar_append_button( toolbar, "Refresh Models", "refresh_models.bmp", "RefreshReferences" ); + GtkButton* g_refresh_models_button = toolbar_append_button( toolbar, "Refresh Models", "refresh_models.png", "RefreshReferences" ); // disable the console and texture button in the regular layouts @@ -2678,7 +2678,7 @@ GtkWindow* create_splash(){ gtk_window_set_position( window, GTK_WIN_POS_CENTER ); gtk_container_set_border_width( GTK_CONTAINER( window ), 0 ); - GtkImage* image = new_local_image( "splash.bmp" ); + GtkImage* image = new_local_image( "splash.png" ); gtk_widget_show( GTK_WIDGET( image ) ); gtk_container_add( GTK_CONTAINER( window ), GTK_WIDGET( image ) ); @@ -2722,7 +2722,7 @@ void MainFrame::Create(){ #if !defined( WIN32 ) { - GdkPixbuf* pixbuf = pixbuf_new_from_file_with_mask( "bitmaps/icon.bmp" ); + GdkPixbuf* pixbuf = pixbuf_new_from_file_with_mask( "bitmaps/icon.png" ); if ( pixbuf != 0 ) { gtk_window_set_icon( window, pixbuf ); gdk_pixbuf_unref( pixbuf ); @@ -3138,7 +3138,7 @@ void GlobalGL_sharedContextDestroyed(){ void Layout_constructPreferences( PreferencesPage& page ){ { - const char* layouts[] = { "window1.bmp", "window2.bmp", "window3.bmp", "window4.bmp" }; + const char* layouts[] = { "window1.png", "window2.png", "window3.png", "window4.png" }; page.appendRadioIcons( "Window Layout", STRING_ARRAY_RANGE( layouts ), diff --git a/radiant/patchmanip.cpp b/radiant/patchmanip.cpp index d5471e98..298ff597 100644 --- a/radiant/patchmanip.cpp +++ b/radiant/patchmanip.cpp @@ -701,7 +701,7 @@ void Patch_registerCommands(){ } void Patch_constructToolbar( GtkToolbar* toolbar ){ - toolbar_append_button( toolbar, "Put caps on the current patch (SHIFT + C)", "curve_cap.bmp", "CapCurrentCurve" ); + toolbar_append_button( toolbar, "Put caps on the current patch (SHIFT + C)", "curve_cap.png", "CapCurrentCurve" ); } void Patch_constructMenu( GtkMenu* menu ){ @@ -957,35 +957,35 @@ EMessageBoxReturn DoCapDlg( ECapDialog* type ){ gtk_table_set_col_spacings( table, 5 ); { - GtkImage* image = new_local_image( "cap_bevel.bmp" ); + GtkImage* image = new_local_image( "cap_bevel.png" ); gtk_widget_show( GTK_WIDGET( image ) ); gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 0, 1, (GtkAttachOptions) ( GTK_FILL ), (GtkAttachOptions) ( 0 ), 0, 0 ); } { - GtkImage* image = new_local_image( "cap_endcap.bmp" ); + GtkImage* image = new_local_image( "cap_endcap.png" ); gtk_widget_show( GTK_WIDGET( image ) ); gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 1, 2, (GtkAttachOptions) ( GTK_FILL ), (GtkAttachOptions) ( 0 ), 0, 0 ); } { - GtkImage* image = new_local_image( "cap_ibevel.bmp" ); + GtkImage* image = new_local_image( "cap_ibevel.png" ); gtk_widget_show( GTK_WIDGET( image ) ); gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 2, 3, (GtkAttachOptions) ( GTK_FILL ), (GtkAttachOptions) ( 0 ), 0, 0 ); } { - GtkImage* image = new_local_image( "cap_iendcap.bmp" ); + GtkImage* image = new_local_image( "cap_iendcap.png" ); gtk_widget_show( GTK_WIDGET( image ) ); gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 3, 4, (GtkAttachOptions) ( GTK_FILL ), (GtkAttachOptions) ( 0 ), 0, 0 ); } { - GtkImage* image = new_local_image( "cap_cylinder.bmp" ); + GtkImage* image = new_local_image( "cap_cylinder.png" ); gtk_widget_show( GTK_WIDGET( image ) ); gtk_table_attach( table, GTK_WIDGET( image ), 0, 1, 4, 5, (GtkAttachOptions) ( GTK_FILL ), diff --git a/radiant/texwindow.cpp b/radiant/texwindow.cpp index 94717d09..5621aaa1 100644 --- a/radiant/texwindow.cpp +++ b/radiant/texwindow.cpp @@ -1877,11 +1877,11 @@ void TextureBrowser_checkTagFile(){ void TextureBrowser_SetNotex(){ StringOutputStream name( 256 ); - name << GlobalRadiant().getAppPath() << "bitmaps/notex.bmp"; + name << GlobalRadiant().getAppPath() << "bitmaps/notex.png"; g_notex = name.c_str(); name = NULL; - name << GlobalRadiant().getAppPath() << "bitmaps/shadernotex.bmp"; + name << GlobalRadiant().getAppPath() << "bitmaps/shadernotex.png"; g_shadernotex = name.c_str(); } diff --git a/setup/data/tools-src/notex.xcf b/setup/data/tools-src/notex.xcf new file mode 100644 index 00000000..6aa111a6 Binary files /dev/null and b/setup/data/tools-src/notex.xcf differ diff --git a/setup/data/tools-src/shadernotex.xcf b/setup/data/tools-src/shadernotex.xcf new file mode 100644 index 00000000..de43725a Binary files /dev/null and b/setup/data/tools-src/shadernotex.xcf differ diff --git a/setup/data/tools/bitmaps/black.bmp b/setup/data/tools/bitmaps/black.bmp deleted file mode 100644 index 8fc59ba1..00000000 Binary files a/setup/data/tools/bitmaps/black.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/black.png b/setup/data/tools/bitmaps/black.png new file mode 100644 index 00000000..6d3e4549 Binary files /dev/null and b/setup/data/tools/bitmaps/black.png differ diff --git a/setup/data/tools/bitmaps/brush_flipx.bmp b/setup/data/tools/bitmaps/brush_flipx.bmp deleted file mode 100644 index 48ee0dbc..00000000 Binary files a/setup/data/tools/bitmaps/brush_flipx.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_flipx.png b/setup/data/tools/bitmaps/brush_flipx.png new file mode 100644 index 00000000..21a7309b Binary files /dev/null and b/setup/data/tools/bitmaps/brush_flipx.png differ diff --git a/setup/data/tools/bitmaps/brush_flipy.bmp b/setup/data/tools/bitmaps/brush_flipy.bmp deleted file mode 100644 index d7408773..00000000 Binary files a/setup/data/tools/bitmaps/brush_flipy.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_flipy.png b/setup/data/tools/bitmaps/brush_flipy.png new file mode 100644 index 00000000..d5be6374 Binary files /dev/null and b/setup/data/tools/bitmaps/brush_flipy.png differ diff --git a/setup/data/tools/bitmaps/brush_flipz.bmp b/setup/data/tools/bitmaps/brush_flipz.bmp deleted file mode 100644 index 017c33e9..00000000 Binary files a/setup/data/tools/bitmaps/brush_flipz.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_flipz.png b/setup/data/tools/bitmaps/brush_flipz.png new file mode 100644 index 00000000..57a08378 Binary files /dev/null and b/setup/data/tools/bitmaps/brush_flipz.png differ diff --git a/setup/data/tools/bitmaps/brush_rotatex.bmp b/setup/data/tools/bitmaps/brush_rotatex.bmp deleted file mode 100644 index c7e55053..00000000 Binary files a/setup/data/tools/bitmaps/brush_rotatex.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_rotatex.png b/setup/data/tools/bitmaps/brush_rotatex.png new file mode 100644 index 00000000..9185a8c9 Binary files /dev/null and b/setup/data/tools/bitmaps/brush_rotatex.png differ diff --git a/setup/data/tools/bitmaps/brush_rotatey.bmp b/setup/data/tools/bitmaps/brush_rotatey.bmp deleted file mode 100644 index e50e5d6d..00000000 Binary files a/setup/data/tools/bitmaps/brush_rotatey.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_rotatey.png b/setup/data/tools/bitmaps/brush_rotatey.png new file mode 100644 index 00000000..b5a9098a Binary files /dev/null and b/setup/data/tools/bitmaps/brush_rotatey.png differ diff --git a/setup/data/tools/bitmaps/brush_rotatez.bmp b/setup/data/tools/bitmaps/brush_rotatez.bmp deleted file mode 100644 index 52ab554a..00000000 Binary files a/setup/data/tools/bitmaps/brush_rotatez.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/brush_rotatez.png b/setup/data/tools/bitmaps/brush_rotatez.png new file mode 100644 index 00000000..4ca21554 Binary files /dev/null and b/setup/data/tools/bitmaps/brush_rotatez.png differ diff --git a/setup/data/tools/bitmaps/cap_bevel.bmp b/setup/data/tools/bitmaps/cap_bevel.bmp deleted file mode 100644 index 3bb4186e..00000000 Binary files a/setup/data/tools/bitmaps/cap_bevel.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/cap_bevel.png b/setup/data/tools/bitmaps/cap_bevel.png new file mode 100644 index 00000000..f2330401 Binary files /dev/null and b/setup/data/tools/bitmaps/cap_bevel.png differ diff --git a/setup/data/tools/bitmaps/cap_cylinder.bmp b/setup/data/tools/bitmaps/cap_cylinder.bmp deleted file mode 100644 index 21969267..00000000 Binary files a/setup/data/tools/bitmaps/cap_cylinder.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/cap_cylinder.png b/setup/data/tools/bitmaps/cap_cylinder.png new file mode 100644 index 00000000..90551612 Binary files /dev/null and b/setup/data/tools/bitmaps/cap_cylinder.png differ diff --git a/setup/data/tools/bitmaps/cap_endcap.bmp b/setup/data/tools/bitmaps/cap_endcap.bmp deleted file mode 100644 index e6cea655..00000000 Binary files a/setup/data/tools/bitmaps/cap_endcap.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/cap_endcap.png b/setup/data/tools/bitmaps/cap_endcap.png new file mode 100644 index 00000000..61923fa7 Binary files /dev/null and b/setup/data/tools/bitmaps/cap_endcap.png differ diff --git a/setup/data/tools/bitmaps/cap_ibevel.bmp b/setup/data/tools/bitmaps/cap_ibevel.bmp deleted file mode 100644 index b1fa49b3..00000000 Binary files a/setup/data/tools/bitmaps/cap_ibevel.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/cap_ibevel.png b/setup/data/tools/bitmaps/cap_ibevel.png new file mode 100644 index 00000000..b6c7dc55 Binary files /dev/null and b/setup/data/tools/bitmaps/cap_ibevel.png differ diff --git a/setup/data/tools/bitmaps/cap_iendcap.bmp b/setup/data/tools/bitmaps/cap_iendcap.bmp deleted file mode 100644 index da1f5b66..00000000 Binary files a/setup/data/tools/bitmaps/cap_iendcap.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/cap_iendcap.png b/setup/data/tools/bitmaps/cap_iendcap.png new file mode 100644 index 00000000..3f0d6ceb Binary files /dev/null and b/setup/data/tools/bitmaps/cap_iendcap.png differ diff --git a/setup/data/tools/bitmaps/console.bmp b/setup/data/tools/bitmaps/console.bmp deleted file mode 100644 index 7fe64b0e..00000000 Binary files a/setup/data/tools/bitmaps/console.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/console.png b/setup/data/tools/bitmaps/console.png new file mode 100644 index 00000000..29c0aab4 Binary files /dev/null and b/setup/data/tools/bitmaps/console.png differ diff --git a/setup/data/tools/bitmaps/curve_cap.bmp b/setup/data/tools/bitmaps/curve_cap.bmp deleted file mode 100644 index 574e7611..00000000 Binary files a/setup/data/tools/bitmaps/curve_cap.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/curve_cap.png b/setup/data/tools/bitmaps/curve_cap.png new file mode 100644 index 00000000..272b4528 Binary files /dev/null and b/setup/data/tools/bitmaps/curve_cap.png differ diff --git a/setup/data/tools/bitmaps/dontselectcurve.bmp b/setup/data/tools/bitmaps/dontselectcurve.bmp deleted file mode 100644 index a7b97954..00000000 Binary files a/setup/data/tools/bitmaps/dontselectcurve.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/dontselectcurve.png b/setup/data/tools/bitmaps/dontselectcurve.png new file mode 100644 index 00000000..cc4293fb Binary files /dev/null and b/setup/data/tools/bitmaps/dontselectcurve.png differ diff --git a/setup/data/tools/bitmaps/dontselectmodel.bmp b/setup/data/tools/bitmaps/dontselectmodel.bmp deleted file mode 100644 index e81b1189..00000000 Binary files a/setup/data/tools/bitmaps/dontselectmodel.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/dontselectmodel.png b/setup/data/tools/bitmaps/dontselectmodel.png new file mode 100644 index 00000000..f891421e Binary files /dev/null and b/setup/data/tools/bitmaps/dontselectmodel.png differ diff --git a/setup/data/tools/bitmaps/ellipsis.bmp b/setup/data/tools/bitmaps/ellipsis.bmp deleted file mode 100644 index a4360a9e..00000000 Binary files a/setup/data/tools/bitmaps/ellipsis.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/ellipsis.png b/setup/data/tools/bitmaps/ellipsis.png new file mode 100644 index 00000000..d9bf8f67 Binary files /dev/null and b/setup/data/tools/bitmaps/ellipsis.png differ diff --git a/setup/data/tools/bitmaps/entities.bmp b/setup/data/tools/bitmaps/entities.bmp deleted file mode 100644 index ce3d8124..00000000 Binary files a/setup/data/tools/bitmaps/entities.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/entities.png b/setup/data/tools/bitmaps/entities.png new file mode 100644 index 00000000..ad784036 Binary files /dev/null and b/setup/data/tools/bitmaps/entities.png differ diff --git a/setup/data/tools/bitmaps/file_open.bmp b/setup/data/tools/bitmaps/file_open.bmp deleted file mode 100644 index 754f10fb..00000000 Binary files a/setup/data/tools/bitmaps/file_open.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/file_open.png b/setup/data/tools/bitmaps/file_open.png new file mode 100644 index 00000000..621e6eb6 Binary files /dev/null and b/setup/data/tools/bitmaps/file_open.png differ diff --git a/setup/data/tools/bitmaps/file_save.bmp b/setup/data/tools/bitmaps/file_save.bmp deleted file mode 100644 index 651afb68..00000000 Binary files a/setup/data/tools/bitmaps/file_save.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/file_save.png b/setup/data/tools/bitmaps/file_save.png new file mode 100644 index 00000000..6f0693f7 Binary files /dev/null and b/setup/data/tools/bitmaps/file_save.png differ diff --git a/setup/data/tools/bitmaps/icon.bmp b/setup/data/tools/bitmaps/icon.bmp deleted file mode 100644 index 01aec6ea..00000000 Binary files a/setup/data/tools/bitmaps/icon.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/icon.png b/setup/data/tools/bitmaps/icon.png new file mode 100644 index 00000000..d0cdfc05 Binary files /dev/null and b/setup/data/tools/bitmaps/icon.png differ diff --git a/setup/data/tools/bitmaps/lightinspector.bmp b/setup/data/tools/bitmaps/lightinspector.bmp deleted file mode 100644 index 00b00a90..00000000 Binary files a/setup/data/tools/bitmaps/lightinspector.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/lightinspector.png b/setup/data/tools/bitmaps/lightinspector.png new file mode 100644 index 00000000..93688b37 Binary files /dev/null and b/setup/data/tools/bitmaps/lightinspector.png differ diff --git a/setup/data/tools/bitmaps/logo.bmp b/setup/data/tools/bitmaps/logo.bmp deleted file mode 100644 index ddbd3461..00000000 Binary files a/setup/data/tools/bitmaps/logo.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/logo.png b/setup/data/tools/bitmaps/logo.png new file mode 100644 index 00000000..fd5afd4b Binary files /dev/null and b/setup/data/tools/bitmaps/logo.png differ diff --git a/setup/data/tools/bitmaps/modify_edges.bmp b/setup/data/tools/bitmaps/modify_edges.bmp deleted file mode 100644 index 7b048f96..00000000 Binary files a/setup/data/tools/bitmaps/modify_edges.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/modify_edges.png b/setup/data/tools/bitmaps/modify_edges.png new file mode 100644 index 00000000..7ce45d3f Binary files /dev/null and b/setup/data/tools/bitmaps/modify_edges.png differ diff --git a/setup/data/tools/bitmaps/modify_faces.bmp b/setup/data/tools/bitmaps/modify_faces.bmp deleted file mode 100644 index 03d9f8c2..00000000 Binary files a/setup/data/tools/bitmaps/modify_faces.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/modify_faces.png b/setup/data/tools/bitmaps/modify_faces.png new file mode 100644 index 00000000..f54552f6 Binary files /dev/null and b/setup/data/tools/bitmaps/modify_faces.png differ diff --git a/setup/data/tools/bitmaps/modify_vertices.bmp b/setup/data/tools/bitmaps/modify_vertices.bmp deleted file mode 100644 index c434732e..00000000 Binary files a/setup/data/tools/bitmaps/modify_vertices.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/modify_vertices.png b/setup/data/tools/bitmaps/modify_vertices.png new file mode 100644 index 00000000..d46a1725 Binary files /dev/null and b/setup/data/tools/bitmaps/modify_vertices.png differ diff --git a/setup/data/tools/bitmaps/noFalloff.bmp b/setup/data/tools/bitmaps/noFalloff.bmp deleted file mode 100644 index e86d10c9..00000000 Binary files a/setup/data/tools/bitmaps/noFalloff.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/noFalloff.png b/setup/data/tools/bitmaps/noFalloff.png new file mode 100644 index 00000000..55c6a801 Binary files /dev/null and b/setup/data/tools/bitmaps/noFalloff.png differ diff --git a/setup/data/tools/bitmaps/notex.bmp b/setup/data/tools/bitmaps/notex.bmp deleted file mode 100644 index b06664a7..00000000 Binary files a/setup/data/tools/bitmaps/notex.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/notex.png b/setup/data/tools/bitmaps/notex.png new file mode 100644 index 00000000..e09df399 Binary files /dev/null and b/setup/data/tools/bitmaps/notex.png differ diff --git a/setup/data/tools/bitmaps/patch_bend.bmp b/setup/data/tools/bitmaps/patch_bend.bmp deleted file mode 100644 index af4fc94c..00000000 Binary files a/setup/data/tools/bitmaps/patch_bend.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_bend.png b/setup/data/tools/bitmaps/patch_bend.png new file mode 100644 index 00000000..05a2f1df Binary files /dev/null and b/setup/data/tools/bitmaps/patch_bend.png differ diff --git a/setup/data/tools/bitmaps/patch_drilldown.bmp b/setup/data/tools/bitmaps/patch_drilldown.bmp deleted file mode 100644 index 01ebcf39..00000000 Binary files a/setup/data/tools/bitmaps/patch_drilldown.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_drilldown.png b/setup/data/tools/bitmaps/patch_drilldown.png new file mode 100644 index 00000000..4b1a9a53 Binary files /dev/null and b/setup/data/tools/bitmaps/patch_drilldown.png differ diff --git a/setup/data/tools/bitmaps/patch_insdel.bmp b/setup/data/tools/bitmaps/patch_insdel.bmp deleted file mode 100644 index b60b76b0..00000000 Binary files a/setup/data/tools/bitmaps/patch_insdel.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_insdel.png b/setup/data/tools/bitmaps/patch_insdel.png new file mode 100644 index 00000000..425613b4 Binary files /dev/null and b/setup/data/tools/bitmaps/patch_insdel.png differ diff --git a/setup/data/tools/bitmaps/patch_showboundingbox.bmp b/setup/data/tools/bitmaps/patch_showboundingbox.bmp deleted file mode 100644 index 357cfaf1..00000000 Binary files a/setup/data/tools/bitmaps/patch_showboundingbox.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_showboundingbox.png b/setup/data/tools/bitmaps/patch_showboundingbox.png new file mode 100644 index 00000000..a88a30bc Binary files /dev/null and b/setup/data/tools/bitmaps/patch_showboundingbox.png differ diff --git a/setup/data/tools/bitmaps/patch_weld.bmp b/setup/data/tools/bitmaps/patch_weld.bmp deleted file mode 100644 index a0c99730..00000000 Binary files a/setup/data/tools/bitmaps/patch_weld.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_weld.png b/setup/data/tools/bitmaps/patch_weld.png new file mode 100644 index 00000000..aa100dd4 Binary files /dev/null and b/setup/data/tools/bitmaps/patch_weld.png differ diff --git a/setup/data/tools/bitmaps/patch_wireframe.bmp b/setup/data/tools/bitmaps/patch_wireframe.bmp deleted file mode 100644 index 9804274f..00000000 Binary files a/setup/data/tools/bitmaps/patch_wireframe.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/patch_wireframe.png b/setup/data/tools/bitmaps/patch_wireframe.png new file mode 100644 index 00000000..0cac2de0 Binary files /dev/null and b/setup/data/tools/bitmaps/patch_wireframe.png differ diff --git a/setup/data/tools/bitmaps/popup_selection.bmp b/setup/data/tools/bitmaps/popup_selection.bmp deleted file mode 100644 index 676c4d98..00000000 Binary files a/setup/data/tools/bitmaps/popup_selection.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/popup_selection.png b/setup/data/tools/bitmaps/popup_selection.png new file mode 100644 index 00000000..b17fbb5c Binary files /dev/null and b/setup/data/tools/bitmaps/popup_selection.png differ diff --git a/setup/data/tools/bitmaps/redo.bmp b/setup/data/tools/bitmaps/redo.bmp deleted file mode 100644 index 32a373af..00000000 Binary files a/setup/data/tools/bitmaps/redo.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/redo.png b/setup/data/tools/bitmaps/redo.png new file mode 100644 index 00000000..5dba3045 Binary files /dev/null and b/setup/data/tools/bitmaps/redo.png differ diff --git a/setup/data/tools/bitmaps/refresh_models.bmp b/setup/data/tools/bitmaps/refresh_models.bmp deleted file mode 100644 index b6507f61..00000000 Binary files a/setup/data/tools/bitmaps/refresh_models.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/refresh_models.png b/setup/data/tools/bitmaps/refresh_models.png new file mode 100644 index 00000000..394eaa68 Binary files /dev/null and b/setup/data/tools/bitmaps/refresh_models.png differ diff --git a/setup/data/tools/bitmaps/scalelockx.bmp b/setup/data/tools/bitmaps/scalelockx.bmp deleted file mode 100644 index 61363da2..00000000 Binary files a/setup/data/tools/bitmaps/scalelockx.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/scalelockx.png b/setup/data/tools/bitmaps/scalelockx.png new file mode 100644 index 00000000..0dda2026 Binary files /dev/null and b/setup/data/tools/bitmaps/scalelockx.png differ diff --git a/setup/data/tools/bitmaps/scalelocky.bmp b/setup/data/tools/bitmaps/scalelocky.bmp deleted file mode 100644 index 812394db..00000000 Binary files a/setup/data/tools/bitmaps/scalelocky.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/scalelocky.png b/setup/data/tools/bitmaps/scalelocky.png new file mode 100644 index 00000000..72db9d29 Binary files /dev/null and b/setup/data/tools/bitmaps/scalelocky.png differ diff --git a/setup/data/tools/bitmaps/scalelockz.bmp b/setup/data/tools/bitmaps/scalelockz.bmp deleted file mode 100644 index 5692e4a7..00000000 Binary files a/setup/data/tools/bitmaps/scalelockz.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/scalelockz.png b/setup/data/tools/bitmaps/scalelockz.png new file mode 100644 index 00000000..e8bca272 Binary files /dev/null and b/setup/data/tools/bitmaps/scalelockz.png differ diff --git a/setup/data/tools/bitmaps/select_mouseresize.bmp b/setup/data/tools/bitmaps/select_mouseresize.bmp deleted file mode 100644 index ca0c9ac3..00000000 Binary files a/setup/data/tools/bitmaps/select_mouseresize.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/select_mouseresize.png b/setup/data/tools/bitmaps/select_mouseresize.png new file mode 100644 index 00000000..8abcd046 Binary files /dev/null and b/setup/data/tools/bitmaps/select_mouseresize.png differ diff --git a/setup/data/tools/bitmaps/select_mouserotate.bmp b/setup/data/tools/bitmaps/select_mouserotate.bmp deleted file mode 100644 index 7f18a561..00000000 Binary files a/setup/data/tools/bitmaps/select_mouserotate.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/select_mouserotate.png b/setup/data/tools/bitmaps/select_mouserotate.png new file mode 100644 index 00000000..89742669 Binary files /dev/null and b/setup/data/tools/bitmaps/select_mouserotate.png differ diff --git a/setup/data/tools/bitmaps/select_mousescale.bmp b/setup/data/tools/bitmaps/select_mousescale.bmp deleted file mode 100644 index d8f39024..00000000 Binary files a/setup/data/tools/bitmaps/select_mousescale.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/select_mousescale.png b/setup/data/tools/bitmaps/select_mousescale.png new file mode 100644 index 00000000..ec85a1d6 Binary files /dev/null and b/setup/data/tools/bitmaps/select_mousescale.png differ diff --git a/setup/data/tools/bitmaps/select_mousetranslate.bmp b/setup/data/tools/bitmaps/select_mousetranslate.bmp deleted file mode 100644 index 04962fde..00000000 Binary files a/setup/data/tools/bitmaps/select_mousetranslate.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/select_mousetranslate.png b/setup/data/tools/bitmaps/select_mousetranslate.png new file mode 100644 index 00000000..69dd2480 Binary files /dev/null and b/setup/data/tools/bitmaps/select_mousetranslate.png differ diff --git a/setup/data/tools/bitmaps/selection_csgmerge.bmp b/setup/data/tools/bitmaps/selection_csgmerge.bmp deleted file mode 100644 index fb5df4f9..00000000 Binary files a/setup/data/tools/bitmaps/selection_csgmerge.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_csgmerge.png b/setup/data/tools/bitmaps/selection_csgmerge.png new file mode 100644 index 00000000..d761a38b Binary files /dev/null and b/setup/data/tools/bitmaps/selection_csgmerge.png differ diff --git a/setup/data/tools/bitmaps/selection_csgsubtract.bmp b/setup/data/tools/bitmaps/selection_csgsubtract.bmp deleted file mode 100644 index 267d3749..00000000 Binary files a/setup/data/tools/bitmaps/selection_csgsubtract.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_csgsubtract.png b/setup/data/tools/bitmaps/selection_csgsubtract.png new file mode 100644 index 00000000..7539baf1 Binary files /dev/null and b/setup/data/tools/bitmaps/selection_csgsubtract.png differ diff --git a/setup/data/tools/bitmaps/selection_makehollow.bmp b/setup/data/tools/bitmaps/selection_makehollow.bmp deleted file mode 100644 index 8c5d60cd..00000000 Binary files a/setup/data/tools/bitmaps/selection_makehollow.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_makehollow.png b/setup/data/tools/bitmaps/selection_makehollow.png new file mode 100644 index 00000000..e7fb57a7 Binary files /dev/null and b/setup/data/tools/bitmaps/selection_makehollow.png differ diff --git a/setup/data/tools/bitmaps/selection_selectcompletetall.bmp b/setup/data/tools/bitmaps/selection_selectcompletetall.bmp deleted file mode 100644 index 8d2c1043..00000000 Binary files a/setup/data/tools/bitmaps/selection_selectcompletetall.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selectcompletetall.png b/setup/data/tools/bitmaps/selection_selectcompletetall.png new file mode 100644 index 00000000..c4efb370 Binary files /dev/null and b/setup/data/tools/bitmaps/selection_selectcompletetall.png differ diff --git a/setup/data/tools/bitmaps/selection_selectcompletetall_old.bmp b/setup/data/tools/bitmaps/selection_selectcompletetall_old.bmp deleted file mode 100644 index 1f911e8c..00000000 Binary files a/setup/data/tools/bitmaps/selection_selectcompletetall_old.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selectcompletetall_old.png b/setup/data/tools/bitmaps/selection_selectcompletetall_old.png new file mode 100644 index 00000000..b18704b2 Binary files /dev/null and b/setup/data/tools/bitmaps/selection_selectcompletetall_old.png differ diff --git a/setup/data/tools/bitmaps/selection_selectinside.bmp b/setup/data/tools/bitmaps/selection_selectinside.bmp deleted file mode 100644 index 12b22afb..00000000 Binary files a/setup/data/tools/bitmaps/selection_selectinside.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selectinside.png b/setup/data/tools/bitmaps/selection_selectinside.png new file mode 100644 index 00000000..dfa18793 Binary files /dev/null and b/setup/data/tools/bitmaps/selection_selectinside.png differ diff --git a/setup/data/tools/bitmaps/selection_selectpartialtall.bmp b/setup/data/tools/bitmaps/selection_selectpartialtall.bmp deleted file mode 100644 index d21ddc2c..00000000 Binary files a/setup/data/tools/bitmaps/selection_selectpartialtall.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selectpartialtall.png b/setup/data/tools/bitmaps/selection_selectpartialtall.png new file mode 100644 index 00000000..b9b7d5d4 Binary files /dev/null and b/setup/data/tools/bitmaps/selection_selectpartialtall.png differ diff --git a/setup/data/tools/bitmaps/selection_selectpartialtall_old.bmp b/setup/data/tools/bitmaps/selection_selectpartialtall_old.bmp deleted file mode 100644 index 77b418be..00000000 Binary files a/setup/data/tools/bitmaps/selection_selectpartialtall_old.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selectpartialtall_old.png b/setup/data/tools/bitmaps/selection_selectpartialtall_old.png new file mode 100644 index 00000000..e301f73b Binary files /dev/null and b/setup/data/tools/bitmaps/selection_selectpartialtall_old.png differ diff --git a/setup/data/tools/bitmaps/selection_selecttouching.bmp b/setup/data/tools/bitmaps/selection_selecttouching.bmp deleted file mode 100644 index e6d5c4b6..00000000 Binary files a/setup/data/tools/bitmaps/selection_selecttouching.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/selection_selecttouching.png b/setup/data/tools/bitmaps/selection_selecttouching.png new file mode 100644 index 00000000..f1015a43 Binary files /dev/null and b/setup/data/tools/bitmaps/selection_selecttouching.png differ diff --git a/setup/data/tools/bitmaps/shadernotex.bmp b/setup/data/tools/bitmaps/shadernotex.bmp deleted file mode 100644 index 6be415e7..00000000 Binary files a/setup/data/tools/bitmaps/shadernotex.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/shadernotex.png b/setup/data/tools/bitmaps/shadernotex.png new file mode 100644 index 00000000..0eab827a Binary files /dev/null and b/setup/data/tools/bitmaps/shadernotex.png differ diff --git a/setup/data/tools/bitmaps/show_entities.bmp b/setup/data/tools/bitmaps/show_entities.bmp deleted file mode 100644 index 9188bee6..00000000 Binary files a/setup/data/tools/bitmaps/show_entities.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/show_entities.png b/setup/data/tools/bitmaps/show_entities.png new file mode 100644 index 00000000..db525ae0 Binary files /dev/null and b/setup/data/tools/bitmaps/show_entities.png differ diff --git a/setup/data/tools/bitmaps/splash.bmp b/setup/data/tools/bitmaps/splash.bmp deleted file mode 100644 index a484997f..00000000 Binary files a/setup/data/tools/bitmaps/splash.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/splash.png b/setup/data/tools/bitmaps/splash.png new file mode 100644 index 00000000..af09ccd8 Binary files /dev/null and b/setup/data/tools/bitmaps/splash.png differ diff --git a/setup/data/tools/bitmaps/texture_browser.bmp b/setup/data/tools/bitmaps/texture_browser.bmp deleted file mode 100644 index 22f72506..00000000 Binary files a/setup/data/tools/bitmaps/texture_browser.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/texture_browser.png b/setup/data/tools/bitmaps/texture_browser.png new file mode 100644 index 00000000..f5dafc9a Binary files /dev/null and b/setup/data/tools/bitmaps/texture_browser.png differ diff --git a/setup/data/tools/bitmaps/texture_lock.bmp b/setup/data/tools/bitmaps/texture_lock.bmp deleted file mode 100644 index 0a003bcf..00000000 Binary files a/setup/data/tools/bitmaps/texture_lock.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/texture_lock.png b/setup/data/tools/bitmaps/texture_lock.png new file mode 100644 index 00000000..47e723cb Binary files /dev/null and b/setup/data/tools/bitmaps/texture_lock.png differ diff --git a/setup/data/tools/bitmaps/textures_popup.bmp b/setup/data/tools/bitmaps/textures_popup.bmp deleted file mode 100644 index 5333382f..00000000 Binary files a/setup/data/tools/bitmaps/textures_popup.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/textures_popup.png b/setup/data/tools/bitmaps/textures_popup.png new file mode 100644 index 00000000..4d5bc909 Binary files /dev/null and b/setup/data/tools/bitmaps/textures_popup.png differ diff --git a/setup/data/tools/bitmaps/undo.bmp b/setup/data/tools/bitmaps/undo.bmp deleted file mode 100644 index fd2b8392..00000000 Binary files a/setup/data/tools/bitmaps/undo.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/undo.png b/setup/data/tools/bitmaps/undo.png new file mode 100644 index 00000000..514f8b9f Binary files /dev/null and b/setup/data/tools/bitmaps/undo.png differ diff --git a/setup/data/tools/bitmaps/view_cameratoggle.bmp b/setup/data/tools/bitmaps/view_cameratoggle.bmp deleted file mode 100644 index 4ec79ed6..00000000 Binary files a/setup/data/tools/bitmaps/view_cameratoggle.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/view_cameratoggle.png b/setup/data/tools/bitmaps/view_cameratoggle.png new file mode 100644 index 00000000..4eb68296 Binary files /dev/null and b/setup/data/tools/bitmaps/view_cameratoggle.png differ diff --git a/setup/data/tools/bitmaps/view_cameraupdate.bmp b/setup/data/tools/bitmaps/view_cameraupdate.bmp deleted file mode 100644 index dbb11956..00000000 Binary files a/setup/data/tools/bitmaps/view_cameraupdate.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/view_cameraupdate.png b/setup/data/tools/bitmaps/view_cameraupdate.png new file mode 100644 index 00000000..9127b058 Binary files /dev/null and b/setup/data/tools/bitmaps/view_cameraupdate.png differ diff --git a/setup/data/tools/bitmaps/view_change.bmp b/setup/data/tools/bitmaps/view_change.bmp deleted file mode 100644 index 977ee1e7..00000000 Binary files a/setup/data/tools/bitmaps/view_change.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/view_change.png b/setup/data/tools/bitmaps/view_change.png new file mode 100644 index 00000000..8f0bc4db Binary files /dev/null and b/setup/data/tools/bitmaps/view_change.png differ diff --git a/setup/data/tools/bitmaps/view_clipper.bmp b/setup/data/tools/bitmaps/view_clipper.bmp deleted file mode 100644 index 606a2095..00000000 Binary files a/setup/data/tools/bitmaps/view_clipper.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/view_clipper.png b/setup/data/tools/bitmaps/view_clipper.png new file mode 100644 index 00000000..f7357da3 Binary files /dev/null and b/setup/data/tools/bitmaps/view_clipper.png differ diff --git a/setup/data/tools/bitmaps/view_cubicclipping.bmp b/setup/data/tools/bitmaps/view_cubicclipping.bmp deleted file mode 100644 index 16f7cb0e..00000000 Binary files a/setup/data/tools/bitmaps/view_cubicclipping.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/view_cubicclipping.png b/setup/data/tools/bitmaps/view_cubicclipping.png new file mode 100644 index 00000000..f517fcc8 Binary files /dev/null and b/setup/data/tools/bitmaps/view_cubicclipping.png differ diff --git a/setup/data/tools/bitmaps/view_entity.bmp b/setup/data/tools/bitmaps/view_entity.bmp deleted file mode 100644 index 851ec2c3..00000000 Binary files a/setup/data/tools/bitmaps/view_entity.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/view_entity.png b/setup/data/tools/bitmaps/view_entity.png new file mode 100644 index 00000000..210992f6 Binary files /dev/null and b/setup/data/tools/bitmaps/view_entity.png differ diff --git a/setup/data/tools/bitmaps/white.bmp b/setup/data/tools/bitmaps/white.bmp deleted file mode 100644 index cbf038f7..00000000 Binary files a/setup/data/tools/bitmaps/white.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/white.png b/setup/data/tools/bitmaps/white.png new file mode 100644 index 00000000..4af01bde Binary files /dev/null and b/setup/data/tools/bitmaps/white.png differ diff --git a/setup/data/tools/bitmaps/window1.bmp b/setup/data/tools/bitmaps/window1.bmp deleted file mode 100644 index a8913c72..00000000 Binary files a/setup/data/tools/bitmaps/window1.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/window1.png b/setup/data/tools/bitmaps/window1.png new file mode 100644 index 00000000..c880b89d Binary files /dev/null and b/setup/data/tools/bitmaps/window1.png differ diff --git a/setup/data/tools/bitmaps/window2.bmp b/setup/data/tools/bitmaps/window2.bmp deleted file mode 100644 index 6db9e565..00000000 Binary files a/setup/data/tools/bitmaps/window2.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/window2.png b/setup/data/tools/bitmaps/window2.png new file mode 100644 index 00000000..94e936c5 Binary files /dev/null and b/setup/data/tools/bitmaps/window2.png differ diff --git a/setup/data/tools/bitmaps/window3.bmp b/setup/data/tools/bitmaps/window3.bmp deleted file mode 100644 index e81a299d..00000000 Binary files a/setup/data/tools/bitmaps/window3.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/window3.png b/setup/data/tools/bitmaps/window3.png new file mode 100644 index 00000000..e739968b Binary files /dev/null and b/setup/data/tools/bitmaps/window3.png differ diff --git a/setup/data/tools/bitmaps/window4.bmp b/setup/data/tools/bitmaps/window4.bmp deleted file mode 100644 index d753945f..00000000 Binary files a/setup/data/tools/bitmaps/window4.bmp and /dev/null differ diff --git a/setup/data/tools/bitmaps/window4.png b/setup/data/tools/bitmaps/window4.png new file mode 100644 index 00000000..891ca415 Binary files /dev/null and b/setup/data/tools/bitmaps/window4.png differ