rework keyframe hide popup, keyframe auto render, textbox set_selection wide text
[goodguy/history.git] / cinelerra-5.1 / guicast / filesystem.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef FILESYSTEM_H
23 #define FILESYSTEM_H
24
25 #include "arraylist.h"
26 #include "bcwindowbase.inc"
27 #include "sizes.h"
28
29 class FileItem
30 {
31 public:
32         FileItem();
33         FileItem(char *path,
34                 char *name,
35                 int is_dir,
36                 int64_t size,
37                 int month,
38                 int day,
39                 int year,
40                 int64_t calendar_time);
41         ~FileItem();
42
43         int set_path(char *path);
44         int set_name(char *name);
45         int reset();
46         const char* get_path();
47         const char* get_name();
48         int get_is_dir();
49
50         char *path;
51         char *name;
52         int is_dir;
53         int64_t size;
54         int month;
55         int day;
56         int year;
57         int64_t calendar_time;
58 };
59
60 class FileSystem
61 {
62 public:
63 // sets the working directory to the user
64         FileSystem();
65         virtual ~FileSystem();
66
67 // Load the new directory and change current_dir to it.
68 // This does not complete the dir path.
69 // If any of the files failed to stat, it returns nonzero.
70         int update(const char *new_dir = 0);
71
72 // Complete the path in the string and change to the directory in the string.
73 // Does not change new_dir
74 // update - causes the directory to be loaded
75         int change_dir(const char *new_dir, int update = 1);
76 // Set the current_dir to something without completing the path.
77         int set_current_dir(const char *new_dir);
78
79         int move_up();
80         char *get_current_dir();
81 // Syntax of filter is
82 // single filter without [].
83 // multiple filters enclosed in [].
84         int set_filter(const char *new_filter);
85         int set_show_all();     // show hidden files
86         int set_want_directory();
87         int set_sort_order(int value);
88         int set_sort_field(int field);
89         int create_dir(const char *new_dir_);    // create a new directory
90         int complete_path(char *filename);   // use the filename and the current_dir to create a complete filename
91 // return 1 if the text is a directory
92         int is_dir(const char *new_dir_);
93         int extract_dir(char *out, const char *in);    // extract the directory from the path
94         int extract_name(char *out, const char *in, int test_dir = 1);  // extract the name from the path
95         int join_names(char *out, const char *dir_in, const char *name_in);    // combine a directory and filename
96         static int64_t get_date(const char *path);        // get the date of the filename modification
97         static void set_date(const char *path, int64_t value); // set the date of the file
98         static int64_t get_size(char *filename);        // Get the number of bytes in the file.
99         int add_end_slash(char *new_dir);
100         int total_files();
101         FileItem* get_entry(int entry);
102         int number_of(FileItem *item);
103
104         int parse_tildas(char *new_dir);     // expand tildas
105         int parse_directories(char *new_dir);  // add directories
106         int parse_dots(char *new_dir);         // move up directory tree after expanding tildas
107         static char *basepath(const char *path); // collapse ".", "..", "//" elements
108
109 // Alphabetize all the directories and files.  By default
110 // directories come first.
111         void alphabetize();
112
113 // Array of files and directories in the directory pointed to by current_dir.
114 // Directories are first.
115         ArrayList<FileItem*> dir_list;
116
117 // Sorting order and sorting field.  These are identical in BC_ListBox.
118         enum
119         {
120                 SORT_ASCENDING,
121                 SORT_DESCENDING
122         };
123
124 // Match column definitions in BC_FileBox.
125         enum
126         {
127                 SORT_PATH,
128                 SORT_SIZE,
129                 SORT_DATE,
130                 SORT_EXTENSION
131         };
132
133 private:
134         int sort_table(ArrayList<FileItem*> *dir_list);
135         static int path_ascending(const void *ptr1, const void *ptr2);
136         static int path_descending(const void *ptr1, const void *ptr2);
137         static int size_ascending(const void *ptr1, const void *ptr2);
138         static int size_descending(const void *ptr1, const void *ptr2);
139         static int date_ascending(const void *ptr1, const void *ptr2);
140         static int date_descending(const void *ptr1, const void *ptr2);
141         static int ext_ascending(const void *ptr1, const void *ptr2);
142         static int ext_descending(const void *ptr1, const void *ptr2);
143         static int dot_reverse_filename(char *out, const char *in);
144
145 // Combine the directories and files into the master list, directories first.
146         int combine(ArrayList<FileItem*> *dir_list, ArrayList<FileItem*> *file_list);
147 // Return whether or not the string is the root directory.
148         int is_root_dir(char *path);
149 // Whether or not the file passes the current filter.
150         int test_filter(FileItem *file);
151         int reset_parameters();
152         int delete_directory();
153
154         char filter[BCTEXTLEN];     // what filenames have to end in to get displayed
155         int want_directory;
156         int show_all_files;       // shows . files
157         char current_dir[BCTEXTLEN];
158         char string[BCTEXTLEN], string2[BCTEXTLEN];
159         int sort_order;
160         int sort_field;
161 };
162
163 #endif