mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 00:40:16 +02:00
alfilesel: cleanup, fixes, add support for directly exec'ing applications
This commit is contained in:
parent
cbd1c61874
commit
2a118e0145
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=alfilesel
|
||||
PKG_VERSION:=0.1.0
|
||||
PKG_RELEASE:=2
|
||||
PKG_RELEASE:=3
|
||||
#PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
#PKG_SOURCE_URL:=@SF/forth-brainless
|
||||
#PKG_MD5SUM:=ed4a4cbbe23628b17edc5aa01f32f7fb
|
||||
@ -21,7 +21,6 @@ include $(INCLUDE_DIR)/package.mk
|
||||
define Package/alfilesel
|
||||
SECTION:=utilities
|
||||
CATEGORY:=Utilities
|
||||
CATEGORY:=Games
|
||||
MAINTAINER:="David Kuehling" <dvdkhlng TA gmx TOD de>
|
||||
TITLE:=Graphical file selector app to use in shell scripts
|
||||
DEPENDS:=+liballegro +liballegro-jpeg +liballegro-png
|
||||
|
@ -1,6 +1,6 @@
|
||||
/* Simple liballegro based file selector helper utility.
|
||||
*
|
||||
* Copyright (C) 2011 David Kühling <dvdkhlng TA gmx TOD de>
|
||||
* Copyright (C) 2012 David Kühling <dvdkhlng TA gmx TOD de>
|
||||
*
|
||||
* License: GPL3 or later, NO WARRANTY
|
||||
*
|
||||
@ -17,7 +17,6 @@
|
||||
|
||||
|
||||
static int verbose_flag = 0;
|
||||
static int run_flag = 0;
|
||||
static int mouse_flag = 0;
|
||||
static int help_flag = 0;
|
||||
|
||||
@ -25,14 +24,20 @@ char * program_invocation_short_name;
|
||||
|
||||
static void print_help() {
|
||||
const char *help =
|
||||
"[OPTION]...\n"
|
||||
"[OPTION] [--] [PROGRAM_TO_RUN] [PROGRAM_ARGS]..\n"
|
||||
"\n"
|
||||
"If PROGRAM_TO_RUN is specfied, run it with arguments PROGRAM_ARGS and\n"
|
||||
"the selected file appended as final argument.\n"
|
||||
"Else just print the selected filename and newline to stdout.\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"\t-t --title=STRING\n"
|
||||
"\t\tSet file selector dialog's title\n"
|
||||
"\t-w --wallpaper=FILENAME\n"
|
||||
"\t\tSet file to use as wallpaper (supports jpeg, png, pcx, bmp, tga)\n"
|
||||
"\t-p --path=PATH\n"
|
||||
"\t\tSet initial directory and/or filename\n"
|
||||
"\t\tSet initial directory and/or filename. When giving an initial\n"
|
||||
"\t\tdirectory, make sure that PATH ends in a slash.\n"
|
||||
"\t-f --filter=STRING\n"
|
||||
"\t\tFilter files by extension and/or mode bits\n"
|
||||
"\t\tUse 'png;jpeg' to show only .png and .jpeg files, use '/+x' to\n"
|
||||
@ -44,13 +49,12 @@ static void print_help() {
|
||||
help);
|
||||
}
|
||||
|
||||
|
||||
|
||||
int main (int argc, char *argv[])
|
||||
{
|
||||
int c;
|
||||
const int hborder = 32;
|
||||
const int vborder = 32;
|
||||
const int trborder = 6;
|
||||
const char *title = "Select file";
|
||||
const char *init_path = 0;
|
||||
const char *filter = 0;
|
||||
@ -59,6 +63,7 @@ int main (int argc, char *argv[])
|
||||
char path[4096];
|
||||
char **cmd = NULL;
|
||||
int num_cmd = 0;
|
||||
int run = 0;
|
||||
|
||||
PALETTE pal;
|
||||
BITMAP *backbmp;
|
||||
@ -71,7 +76,6 @@ int main (int argc, char *argv[])
|
||||
{"verbose", no_argument, &verbose_flag, 1},
|
||||
{"help", no_argument, &help_flag, 1},
|
||||
{"mouse", no_argument, &mouse_flag, 1},
|
||||
{"run", no_argument, &run_flag, 1},
|
||||
/* These options don't set a flag.
|
||||
We distinguish them by their indices. */
|
||||
{"title", required_argument, 0, 't'},
|
||||
@ -83,7 +87,7 @@ int main (int argc, char *argv[])
|
||||
/* `getopt_long' stores the option index here. */
|
||||
int option_index = 0;
|
||||
|
||||
c = getopt_long (argc, argv, "t:p:f:w:mrh",
|
||||
c = getopt_long (argc, argv, "t:p:f:w:mh",
|
||||
long_options, &option_index);
|
||||
|
||||
/* Detect the end of the options. */
|
||||
@ -98,6 +102,14 @@ int main (int argc, char *argv[])
|
||||
break;
|
||||
break;
|
||||
|
||||
case 'h':
|
||||
help_flag = 1;
|
||||
break;
|
||||
|
||||
case 'm':
|
||||
mouse_flag = 1;
|
||||
break;
|
||||
|
||||
case 't':
|
||||
title = optarg;
|
||||
break;
|
||||
@ -130,11 +142,10 @@ int main (int argc, char *argv[])
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
/* Print any remaining command line arguments (not options). */
|
||||
if (optind < argc)
|
||||
{
|
||||
run_flag = 1;
|
||||
run = 1;
|
||||
cmd = &argv[optind];
|
||||
num_cmd = argc - optind;
|
||||
printf ("non-option ARGV-elements: ");
|
||||
@ -152,6 +163,7 @@ int main (int argc, char *argv[])
|
||||
loadpng_init();
|
||||
jpgalleg_init();
|
||||
|
||||
set_color_depth(32);
|
||||
if (set_gfx_mode(GFX_SAFE, 320, 240, 0, 0) != 0) {
|
||||
set_gfx_mode(GFX_TEXT, 0, 0, 0, 0);
|
||||
allegro_message("Unable to set any graphic mode\n%s\n", allegro_error);
|
||||
@ -189,9 +201,21 @@ int main (int argc, char *argv[])
|
||||
|
||||
set_palette(pal);
|
||||
|
||||
/* fourth parameter is alpha value (0=fully transparent) */
|
||||
gui_fg_color = makecol(230,210,140);
|
||||
gui_bg_color = makecol(30,40,50);
|
||||
gui_mg_color = makecol(140,150,160);
|
||||
gui_bg_color = makecol(30,40,50);
|
||||
|
||||
/* add some translucent border around file selector dialog. We'd like to
|
||||
make the whole dialog translucent by using makeacol() above and
|
||||
set_alpha_blender(), however the dialog can't cope with some of the
|
||||
changes in drawing function semantics that go along with that */
|
||||
drawing_mode(DRAW_MODE_TRANS, 0, 0, 0);
|
||||
set_trans_blender(0,0,0,128);
|
||||
rectfill(screen, hborder-trborder, vborder-trborder,
|
||||
SCREEN_W-hborder+trborder, SCREEN_H-vborder+trborder,
|
||||
gui_bg_color);
|
||||
drawing_mode(DRAW_MODE_SOLID, 0, 0, 0);
|
||||
|
||||
if (!init_path)
|
||||
getcwd(path, sizeof(path));
|
||||
@ -200,8 +224,6 @@ int main (int argc, char *argv[])
|
||||
|
||||
path[sizeof(path)-1] = '\0';
|
||||
|
||||
|
||||
|
||||
int ok = file_select_ex(
|
||||
title, path, filter, sizeof(path), SCREEN_W-2*hborder, SCREEN_H-2*vborder);
|
||||
path[sizeof(path)-1] = '\0';
|
||||
@ -210,7 +232,27 @@ int main (int argc, char *argv[])
|
||||
|
||||
if (ok)
|
||||
{
|
||||
printf ("%s", path);
|
||||
printf ("%s\n", path);
|
||||
|
||||
if (run)
|
||||
{
|
||||
char **argv_exec = malloc(sizeof(char*)*(num_cmd+2));
|
||||
if (!argv_exec)
|
||||
return 2;
|
||||
memcpy (argv_exec, cmd, sizeof(char*)*(num_cmd));
|
||||
argv_exec[num_cmd] = path;
|
||||
argv_exec[num_cmd+1] = 0;
|
||||
|
||||
if (execvp(cmd[0], argv_exec))
|
||||
{
|
||||
perror ("Can't exec");
|
||||
return 3;
|
||||
}
|
||||
|
||||
/* exec shouldn't return! */
|
||||
return 4;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user