Move some functions up the file so we can use them.
[dcpomatic.git] / src / wx / wx_util.cc
index 1a34e5fa808bc992d1bd14bb55368848f0080862..a0beb8f72d0f4e7ac92b7be74e2b06ae52b756af 100644 (file)
@@ -661,3 +661,15 @@ small_button_size (wxWindow* parent, wxString text)
        return size;
 }
 
+
+bool
+gui_is_dark ()
+{
+#if defined(DCPOMATIC_OSX) && wxCHECK_VERSION(3, 1, 0)
+       auto appearance = wxSystemSettings::GetAppearance();
+       return appearance.IsDark();
+#else
+       return false;
+#endif
+}
+