branches/koffice/1.6/koffice/krita
Cyrille Berger
cyb at lepi.org
Tue Sep 19 22:50:47 CEST 2006
SVN commit 586515 by berger:
new tools/paintops icon set for krita
CCMAIL:kimageshop at kde.org
M pics/locked.png
M pics/novisible.png
M pics/unlocked.png
M pics/visible.png
M plugins/paintops/defaultpaintops/airbrush.png
M plugins/paintops/defaultpaintops/eraser.png
M plugins/paintops/defaultpaintops/paintbrush.png
M plugins/paintops/defaultpaintops/pencil.png
M +6 -1 plugins/tools/defaulttools/Makefile.am
M +1 -1 plugins/tools/defaulttools/kis_tool_colorpicker.cc
M +1 -1 plugins/tools/defaulttools/kis_tool_duplicate.cc
M +1 -1 plugins/tools/defaulttools/kis_tool_fill.cc
M +1 -1 plugins/tools/defaulttools/kis_tool_move.cc
M +1 -1 plugins/tools/defaulttools/kis_tool_zoom.cc
AM plugins/tools/defaulttools/tool_color_fill.png
AM plugins/tools/defaulttools/tool_colorpicker.png
AM plugins/tools/defaulttools/tool_duplicate.png
M plugins/tools/defaulttools/tool_ellipse.png
M plugins/tools/defaulttools/tool_freehand.png
M plugins/tools/defaulttools/tool_gradient.png
M plugins/tools/defaulttools/tool_line.png
AM plugins/tools/defaulttools/tool_move.png
M plugins/tools/defaulttools/tool_pan.png
M plugins/tools/defaulttools/tool_rectangle.png
M plugins/tools/defaulttools/tool_text.png
AM plugins/tools/defaulttools/tool_zoom.png
M plugins/tools/selectiontools/tool_brush_selection.png
M plugins/tools/selectiontools/tool_contiguous_selection.png
M plugins/tools/selectiontools/tool_elliptical_selection.png
M plugins/tools/selectiontools/tool_eraser_selection.png
M plugins/tools/selectiontools/tool_outline_selection.png
M plugins/tools/selectiontools/tool_polygonal_selection.png
M plugins/tools/selectiontools/tool_rect_selection.png
M +2 -1 plugins/tools/tool_crop/Makefile.am
M +1 -1 plugins/tools/tool_crop/kis_tool_crop.cc
AM plugins/tools/tool_crop/tool_crop.png
M plugins/tools/tool_curves/tool_bezier_paint.png
M plugins/tools/tool_curves/tool_bezier_select.png
M plugins/tools/tool_curves/tool_moutline.png
M plugins/tools/tool_filter/tool_filter.png
M plugins/tools/tool_perspectivegrid/tool_perspectivegrid.png
M plugins/tools/tool_perspectivetransform/tool_perspectivetransform.png
M plugins/tools/tool_polygon/tool_polygon.png
M plugins/tools/tool_polyline/polyline.png
M plugins/tools/tool_selectsimilar/tool_similar_selection.png
M plugins/tools/tool_star/tool_star.png
M +2 -1 plugins/tools/tool_transform/Makefile.am
M +1 -1 plugins/tools/tool_transform/kis_tool_transform.cc
AM plugins/tools/tool_transform/tool_transform.png
--- branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/Makefile.am #586514:586515
@@ -58,6 +58,7 @@
tool_freehand_cursor.png \
tool_duplicate_cursor.png \
tool_fill_cursor.png \
+ tool_color_fill.png \
tool_text_cursor.png \
tool_gradient_cursor.png \
tool_gradient.png \
@@ -70,7 +71,11 @@
openhand_cursor.xpm \
closedhand_cursor.xpm \
tool_zoom_plus_cursor.png \
- tool_zoom_minus_cursor.png
+ tool_zoom_minus_cursor.png \
+ tool_move.png \
+ tool_colorpicker.png \
+ tool_duplicate.png \
+ tool_zoom.png
kritapicsdir = $(kde_datadir)/krita/pics
--- branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/kis_tool_colorpicker.cc #586514:586515
@@ -214,7 +214,7 @@
m_action = static_cast<KRadioAction *>(collection->action(name()));
if (m_action == 0) {
- m_action = new KRadioAction(i18n("&Color Picker"), "colorpicker", Qt::Key_P, this, SLOT(activate()), collection, name());
+ m_action = new KRadioAction(i18n("&Color Picker"), "tool_colorpicker", Qt::Key_P, this, SLOT(activate()), collection, name());
m_action->setToolTip(i18n("Color picker"));
m_action->setExclusiveGroup("tools");
m_ownAction = true;
--- branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/kis_tool_duplicate.cc #586514:586515
@@ -89,7 +89,7 @@
if (m_action == 0) {
m_action = new KRadioAction(i18n("&Duplicate Brush"),
- "stamp", Qt::Key_C, this,
+ "tool_duplicate", Qt::Key_C, this,
SLOT(activate()), collection,
name());
m_action->setToolTip(i18n("Duplicate parts of the image. Shift-click to select the point to duplicate from to begin."));
--- branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/kis_tool_fill.cc #586514:586515
@@ -215,7 +215,7 @@
if (m_action == 0) {
m_action = new KRadioAction(i18n("&Fill"),
- "color_fill",
+ "tool_color_fill",
Qt::Key_F,
this,
SLOT(activate()),
--- branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/kis_tool_move.cc #586514:586515
@@ -98,7 +98,7 @@
if (m_action == 0) {
m_action = new KRadioAction(i18n("&Move"),
- "move",
+ "tool_move",
Qt::SHIFT+Qt::Key_V,
this,
SLOT(activate()),
--- branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/kis_tool_zoom.cc #586514:586515
@@ -181,7 +181,7 @@
m_action = static_cast<KRadioAction *>(collection->action(name()));
if (m_action == 0) {
- m_action = new KRadioAction(i18n("&Zoom"), "viewmag", Qt::Key_Z, this, SLOT(activate()), collection, name());
+ m_action = new KRadioAction(i18n("&Zoom"), "tool_zoom", Qt::Key_Z, this, SLOT(activate()), collection, name());
m_action->setToolTip(i18n("Zoom"));
m_action->setExclusiveGroup("tools");
m_ownAction = true;
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_color_fill.png #property svn:executable
+ *
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_color_fill.png #property svn:mime-type
+ application/octet-stream
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_colorpicker.png #property svn:executable
+ *
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_colorpicker.png #property svn:mime-type
+ application/octet-stream
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_duplicate.png #property svn:executable
+ *
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_duplicate.png #property svn:mime-type
+ application/octet-stream
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_move.png #property svn:executable
+ *
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_move.png #property svn:mime-type
+ application/octet-stream
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_zoom.png #property svn:executable
+ *
** branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/tool_zoom.png #property svn:mime-type
+ application/octet-stream
--- branches/koffice/1.6/koffice/krita/plugins/tools/tool_crop/Makefile.am #586514:586515
@@ -29,7 +29,8 @@
KDE_OPTIONS = nofinal
kritapics_DATA = \
- tool_crop_cursor.png
+ tool_crop_cursor.png \
+ tool_crop.png
kritapicsdir = $(kde_datadir)/krita/pics
--- branches/koffice/1.6/koffice/krita/plugins/tools/tool_crop/kis_tool_crop.cc #586514:586515
@@ -716,7 +716,7 @@
if (m_action == 0) {
m_action = new KRadioAction(i18n("&Crop"),
- "crop",
+ "tool_crop",
0,
this,
SLOT(activate()),
** branches/koffice/1.6/koffice/krita/plugins/tools/tool_crop/tool_crop.png #property svn:executable
+ *
** branches/koffice/1.6/koffice/krita/plugins/tools/tool_crop/tool_crop.png #property svn:mime-type
+ application/octet-stream
--- branches/koffice/1.6/koffice/krita/plugins/tools/tool_transform/Makefile.am #586514:586515
@@ -29,7 +29,8 @@
KDE_OPTIONS = nofinal
kritapics_DATA = \
- rotate_cursor.xpm
+ rotate_cursor.xpm \
+ tool_transform.png
kritapicsdir = $(kde_datadir)/krita/pics
--- branches/koffice/1.6/koffice/krita/plugins/tools/tool_transform/kis_tool_transform.cc #586514:586515
@@ -889,7 +889,7 @@
if (m_action == 0) {
m_action = new KRadioAction(i18n("&Transform"),
- "transform",
+ "tool_transform",
0,
this,
SLOT(activate()),
** branches/koffice/1.6/koffice/krita/plugins/tools/tool_transform/tool_transform.png #property svn:executable
+ *
** branches/koffice/1.6/koffice/krita/plugins/tools/tool_transform/tool_transform.png #property svn:mime-type
+ application/octet-stream
More information about the kimageshop
mailing list