X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fselection-chemistry.h;h=65d1ba296a27a17ba0eb99aee6b65a0851220ed0;hb=22899f52f2742b4e3496f87d259c1273e492b43f;hp=501dcc520ed8ee52b7f3ad96a538ebd0f2f49e63;hpb=539b02bd98b6985f91ccbf7041f88fdf93061531;p=inkscape.git diff --git a/src/selection-chemistry.h b/src/selection-chemistry.h index 501dcc520..65d1ba296 100644 --- a/src/selection-chemistry.h +++ b/src/selection-chemistry.h @@ -1,5 +1,5 @@ -#ifndef __SP_SELECTION_CHEMISTRY_H__ -#define __SP_SELECTION_CHEMISTRY_H__ +#ifndef SEEN_SELECTION_CHEMISTRY_H +#define SEEN_SELECTION_CHEMISTRY_H /* * Miscellanous operations on selected items @@ -8,15 +8,18 @@ * Lauris Kaplinski * Frank Felfe * bulia byak + * Jon A. Cruz + * Abhishek Sharma * - * Copyright (C) 1999-2005 authors + * Copyright (C) 1999-2010 authors * Copyright (C) 2001-2002 Ximian, Inc. * * Released under GNU GPL, read the file 'COPYING' for more information */ #include "forward.h" -#include "libnr/nr-forward.h" +#include "sp-item.h" +#include "2geom/forward.h" namespace Inkscape { class Selection; } @@ -28,61 +31,78 @@ namespace LivePathEffect { class SPCSSAttr; -void sp_selection_delete(); -void sp_selection_duplicate(); -void sp_edit_clear_all(); - -void sp_edit_select_all(); -void sp_edit_select_all_in_all_layers (); -void sp_edit_invert (); -void sp_edit_invert_in_all_layers (); - -void sp_selection_clone(); -void sp_selection_unlink(); -void sp_select_clone_original (); - -void sp_selection_to_marker(bool apply = true); -void sp_selection_to_guides(); - -void sp_selection_tile(bool apply = true); -void sp_selection_untile(); - -void sp_selection_group(); -void sp_selection_ungroup(); - -void sp_selection_raise(); -void sp_selection_raise_to_top(); -void sp_selection_lower(); -void sp_selection_lower_to_bottom(); +namespace Inkscape { + class SelectionHelper { + public: + static void selectAll(SPDesktop *desktop); + static void selectAllInAll(SPDesktop *desktop); + static void selectNone(SPDesktop *desktop); + static void invert(SPDesktop *desktop); + static void invertAllInAll(SPDesktop *desktop); + static void reverse(SPDesktop *dt); + static void selectNext(SPDesktop *desktop); + static void selectPrev(SPDesktop *desktop); + }; +} // namespace Inkscape + +void sp_selection_delete(SPDesktop *desktop); +void sp_selection_duplicate(SPDesktop *desktop, bool suppressDone = false); +void sp_edit_clear_all(SPDesktop *desktop); + +void sp_edit_select_all(SPDesktop *desktop); +void sp_edit_select_all_in_all_layers (SPDesktop *desktop); +void sp_edit_invert (SPDesktop *desktop); +void sp_edit_invert_in_all_layers (SPDesktop *desktop); + +void sp_selection_clone(SPDesktop *desktop); +void sp_selection_unlink(SPDesktop *desktop); +void sp_selection_relink(SPDesktop *desktop); +void sp_select_clone_original(SPDesktop *desktop); + +void sp_selection_to_marker(SPDesktop *desktop, bool apply = true); +void sp_selection_to_guides(SPDesktop *desktop); + +void sp_selection_tile(SPDesktop *desktop, bool apply = true); +void sp_selection_untile(SPDesktop *desktop); + +//void sp_selection_group_impl(GSList const *reprs_to_group, Inkscape::XML::Node *group, Inkscape::XML::Document *xml_doc, SPDocument *doc); +void sp_selection_group(SPDesktop *desktop); +void sp_selection_ungroup(SPDesktop *desktop); + +void sp_selection_raise(SPDesktop *desktop); +void sp_selection_raise_to_top(SPDesktop *desktop); +void sp_selection_lower(SPDesktop *desktop); +void sp_selection_lower_to_bottom(SPDesktop *desktop); SPCSSAttr *take_style_from_item (SPItem *item); -void sp_selection_cut(); -void sp_selection_copy(); -void sp_selection_copy_lpe_pathparam(Inkscape::LivePathEffect::PathParam * pathparam); -void sp_selection_paste(bool in_place); -void sp_selection_paste_style(); -void sp_selection_paste_livepatheffect(); +void sp_selection_cut(SPDesktop *desktop); +void sp_selection_copy(SPDesktop *desktop); +void sp_selection_paste(SPDesktop *desktop, bool in_place); +void sp_selection_paste_style(SPDesktop *desktop); +void sp_selection_paste_livepatheffect(SPDesktop *desktop); +void sp_selection_remove_livepatheffect(SPDesktop *desktop); + +void sp_selection_remove_filter(SPDesktop *desktop); void sp_set_style_clipboard (SPCSSAttr *css); -void sp_selection_paste_size(bool apply_x, bool apply_y); -void sp_selection_paste_size_separately(bool apply_x, bool apply_y); +void sp_selection_paste_size(SPDesktop *desktop, bool apply_x, bool apply_y); +void sp_selection_paste_size_separately(SPDesktop *desktop, bool apply_x, bool apply_y); -void sp_selection_to_next_layer (); -void sp_selection_to_prev_layer (); +void sp_selection_to_next_layer( SPDesktop *desktop, bool suppressDone = false ); +void sp_selection_to_prev_layer( SPDesktop *desktop, bool suppressDone = false ); -void sp_selection_apply_affine(Inkscape::Selection *selection, NR::Matrix const &affine, bool set_i2d = true); -void sp_selection_remove_transform (void); +void sp_selection_apply_affine(Inkscape::Selection *selection, Geom::Matrix const &affine, bool set_i2d = true, bool compensate = true); +void sp_selection_remove_transform (SPDesktop *desktop); void sp_selection_scale_absolute (Inkscape::Selection *selection, double x0, double x1, double y0, double y1); -void sp_selection_scale_relative(Inkscape::Selection *selection, NR::Point const &align, NR::scale const &scale); -void sp_selection_rotate_relative (Inkscape::Selection *selection, NR::Point const ¢er, gdouble angle); -void sp_selection_skew_relative (Inkscape::Selection *selection, NR::Point const &align, double dx, double dy); -void sp_selection_move_relative (Inkscape::Selection *selection, NR::Point const &move); +void sp_selection_scale_relative(Inkscape::Selection *selection, Geom::Point const &align, Geom::Scale const &scale); +void sp_selection_rotate_relative (Inkscape::Selection *selection, Geom::Point const ¢er, gdouble angle); +void sp_selection_skew_relative (Inkscape::Selection *selection, Geom::Point const &align, double dx, double dy); +void sp_selection_move_relative (Inkscape::Selection *selection, Geom::Point const &move, bool compensate = true); void sp_selection_move_relative (Inkscape::Selection *selection, double dx, double dy); -void sp_selection_rotate_90_cw (void); -void sp_selection_rotate_90_ccw (void); +void sp_selection_rotate_90 (SPDesktop *desktop, bool ccw); void sp_selection_rotate (Inkscape::Selection *selection, gdouble angle); void sp_selection_rotate_screen (Inkscape::Selection *selection, gdouble angle); @@ -90,14 +110,16 @@ void sp_selection_scale (Inkscape::Selection *selection, gdouble grow); void sp_selection_scale_screen (Inkscape::Selection *selection, gdouble grow_pixels); void sp_selection_scale_times (Inkscape::Selection *selection, gdouble times); -void sp_selection_move (gdouble dx, gdouble dy); -void sp_selection_move_screen (gdouble dx, gdouble dy); +void sp_selection_move (SPDesktop *desktop, gdouble dx, gdouble dy); +void sp_selection_move_screen (SPDesktop *desktop, gdouble dx, gdouble dy); -void sp_selection_item_next (void); -void sp_selection_item_prev (void); +void sp_selection_item_next (SPDesktop *desktop); +void sp_selection_item_prev (SPDesktop *desktop); void sp_selection_next_patheffect_param(SPDesktop * dt); +void sp_selection_edit_clip_or_mask(SPDesktop * dt, bool clip); + void scroll_to_show_item(SPDesktop *desktop, SPItem *item); void sp_undo (SPDesktop *desktop, SPDocument *doc); @@ -106,39 +128,35 @@ void sp_redo (SPDesktop *desktop, SPDocument *doc); void sp_selection_get_export_hints (Inkscape::Selection *selection, const char **filename, float *xdpi, float *ydpi); void sp_document_get_export_hints (SPDocument * doc, const char **filename, float *xdpi, float *ydpi); -void sp_selection_create_bitmap_copy (); +void sp_selection_create_bitmap_copy (SPDesktop *desktop); -void sp_selection_set_mask(bool apply_clip_path, bool apply_to_layer); -void sp_selection_unset_mask(bool apply_clip_path); +void sp_selection_set_mask(SPDesktop *desktop, bool apply_clip_path, bool apply_to_layer); +void sp_selection_unset_mask(SPDesktop *desktop, bool apply_clip_path); -void fit_canvas_to_selection(SPDesktop *desktop); -void fit_canvas_to_drawing(SPDocument *doc); -void fit_canvas_to_selection_or_drawing(SPDesktop *desktop); +bool fit_canvas_to_selection(SPDesktop *, bool with_margins = false); +void verb_fit_canvas_to_selection(SPDesktop *); +bool fit_canvas_to_drawing(SPDocument *, bool with_margins = false); +void verb_fit_canvas_to_drawing(SPDesktop *); +void fit_canvas_to_selection_or_drawing(SPDesktop *); void unlock_all(SPDesktop *dt); void unlock_all_in_all_layers(SPDesktop *dt); void unhide_all(SPDesktop *dt); void unhide_all_in_all_layers(SPDesktop *dt); -GSList * sp_selection_get_clipboard(); +GSList *sp_degroup_list (GSList *items); /* selection cycling */ - typedef enum { - SP_CYCLE_SIMPLE, - SP_CYCLE_VISIBLE, /* cycle only visible items */ - SP_CYCLE_FOCUS /* readjust visible area to view selected item */ + SP_CYCLE_SIMPLE, + SP_CYCLE_VISIBLE, // cycle only visible items + SP_CYCLE_FOCUS // readjust visible area to view selected item } SPCycleType; -/* fixme: This should be moved into preference repr */ -#ifndef __SP_SELECTION_CHEMISTRY_C__ -extern SPCycleType SP_CYCLING; -#else -SPCycleType SP_CYCLING = SP_CYCLE_FOCUS; -#endif - -#endif +// TOOD fixme: This should be moved into preference repr +extern SPCycleType SP_CYCLING; +#endif // SEEN_SELECTION_CHEMISTRY_H