diff options
author | Joakim Verona <joakim@verona.se> | 2012-09-19 01:09:51 +0200 |
---|---|---|
committer | Joakim Verona <joakim@verona.se> | 2012-09-19 01:09:51 +0200 |
commit | 6c86337db3f2b22977d7b94b054458a2d446c504 (patch) | |
tree | 04725c50cbd76c8ffd0faf4cdce895a89a506a58 /src/emacsgtkfixed.c | |
parent | aac9139d11cf7f9ee84d931ada85be8fa0c90f21 (diff) | |
parent | fefa299077c02a931e5e72f7646e3dfa28f5e8ff (diff) | |
download | emacs-6c86337db3f2b22977d7b94b054458a2d446c504.tar.gz emacs-6c86337db3f2b22977d7b94b054458a2d446c504.tar.bz2 emacs-6c86337db3f2b22977d7b94b054458a2d446c504.zip |
not compiling yet
Diffstat (limited to 'src/emacsgtkfixed.c')
-rw-r--r-- | src/emacsgtkfixed.c | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/src/emacsgtkfixed.c b/src/emacsgtkfixed.c index 5f90a5b90aa..d23f3e21f24 100644 --- a/src/emacsgtkfixed.c +++ b/src/emacsgtkfixed.c @@ -22,13 +22,40 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #include "emacsgtkfixed.h" #include <stdio.h> -#include <setjmp.h> + #include "lisp.h" #include "frame.h" #include "xterm.h" #ifdef HAVE_XWIDGETS #include "xwidget.h" #endif +/* Silence a bogus diagnostic; see GNOME bug 683906. */ +#if (__GNUC__ == 4 && 6 <= __GNUC_MINOR__) || 4 < __GNUC__ +# pragma GCC diagnostic push +# pragma GCC diagnostic ignored "-Wunused-local-typedefs" +#endif + +#define EMACS_TYPE_FIXED emacs_fixed_get_type () +#define EMACS_FIXED(obj) \ + G_TYPE_CHECK_INSTANCE_CAST (obj, EMACS_TYPE_FIXED, EmacsFixed) + +typedef struct _EmacsFixed EmacsFixed; +typedef struct _EmacsFixedPrivate EmacsFixedPrivate; +typedef struct _EmacsFixedClass EmacsFixedClass; + +struct _EmacsFixed +{ + GtkFixed container; + + /*< private >*/ + EmacsFixedPrivate *priv; +}; + +struct _EmacsFixedClass +{ + GtkFixedClass parent_class; +}; + struct _EmacsFixedPrivate { struct frame *f; |