Skip to content

Commit 9cc9a8b

Browse files
committed
further removal of gqt redundancy, gtk-made-qt tests build
1 parent b30ae20 commit 9cc9a8b

14 files changed

+49
-36
lines changed

bgqt.sh

+25-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,33 @@
11
#!/bin/sh
22
if [ ! -n "$1" ]
33
then
4-
test="test"
4+
_test="test"
55
echo "no test specified, running test"
66
else
77
echo "running $1"
8-
test=$1
8+
_test=$1
99
fi
1010

11-
# run MOC first
12-
~/qt4-bin/bin/moc -i gtk/gtk_button.h -o gtk/moc_gtk_button.h
13-
~/qt4-bin/bin/moc -i gtk/gtk_entry.h -o gtk/moc_gtk_entry.h
14-
~/qt4-bin/bin/moc -i gtk/gtk_combo.h -o gtk/moc_gtk_combo.h
15-
g++ "examples/$test.c" -o test -ggdb3 -I/home/w00t/gqt -I/home/w00t/qt4-bin/include -I/home/w00t/qt4-bin/include/QtGui -I/home/w00t/qt4-bin/include/QtUiTools -I/home/w00t/qt4-bin/include/QtCore -L/home/w00t/qt4-bin/lib -lQtCore -lQtGui -l QtUiTools -Wl,--rpath -Wl,/home/w00t/qt4-bin/lib `pkg-config --cflags --libs glib-2.0`
16-
rm gtk/moc_gtk_button.h
17-
rm gtk/moc_gtk_entry.h
18-
rm gtk/moc_gtk_combo.h
19-
./test -widgetcount
11+
#various directories. Change if you use another path
12+
_Here=$(pwd)
13+
_QtInclude=/usr/include/qt
14+
_QtLib=/usr/lib
15+
_QtBin=/usr/lib/qt/bin
16+
17+
#prepare moc headers
18+
"${_QtBin}"/moc -i include/gtk/gtk_button.h -o include/gtk/moc_gtk_button.h
19+
"${_QtBin}"/moc -i include/gtk/gtk_entry.h -o include/gtk/moc_gtk_entry.h
20+
"${_QtBin}"/moc -i include/gtk/gtk_combo.h -o include/gtk/moc_gtk_combo.h
21+
22+
# build library
23+
qmake-qt5 gtk-made-qt.pro
24+
make
25+
26+
# compile
27+
g++ -fPIC "examples/${_test}.c" -o ${_test} -ggdb3 -I"${_Here}"/include -I"${_QtInclude}" -I"${_QtInclude}"/QtGui -I"${_QtInclude}"/QtWidgets -I"${_QtInclude}"/QtUiTools -I"${_QtInclude}"/QtCore -L"${_QtLib}" -L"${_Here}"/lib -lgt -lQt5Core -lQt5Gui -lQt5Widgets -Wl,--rpath -Wl,"${_Here}"/lib
28+
29+
30+
./"${_test}" -widgetcount
31+
32+
33+

bgtk.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/sh
22
if [ ! -n "$1" ]
33
then
4-
test="test"
4+
_test="test"
55
echo "no test specified, running test"
66
else
77
echo "running $1"
8-
test=$1
8+
_test=$1
99
fi
1010

1111
# we use g++ (not gcc) because to work with both gqt and gtk, some applications have to use c++ casts..
12-
g++ -ggdb3 "examples/$test.c" -o test `pkg-config --cflags --libs gtk+-2.0`
13-
./test
12+
g++ -ggdb3 "examples/${_test}.c" -o ${_test} `pkg-config --cflags --libs gtk+-2.0`
13+
./${_test}

include/glib.h

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
3+
#include "gtk-made-qt.h"
4+
5+
6+

include/gtk-made-qt.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ char *g_strdup(const char *s)
5858
}
5959

6060
#include "glibtypes.h"
61-
/* #include "qgtkcallbackbridge.h"
62-
#include "qgtkeventfilter.h" */ /* missing? */
61+
#include "qgtkcallbackbridge.h"
62+
#include "qgtkeventfilter.h"
6363

6464
#define G_CALLBACK(func) ((void*)(func))
6565

@@ -176,7 +176,7 @@ void gtk_widget_set_size_request(QObject *o_w, int width, int height)
176176

177177
// Window modification functions and defines
178178

179-
#define GTK_WINDOW_TOPLEVEL (0)
179+
#define GTK_WINDOW_TOPLEVEL (0)
180180
QWidget *gtk_window_new(int)
181181
{
182182
// Seems like all windows can act as a container, see example tablepacking, pick HBoxLayout as std

include/gtk/gtk.h

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
#ifndef __GTK__
22
#define __GTK__
33

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 "../gtk-made-qt.h"
4+
#include "../gtk-made-qt.h" /*replaces glib */
125

136
#include <QLabel>
147
#include <QHBoxLayout>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/qgtkcallbackbridge.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1818
*/
1919

20-
#include "qgtkcallbackbridge.h"
20+
#include <qgtkcallbackbridge.h>
2121

2222
QGtkCallbackBridge::QGtkCallbackBridge(QObject *src, callbackFuncPtr f, void *data, bool swapped) :
2323
QObject(0), m_f(f), m_data(data), m_swapped(swapped)

src/qgtkdeleteeventfilter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1818
*/
1919

20-
#include "qgtkdeleteeventfilter.h"
20+
#include <qgtkdeleteeventfilter.h>
2121

2222
#include <QEvent>
2323

src/qgtkeventfilter.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1818
*/
1919

20-
#include "qgtkeventfilter.h"
20+
#include <qgtkeventfilter.h>
2121

22-
#include "qgtkdeleteeventfilter.h"
23-
#include "qgtkgeneraleventfilter.h"
22+
#include <qgtkdeleteeventfilter.h>
23+
#include <qgtkgeneraleventfilter.h>
2424

2525
QGtkEventFilter::QGtkEventFilter(eventFuncPtr f, void *data) :
2626
QObject(0), m_f(f), m_data(data)

src/qgtkgeneraleventfilter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
1818
*/
1919

20-
#include "qgtkgeneraleventfilter.h"
20+
#include <qgtkgeneraleventfilter.h>
2121

2222
#include <QEvent>
2323

src/src.pro

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ SOURCES += \
1616
qgtkgeneraleventfilter.cpp
1717

1818
HEADERS += \
19-
qgtkcallbackbridge.h \
20-
qgtkeventfilter.h \
21-
qgtkdeleteeventfilter.h \
22-
qgtkgeneraleventfilter.h
19+
../include/qgtkcallbackbridge.h \
20+
../include/qgtkeventfilter.h \
21+
../include/qgtkdeleteeventfilter.h \
22+
../include/qgtkgeneraleventfilter.h
2323

2424
HEADERS += \
2525
../include/gtk-made-qt.h \

0 commit comments

Comments
 (0)