/*********************************************************************** * fstartoptions.h - Contains the start options for initialization * * * * This file is part of the FINAL CUT widget toolkit * * * * Copyright 2019-2021 Markus Gans * * * * FINAL CUT is free software; you can redistribute it and/or modify * * it under the terms of the GNU Lesser General Public License as * * published by the Free Software Foundation; either version 3 of * * the License, or (at your option) any later version. * * * * FINAL CUT is distributed in the hope that it will be useful, but * * WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with this program. If not, see * * . * ***********************************************************************/ /* Standalone class * ════════════════ * * ▕▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▏ * ▕ FStartOptions ▏ * ▕▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▏ */ #ifndef FSTARTOPTIONS_H #define FSTARTOPTIONS_H #if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT) #error "Only can be included directly." #endif #include #include #include "final/fc.h" #include "final/fstring.h" #include "final/ftypes.h" namespace finalcut { //---------------------------------------------------------------------- // class FStartOptions //---------------------------------------------------------------------- class FStartOptions final { public: // Constructors FStartOptions(); // Disable copy constructor FStartOptions (const FStartOptions&) = delete; // Destructor ~FStartOptions() = default; // Disable copy assignment operator (=) FStartOptions& operator = (const FStartOptions&) = delete; // Accessors static FString getClassName(); static auto getInstance() -> FStartOptions&; // Mutator void setDefault(); // Data members uInt8 cursor_optimisation : 1; uInt8 mouse_support : 1; uInt8 terminal_detection : 1; uInt8 terminal_data_request : 1; uInt8 color_change : 1; uInt8 sgr_optimizer : 1; uInt8 vgafont : 1; uInt8 newfont : 1; #if defined(__FreeBSD__) || defined(__DragonFly__) || defined(UNIT_TEST) uInt8 meta_sends_escape : 1; uInt8 change_cursorstyle : 1; uInt8 : 6; // padding bits #elif defined(__NetBSD__) || defined(__OpenBSD__) uInt8 meta_sends_escape : 1; uInt8 : 7; // padding bits #endif uInt16 dark_theme : 1; uInt16 : 15; // padding bits Encoding encoding{Encoding::Unknown}; std::ofstream logfile_stream{}; }; //---------------------------------------------------------------------- inline FString FStartOptions::getClassName() { return "FStartOptions"; } } // namespace finalcut #endif // FSTARTOPTIONS_H