File: IceMenuSave.cpp

package info (click to toggle)
icemc 0.2.4-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 256 kB
  • ctags: 247
  • sloc: cpp: 2,211; makefile: 44
file content (159 lines) | stat: -rw-r--r-- 3,630 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/**
 * IceMC - a menu editor for IceWM
 * Copyright (c) 2000 Georg Mittendorfer
 */

//////////////////////////////////////////////////////////////////////////////////
// IceMenuSave.cpp implementation of CLASS IceMenuSave
//
// created:  mig 001010
// last mod: mig 001026
//
// description: goes through IceListView and writes IceListViewItems
//              to Menu Configuration File.
//////////////////////////////////////////////////////////////////////////////////

#include "IceMenuSave.h"
#include "IceListView.h"

#include<qfile.h>
#include<qstring.h>

///////////////////////////////////////////////////////////
// constructor & destructor
///////////////////////////////////////////////////////////

IceMenuSave::IceMenuSave() 
{
	;//qDebug("DEBUG: IceMenuSave::IceMenuSave()");
	step = 3;
}

IceMenuSave::~IceMenuSave() 
{
	;//qDebug("DEBUG: IceMenuSave::~IceMenuSave()");
}

///////////////////////////////////////////////////////////
// public methods
///////////////////////////////////////////////////////////

void IceMenuSave::write(IceListView* iceList, const QString filePath)
{
  ;//qDebug("DEBUG: IceMenuSave::write(IceListView* iceList, const QString filePath)");
  
  dest = new QFile(filePath);
  destStream = new QTextStream();
  
  if (dest->exists()) {
    // backup file
  }
  
  if (dest->isOpen()) {
    // error: file already open
  } else {
    dest->open(IO_WriteOnly);
    destStream->setDevice(dest);
    // parse
    writeList(iceList);
    // if (success) {
    //   close the file
    //   rm backup
    // } else {
    //   restore the file
    // }
    destStream->unsetDevice();
    dest->close();
  }
  
  delete dest;
  delete destStream;
}

/////////////////////////////////////////////////////////////
// private methods
/////////////////////////////////////////////////////////////

void IceMenuSave::writeList(IceListView* iceList)
{
  int depth = 0, actual = 0;
  QString out, info;
  IceListViewItem* item;
  QListViewItemIterator it(iceList);
  // iterate through all items of the listview
  while (it.current()) {
    out = "";
    item = dynamic_cast<IceListViewItem*> (it.current());
    depth = item->depth();
    if (depth != actual) {
      while (depth < actual) {
	actual--;
	out.fill(' ', actual*step);
	out = out + "}\n";
	*destStream << out;
	out = ""; // necessary?
      }
      actual = depth;
    }
    
    info = item->getInfo();
    out.fill(' ', actual*step);
    out += info + ' ';
    if (info == "menu") {
      out += '"' + item->text(0) + '"';
      
      if (item->text(1).isEmpty())
	out += " - {\n";
      else
	out += ' ' + item->text(1) + " {\n";
      
      *destStream << out;
      actual++;
    } else if ((info == "prog") || (info == "restart")) {
      out += '"' + item->text(0) + '"';
      
      if (item->text(1).isEmpty())
	out += " -";
      else
	out += ' ' + item->text(1);
      
      if (item->text(2).isEmpty())
	out += " -\n";
      else
	out += ' ' + item->text(2) + '\n';
      
      *destStream << out;
    } else if (info == "separator") {
      out += '\n';
      *destStream << out;
    } else if (info == "menufile" || "menuprog") {
      out += '"' + item->text(0) + '"';

      if (item->text(1).isEmpty())
	out += " -";
      else
	out += ' ' + item->text(1);
      
      if (item->text(2).isEmpty())
	out += " -\n";
      else
	out += ' ' + item->text(2) + '\n';
   
      *destStream << out;
    }
    ; // don't do anything // hae??
    it++;
  } // while
  while (0 < actual) {
    actual--;
    out.fill(' ', actual*step);
    out = out + "}\n";
    *destStream << out;
    out = ""; // necessary?
  }
}