summaryrefslogtreecommitdiffstats
path: root/kbarcode/mycanvasitem.h
blob: 81a35d3dab6caa646aa87aed46b2e5154da2c467 (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
/***************************************************************************
                          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