summaryrefslogtreecommitdiffstats
path: root/src/progs/base/hardware_config.cpp
blob: a3022e54ad0eedb8fa9cf9d78967a48129d9b610 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/***************************************************************************
 *   Copyright (C) 2005-2007 Nicolas Hadacek <hadacek@kde.org>             *
 *   Copyright (C) 2003-2005 Alain Gibaud <alain.gibaud@free.fr>           *
 *                                                                         *
 *   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 "hardware_config.h"

//-----------------------------------------------------------------------------
bool Hardware::Data::isEqual(const Data &data) const
{
  return ( data.portType==portType );
}

void Hardware::Data::readConfig(GenericConfig &config)
{
  portType = config.readEnumEntry<PortType>("port_type", PortType::Serial);
}

void Hardware::Data::writeConfig(GenericConfig &config) const
{
  config.writeEnumEntry<PortType>("port_type", portType);
}

//-----------------------------------------------------------------------------
void Hardware::Config::writeCurrentHardware(PortType type, const TQString &name)
{
  writeEntry(TQString("current_hardware_") + type.key(), name);
}

TQString Hardware::Config::currentHardware(PortType type)
{
  TQStringList names = hardwareNames(type);
  return readEntry(TQString("current_hardware_") + type.key(), names[0]);
}

TQString Hardware::Config::label(const TQString &name) const
{
  const DataInfo *info = standardHardwareDataInfo(name);
  if ( info==0 ) return TQString();
  return i18n(info->label);
}

TQString Hardware::Config::comment(const TQString &name) const
{
  const DataInfo *info = standardHardwareDataInfo(name);
  if ( info==0 || info->comment==0 ) return TQString();
  return i18n(info->comment);
}

void Hardware::Config::writeCustomHardware(const TQString& name, const Hardware::Data &hdata)
{
  Q_ASSERT( !isStandardHardware(name) );
  TQStringList customNames = readListEntry("custom_hardware_names", TQStringList());
  if ( !customNames.tqcontains(name) ) {
    customNames += name;
    writeEntry("custom_hardware_names", customNames);
  }
  GenericConfig config(group() + "_custom_hardware_" + name);
  hdata.writeConfig(config);
}

void Hardware::Config::deleteCustomHardware(const TQString &name)
{
  Q_ASSERT( !isStandardHardware(name) );
  TQStringList customNames = readListEntry("custom_hardware_names", TQStringList());
  customNames.remove(name);
  writeEntry("custom_hardware_names", customNames);
  GenericConfig::deleteGroup(group() + "_custom_hardware_" + name);
}

Hardware::Data *Hardware::Config::hardwareData(const TQString &name) const
{
  if ( isStandardHardware(name) ) return standardHardwareData(name);
  Hardware::Data *hdata = createHardwareData();
  hdata->name = name;
  GenericConfig config(group() + "_custom_hardware_" + name);
  hdata->readConfig(config);
  return hdata;
}

TQStringList Hardware::Config::hardwareNames(PortType type)
{
  TQStringList names = standardHardwareNames(type);
  TQStringList customNames = readListEntry("custom_hardware_names", TQStringList());
  for (uint i=0; i<uint(customNames.count()); i++) {
    if ( type!=PortType::Nb_Types ) {
      Hardware::Data *hdata = hardwareData(customNames[i]);
      if ( hdata->portType==type ) names += customNames[i];
      delete hdata;
    } else names += customNames[i];
  }
  return names;
}