Хранилища Subversion OpenInventory

Редакция

Редакция 89 | Редакция 91 | К новейшей редакции | Содержимое файла | Сравнить с предыдущей | Последнее изменение | Открыть журнал | RSS

Редакция Автор № строки Строка
88 pingvin 1
#include "mainwindow.h"
2
#include "ui_mainwindow.h"
3
 
4
MainWindow::MainWindow(QWidget *parent) :
5
    QMainWindow(parent),
6
    ui(new Ui::MainWindow)
7
{
8
    ui->setupUi(this);
9
 
89 pingvin 10
   MainWindow::readModel();
11
 
88 pingvin 12
}
13
 
14
MainWindow::~MainWindow()
15
{
16
    delete ui;
17
}
18
 
19
void MainWindow::changeEvent(QEvent *e)
20
{
21
    QMainWindow::changeEvent(e);
22
    switch (e->type()) {
23
    case QEvent::LanguageChange:
24
        ui->retranslateUi(this);
25
        break;
26
    default:
27
        break;
28
    }
29
}
89 pingvin 30
 
31
 
32
bool MainWindow::readModel(){
33
    bool result;
34
    QString model_str;
35
    QFile file(":/model.txt");
36
    rootItem1 = new  QTreeWidgetItem(ui->treeWidget);
37
    rootItem1->setText(0, tr(" 1"));
38
   // rootItem2 = new  QTreeWidgetItem(rootItem1);
39
   // rootItem2->setText(0, tr(" 2"));
40
    rootItem1->setCheckState(0,Qt::Checked);
41
   // rootItem2->setCheckState(0,Qt::Checked);
42
 
43
 
44
 
45
    result = file.open(QIODevice::ReadOnly);
46
    if (result) {
90 pingvin 47
                     model_str = QString(tr(file.readAll()));
89 pingvin 48
                }
49
 
50
   setupModelData(model_str.split(QString("\n")), rootItem1);
51
 
52
 
53
    return result;
54
 
55
}
56
 
57
 
58
void MainWindow::setupModelData(const QStringList &lines, QTreeWidgetItem *parent)
59
{
60
    QList<QTreeWidgetItem*> parents;
61
    QList<int> indentations;
62
    parents << parent;
63
    indentations << 0;
64
 
65
    int number = 0;
66
 
67
    while (number < lines.count()) {
68
        int position = 0;
69
        while (position < lines[number].length()) {
70
            if (lines[number].mid(position, 1) != " ")
71
                break;
72
            position++;
73
        }
74
 
75
        QString lineData = lines[number].mid(position).trimmed();
76
 
77
        if (!lineData.isEmpty()) {
78
            // Read the column data from the rest of the line.
79
            QStringList columnStrings = lineData.split("\t", QString::SkipEmptyParts);
80
            QList<QVariant> columnData;
81
            for (int column = 0; column < columnStrings.count(); ++column)
82
                columnData << columnStrings[column];
83
 
84
            if (position > indentations.last()) {
85
                // The last child of the current parent is now the new parent
86
                // unless the current parent has no children.
87
 
88
                if (parents.last()->childCount() > 0) {
89
                    parents << parents.last()->child(parents.last()->childCount()-1);
90
                    indentations << position;
91
                }
92
            } else {
93
                while (position < indentations.last() && parents.count() > 0) {
94
                    parents.pop_back();
95
                    indentations.pop_back();
96
                }
97
            }
98
 
99
            // Append a new item to the current parent's list of children.
100
          // // //  parents.last()->appendChild(new QTreeWidgetItem(columnData, parents.last()));
101
            QTreeWidgetItem* itm_tmp;
102
            itm_tmp = new QTreeWidgetItem( parents.last());
103
 
104
            itm_tmp->setText(0, QString(columnData.at(0).toString()));
105
            if (columnData.at(1).toString() == "true") {
106
                                                            itm_tmp->setCheckState(0,Qt::Checked);
107
                                                        }
108
            else itm_tmp->setCheckState(0,Qt::Unchecked);
90 pingvin 109
            itm_tmp->setText(1, QString(columnData.at(2).toString()));
110
            itm_tmp->setText(2, QVariant(number).toString()); //    - 
111
            itm_tmp->setText(3, QVariant(indentations.size()).toString());
89 pingvin 112
        }
113
 
114
        number++;
115
    }
116
}
117
 
118
 
119
/*
120
void MainWindow::openBase()
121
{
122
 
123
        db = QSqlDatabase::addDatabase("QMYSQL");
124
        pdb = &db;
125
        raportFrm.pdb = &db;
126
 
127
        pdb->setHostName(hostName);
128
        pdb->setDatabaseName(baseName);
129
        pdb->setUserName(userName);
130
        pdb->setPassword(password);
131
        bool ok = pdb->open();
132
        if (!ok) {
133
                                QMessageBox::critical( //     .
134
                                                                                this,                      //  .
135
                                                                                QObject::tr("Database Error"),   // .
136
                                                                                pdb->lastError().text());          //  .
137
                         }
138
        if (ok)
139
        {lineEdit-> insert(tr("  "));
140
        }
141
        else {lineEdit-> insert(tr(" .  : "));
142
                  lineEdit-> insert(pdb->lastError().text());
143
                 }
144
 
145
 
146
 
147
        model = new QSqlTableModel(this);
148
        model->setTable(tableName);
149
 
150
        model->setEditStrategy(QSqlTableModel::OnManualSubmit);
151
        model->setSort(0, Qt::AscendingOrder);
152
 
153
        model->select();
154
 
155
 
156
        QSqlField field(tr("age"), QVariant::Int);
157
        field.setValue(QString(tr("123")));
158
 
159
        bool okey;
160
        int index;
161
        QSqlRecord record;
162
 
163
 
164
        tableView->setModel(model);
165
        view.setModel(model);
166
 
167
 
168
        tableView->setAlternatingRowColors(true);
169
        view.setAlternatingRowColors(true);
170
 
171
        tableView->resizeColumnsToContents();
172
 
173
 
174
        view.resizeColumnsToContents();
175
 
176
        tableView->show();
177
 
178
 
179
 
180
        initTreeWidget();
181
}
182
*/