Newer
Older
/* menu.c
Copyright (C) 1999-2003 Tom Gilbert.
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 of the Software and its documentation and acknowledgment shall be
given in the documentation and software packages that this Software was
used.
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 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.
*/
#include "feh.h"
#include "thumbnail.h"
#include "winwidget.h"
#include "filelist.h"
#include "options.h"
Window menu_cover = 0;
feh_menu *menu_root = NULL;
feh_menu *menu_main = NULL;
feh_menu *menu_single_win = NULL;
feh_menu *menu_thumbnail_viewer = NULL;
feh_menu *menu_thumbnail_win = NULL;
feh_menu *menu_bg = NULL;
static feh_menu_list *menus = NULL;
static int common_menus = 0;
Birte Kristina Friesel
committed
static feh_menu *feh_menu_func_gen_info(feh_menu * m);
static void feh_menu_func_free_info(feh_menu * m);
static void feh_menu_func_free_options(feh_menu * m);
static feh_menu *feh_menu_func_gen_options(feh_menu * m);
Birte Kristina Friesel
committed
void feh_menu_cb(feh_menu * m, feh_menu_item * i, int action, unsigned short data);
Birte Kristina Friesel
committed
void feh_menu_cb_opt_fullscreen(feh_menu * m, feh_menu_item * i);
enum {
CB_CLOSE = 1, CB_EXIT, CB_RELOAD, CB_REMOVE, CB_DELETE, CB_RESET,
Birte Kristina Friesel
committed
CB_REMOVE_THUMB, CB_DELETE_THUMB, CB_BG_TILED, CB_BG_SCALED,
CB_BG_CENTERED, CB_BG_FILLED, CB_BG_TILED_NOFILE,
Birte Kristina Friesel
committed
CB_BG_SCALED_NOFILE, CB_BG_CENTERED_NOFILE, CB_BG_FILLED_NOFILE,
CB_SORT_FILENAME, CB_SORT_IMAGENAME, CB_SORT_FILESIZE, CB_SORT_RANDOMIZE,
CB_SAVE_IMAGE, CB_SAVE_FILELIST, CB_FIT, CB_OPT_DRAW_FILENAME,
CB_OPT_DRAW_ACTIONS, CB_OPT_KEEP_HTTP, CB_OPT_FREEZE_WINDOW,
CB_OPT_FULLSCREEN, CB_EDIT_ROTATE, CB_OPT_AUTO_ZOOM, CB_OPT_KEEP_ZOOM_VP
Birte Kristina Friesel
committed
};
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
feh_menu *feh_menu_new(void)
{
feh_menu *m;
XSetWindowAttributes attr;
feh_menu_list *l;
static Imlib_Image bg = NULL;
static Imlib_Border border;
m = (feh_menu *) emalloc(sizeof(feh_menu));
attr.backing_store = NotUseful;
attr.override_redirect = True;
attr.colormap = cm;
attr.border_pixel = 0;
attr.background_pixmap = None;
attr.save_under = False;
attr.do_not_propagate_mask = True;
m->win = XCreateWindow(
disp, root, 1, 1, 1, 1, 0, depth, InputOutput, vis,
CWOverrideRedirect | CWSaveUnder | CWBackingStore
| CWColormap | CWBackPixmap | CWBorderPixel | CWDontPropagate, &attr);
XSelectInput(disp, m->win,
ButtonPressMask | ButtonReleaseMask | EnterWindowMask
| LeaveWindowMask | PointerMotionMask | ButtonMotionMask);
m->name = NULL;
m->fehwin = NULL;
m->pmap = 0;
m->x = 0;
m->y = 0;
m->w = 0;
m->h = 0;
m->visible = 0;
m->items = NULL;
m->next = NULL;
m->prev = NULL;
m->updates = NULL;
m->needs_redraw = 1;
m->func_free = NULL;
Birte Kristina Friesel
committed
m->data = 0;
m->calc = 0;
m->bg = NULL;
l = emalloc(sizeof(feh_menu_list));
l->menu = m;
l->next = menus;
menus = l;
if (!bg) {
feh_load_image_char(&bg, opt.menu_bg);
if (bg) {
border.left = border.right = border.top = border.bottom
= 4;
imlib_context_set_image(bg);
imlib_image_set_border(&border);
}
}
if (bg)
m->bg = gib_imlib_clone_image(bg);
Birte Kristina Friesel
committed
return(m);
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
}
void feh_menu_free(feh_menu * m)
{
feh_menu_item *i;
feh_menu_list *l, *pl = NULL;
if (m->name)
free(m->name);
XDestroyWindow(disp, m->win);
if (m->pmap)
XFreePixmap(disp, m->pmap);
if (m->updates)
imlib_updates_free(m->updates);
for (i = m->items; i;) {
feh_menu_item *ii;
ii = i;
i = i->next;
if (ii->text)
free(ii->text);
if (ii->submenu)
free(ii->submenu);
free(ii);
}
for (l = menus; l; l = l->next) {
if (l->menu == m) {
if (pl)
pl->next = l->next;
else
menus = l->next;
free(l);
break;
}
pl = l;
}
if (m->bg)
gib_imlib_free_image_and_decache(m->bg);
free(m);
Birte Kristina Friesel
committed
return;
}
feh_menu_item *feh_menu_find_selected(feh_menu * m)
{
feh_menu_item *i;
for (i = m->items; i; i = i->next) {
if (MENU_ITEM_IS_SELECTED(i))
Birte Kristina Friesel
committed
return(i);
Birte Kristina Friesel
committed
return(NULL);
}
feh_menu_item *feh_menu_find_selected_r(feh_menu * m, feh_menu ** parent)
{
feh_menu_item *i, *ii;
feh_menu *mm;
for (i = m->items; i; i = i->next) {
if (MENU_ITEM_IS_SELECTED(i)) {
if (parent)
*parent = m;
Birte Kristina Friesel
committed
return(i);
} else if (i->submenu) {
mm = feh_menu_find(i->submenu);
if (mm) {
ii = feh_menu_find_selected_r(mm, parent);
if (ii)
Loading
Loading full blame...