You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.7 KiB
C++
78 lines
2.7 KiB
C++
/***************************************************************************
|
|
label.h - description
|
|
-------------------
|
|
begin : Mon Apr 29 2002
|
|
copyright : (C) 2002 by Dominik Seichter
|
|
email : domseichter@web.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifndef LABEL_H
|
|
#define LABEL_H
|
|
|
|
#include <tqfont.h>
|
|
#include <tqpicture.h>
|
|
#include "labelutils.h"
|
|
#include "xmlutils.h"
|
|
#include "definition.h"
|
|
#include "tokenprovider.h"
|
|
|
|
class BarCode;
|
|
class Barkode;
|
|
class TQDomDocument;
|
|
class TQIODevice;
|
|
class TQString;
|
|
class TQPainter;
|
|
class TQPaintDevice;
|
|
class TQTextStream;
|
|
class KPrinter;
|
|
/** Creates a TQPicture from the XML KBarcode file. If a SQL connections is available
|
|
* the data from the SQL tables will be used, too.
|
|
*/
|
|
class Label : private LabelUtils, private XMLUtils, public TokenProvider {
|
|
public:
|
|
Label( Definition* _def, TQIODevice* device, TQString labelname, TQPaintDevice* _printer, TQString customer_id, TQString _article_no, TQString _group = "" );
|
|
Label( Definition* _def, TQIODevice* device, TQString labelname, TQPaintDevice* _printer );
|
|
~Label();
|
|
|
|
void epcl( TQTextStream* stream );
|
|
void ipl( TQTextStream* stream );
|
|
void zpl( TQTextStream* stream );
|
|
|
|
void draw( TQPainter* painter,int x, int y );
|
|
|
|
int getId() const;
|
|
static void getXLabel( double x, double y, double width, double height, TQPainter* painter, int mode, TQString value = "" );
|
|
|
|
//void setPrinter( KPrinter* p ) { m_printer = p; }
|
|
|
|
/** reimplemented from TokenProvider
|
|
* returns wether this label has to be regenerated everytime
|
|
*/
|
|
bool update();
|
|
|
|
private:
|
|
void load( TQIODevice* device );
|
|
void setBarcodeValue( Barkode* barcode );
|
|
void InitBarcodes();
|
|
bool drawThisItem( const DocumentItem* item );
|
|
|
|
protected:
|
|
DocumentItemList m_list;
|
|
|
|
Definition* d;
|
|
TQPaintDevice* m_printer;
|
|
|
|
bool m_sequence;
|
|
};
|
|
|
|
#endif
|