summaryrefslogtreecommitdiffstats
path: root/qt/QZBar.cpp
blob: 14bdc56c40af0d4f482b5945bbc8b91857b89b2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
//------------------------------------------------------------------------
//  Copyright 2008-2009 (c) Jeff Brown <spadix@users.sourceforge.net>
//
//  This file is part of the ZBar Bar Code Reader.
//
//  The ZBar Bar Code Reader is free software; you can redistribute it
//  and/or modify it under the terms of the GNU Lesser Public License as
//  published by the Free Software Foundation; either version 2.1 of
//  the License, or (at your option) any later version.
//
//  The ZBar Bar Code Reader 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 Public License for more details.
//
//  You should have received a copy of the GNU Lesser Public License
//  along with the ZBar Bar Code Reader; if not, write to the Free
//  Software Foundation, Inc., 51 Franklin St, Fifth Floor,
//  Boston, MA  02110-1301  USA
//
//  http://sourceforge.net/projects/zbar
//------------------------------------------------------------------------

#include <QX11Info>
#include <qevent.h>
#include <qurl.h>
#include <zbar/QZBar.h>
#include "QZBarThread.h"

using namespace zbar;

QZBar::QZBar(QWidget *parent, int verbosity)
    : QWidget(parent), thread(NULL), _videoDevice(), _videoEnabled(false),
      _attached(false)
{
    setAttribute(Qt::WA_OpaquePaintEvent);
    setAttribute(Qt::WA_PaintOnScreen);
#if QT_VERSION >= 0x040400
    setAttribute(Qt::WA_NativeWindow);
    setAttribute(Qt::WA_DontCreateNativeAncestors);
#endif

    QSizePolicy sizing(QSizePolicy::Preferred, QSizePolicy::Preferred);
    sizing.setHeightForWidth(true);
    setSizePolicy(sizing);

    thread = new QZBarThread(verbosity);
    if (testAttribute(Qt::WA_WState_Created)) {
#if QT_VERSION >= 0x050000
	thread->window.attach(QX11Info::display(), winId());
#else
	thread->window.attach(x11Info().display(), winId());
#endif
	_attached = 1;
    }
    connect(thread, SIGNAL(videoOpened(bool)), this, SIGNAL(videoOpened(bool)));
    connect(this, SIGNAL(videoOpened(bool)), this, SLOT(sizeChange()));
    connect(thread, SIGNAL(update()), this, SLOT(update()));
    connect(thread, SIGNAL(decoded(int, const QString &)), this,
	    SIGNAL(decoded(int, const QString &)));
    connect(thread, SIGNAL(decodedText(const QString &)), this,
	    SIGNAL(decodedText(const QString &)));
    thread->start();
}

QZBar::~QZBar()
{
    if (thread) {
	thread->pushEvent(new QEvent((QEvent::Type)QZBarThread::Exit));
	thread->wait();
	delete thread;
	thread = NULL;
    }
}

QPaintEngine *QZBar::paintEngine() const
{
    return (NULL);
}

QString QZBar::videoDevice() const
{
    return (_videoDevice);
}

void QZBar::setVideoDevice(const QString &videoDevice)
{
    if (!thread)
	return;
    if (_videoDevice != videoDevice) {
	_videoDevice  = videoDevice;
	_videoEnabled = _attached && !videoDevice.isEmpty();
	if (_attached)
	    thread->pushEvent(new QZBarThread::VideoDeviceEvent(videoDevice));
    }
}

int QZBar::get_controls(int index, char **name, char **group,
			enum ControlType *type, int *min, int *max, int *def,
			int *step)
{
    if (!thread)
	return 0;

    return thread->get_controls(index, name, group, type, min, max, def, step);
}

void QZBar::request_size(unsigned width, unsigned height, bool trigger)
{
    if (!thread)
	return;

    thread->request_size(width, height);
    if (trigger)
	thread->pushEvent(new QEvent((QEvent::Type)QZBarThread::ReOpen));
}

int QZBar::get_resolution(int index, unsigned &width, unsigned &height,
			  float &max_fps)
{
    if (!thread)
	return 0;

    return thread->get_resolution(index, width, height, max_fps);
}

unsigned QZBar::videoWidth()
{
    if (!thread)
	return 0;

    return thread->reqWidth;
}

unsigned QZBar::videoHeight()
{
    if (!thread)
	return 0;

    return thread->reqHeight;
}

QVector<QPair<int, QString> > QZBar::get_menu(int index)
{
    if (!thread) {
	QVector<QPair<int, QString> > empty;
	return empty;
    }

    return thread->get_menu(index);
}

int QZBar::set_control(char *name, bool value)
{
    if (!thread)
	return 0;

    return thread->set_control(name, value);
}

int QZBar::set_control(char *name, int value)
{
    if (!thread)
	return 0;

    return thread->set_control(name, value);
}

