2007-05-22 18:53:17 +04:00
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
2013-05-30 17:07:49 +04:00
|
|
|
* Copyright (C) 2006-2013 Sanel Zukan
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2007-05-22 18:53:17 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTILS_H__
|
|
|
|
#define __UTILS_H__
|
|
|
|
|
2008-09-15 15:00:23 +04:00
|
|
|
#include <FL/Fl_Image.H>
|
2013-05-30 17:07:49 +04:00
|
|
|
#include <Fl/x.h>
|
2007-06-18 18:18:35 +04:00
|
|
|
|
2007-05-22 20:27:33 +04:00
|
|
|
void draw_xoverlay(int x, int y, int w, int h);
|
|
|
|
void clear_xoverlay(void);
|
2007-06-18 18:18:35 +04:00
|
|
|
|
2007-06-20 14:58:07 +04:00
|
|
|
Pixmap create_mask(Fl_Image* img);
|
2007-06-18 18:18:35 +04:00
|
|
|
|
|
|
|
char* get_basename(const char* path);
|
2008-10-02 16:16:04 +04:00
|
|
|
bool is_temp_filename(const char* path);
|
2007-05-22 20:27:33 +04:00
|
|
|
|
2007-05-22 18:53:17 +04:00
|
|
|
#endif
|