nsxiv/app.c

58 lines
1.4 KiB
C
Raw Normal View History

2011-01-17 14:57:59 +01:00
/* sxiv: app.c
* Copyright (c) 2011 Bert Muennich <muennich at informatik.hu-berlin.de>
*
* 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 2 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
2011-01-17 16:40:54 +01:00
#include <X11/Xlib.h>
2011-01-17 14:57:59 +01:00
#include "sxiv.h"
#include "app.h"
#include "events.h"
2011-01-17 14:57:59 +01:00
2011-01-17 16:40:54 +01:00
void app_init(app_t *app) {
2011-01-17 20:14:15 +01:00
if (!app)
2011-01-17 16:40:54 +01:00
return;
app->fileidx = 0;
2011-01-18 20:11:28 +01:00
app->img.zoom = 1.0;
2011-01-18 15:37:44 +01:00
app->img.scalemode = SCALE_MODE;
2011-01-17 16:40:54 +01:00
app->win.w = WIN_WIDTH;
app->win.h = WIN_HEIGHT;
win_open(&app->win);
2011-01-18 16:40:37 +01:00
imlib_init(&app->win);
2011-01-17 16:40:54 +01:00
}
void app_run(app_t *app) {
2011-01-18 17:20:41 +01:00
app_load_image(app);
2011-01-17 18:32:28 +01:00
event_loop(app);
2011-01-17 16:40:54 +01:00
}
void app_quit(app_t *app) {
}
2011-01-18 17:20:41 +01:00
void app_load_image(app_t *app) {
if (!app || app->fileidx >= app->filecnt || !app->filenames)
return;
img_load(&app->img, app->filenames[app->fileidx]);
2011-01-18 20:11:28 +01:00
img_render(&app->img, &app->win);
2011-01-18 17:20:41 +01:00
}