2016-02-19 21:41:02 +00:00
|
|
|
//
|
|
|
|
|
// A base class for platform specific system calls
|
|
|
|
|
// for the Fast Light Tool Kit (FLTK).
|
|
|
|
|
//
|
2022-03-20 07:09:34 +00:00
|
|
|
// Copyright 2010-2022 by Bill Spitzak and others.
|
2016-02-19 21:41:02 +00:00
|
|
|
//
|
|
|
|
|
// This library is free software. Distribution and use rights are outlined in
|
|
|
|
|
// the file "COPYING" which should have been included with this file. If this
|
|
|
|
|
// file is missing or damaged, see the license at:
|
|
|
|
|
//
|
2020-02-10 10:55:34 +00:00
|
|
|
// https://www.fltk.org/COPYING.php
|
2016-02-19 21:41:02 +00:00
|
|
|
//
|
2020-07-01 16:03:10 +00:00
|
|
|
// Please see the following page on how to report bugs and issues:
|
2016-02-19 21:41:02 +00:00
|
|
|
//
|
2020-07-01 16:03:10 +00:00
|
|
|
// https://www.fltk.org/bugs.php
|
2016-02-19 21:41:02 +00:00
|
|
|
//
|
|
|
|
|
|
2018-06-23 16:47:40 +00:00
|
|
|
/**
|
2018-06-23 20:50:22 +00:00
|
|
|
\cond DriverDev
|
|
|
|
|
\addtogroup DriverDeveloper
|
|
|
|
|
\{
|
2018-06-23 16:47:40 +00:00
|
|
|
*/
|
|
|
|
|
|
2016-02-19 21:41:02 +00:00
|
|
|
/** \file Fl_System_Driver.H
|
2016-03-26 18:03:10 +00:00
|
|
|
\brief declaration of class Fl_System_Driver.
|
2016-02-19 21:41:02 +00:00
|
|
|
*/
|
|
|
|
|
|
2022-07-26 07:29:49 +00:00
|
|
|
/* Class hierarchy
|
|
|
|
|
+ Fl_System_Driver
|
|
|
|
|
| + Fl_Posix_System_Driver
|
|
|
|
|
| | + Fl_Unix_System_Driver
|
|
|
|
|
| | + Fl_Darwin_System_Driver
|
|
|
|
|
| + Fl_WinAPI_System_Driver
|
|
|
|
|
*/
|
|
|
|
|
|
2016-03-26 18:36:44 +00:00
|
|
|
#ifndef FL_SYSTEM_DRIVER_H
|
|
|
|
|
#define FL_SYSTEM_DRIVER_H
|
|
|
|
|
|
2016-04-19 22:45:22 +00:00
|
|
|
#include <FL/Fl.H>
|
2016-03-26 18:36:44 +00:00
|
|
|
#include <FL/Fl_Export.H>
|
2016-04-10 06:33:19 +00:00
|
|
|
#include <FL/filename.H>
|
2016-04-10 08:15:51 +00:00
|
|
|
#include <FL/Fl_Preferences.H>
|
2016-03-31 11:01:07 +00:00
|
|
|
#include <stdio.h>
|
2016-04-10 19:37:18 +00:00
|
|
|
#include <stdlib.h>
|
2016-03-28 15:22:20 +00:00
|
|
|
#include <stdarg.h>
|
2016-04-10 18:36:47 +00:00
|
|
|
#include <string.h>
|
2017-03-07 16:58:13 +00:00
|
|
|
#include <time.h>
|
2016-03-26 18:36:44 +00:00
|
|
|
|
2016-04-10 06:33:19 +00:00
|
|
|
class Fl_File_Icon;
|
|
|
|
|
class Fl_File_Browser;
|
2016-04-14 20:44:23 +00:00
|
|
|
class Fl_Pixmap;
|
2016-04-15 14:32:13 +00:00
|
|
|
class Fl_Widget;
|
2021-02-16 13:54:38 +00:00
|
|
|
class Fl_Sys_Menu_Bar_Driver;
|
2016-03-26 14:36:11 +00:00
|
|
|
|
2016-02-19 21:41:02 +00:00
|
|
|
/**
|
2016-03-28 15:22:20 +00:00
|
|
|
\brief A base class for platform-specific system operations.
|
2016-04-23 06:27:31 +00:00
|
|
|
This class is only for internal use by the FLTK library.
|
|
|
|
|
Each supported platform implements several of the virtual methods of this class.
|
2016-02-19 21:41:02 +00:00
|
|
|
*/
|
2022-08-20 08:16:32 +00:00
|
|
|
class Fl_System_Driver {
|
2016-04-01 10:28:03 +00:00
|
|
|
friend class Fl;
|
2016-03-28 09:25:11 +00:00
|
|
|
protected:
|
2016-04-01 10:28:03 +00:00
|
|
|
// implement once for each platform
|
|
|
|
|
static Fl_System_Driver *newSystemDriver();
|
2016-02-19 21:41:02 +00:00
|
|
|
Fl_System_Driver();
|
2022-12-10 09:19:54 +00:00
|
|
|
static bool awake_ring_empty();
|
2016-03-28 09:25:11 +00:00
|
|
|
public:
|
2016-02-19 21:41:02 +00:00
|
|
|
virtual ~Fl_System_Driver();
|
2022-03-15 05:42:06 +00:00
|
|
|
static int command_key;
|
|
|
|
|
static int control_key;
|
2017-11-10 12:56:00 +00:00
|
|
|
|
2016-03-28 15:22:20 +00:00
|
|
|
// implement if the system adds unwanted program argument(s)
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual int single_arg(const char *) { return 0; }
|
2016-03-28 15:22:20 +00:00
|
|
|
// implement if the system adds unwanted program argument pair(s)
|
2022-03-21 16:03:13 +00:00
|
|
|
virtual int arg_and_value(const char * /*name*/, const char * /*value*/) { return 0; }
|
2016-03-28 15:22:20 +00:00
|
|
|
static void warning(const char* format, ...);
|
|
|
|
|
// implement to set the default effect of Fl::warning()
|
|
|
|
|
virtual void warning(const char* format, va_list args);
|
|
|
|
|
static void error(const char* format, ...);
|
|
|
|
|
// implement to set the default effect of Fl::error()
|
|
|
|
|
virtual void error(const char* format, va_list args);
|
|
|
|
|
static void fatal(const char* format, ...);
|
|
|
|
|
// implement to set the default effect of Fl::error()
|
|
|
|
|
virtual void fatal(const char* format, va_list args);
|
2017-11-10 12:56:00 +00:00
|
|
|
|
2016-03-30 13:59:55 +00:00
|
|
|
// implement these to support cross-platform file operations
|
2016-03-29 19:41:14 +00:00
|
|
|
virtual char *utf2mbcs(const char *s) {return (char*)s;}
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual char *getenv(const char*) {return NULL;}
|
|
|
|
|
virtual int putenv(const char *) {return -1;}
|
|
|
|
|
virtual int open(const char* /*f*/, int /*oflags*/, int /*pmode*/) {return -1;}
|
2017-10-15 12:34:24 +00:00
|
|
|
|
2020-07-22 03:15:41 +00:00
|
|
|
// implement these to support cross-platform string operations
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual char *strdup(const char *) {return NULL;}
|
2020-07-22 03:15:41 +00:00
|
|
|
|
2017-10-15 12:34:24 +00:00
|
|
|
// Note: the default implementation ignores the 'binary' argument.
|
|
|
|
|
// Some platforms (notably Windows) may use this argument.
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual int open_ext(const char* f, int /*binary*/, int oflags, int pmode) {
|
2017-10-15 12:34:24 +00:00
|
|
|
return this->open(f, oflags, pmode);
|
|
|
|
|
}
|
2016-04-27 17:25:17 +00:00
|
|
|
virtual FILE *fopen(const char* f, const char *mode);
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual int system(const char*) {return -1;}
|
2022-03-21 16:03:13 +00:00
|
|
|
virtual int execvp(const char * /*file*/, char *const * /*argv*/) {return -1;}
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual int chmod(const char* /*f*/, int /*mode*/) {return -1;}
|
|
|
|
|
virtual int access(const char* /*f*/, int /*mode*/) { return -1;}
|
2022-04-03 18:10:08 +00:00
|
|
|
virtual int flstat(const char* /*f*/, struct stat *) { return -1;}
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual char *getcwd(char* /*b*/, int /*l*/) {return NULL;}
|
|
|
|
|
virtual int chdir(const char*) {return -1;}
|
|
|
|
|
virtual int unlink(const char*) {return -1;}
|
|
|
|
|
virtual int mkdir(const char* /*f*/, int /*mode*/) {return -1;}
|
|
|
|
|
virtual int rmdir(const char*) {return -1;}
|
2022-03-21 16:03:13 +00:00
|
|
|
virtual int rename(const char* /*f*/, const char * /*n*/) {return -1;}
|
2017-11-10 12:56:00 +00:00
|
|
|
|
2023-11-20 19:12:02 +00:00
|
|
|
// Windows commandline argument conversion to UTF-8.
|
|
|
|
|
// Default implementation: no-op, overridden only on Windows
|
|
|
|
|
virtual int args_to_utf8(int argc, char ** &argv) { return argc; }
|
|
|
|
|
|
2017-11-10 12:56:00 +00:00
|
|
|
// the default implementation of these utf8... functions should be enough
|
2016-03-30 13:59:55 +00:00
|
|
|
virtual unsigned utf8towc(const char* src, unsigned srclen, wchar_t* dst, unsigned dstlen);
|
|
|
|
|
virtual unsigned utf8fromwc(char* dst, unsigned dstlen, const wchar_t* src, unsigned srclen);
|
2016-04-12 06:45:35 +00:00
|
|
|
virtual int utf8locale() {return 1;}
|
2016-03-30 13:59:55 +00:00
|
|
|
virtual unsigned utf8to_mb(const char* src, unsigned srclen, char* dst, unsigned dstlen);
|
|
|
|
|
virtual unsigned utf8from_mb(char* dst, unsigned dstlen, const char* src, unsigned srclen);
|
2016-03-30 15:47:23 +00:00
|
|
|
// implement to shield fprintf() from locale changes in decimal point
|
2022-03-23 11:19:24 +00:00
|
|
|
virtual int clocale_vprintf(FILE *output, const char *format, va_list args);
|
|
|
|
|
virtual int clocale_vsnprintf(char *output, size_t output_size, const char *format, va_list args);
|
|
|
|
|
virtual int clocale_vsscanf(const char *input, const char *format, va_list args);
|
2016-04-07 15:10:30 +00:00
|
|
|
// implement scandir-like function
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual int filename_list(const char * /*d*/, dirent ***,
|
2022-03-21 16:03:13 +00:00
|
|
|
int (* /*sort*/)(struct dirent **, struct dirent **),
|
2021-12-09 10:40:43 +00:00
|
|
|
char *errmsg=NULL, int errmsg_sz=0) {
|
2023-11-20 19:12:02 +00:00
|
|
|
(void)errmsg; (void)errmsg_sz;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2016-04-08 15:17:39 +00:00
|
|
|
// the default implementation of filename_expand() may be enough
|
2016-04-07 16:54:20 +00:00
|
|
|
virtual int filename_expand(char *to, int tolen, const char *from);
|
|
|
|
|
// to implement
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual const char *getpwnam(const char *) {return NULL;}
|
2016-04-08 15:17:39 +00:00
|
|
|
// the default implementation of filename_relative() is in src/filename_absolute.cxx and may be enough
|
|
|
|
|
virtual int filename_relative(char *to, int tolen, const char *from, const char *base);
|
|
|
|
|
// the default implementation of filename_absolute() is in src/filename_absolute.cxx and may be enough
|
2023-09-05 12:45:51 +00:00
|
|
|
virtual int filename_absolute(char *to, int tolen, const char *from, const char *base);
|
2016-04-08 15:48:28 +00:00
|
|
|
// the default implementation of filename_isdir() is in src/filename_isdir.cxx and may be enough
|
|
|
|
|
virtual int filename_isdir(const char* n);
|
|
|
|
|
// the default implementation of filename_isdir_quick() is in src/filename_isdir.cxx and may be enough
|
|
|
|
|
virtual int filename_isdir_quick(const char* n);
|
2016-04-09 10:42:17 +00:00
|
|
|
// the default implementation of filename_ext() is in src/filename_ext.cxx and may be enough
|
2016-04-08 16:00:26 +00:00
|
|
|
virtual const char *filename_ext(const char *buf);
|
2016-04-15 14:18:37 +00:00
|
|
|
// implement to support fl_filename_name()
|
|
|
|
|
virtual const char *filename_name(const char *buf) {return buf;}
|
2016-04-09 15:15:33 +00:00
|
|
|
// implement to support fl_open_uri()
|
2022-03-21 16:03:13 +00:00
|
|
|
virtual int open_uri(const char * /*uri*/, char * /*msg*/, int /*msglen*/) {return 0;}
|
2016-04-09 15:37:40 +00:00
|
|
|
// the default implementation of use_tooltip_timeout_condition() may be enough
|
|
|
|
|
virtual int use_tooltip_timeout_condition() {return 0;}
|
|
|
|
|
// the default implementation of use_recent_tooltip_fix() may be enough
|
|
|
|
|
virtual int use_recent_tooltip_fix() {return 0;}
|
2016-04-09 16:37:24 +00:00
|
|
|
// the default implementation of need_test_shortcut_extra() may be enough
|
|
|
|
|
virtual int need_test_shortcut_extra() {return 0;}
|
2016-04-10 06:33:19 +00:00
|
|
|
// implement to support Fl_File_Browser::load()
|
2022-03-21 16:03:13 +00:00
|
|
|
virtual int file_browser_load_filesystem(Fl_File_Browser *, char * /*filename*/, int /*lname*/, Fl_File_Icon *) {return 0;}
|
2016-04-10 06:33:19 +00:00
|
|
|
// the default implementation of file_browser_load_directory() should be enough
|
2020-07-11 04:49:00 +00:00
|
|
|
virtual int file_browser_load_directory(const char *directory, char *filename, size_t name_size,
|
|
|
|
|
dirent ***pfiles, Fl_File_Sort_F *sort,
|
|
|
|
|
char *errmsg=NULL, int errmsg_sz=0);
|
2016-04-10 08:15:51 +00:00
|
|
|
// implement to support Fl_Preferences
|
|
|
|
|
virtual void newUUID(char *uuidBuffer) { uuidBuffer[0] = 0; }
|
|
|
|
|
// implement to support Fl_Preferences
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual char *preference_rootnode(Fl_Preferences *, Fl_Preferences::Root,
|
2022-03-21 16:03:13 +00:00
|
|
|
const char * /*vendor*/,
|
|
|
|
|
const char * /*application*/) {return NULL;}
|
2016-04-10 08:15:51 +00:00
|
|
|
// the default implementation of preferences_need_protection_check() may be enough
|
|
|
|
|
virtual int preferences_need_protection_check() {return 0;}
|
|
|
|
|
// implement to support Fl_Plugin_Manager::load()
|
2021-12-09 10:40:43 +00:00
|
|
|
virtual void *load(const char *) {return NULL;}
|
2016-04-10 18:22:57 +00:00
|
|
|
// the default implementation is most probably enough
|
2022-03-21 16:03:13 +00:00
|
|
|
virtual void png_extra_rgba_processing(unsigned char * /*array*/, int /*w*/, int /*h*/) {}
|
2016-04-10 18:36:47 +00:00
|
|
|
// the default implementation is most probably enough
|
|
|
|
|
virtual const char *next_dir_sep(const char *start) { return strchr(start, '/');}
|
2016-04-10 20:38:04 +00:00
|
|
|
// implement to support threading
|
|
|
|
|
virtual void awake(void*) {}
|
|
|
|
|
virtual int lock() {return 1;}
|
|
|
|
|
virtual void unlock() {}
|
|
|
|
|
virtual void* thread_message() {return NULL;}
|
2016-04-11 13:07:08 +00:00
|
|
|
// implement to support Fl_File_Icon
|
|
|
|
|
virtual int file_type(const char *filename);
|
2016-04-12 17:06:20 +00:00
|
|
|
// implement to return the user's home directory name
|
|
|
|
|
virtual const char *home_directory_name() { return ""; }
|
|
|
|
|
// the default implementation is most probably enough
|
|
|
|
|
virtual const char *filesystems_label() { return "File Systems"; }
|
|
|
|
|
// return TRUE means \ same as / in file names
|
|
|
|
|
virtual int backslash_as_slash() {return 0;}
|
|
|
|
|
// return TRUE means : indicates a drive letter in file names
|
|
|
|
|
virtual int colon_is_drive() {return 0;}
|
|
|
|
|
// return TRUE means that files whose name begins with dot are hidden
|
|
|
|
|
virtual int dot_file_hidden() {return 0;}
|
2016-04-12 21:32:55 +00:00
|
|
|
// return TRUE when file names are case insensitive
|
|
|
|
|
virtual int case_insensitive_filenames() {return 0;}
|
2016-04-13 14:05:34 +00:00
|
|
|
// the implementations of local_to_latin1() and latin1_to_local() are in fl_encoding_latin1.cxx
|
|
|
|
|
virtual const char *local_to_latin1(const char *t, int n);
|
|
|
|
|
virtual const char *latin1_to_local(const char *t, int n);
|
2016-04-13 14:19:13 +00:00
|
|
|
// the implementations of local_to_mac_roman() and mac_roman_to_local() are in fl_encoding_mac_roman.cxx
|
|
|
|
|
virtual const char *local_to_mac_roman(const char *t, int n);
|
|
|
|
|
virtual const char *mac_roman_to_local(const char *t, int n);
|
2024-06-30 16:08:00 +00:00
|
|
|
// draw default tree view expando button
|
|
|
|
|
virtual void tree_draw_expando_button(int x, int y, bool state, bool active);
|
2016-04-14 20:58:20 +00:00
|
|
|
// the default implementation of tree_connector_style() is in Fl_Tree_Prefs.cxx and can be enough
|
|
|
|
|
virtual int tree_connector_style();
|
2016-04-19 22:45:22 +00:00
|
|
|
virtual void add_fd(int fd, int when, Fl_FD_Handler cb, void* = 0);
|
|
|
|
|
virtual void add_fd(int fd, Fl_FD_Handler cb, void* = 0);
|
|
|
|
|
virtual void remove_fd(int, int when);
|
|
|
|
|
virtual void remove_fd(int);
|
2016-09-09 15:56:33 +00:00
|
|
|
// the default implementation of open_callback() may be enough
|
|
|
|
|
virtual void open_callback(void (*)(const char *));
|
2017-03-14 17:51:20 +00:00
|
|
|
// The default implementation may be enough.
|
|
|
|
|
virtual void gettime(time_t *sec, int *usec);
|
2017-09-19 19:33:54 +00:00
|
|
|
// The default implementation of the next 4 functions may be enough.
|
|
|
|
|
virtual const char *shift_name() { return "Shift"; }
|
|
|
|
|
virtual const char *meta_name() { return "Meta"; }
|
|
|
|
|
virtual const char *alt_name() { return "Alt"; }
|
|
|
|
|
virtual const char *control_name() { return "Ctrl"; }
|
2021-02-16 13:54:38 +00:00
|
|
|
virtual Fl_Sys_Menu_Bar_Driver *sys_menu_bar_driver() { return NULL; }
|
2021-02-16 15:28:44 +00:00
|
|
|
virtual void lock_ring() {}
|
|
|
|
|
virtual void unlock_ring() {}
|
2022-12-30 18:14:36 +00:00
|
|
|
virtual double wait(double); // must FL_OVERRIDE
|
|
|
|
|
virtual int ready() { return 0; } // must FL_OVERRIDE
|
2022-11-15 09:09:01 +00:00
|
|
|
virtual int close_fd(int) {return -1;} // to close a file descriptor
|
2016-02-19 21:41:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // FL_SYSTEM_DRIVER_H
|
|
|
|
|
|
2018-06-23 16:47:40 +00:00
|
|
|
/**
|
2018-06-23 20:50:22 +00:00
|
|
|
\}
|
|
|
|
|
\endcond
|
2018-06-23 16:47:40 +00:00
|
|
|
*/
|