clipboard.h revision 6cefba9d8790693bdedd233fb979a69fbe4208d6
#ifndef SEEN_INKSCAPE_CLIPBOARD_H
#define SEEN_INKSCAPE_CLIPBOARD_H
/** @file
* @brief System-wide clipboard management - class declaration
*/
/* Authors:
* Krzysztof KosiĆski <tweenk@o2.pl>
*
* Copyright (C) 2008 authors
*
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* See the file COPYING for details.
*/
// forward declarations
/**
* @brief System-wide clipboard manager
*
* ClipboardManager takes care of manipulating the system clipboard in response
* to user actions. It holds a complete SPDocument as the contents. This document
* is exported using output extensions when other applications request data.
* Copying to another instance of Inkscape is special-cased, because of the extra
* data required (i.e. style, size, Live Path Effects parameters, etc.)
*/
virtual bool pasteStyle() = 0;
virtual bool pastePathEffect() = 0;
static ClipboardManager *get();
ClipboardManager(); // singleton
static ClipboardManager *_instance;
};
} // namespace IO
} // namespace Inkscape
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :