summaryrefslogtreecommitdiffstats
path: root/kbarcode/tec.h
blob: 34e82e9f4350304e730d1add4d03e40753083d58 (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
//
// C++ Interface: tec
//
// Description: 
//
//
// Author: Dominik Seichter <domseichter@web.de>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef TEC_H
#define TEC_H
#include "dsmainwindow.h"
#include "labelutils.h"
#include "xmlutils.h"
#include "definition.h"
#include "batchiface.h"

// Other includes
#include <stdlib.h>
#include <stdio.h>

// QT includes
#include <tqclipboard.h>
#include <tqcursor.h>
#include <tqgroupbox.h>
#include <tqhbox.h>
#include <tqlayout.h>
#include <tqpainter.h>
#include <tqpaintdevicemetrics.h>
#include <tqprogressdialog.h>
#include <tqsqlcursor.h>
#include <tqvalidator.h>

// KDE includes
#include <tdeapplication.h>
#include <kcombobox.h>
#include <tdefiledialog.h>
#include <kiconloader.h>
#include <tdelistview.h>
#include <klineedit.h>
#include <klineeditdlg.h>
#include <tdelocale.h>
#include <tdemenubar.h>
#include <tdemessagebox.h>
#include <tdepopupmenu.h>
#include <knuminput.h>
#include <kprinter.h>
#include <kurlrequester.h>

TQString tec452(const TQString &file, int count, const TQString &art, const TQString &group, const TQString &id);
TQString convZeros( int count, int zeros );
TQString posConv( TQString str, int zeros );
int rotation (int valor);
TQString code39 (const TQDomElement &e, int countBar);
TQString code128 (const TQDomElement &e, int countBar);
TQString barcodeType(const TQString &type);
TQString withChecksum(const TQDomElement &e);
TQString sequence(const TQDomElement &e);
TQString serialWatch();
TQString pdf417 (const TQDomElement &e, int countBar);
TQString getData(const TQString &etext, const TQString &art, const TQString &group, const TQString &id);
TQString lineWidth(const TQDomElement &e);
TQString image (const TQString &file);
TQString getImage(const TQString &id);


#endif