diff options
| author | David Yip <yipdw@alumni.rose-hulman.edu> | 2006-07-15 22:26:06 +0000 |
|---|---|---|
| committer | dwyip <dwyip@users.sourceforge.net> | 2006-07-15 22:26:06 +0000 |
| commit | e86e927050f0ba1768d9cf44c8c8a04f9666d45c (patch) | |
| tree | 175ab3d903b1734a374eb6b51522cb87751bd38b /src/inkscape.h | |
| parent | use atoi for char* -> int conversion (diff) | |
| download | inkscape-e86e927050f0ba1768d9cf44c8c8a04f9666d45c.tar.gz inkscape-e86e927050f0ba1768d9cf44c8c8a04f9666d45c.zip | |
added inkscape_get_all_desktops() after speaking with Dale about his plans for Inkboard UI
Dale's interested in allowing users to share any document that they might have open, not just new, blank
documents. His plan for implementing this is to provide a "share this document" menu.
(bzr r1420)
Diffstat (limited to 'src/inkscape.h')
| -rw-r--r-- | src/inkscape.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/inkscape.h b/src/inkscape.h index 4c6c1dbd0..12f101901 100644 --- a/src/inkscape.h +++ b/src/inkscape.h @@ -12,6 +12,7 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ +#include <list> #include <glib/gtypes.h> struct SPDesktop; @@ -54,8 +55,10 @@ bool inkscape_is_sole_desktop_for_document(SPDesktop const &desktop); gchar *homedir_path(const char *filename); gchar *profile_path(const char *filename); +/* Inkscape desktop stuff */ void inkscape_switch_desktops_next (); void inkscape_switch_desktops_prev (); +void inkscape_get_all_desktops (std::list< SPDesktop* >& listbuf); void inkscape_dialogs_hide (); void inkscape_dialogs_unhide (); |
