2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
gb.gtk.h
|
|
|
|
|
|
|
|
(c) 2004-2006 - Daniel Campos Fernández <dcamposf@gmail.com>
|
2009-08-17 12:41:51 +02:00
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
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
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
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
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef GB_GTK_H
|
|
|
|
#define GB_GTK_H
|
|
|
|
|
|
|
|
#include "gambas.h"
|
2020-09-29 00:36:23 +02:00
|
|
|
#include <cairo.h>
|
2007-12-30 17:41:49 +01:00
|
|
|
#include <gdk/gdk.h>
|
2012-05-06 03:14:57 +02:00
|
|
|
#include <gtk/gtk.h>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2010-12-13 06:38:11 +01:00
|
|
|
#ifndef GDK_WINDOWING_X11
|
|
|
|
#define NO_X_WINDOW 1
|
|
|
|
#endif
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
#define GTK_INTERFACE_VERSION 1
|
|
|
|
|
[INTERPRETER]
* NEW: Add a new GB.Component.Declare() API, that allows a component to
dynamically register a class description.
[INFORMER]
* NEW: A component now can declare classes through a GB_OPTIONAL_CLASSES
public symbol. Theses classes are included into the information file,
but are not automatically loaded as the ones defined through the
GB_CLASSES symbol.
[GB.FORM.STATUSICON]
* NEW: This component has been removed and replaced by gb.dbus.trayicon.
* NEW: This component now provide TrayIcon and TrayIcons classes that have
exactly the same interface as the old ones.
[GB.DBUS]
* NEW: Remove the now useless DBusConnection.Raise(). The DBusConnection
Register() and Unregister() are kept for backward-compatibility reason.
* NEW: Add DBus.Raise() and DBus[].Raise() to raise signals. At the moment,
there is no difference between the two methods, as there no mean to
indicate the sender raising a signal. I don't know yet how DBus decides
which service sends a signal!
[GB.DBUS.TRAYICON]
* NEW: This component implements the tray icon DBus protocol. It is
automatically loaded by the GUI components.
[GB.GTK]
* NEW: Load the 'gb.dbus' and 'gb.dbus.trayicon' components if the current
desktop is KDE >= 4. Otherwise, use the old TrayIcon implementation.
* BUG: Fix the old TrayIcon implementation, so that it matches the QT one.
[GB.GTK3]
* NEW: Load the 'gb.dbus' and 'gb.dbus.trayicon' components if the current
desktop is KDE >= 4. Otherwise, use the old TrayIcon implementation.
* BUG: Fix the component name in deprecation warning messages.
* BUG: Fix the old TrayIcon implementation, so that it matches the QT one.
[GB.QT4]
* NEW: Load the 'gb.dbus' and 'gb.dbus.trayicon' components if the current
desktop is KDE >= 4. Otherwise, use the old TrayIcon implementation.
[GB.QT5]
* NEW: Load the 'gb.dbus' and 'gb.dbus.trayicon' components if the current
desktop is KDE >= 4. Otherwise, use the old TrayIcon implementation.
git-svn-id: svn://localhost/gambas/trunk@7154 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2015-06-29 03:46:51 +02:00
|
|
|
#ifdef GTK3
|
|
|
|
#define GTK_NAME "gb.gtk3"
|
|
|
|
#else
|
|
|
|
#define GTK_NAME "gb.gtk"
|
|
|
|
#endif
|
|
|
|
|
2020-09-29 00:36:23 +02:00
|
|
|
typedef
|
|
|
|
void *GTK_PICTURE;
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
typedef
|
|
|
|
struct
|
|
|
|
{
|
2008-01-17 22:39:26 +01:00
|
|
|
intptr_t version;
|
2020-09-21 01:09:47 +02:00
|
|
|
void (*CreateControl)(void *control, void *parent, GtkWidget *widget);
|
2012-05-06 03:14:57 +02:00
|
|
|
GtkWidget *(*CreateGLArea)(void *control, void *parent, void (*init)(GtkWidget *));
|
2020-09-29 00:36:23 +02:00
|
|
|
GTK_PICTURE *(*CreatePicture)(cairo_surface_t *surf, int w, int h);
|
|
|
|
int (*GetDesktopScale)(void);
|
2007-12-30 17:41:49 +01:00
|
|
|
void *_null;
|
|
|
|
}
|
|
|
|
GTK_INTERFACE;
|
|
|
|
|
2012-05-06 03:14:57 +02:00
|
|
|
typedef
|
2008-07-10 10:00:19 +02:00
|
|
|
struct {
|
2012-05-06 03:14:57 +02:00
|
|
|
GB_BASE ob;
|
|
|
|
void *widget;
|
2008-07-10 10:00:19 +02:00
|
|
|
GB_VARIANT_VALUE tag;
|
|
|
|
void *font;
|
2012-05-06 03:14:57 +02:00
|
|
|
void *cursor;
|
2010-08-02 21:36:37 +02:00
|
|
|
char *popup;
|
2012-05-06 03:14:57 +02:00
|
|
|
char *action;
|
|
|
|
}
|
2008-07-10 10:00:19 +02:00
|
|
|
GTK_CONTROL;
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
#endif
|