diff options
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_System_Driver.H | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/FL/Fl_System_Driver.H b/FL/Fl_System_Driver.H index 0ad4fd4b1..6ee90f7be 100644 --- a/FL/Fl_System_Driver.H +++ b/FL/Fl_System_Driver.H @@ -162,6 +162,16 @@ public: // the default implementations of pixmap_extra_transparent_processing() and make_unused_color() and are most probably enough virtual int pixmap_extra_transparent_processing() {return 0;} virtual void make_unused_color(unsigned char &r, unsigned char &g, unsigned char &b) {} + // 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;} }; #endif // FL_SYSTEM_DRIVER_H |
