From: Garux Date: Tue, 1 Aug 2017 11:05:06 +0000 (+0300) Subject: more antialiased png icons X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=dfc3e9c2a59fec2feaf5c808f316eed17ea227e2;p=xonotic%2Fnetradiant.git more antialiased png icons --- diff --git a/radiant/filterbar.cpp b/radiant/filterbar.cpp index 8251a4bf..918f3d80 100644 --- a/radiant/filterbar.cpp +++ b/radiant/filterbar.cpp @@ -175,12 +175,12 @@ GtkToolbar* create_filter_toolbar(){ toolbar_append_toggle_button( filter_toolbar, "World (ALT + 1)", "f-world.png", "FilterWorldBrushes" ); - button = toolbar_append_toggle_button( filter_toolbar, "Details (CTRL + D)\nRightClick: MakeDetail", "f-details.png", "FilterDetails" ); - g_signal_connect( G_OBJECT( button ), "button_press_event", G_CALLBACK( Detail_button_press ), 0 ); - button = toolbar_append_toggle_button( filter_toolbar, "Structural (CTRL + SHIFT + D)\nRightClick: MakeStructural", "f-structural.png", "FilterStructural" ); g_signal_connect( G_OBJECT( button ), "button_press_event", G_CALLBACK( Structural_button_press ), 0 ); + button = toolbar_append_toggle_button( filter_toolbar, "Details (CTRL + D)\nRightClick: MakeDetail", "f-details.png", "FilterDetails" ); + g_signal_connect( G_OBJECT( button ), "button_press_event", G_CALLBACK( Detail_button_press ), 0 ); + toolbar_append_toggle_button( filter_toolbar, "Patches (CTRL + P)", "patch_wireframe.png", "FilterPatches" ); gtk_toolbar_append_space( GTK_TOOLBAR( filter_toolbar ) ); @@ -207,7 +207,7 @@ GtkToolbar* create_filter_toolbar(){ //toolbar_append_toggle_button( filter_toolbar, "Paths (ALT + 8)", "texture_lock.png", "FilterPaths" ); gtk_toolbar_append_space( GTK_TOOLBAR( filter_toolbar ) ); toolbar_append_toggle_button( filter_toolbar, "Entities (ALT + 2)", "f-entities.png", "FilterEntities" ); - toolbar_append_toggle_button( filter_toolbar, "Lights (ALT + 0)", "lightinspector.png", "FilterLights" ); + toolbar_append_toggle_button( filter_toolbar, "Lights (ALT + 0)", "f-lights.png", "FilterLights" ); toolbar_append_toggle_button( filter_toolbar, "Models (SHIFT + M)", "f-models.png", "FilterModels" ); button = toolbar_append_toggle_button( filter_toolbar, "Triggers (CTRL + SHIFT + T)\nRightClick: tex Trigger", "f-triggers.png", "FilterTriggers" ); diff --git a/radiant/mainframe.cpp b/radiant/mainframe.cpp index a4eaf8df..172c1439 100644 --- a/radiant/mainframe.cpp +++ b/radiant/mainframe.cpp @@ -2808,8 +2808,6 @@ void MainFrame::Create(){ if ( !g_Layout_enablePluginToolbar.m_value ) { gtk_widget_hide( GTK_WIDGET( plugin_toolbar ) ); }*/ - if ( g_Layout_enableFilterToolbar.m_value ) { - } diff --git a/setup/data/tools/bitmaps/brush_rotatex.png b/setup/data/tools/bitmaps/brush_rotatex.png index 37c46fcb..cd1e1a5a 100644 Binary files a/setup/data/tools/bitmaps/brush_rotatex.png and b/setup/data/tools/bitmaps/brush_rotatex.png differ diff --git a/setup/data/tools/bitmaps/brush_rotatey.png b/setup/data/tools/bitmaps/brush_rotatey.png index c3b33e79..907210e4 100644 Binary files a/setup/data/tools/bitmaps/brush_rotatey.png and b/setup/data/tools/bitmaps/brush_rotatey.png differ diff --git a/setup/data/tools/bitmaps/brush_rotatez.png b/setup/data/tools/bitmaps/brush_rotatez.png index e56f1cb9..92edb044 100644 Binary files a/setup/data/tools/bitmaps/brush_rotatez.png and b/setup/data/tools/bitmaps/brush_rotatez.png differ diff --git a/setup/data/tools/bitmaps/cap_bevel.png b/setup/data/tools/bitmaps/cap_bevel.png index b39565df..92408ccc 100644 Binary files a/setup/data/tools/bitmaps/cap_bevel.png and b/setup/data/tools/bitmaps/cap_bevel.png differ diff --git a/setup/data/tools/bitmaps/cap_cylinder.png b/setup/data/tools/bitmaps/cap_cylinder.png index 96889301..9119be8a 100644 Binary files a/setup/data/tools/bitmaps/cap_cylinder.png and b/setup/data/tools/bitmaps/cap_cylinder.png differ diff --git a/setup/data/tools/bitmaps/cap_endcap.png b/setup/data/tools/bitmaps/cap_endcap.png index 049b2503..5e841cc6 100644 Binary files a/setup/data/tools/bitmaps/cap_endcap.png and b/setup/data/tools/bitmaps/cap_endcap.png differ diff --git a/setup/data/tools/bitmaps/cap_ibevel.png b/setup/data/tools/bitmaps/cap_ibevel.png index c284b66b..27a633ed 100644 Binary files a/setup/data/tools/bitmaps/cap_ibevel.png and b/setup/data/tools/bitmaps/cap_ibevel.png differ diff --git a/setup/data/tools/bitmaps/cap_iendcap.png b/setup/data/tools/bitmaps/cap_iendcap.png index 11a3f162..283ea609 100644 Binary files a/setup/data/tools/bitmaps/cap_iendcap.png and b/setup/data/tools/bitmaps/cap_iendcap.png differ diff --git a/setup/data/tools/bitmaps/curve_cap.png b/setup/data/tools/bitmaps/curve_cap.png index 6ce1c0c1..a46d1dd5 100644 Binary files a/setup/data/tools/bitmaps/curve_cap.png and b/setup/data/tools/bitmaps/curve_cap.png differ diff --git a/setup/data/tools/bitmaps/f-details.png b/setup/data/tools/bitmaps/f-details.png index d31bf024..7748ba2f 100644 Binary files a/setup/data/tools/bitmaps/f-details.png and b/setup/data/tools/bitmaps/f-details.png differ diff --git a/setup/data/tools/bitmaps/f-invert.png b/setup/data/tools/bitmaps/f-invert.png index b7a7b457..0b9f0f29 100644 Binary files a/setup/data/tools/bitmaps/f-invert.png and b/setup/data/tools/bitmaps/f-invert.png differ diff --git a/setup/data/tools/bitmaps/f-lights.png b/setup/data/tools/bitmaps/f-lights.png new file mode 100644 index 00000000..0c75e2e0 Binary files /dev/null and b/setup/data/tools/bitmaps/f-lights.png differ diff --git a/setup/data/tools/bitmaps/f-liquids.png b/setup/data/tools/bitmaps/f-liquids.png index 38b59e3c..1ecdaae7 100644 Binary files a/setup/data/tools/bitmaps/f-liquids.png and b/setup/data/tools/bitmaps/f-liquids.png differ diff --git a/setup/data/tools/bitmaps/f-models.png b/setup/data/tools/bitmaps/f-models.png index 3d936c4e..42dc3aa5 100644 Binary files a/setup/data/tools/bitmaps/f-models.png and b/setup/data/tools/bitmaps/f-models.png differ diff --git a/setup/data/tools/bitmaps/f-reset.png b/setup/data/tools/bitmaps/f-reset.png index 18bf28e8..fa3b37ae 100644 Binary files a/setup/data/tools/bitmaps/f-reset.png and b/setup/data/tools/bitmaps/f-reset.png differ diff --git a/setup/data/tools/bitmaps/f-structural.png b/setup/data/tools/bitmaps/f-structural.png index 040fb875..493cb10a 100644 Binary files a/setup/data/tools/bitmaps/f-structural.png and b/setup/data/tools/bitmaps/f-structural.png differ diff --git a/setup/data/tools/bitmaps/f-world.png b/setup/data/tools/bitmaps/f-world.png index 8f63d823..e96dd553 100644 Binary files a/setup/data/tools/bitmaps/f-world.png and b/setup/data/tools/bitmaps/f-world.png differ diff --git a/setup/data/tools/bitmaps/redo.png b/setup/data/tools/bitmaps/redo.png index befec6e3..9483d42c 100644 Binary files a/setup/data/tools/bitmaps/redo.png and b/setup/data/tools/bitmaps/redo.png differ diff --git a/setup/data/tools/bitmaps/refresh_models.png b/setup/data/tools/bitmaps/refresh_models.png index ca77acb7..4e53334a 100644 Binary files a/setup/data/tools/bitmaps/refresh_models.png and b/setup/data/tools/bitmaps/refresh_models.png differ diff --git a/setup/data/tools/bitmaps/select_mouserotate.png b/setup/data/tools/bitmaps/select_mouserotate.png index 6174568b..a2b127cb 100644 Binary files a/setup/data/tools/bitmaps/select_mouserotate.png and b/setup/data/tools/bitmaps/select_mouserotate.png differ diff --git a/setup/data/tools/bitmaps/undo.png b/setup/data/tools/bitmaps/undo.png index c0408ddd..a9f9c042 100644 Binary files a/setup/data/tools/bitmaps/undo.png and b/setup/data/tools/bitmaps/undo.png differ diff --git a/setup/data/tools/plugins/bitmaps/bobtoolz_merge.png b/setup/data/tools/plugins/bitmaps/bobtoolz_merge.png index 5d2d8b34..f707ca8c 100644 Binary files a/setup/data/tools/plugins/bitmaps/bobtoolz_merge.png and b/setup/data/tools/plugins/bitmaps/bobtoolz_merge.png differ diff --git a/setup/data/tools/plugins/bitmaps/bobtoolz_split.png b/setup/data/tools/plugins/bitmaps/bobtoolz_split.png index 67547c99..1b2d4043 100644 Binary files a/setup/data/tools/plugins/bitmaps/bobtoolz_split.png and b/setup/data/tools/plugins/bitmaps/bobtoolz_split.png differ diff --git a/setup/data/tools/plugins/bitmaps/bobtoolz_splitcol.png b/setup/data/tools/plugins/bitmaps/bobtoolz_splitcol.png index 271c6128..64649b97 100644 Binary files a/setup/data/tools/plugins/bitmaps/bobtoolz_splitcol.png and b/setup/data/tools/plugins/bitmaps/bobtoolz_splitcol.png differ diff --git a/setup/data/tools/plugins/bitmaps/bobtoolz_splitrow.png b/setup/data/tools/plugins/bitmaps/bobtoolz_splitrow.png index c8d2863c..ebd0b078 100644 Binary files a/setup/data/tools/plugins/bitmaps/bobtoolz_splitrow.png and b/setup/data/tools/plugins/bitmaps/bobtoolz_splitrow.png differ