/*********************************************************************** * fstartoptions.h - Contains the start options for initialization * * * * This file is part of the Final Cut widget toolkit * * * * Copyright 2019 Markus Gans * * * * The 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. * * * * The 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 "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 virtual ~FStartOptions(); // Disable assignment operator (=) FStartOptions& operator = (const FStartOptions&) = delete; // Accessors virtual const FString getClassName(); static FStartOptions& getFStartOptions(); // Mutator void setDefault(); // Method static void destroyObject(); // Data members uInt8 cursor_optimisation : 1; uInt8 mouse_support : 1; uInt8 terminal_detection : 1; uInt8 color_change : 1; uInt8 vgafont : 1; uInt8 newfont : 1; uInt8 : 2; // padding bits fc::encoding encoding; #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 static FStartOptions* start_options; }; //---------------------------------------------------------------------- inline const FString FStartOptions::getClassName() { return "FStartOptions"; } } // namespace finalcut #endif // FSTARTOPTIONS_H