int QZBar::get_control(char *name, bool *value)
{
    if (!thread)
	return 0;

    return thread->get_control(name, value);
}

int QZBar::get_control(char *name, int *value)
{
    if (!thread)
	return 0;

    return thread->get_control(name, value);
}

int QZBar::set_config(std::string cfgstr)
{
    if (!thread)
	return 0;

    return thread->set_config(cfgstr);
}

int QZBar::set_config(zbar_symbol_type_t symbology, zbar_config_t config,
		      int value)
{
    if (!thread)
	return 0;

    return thread->set_config(symbology, config, value);
}

int QZBar::get_config(zbar_symbol_type_t symbology, zbar_config_t config,
		      int &value)
{
    if (!thread)
	return 0;

    return thread->get_config(symbology, config, value);
}

int QZBar::request_dbus(bool enabled)
{
    if (!thread)
	return 0;

    return thread->request_dbus(enabled);
}

bool QZBar::isVideoEnabled() const
{
    return (_videoEnabled);
}

void QZBar::setVideoEnabled(bool videoEnabled)
{
    if (!thread)
	return;
    if (_videoEnabled != videoEnabled) {
	_videoEnabled = videoEnabled;
	thread->pushEvent(new QZBarThread::VideoEnabledEvent(videoEnabled));
    }
}

bool QZBar::isVideoOpened() const
{
    if (!thread)
	return (false);
    QMutexLocker locker(&thread->mutex);
    return (thread->_videoOpened);
}

void QZBar::scanImage(const QImage &image)
{
    if (!thread)
	return;
    thread->pushEvent(new QZBarThread::ScanImageEvent(image));
}

void QZBar::dragEnterEvent(QDragEnterEvent *event)
{
    if (event->mimeData()->hasImage() || event->mimeData()->hasUrls())
	event->acceptProposedAction();
}

void QZBar::dropEvent(QDropEvent *event)
{
    if (event->mimeData()->hasImage()) {
	QImage image = qvariant_cast<QImage>(event->mimeData()->imageData());
	scanImage(image);
	event->setDropAction(Qt::CopyAction);
	event->accept();
    } else {
	// FIXME TBD load URIs and queue for processing
#if 0
        std::cerr << "drop: "
                  << event->mimeData()->formats().join(", ").toStdString()
                  << std::endl;
        QList<QUrl> urls = event->mimeData()->urls();
        for(int i = 0; i < urls.size(); ++i)
            std::cerr << "[" << i << "] "
                      << urls.at(i).toString().toStdString()
                      << std::endl;
#endif
    }
}

QSize QZBar::sizeHint() const
{
    if (!thread)
	return (QSize(640, 480));
    QMutexLocker locker(&thread->mutex);
    return (QSize(thread->reqWidth, thread->reqHeight));
}

int QZBar::heightForWidth(int width) const
{
    if (thread) {
	QMutexLocker locker(&thread->mutex);
	int base_width	= thread->reqWidth;
	int base_height = thread->reqHeight;
	if (base_width > 0 && base_height > 0)
	    return (base_height * width / base_width);
    }
    return (width * 3 / 4);
}

void QZBar::paintEvent(QPaintEvent *event)
{
    try {
	if (thread)
	    thread->window.redraw();
    } catch (Exception &) {
	// sometimes Qt attempts to paint the widget before it's parented(?)
	// just ignore this (can't throw from event anyway)
    }
}

void QZBar::resizeEvent(QResizeEvent *event)
{
    QSize size = event->size();
    try {
	if (thread)
	    thread->window.resize(size.rwidth(), size.rheight());
    } catch (Exception &) { /* ignore */
    }
}

void QZBar::changeEvent(QEvent *event)
{
    try {
	QMutexLocker locker(&thread->mutex);
	if (event->type() == QEvent::ParentChange)
#if QT_VERSION >= 0x050000
	    thread->window.attach(QX11Info::display(), winId());
#else
	    thread->window.attach(x11Info().display(), winId());
#endif

    } catch (Exception &) { /* ignore (FIXME do something w/error) */
    }
}

void QZBar::attach()
{
    if (_attached)
	return;

    try {
#if QT_VERSION >= 0x050000
	thread->window.attach(QX11Info::display(), winId());
#else
	thread->window.attach(x11Info().display(), winId());
#endif
	thread->window.resize(width(), height());
	_attached = 1;

	_videoEnabled = !_videoDevice.isEmpty();
	if (_videoEnabled)
	    thread->pushEvent(new QZBarThread::VideoDeviceEvent(_videoDevice));
    } catch (Exception &) { /* ignore (FIXME do something w/error) */
    }
}

void QZBar::showEvent(QShowEvent *event)
{
    if (thread && !_attached)
	attach();
}

void QZBar::sizeChange()
{
    update();
    updateGeometry();
}