1999-09-07 08:03:20 +08:00
|
|
|
/*
|
2007-06-06 16:44:52 +08:00
|
|
|
* This is a plug-in for GIMP.
|
1999-09-07 08:03:20 +08:00
|
|
|
*
|
|
|
|
* Generates clickable image maps.
|
|
|
|
*
|
2005-01-23 04:25:00 +08:00
|
|
|
* Copyright (C) 1998-2005 Maurits Rijk m.rijk@chello.nl
|
1999-09-07 08:03:20 +08:00
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1999-09-07 08:03:20 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1999-09-07 08:03:20 +08:00
|
|
|
* (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
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1999-09-07 08:03:20 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2001-12-29 21:26:29 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
1999-09-07 08:03:20 +08:00
|
|
|
#include "imap_main.h"
|
|
|
|
#include "imap_misc.h"
|
|
|
|
|
|
|
|
#define SASH_SIZE 8
|
|
|
|
|
|
|
|
static gint _sash_size = SASH_SIZE;
|
|
|
|
|
|
|
|
void
|
|
|
|
set_sash_size(gboolean double_size)
|
|
|
|
{
|
|
|
|
_sash_size = (double_size) ? 2 * SASH_SIZE : SASH_SIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-02-21 22:45:26 +08:00
|
|
|
draw_sash(cairo_t *cr, gint x, gint y)
|
1999-09-07 08:03:20 +08:00
|
|
|
{
|
2011-02-21 22:45:26 +08:00
|
|
|
draw_rectangle(cr, TRUE, x - _sash_size / 2, y - _sash_size / 2,
|
2011-02-21 18:51:47 +08:00
|
|
|
_sash_size, _sash_size);
|
1999-09-07 08:03:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
near_sash(gint sash_x, gint sash_y, gint x, gint y)
|
|
|
|
{
|
|
|
|
return x >= sash_x - _sash_size / 2 && x <= sash_x + _sash_size / 2 &&
|
|
|
|
y >= sash_y - _sash_size / 2 && y <= sash_y + _sash_size / 2;
|
|
|
|
}
|