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/kbarcodesettings.h

67 lines
2.1 KiB

/***************************************************************************
kbarcodesettings.h - description
-------------------
begin : Sat Jan 10 2004
copyright : (C) 2004 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 KBARCODESETTINGS_H
#define KBARCODESETTINGS_H
#include <tqobject.h>
/**
A singleton which is responsible for loading and saving KBarcodes settings.
It emits also signals when some properties change.
@author Dominik Seichter
*/
class KBarcodeSettings : public TQObject
{
TQ_OBJECT
public:
static KBarcodeSettings* getInstance();
static const TQString getDateFormat() {
return dateFormat;
}
int gridSize() const { return gridsize; }
const TQColor & gridColor() const { return gridcolor; }
bool newDialog() const { return newdlg; }
public slots:
void loadConfig();
void saveConfig();
void configure();
signals:
/** Emitted when the user changes the grid size
*/
void updateGrid( int );
private:
KBarcodeSettings();
~KBarcodeSettings();
static KBarcodeSettings* m_instance;
// LabelEditor settings:
static int gridsize;
static bool newdlg;
static TQColor gridcolor;
static TQString dateFormat;
};
#endif