// // "$Id: quartz.H 11017 2016-01-20 21:40:12Z matt $" // // Definition of Posix system driver // for the Fast Light Tool Kit (FLTK). // // Copyright 2010-2016 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. If this // file is missing or damaged, see the license at: // // http://www.fltk.org/COPYING.php // // Please report all bugs and problems on the following page: // // http://www.fltk.org/str.php // /** \file Fl_Posix_System_Driver.H \brief Definition of Posix system driver. */ #ifndef FL_POSIX_SYSTEM_DRIVER_H #define FL_POSIX_SYSTEM_DRIVER_H #include #include #include #include #include /* Move everything here that manages the system interface. There is exactly one system driver. - filename and pathname management - directory and file access - system time and system timer - multithreading */ class Fl_Posix_System_Driver : public Fl_System_Driver { public: virtual void display_arg(const char *arg); virtual int XParseGeometry(const char*, int*, int*, unsigned int*, unsigned int*); virtual int mkdir(const char* f, int mode) {return ::mkdir(f, mode);} virtual int open(const char* f, int oflags, int pmode) { return pmode == -1 ? ::open(f, oflags) : ::open(f, oflags, pmode); } virtual FILE *fopen(const char* f, const char *mode) {return ::fopen(f, mode);} virtual int system(const char* cmd) {return ::system(cmd);} virtual int execvp(const char *file, char *const *argv) {return ::execvp(file, argv);} virtual int chmod(const char* f, int mode) {return ::chmod(f, mode);} virtual int access(const char* f, int mode) { return ::access(f, mode);} virtual int stat(const char* f, struct stat *b) { return ::stat(f, b);} virtual char *getcwd(char* b, int l) {return ::getcwd(b, l);} virtual int unlink(const char* f) {return ::unlink(f);} virtual int rmdir(const char* f) {return ::rmdir(f);} virtual int rename(const char* f, const char *n) {return ::rename(f, n);} virtual int clocale_printf(FILE *output, const char *format, va_list args); }; #endif // FL_POSIX_SYSTEM_DRIVER_H // // End of "$Id: quartz.H 11017 2016-01-20 21:40:12Z matt $". //