You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kbarcode/kbarcode/mycanvasitem.h

53 lines
1.6 KiB

/***************************************************************************
mycanvasitem.h - description
-------------------
begin : Die Apr 23 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 MYCANVASITEM_H
#define MYCANVASITEM_H
#include <tqcanvas.h>
#include <tqpoint.h>
#include <tqimage.h>
#include <tqpicture.h>
#include "tokenprovider.h"
#define SPOTSIZE 7
class TQPixmap;
/** A very small singleton, which creates a pixmap
* for the accesor points in the label editor.
*
* @author Dominik Seichter
*/
class SpotProvider {
public:
static SpotProvider* getInstance();
const TQPixmap* spot() const {
return m_spot;
}
private:
SpotProvider();
~SpotProvider();
static SpotProvider* instance;
static TQPixmap* m_spot;
};
#endif