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.
107 lines
3.2 KiB
107 lines
3.2 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "kbarcodesettings.h"
|
|
#include "configdialog.h"
|
|
#include "sqltables.h"
|
|
#include "printersettings.h"
|
|
|
|
// KDE includes
|
|
#include <tdeapplication.h>
|
|
#include <kcolorbutton.h>
|
|
#include <tdeconfig.h>
|
|
#include <klineedit.h>
|
|
#include <knuminput.h>
|
|
|
|
// QT includes
|
|
#include <tqcheckbox.h>
|
|
|
|
KBarcodeSettings* KBarcodeSettings::m_instance = 0;
|
|
int KBarcodeSettings::gridsize = 30;
|
|
bool KBarcodeSettings::newdlg = true;
|
|
TQColor KBarcodeSettings::gridcolor = TQt::black;
|
|
TQString KBarcodeSettings::dateFormat = "";
|
|
|
|
KBarcodeSettings* KBarcodeSettings::getInstance()
|
|
{
|
|
if( !m_instance )
|
|
m_instance = new KBarcodeSettings();
|
|
|
|
return m_instance;
|
|
}
|
|
|
|
KBarcodeSettings::KBarcodeSettings()
|
|
{
|
|
|
|
}
|
|
|
|
KBarcodeSettings::~KBarcodeSettings()
|
|
{
|
|
|
|
}
|
|
|
|
void KBarcodeSettings::saveConfig()
|
|
{
|
|
TDEConfig* config = kapp->config();
|
|
|
|
config->setGroup("LabelEditor");
|
|
config->writeEntry("grid", gridsize );
|
|
config->writeEntry("gridcolor", gridcolor );
|
|
config->writeEntry("AskNewDlg", newdlg );
|
|
config->writeEntry("DateFormat", dateFormat );
|
|
}
|
|
|
|
void KBarcodeSettings::loadConfig()
|
|
{
|
|
TDEConfig* config = kapp->config();
|
|
|
|
TQColor tmpc( TQt::lightGray );
|
|
config->setGroup("LabelEditor");
|
|
gridsize = config->readNumEntry("grid", 5);
|
|
gridcolor = config->readColorEntry("gridcolor", &tmpc );
|
|
newdlg = config->readBoolEntry("AskNewDlg", true );
|
|
dateFormat = config->readEntry("DateFormat", "dd-MM-yyyy" );
|
|
}
|
|
|
|
void KBarcodeSettings::configure()
|
|
{
|
|
ConfigDialog* cd = new ConfigDialog( 0 );
|
|
cd->spinGrid->setValue( gridsize );
|
|
cd->colorGrid->setColor( gridcolor );
|
|
cd->checkNewDlg->setChecked( newdlg );
|
|
cd->date->setText( dateFormat );
|
|
if( cd->exec() == TQDialog::Accepted ) {
|
|
PrinterSettings::getInstance()->saveConfig();
|
|
SqlTables::getInstance()->saveConfig();
|
|
|
|
int oldgrid = gridsize;
|
|
TQColor oldcolor = gridcolor;
|
|
gridsize = cd->spinGrid->value();
|
|
gridcolor = cd->colorGrid->color();
|
|
// gridsize or gridcolor has been changed
|
|
if( oldgrid != gridsize || oldcolor != gridcolor )
|
|
emit updateGrid( gridsize );
|
|
|
|
newdlg = cd->checkNewDlg->isChecked();
|
|
dateFormat = cd->date->text();
|
|
|
|
saveConfig();
|
|
}
|
|
}
|
|
|
|
#include "kbarcodesettings.moc"
|