Inkscape
Vector Graphics Editor
Loading...
Searching...
No Matches
interface.h
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-2.0-or-later
2#ifndef SEEN_SP_INTERFACE_H
3#define SEEN_SP_INTERFACE_H
4
5/*
6 * Main UI stuff
7 *
8 * Authors:
9 * Lauris Kaplinski <lauris@kaplinski.com>
10 * Frank Felfe <innerspace@iname.com>
11 * Abhishek Sharma
12 * Kris De Gussem <Kris.DeGussem@gmail.com>
13 *
14 * Copyright (C) 2012 Kris De Gussem
15 * Copyright (C) 1999-2002 authors
16 * Copyright (C) 2001-2002 Ximian, Inc.
17 *
18 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
19 */
20
21#include <glibmm/ustring.h>
22
23class SPDesktop;
24
25void sp_ui_error_dialog(char const *message);
26bool sp_ui_overwrite_file(std::string const &filename);
27
28Glib::ustring getLayoutPrefPath(SPDesktop *desktop);
29
30#endif // SEEN_SP_INTERFACE_H
31
32/*
33 Local Variables:
34 mode:c++
35 c-file-style:"stroustrup"
36 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
37 indent-tabs-mode:nil
38 fill-column:99
39 End:
40*/
41// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
To do: update description of desktop.
Definition desktop.h:149
void sp_ui_error_dialog(char const *message)
Definition interface.cpp:56
Glib::ustring getLayoutPrefPath(SPDesktop *desktop)
Definition interface.cpp:45
bool sp_ui_overwrite_file(std::string const &filename)
If necessary, ask the user if a file may be overwritten.
Definition interface.cpp:74
SPDesktop * desktop