|
| 1 | +#ifndef __GTK__ |
| 2 | +#define __GTK__ |
| 3 | + |
| 4 | +// We override parts of glib (like signals), so make sure that glib is *always* included first. |
| 5 | +#ifndef g_signal_connect |
| 6 | + #warning "You must include glib.h before gtk.h. I'm doing it for you for now." |
| 7 | + #pragma message("You must include glib.h before gtk.h. I'm doing it for you for now.") |
| 8 | + #include <glib.h> |
| 9 | +#endif |
| 10 | + |
| 11 | +#include <QApplication> |
| 12 | +#include <QWidget> |
| 13 | +#include <QLabel> |
| 14 | +#include <QPushButton> |
| 15 | +#include <QHBoxLayout> |
| 16 | +#include <QVBoxLayout> |
| 17 | +#include <QGridLayout> |
| 18 | +#include <QLineEdit> |
| 19 | +#include <QComboBox> |
| 20 | +#include <QCheckBox> |
| 21 | +#include <QTextEdit> |
| 22 | +#include <QMap> |
| 23 | +#include <QMenuBar> |
| 24 | +#include <QGroupBox> |
| 25 | +#include <QAction> |
| 26 | +#include <QActionGroup> |
| 27 | + |
| 28 | +//#include <glib/glib.h> |
| 29 | + |
| 30 | +typedef QWidget GtkWidget; |
| 31 | +typedef QWidget GtkWindow; |
| 32 | + |
| 33 | +typedef QWidget GtkBox; /* ugh */ |
| 34 | +typedef QWidget GtkContainer; /* ugh */ |
| 35 | +typedef QHBoxLayout GtkHBox; |
| 36 | +typedef QVBoxLayout GtkVBox; |
| 37 | +typedef QWidget GtkTable; |
| 38 | + |
| 39 | +typedef QTextEdit GtkTextView; |
| 40 | + typedef QTextEdit GtkTextBuffer; |
| 41 | +typedef QMenuBar GtkMenuBar; |
| 42 | +typedef QMenu GtkMenuShell; |
| 43 | +typedef QMenu GtkMenuItem; |
| 44 | + |
| 45 | +typedef QLabel GtkLabel; |
| 46 | + |
| 47 | +// XXX: will need porting for win32 (and non-gcc compilers..) |
| 48 | +#define MARK_DEPRECATED __attribute((deprecated)) |
| 49 | + |
| 50 | + |
| 51 | +// Stupid GTK typecasting crap. |
| 52 | +#define GTK_BOX(x) x |
| 53 | +#define GTK_CONTAINER(x) x |
| 54 | +#define GTK_TABLE(x) x |
| 55 | +#define GTK_WINDOW(x) x |
| 56 | +#define GTK_TEXT_VIEW(x) dynamic_cast<QTextEdit *>(x) |
| 57 | +#define GTK_OBJECT(x) (void *)x /* obsolete */ |
| 58 | +#define G_OBJECT(x) (void *)x |
| 59 | +#define GTK_MENU_BAR(x) dynamic_cast<QMenuBar *>(x) |
| 60 | +#define GTK_MENU_ITEM(x) dynamic_cast<QMenu *>(x) |
| 61 | +#define GTK_MENU(x) dynamic_cast<QMenu *>(x) |
| 62 | +#define GTK_LABEL(x) dynamic_cast<QLabel *>(x) |
| 63 | +#define GTK_ABOUT_DIALOG(x) dynamic_cast<GQTAboutDialog *>(x) |
| 64 | + |
| 65 | +// Stock stuff |
| 66 | +#define GTK_STOCK_QUIT "gtk-quit" |
| 67 | +#define GTK_STOCK_ABOUT "gtk-about" |
| 68 | + |
| 69 | +enum GtkAttachOptions |
| 70 | +{ |
| 71 | + GTK_EXPAND, |
| 72 | + GTK_SHRINK, |
| 73 | + GTK_FILL |
| 74 | +}; |
| 75 | + |
| 76 | +// Now, override the parts of glib that we need to. |
| 77 | +#include <gtk/glib_signals.h> |
| 78 | + |
| 79 | + |
| 80 | +#include <gtk/gqt_dialog.h> |
| 81 | +#include <gtk/gtk_box.h> |
| 82 | +#include <gtk/gtk_main.h> |
| 83 | +#include <gtk/gtk_button.h> |
| 84 | +#include <gtk/gtk_window.h> |
| 85 | +#include <gtk/gtk_hbox.h> |
| 86 | +#include <gtk/gtk_vbox.h> |
| 87 | +#include <gtk/gtk_container.h> |
| 88 | +#include <gtk/gtk_label.h> |
| 89 | +#include <gtk/gtk_entry.h> |
| 90 | +#include <gtk/gtk_table.h> |
| 91 | +#include <gtk/gtk_combo.h> |
| 92 | +#include <gtk/gtk_check_button.h> |
| 93 | +#include <gtk/gtk_text_view.h> |
| 94 | +#include <gtk/gtk_menu.h> |
| 95 | +#include <gtk/gtk_about_dialog.h> |
| 96 | +#include <gtk/gtk_widget.h> |
| 97 | +#include <gtk/gtk_frame.h> |
| 98 | +#include <gtk/gtk_action_group.h> |
| 99 | +#include <gtk/gtk_ui_manager.h> |
| 100 | + |
| 101 | + |
| 102 | +#endif |
0 commit comments