File: LettersSpinBox.cpp

package info (click to toggle)
jtdx 2.2.159%2Bimproved-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 75,336 kB
  • sloc: cpp: 38,503; f90: 31,141; python: 27,061; ansic: 11,772; sh: 409; fortran: 353; makefile: 232
file content (43 lines) | stat: -rw-r--r-- 1,020 bytes parent folder | download | duplicates (2)
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
#include "LettersSpinBox.hpp"
#include <QString>
#include <QDebug>
#include "moc_LettersSpinBox.cpp"

QString LettersSpinBox::textFromValue (int value) const
{
  QString text;

  if(value < 10) {
    do {
      auto digit = value % 26;
      value /= 26;
      text = QChar {lowercase_ ? 'a' + digit : 'A' + digit} + text;
    } while (value);
  } else {
    if(value==11) text="5";
    if(value==12) text="10";
    if(value==13) text="15";
    if(value==14) text="30";
//    if(value==15) text="60";

    if(value==21) text="10";
    if(value==22) text="20";
    if(value==23) text="50";
    if(value==24) text="100";
    if(value==25) text="200";
    if(value==26) text="500";
    if(value==27) text="1000";
  }
  return text;
}

/*
int LettersSpinBox::valueFromText (QString const& text) const
{
  int value {0};
  for (int index = text.size (); index > 0; --index) {
    value = value * 26 + text[index - 1].toLatin1 () - (lowercase_ ? 'a' : 'A');
  }
  return value;
}
*/