// // Tool_Store type definition for FLUID. // // Copyright 1998-2025 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. // #ifndef FLUID_FLD_TOOL_STORE_H #define FLUID_FLD_TOOL_STORE_H /** Indicate the storage location for tools like layout suites and shell macros. \see class Fd_Shell_Command, class Layout_Suite */ typedef int Tool_Store; enum { FLD_TOOL_STORE_INTERNAL = 0, ///< stored inside FLUID app FLD_TOOL_STORE_USER, ///< suite is stored in the user wide FLUID settings FLD_TOOL_STORE_PROJECT, ///< suite is stored within the current .fl project file FLD_TOOL_STORE_FILE ///< store suite in external file }; #endif // FLUID_FLD_TOOL_STORE_H