mirror of
https://github.com/joel16/VitaShell.git
synced 2024-11-26 21:30:45 +00:00
8eff0e6bba
* wip * add symlink functions * introduce symlink drawing * remove warnings * add symlink theme * wip * better magic number compare * wip * wip * refactoring * resolve links * add theme * nested dir symlink contxt * nested symlinks with correct sel position * remove todos * wip non compiling * archive mode * resolve files * add context menu * resolve files correctly * err code * add shortcut for bookmarks * recent files * l/r switching * wip * menu changes * bookmark dialog * wip * add sort mode * recent files * dont store parent dir in recent files * clean up * recent menu entry * error msgs * code style ptr * arrow * new menu entries * remapping shortcuts * introduce symlink ext * fix symlink extension * file extension behaviour for folders * clean recent files * typo * change order of delete for recent folder * use left arrow key for shortcut not L key * skip symlink hierarchies when pressing O in bookmarks/ recent files * hide new bookmark entry when bookmark folder selected
44 lines
1.3 KiB
C
44 lines
1.3 KiB
C
/*
|
|
VitaShell
|
|
Copyright (C) 2015-2018, TheFloW
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __MAIN_CONTEXT_H__
|
|
#define __MAIN_CONTEXT_H__
|
|
|
|
#include "context_menu.h"
|
|
|
|
extern char pfs_mounted_path[MAX_PATH_LENGTH];
|
|
|
|
extern ContextMenu context_menu_home;
|
|
extern ContextMenu context_menu_main;
|
|
extern ContextMenu context_menu_sort;
|
|
extern ContextMenu context_menu_more;
|
|
|
|
int pfsMount(const char *path);
|
|
int pfsUmount();
|
|
|
|
void initContextMenuWidth();
|
|
void setContextMenuHomeVisibilities();
|
|
void setContextMenuMainVisibilities();
|
|
void setContextMenuSortVisibilities();
|
|
void setContextMenuBookmarksVisibilities();
|
|
void setContextMenuAdhocVisibilities();
|
|
void setContextMenuMoreVisibilities();
|
|
void setContextMenuNewVisibilities();
|
|
|
|
#endif
|