Inkscape
Vector Graphics Editor
Loading...
Searching...
No Matches
dialog-events.h
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-2.0-or-later
5/* Authors:
6 * bulia byak <bulia@dr.com>
7 *
8 * Copyright (C) 2003-2014 authors
9 *
10 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
11 */
12
13#ifndef SEEN_DIALOG_EVENTS_H
14#define SEEN_DIALOG_EVENTS_H
15
16#include <gtk/gtk.h>
17
18namespace Gtk {
19class Entry;
20class SpinButton;
21class Window;
22} // namespace Gtk
23
24void sp_dialog_defocus(Gtk::Window *win);
25void sp_dialog_defocus_on_enter(Gtk::Entry *e);
26void sp_dialog_defocus_on_enter(Gtk::SpinButton &s);
27void sp_transientize(Gtk::Window &win);
28
29#endif // SEEN_DIALOG_EVENTS_H
30
31/*
32 Local Variables:
33 mode:c++
34 c-file-style:"stroustrup"
35 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
36 indent-tabs-mode:nil
37 fill-column:99
38 End:
39*/
40// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :
void sp_dialog_defocus_on_enter(Gtk::Entry *e)
void sp_transientize(Gtk::Window &win)
Make the argument dialog transient to the currently active document window.
void sp_dialog_defocus(Gtk::Window *win)
Remove focus from window to whoever it is transient for.
Definition desktop.h:50