2010-10-19 00:01:31 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Javier Jardón
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GTK_BUTTON_PRIVATE_H__
|
|
|
|
#define __GTK_BUTTON_PRIVATE_H__
|
|
|
|
|
2018-02-08 23:42:38 +00:00
|
|
|
#include "gtkbutton.h"
|
|
|
|
|
2018-02-25 10:29:33 +00:00
|
|
|
#include "gtkgesture.h"
|
2010-10-19 00:01:31 +00:00
|
|
|
|
2017-12-13 03:18:19 +00:00
|
|
|
GtkGesture * gtk_button_get_gesture (GtkButton *button);
|
2011-06-05 23:17:30 +00:00
|
|
|
|
2010-10-19 00:01:31 +00:00
|
|
|
#endif /* __GTK_BUTTON_PRIVATE_H__ */
|