Ansel 0.0
A darktable fork - bloat + design vision
Loading...
Searching...
No Matches
redraw.h
Go to the documentation of this file.
1/*
2 This file is part of Ansel.
3 Copyright (C) 2026 Aurélien Pierre.
4
5 Ansel is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 Ansel is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with Ansel. If not, see <http://www.gnu.org/licenses/>.
17*/
18
35#ifndef DT_CONTROL_REDRAW_H
36#define DT_CONTROL_REDRAW_H
37
38/* C linkage: these are defined in a C translation unit and reachable from C++ ones. The header
39 * this came from wraps its declarations the same way, so without this a C++ caller emits a
40 * mangled reference. Linux does not catch it -- a plugin .so may keep undefined symbols and
41 * fail at dlopen() instead -- but macOS and Windows fail the link. See control/user_message.h. */
42#ifdef __cplusplus
43extern "C" {
44#endif
45
48
51
54
57
60
61#ifdef __cplusplus
62}
63#endif
64
65#endif // DT_CONTROL_REDRAW_H
66
67// clang-format off
68// modelines: These editor modelines have been set for all relevant files by tools/update_modelines.py
69// vim: shiftwidth=2 expandtab tabstop=2 cindent
70// kate: tab-indents: off; indent-width 2; replace-tabs on; indent-mode cstyle; remove-trailing-spaces modified;
71// clang-format on
void dt_control_queue_redraw_center()
Request a redraw of the centre view.
Definition control.c:924
void dt_control_toast_redraw()
Request a redraw of the toast message label.
Definition control.c:939
void dt_control_log_redraw()
Request a redraw of the log message label.
Definition control.c:934
void dt_control_navigation_redraw()
Request a redraw of the navigation module's widget.
Definition control.c:929
void dt_control_queue_redraw()
Request a redraw of the whole workspace.
Definition control.c:919