aboutsummaryrefslogtreecommitdiffstats
path: root/Library/UefiShellUfmCommandLib/actions.c
blob: 8c75c67487ed225b7b850029863b4934ac1cae15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <Library/UefiLib.h>
#include <Library/DebugLib.h>
#include <Library/ShellLib.h>
#include <Library/UefiBootServicesTableLib.h>

#include "dir.h"
#include "fs.h"

#include "menu-bar.h"
#include "command-bar.h"
#include "panel.h"
#include "filemanager.h"
#include "actions.h"

BOOLEAN jump_up(VOID)
{
	panel_move_cursor(fm_ctx.curpanel, fm_ctx.curpanel->curline - 1);
	return TRUE;
}

BOOLEAN jump_down(VOID)
{
	panel_move_cursor(fm_ctx.curpanel, fm_ctx.curpanel->curline + 1);
	return TRUE;
}

BOOLEAN change_panel(VOID)
{
	panel_set_active(fm_ctx.curpanel, FALSE);
	fm_ctx.curpanel = (fm_ctx.curpanel == fm_ctx.left) ? fm_ctx.right : fm_ctx.left;
	panel_set_active(fm_ctx.curpanel, TRUE);
	return TRUE;
}

BOOLEAN mark(VOID)
{
	panel_mark_file(fm_ctx.curpanel, fm_ctx.curpanel->curline);
	return TRUE;
}

BOOLEAN show_filesystems(VOID)
{
	return panel_cd_to(fm_ctx.curpanel, NULL);
}

BOOLEAN do_nothing(VOID)
{
	return TRUE;
}

BOOLEAN quit(VOID)
{
	fm_ctx.flag_run = FALSE;
	return TRUE;
}