rofi 1.7.5
|
#include <errno.h>
#include <gio/gio.h>
#include <gmodule.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <dirent.h>
#include <glib/gstdio.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "helper.h"
#include "history.h"
#include "mode-private.h"
#include "mode.h"
#include "modes/filebrowser.h"
#include "rofi.h"
#include "theme.h"
#include <stdint.h>
#include "rofi-icon-fetcher.h"
Go to the source code of this file.
Data Structures | |
struct | FBFile |
struct | FileBrowserModePrivateData |
Macros | |
#define | FILEBROWSER_CACHE_FILE "rofi3.filebrowsercache" |
Enumerations | |
enum | FBFileType { UP , DIRECTORY , RFILE , NUM_FILE_TYPES } |
enum | FBSortingMethod { FB_SORT_NAME , FB_SORT_TIME } |
enum | FBSortingTime { FB_MTIME , FB_ATIME , FB_CTIME } |
Functions | |
static void | free_list (FileBrowserModePrivateData *pd) |
static gint | compare_name (gconstpointer a, gconstpointer b, G_GNUC_UNUSED gpointer data) |
static gint | compare_time (gconstpointer a, gconstpointer b, G_GNUC_UNUSED gpointer data) |
static gint | compare (gconstpointer a, gconstpointer b, gpointer data) |
static time_t | get_time (const GStatBuf *statbuf) |
static void | set_time (FBFile *file) |
static void | fb_resize_array (FileBrowserModePrivateData *pd) |
static void | get_file_browser (Mode *sw) |
static void | file_browser_mode_init_config (Mode *sw) |
static void | file_browser_mode_init_current_dir (Mode *sw) |
static int | file_browser_mode_init (Mode *sw) |
static unsigned int | file_browser_mode_get_num_entries (const Mode *sw) |
static ModeMode | file_browser_mode_result (Mode *sw, int mretv, char **input, unsigned int selected_line) |
static void | file_browser_mode_destroy (Mode *sw) |
static char * | _get_display_value (const Mode *sw, unsigned int selected_line, G_GNUC_UNUSED int *state, G_GNUC_UNUSED GList **attr_list, int get_entry) |
static int | file_browser_token_match (const Mode *sw, rofi_int_matcher **tokens, unsigned int index) |
static cairo_surface_t * | _get_icon (const Mode *sw, unsigned int selected_line, unsigned int height) |
static char * | _get_message (const Mode *sw) |
static char * | _get_completion (const Mode *sw, unsigned int index) |
Mode * | create_new_file_browser (void) |
ModeMode | file_browser_mode_completer (Mode *sw, int mretv, char **input, unsigned int selected_line, char **path) |
Variables | ||
const char * | icon_name [NUM_FILE_TYPES] = {"go-up", "folder", "gtk-file"} | |
struct { | ||
enum FBSortingMethod sorting_method | ||
enum FBSortingTime sorting_time | ||
gboolean directories_first | ||
} | file_browser_config | |
Mode | file_browser_mode | |
#define FILEBROWSER_CACHE_FILE "rofi3.filebrowsercache" |
rofi-file_browser
MIT/X11 License Copyright (c) 2017 Qball Cow qball.nosp@m.@gmp.nosp@m.clien.nosp@m.t.or.nosp@m.g
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Definition at line 51 of file filebrowser.c.
Referenced by file_browser_mode_init_current_dir(), and file_browser_mode_result().
enum FBFileType |
The internal data structure holding the private data of the TEST Mode.
Enumerator | |
---|---|
UP | |
DIRECTORY | |
RFILE | |
NUM_FILE_TYPES |
Definition at line 62 of file filebrowser.c.
enum FBSortingMethod |
Possible sorting methods
Enumerator | |
---|---|
FB_SORT_NAME | |
FB_SORT_TIME |
Definition at line 72 of file filebrowser.c.
enum FBSortingTime |
Type of time to sort by
Enumerator | |
---|---|
FB_MTIME | |
FB_ATIME | |
FB_CTIME |
Definition at line 80 of file filebrowser.c.
|
static |
Definition at line 600 of file filebrowser.c.
References FileBrowserModePrivateData::array, mode_get_private_data(), and FBFile::path.
|
static |
Definition at line 531 of file filebrowser.c.
References FileBrowserModePrivateData::array, FBFile::link, mode_get_private_data(), FBFile::name, FBFile::type, and UP.
|
static |
Definition at line 569 of file filebrowser.c.
References FileBrowserModePrivateData::array, FBFile::icon_fetch_size, FBFile::icon_fetch_uid, icon_name, mode_get_private_data(), FBFile::path, rofi_icon_fetcher_file_is_image(), rofi_icon_fetcher_get(), rofi_icon_fetcher_query(), and FBFile::type.
|
static |
Definition at line 587 of file filebrowser.c.
References FileBrowserModePrivateData::current_dir, and mode_get_private_data().
|
static |
Definition at line 167 of file filebrowser.c.
References compare_name(), compare_time(), FB_SORT_NAME, FB_SORT_TIME, and file_browser_config.
Referenced by get_file_browser().
|
static |
Definition at line 135 of file filebrowser.c.
References file_browser_config, FBFile::name, and FBFile::type.
Referenced by compare().
|
static |
Definition at line 147 of file filebrowser.c.
References file_browser_config, FBFile::time, and FBFile::type.
Referenced by compare().
|
inlinestatic |
Definition at line 217 of file filebrowser.c.
References FileBrowserModePrivateData::array, FileBrowserModePrivateData::array_length, and FileBrowserModePrivateData::array_length_real.
Referenced by get_file_browser().
|
static |
Definition at line 520 of file filebrowser.c.
References FileBrowserModePrivateData::current_dir, free_list(), mode_get_private_data(), and mode_set_private_data().
|
static |
Definition at line 429 of file filebrowser.c.
References FileBrowserModePrivateData::array_length, and mode_get_private_data().
|
static |
Called on startup when enabled (in modes list)
Definition at line 413 of file filebrowser.c.
References file_browser_mode_init_config(), file_browser_mode_init_current_dir(), get_file_browser(), mode_get_private_data(), and mode_set_private_data().
|
static |
Definition at line 339 of file filebrowser.c.
References _PropertyValue::b, FB_ATIME, FB_CTIME, FB_MTIME, FB_SORT_NAME, FB_SORT_TIME, file_browser_config, rofi_mode::name, P_BOOLEAN, P_STRING, rofi_config_find_widget(), rofi_theme_find_property(), rofi_view_error_dialog(), _PropertyValue::s, Property::type, and Property::value.
Referenced by file_browser_mode_init().
|
static |
Definition at line 378 of file filebrowser.c.
References cache_dir, FileBrowserModePrivateData::current_dir, FILEBROWSER_CACHE_FILE, mode_get_private_data(), rofi_mode::name, P_STRING, rofi_config_find_widget(), rofi_theme_find_property(), _PropertyValue::s, Property::type, and Property::value.
Referenced by file_browser_mode_init().
|
static |
Definition at line 435 of file filebrowser.c.
References FileBrowserModePrivateData::array, cache_dir, FileBrowserModePrivateData::current_dir, DIRECTORY, FILEBROWSER_CACHE_FILE, free_list(), get_file_browser(), helper_execute_command(), MENU_CUSTOM_ACTION, MENU_CUSTOM_COMMAND, MENU_CUSTOM_INPUT, MENU_ENTRY_DELETE, MENU_LOWER_MASK, MENU_NEXT, MENU_OK, MENU_PREVIOUS, MENU_QUICK_SWITCH, MODE_EXIT, mode_get_private_data(), NEXT_DIALOG, FBFile::path, PREVIOUS_DIALOG, RELOAD_DIALOG, RESET_DIALOG, RFILE, rofi_expand_path(), FBFile::type, and UP.
|
static |
sw | The mode object. |
tokens | The tokens to match against. |
index | The index in this plugin to match against. |
Match the entry.
Definition at line 560 of file filebrowser.c.
References FileBrowserModePrivateData::array, helper_token_match(), mode_get_private_data(), and FBFile::name.
|
static |
Definition at line 121 of file filebrowser.c.
References FileBrowserModePrivateData::array, FileBrowserModePrivateData::array_length, FileBrowserModePrivateData::array_length_real, FBFile::name, and FBFile::path.
Referenced by file_browser_mode_completer(), file_browser_mode_destroy(), and file_browser_mode_result().
|
static |
Get the entries to display. this gets called on plugin initialization.
Definition at line 225 of file filebrowser.c.
References FileBrowserModePrivateData::array, FileBrowserModePrivateData::array_length, compare(), FileBrowserModePrivateData::current_dir, DIRECTORY, fb_resize_array(), FB_SORT_TIME, file_browser_config, get_time(), FBFile::icon_fetch_size, FBFile::icon_fetch_uid, FBFile::link, mode_get_private_data(), FBFile::name, FBFile::path, RFILE, rofi_force_utf8(), set_time(), FBFile::time, FBFile::type, and UP.
Referenced by file_browser_mode_completer(), file_browser_mode_init(), and file_browser_mode_result().
|
static |
Definition at line 185 of file filebrowser.c.
References FB_ATIME, FB_CTIME, FB_MTIME, and file_browser_config.
Referenced by get_file_browser(), and set_time().
|
static |
Definition at line 198 of file filebrowser.c.
References get_time(), FBFile::path, and FBFile::time.
Referenced by get_file_browser().
gboolean directories_first |
If we want to display directories above files.
Definition at line 114 of file filebrowser.c.
struct { ... } file_browser_config |
The sorting settings used in file-browser.
Referenced by compare(), compare_name(), compare_time(), file_browser_mode_init_config(), get_file_browser(), and get_time().
const char* icon_name[NUM_FILE_TYPES] = {"go-up", "folder", "gtk-file"} |
Icons to use for the file type
Definition at line 87 of file filebrowser.c.
Referenced by _get_icon().
enum FBSortingMethod sorting_method |
Field to sort on.
Definition at line 110 of file filebrowser.c.
enum FBSortingTime sorting_time |
If sorting on time, what time entry.
Definition at line 112 of file filebrowser.c.