Further reduction of include dependencies

This commit is contained in:
Ingo Weyrich
2019-11-02 17:29:26 +01:00
parent afeca7f5f9
commit b3b1008270
38 changed files with 75 additions and 129 deletions

View File

@@ -23,10 +23,15 @@
#include "preferences.h"
#include "iccprofilecreator.h"
#include "cursormanager.h"
#include "editwindow.h"
#include "rtimage.h"
#include "thumbnail.h"
#include "whitebalance.h"
#include "../rtengine/settings.h"
#include "batchqueuepanel.h"
#include "editorpanel.h"
#include "filepanel.h"
#include "filmsimulation.h"
float fontScale = 1.f;
Glib::RefPtr<Gtk::CssProvider> cssForced;
@@ -1163,3 +1168,8 @@ void RTWindow::createSetmEditor()
mainNB->append_page (*epanel, *editorLabelGrid);
}
bool RTWindow::isSingleTabMode() const
{
return !options.tabbedUI && ! (options.multiDisplayMode > 0);
}