~inkscape.dev/inkscape/trunk

« back to all changes in this revision

Viewing changes to src/ui/clipboard.h

  • Committer: tavmjong-free
  • Date: 2012-10-11 17:54:14 UTC
  • Revision ID: tavmjong@free.fr-20121011175414-j1i7huls4h70n91n
Add symbols dialog. See: http://wiki.inkscape.org/wiki/index.php/SymbolsDialog

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
class SPDesktop;
26
26
namespace Inkscape {
27
27
class Selection;
 
28
namespace XML { class Node; }
28
29
namespace LivePathEffect { class PathParam; }
29
30
 
30
31
namespace UI {
43
44
public:
44
45
    virtual void copy(SPDesktop *desktop) = 0;
45
46
    virtual void copyPathParameter(Inkscape::LivePathEffect::PathParam *) = 0;
 
47
    virtual void copySymbol(Inkscape::XML::Node* symbol, gchar const* style) = 0;
46
48
    virtual bool paste(SPDesktop *desktop, bool in_place = false) = 0;
47
49
    virtual bool pasteStyle(SPDesktop *desktop) = 0;
48
50
    virtual bool pasteSize(SPDesktop *desktop, bool separately, bool apply_x, bool apply_y) = 0;