Хранилища Subversion OpenInventory

Редакция

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

Редакция Автор № строки Строка
123 pingvin 1
 
2
 
3
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
4
** All rights reserved.
5
** Contact: Nokia Corporation (qt-info@nokia.com)
6
**
7
** This file is part of the examples of the Qt Toolkit.
8
**
9
** $QT_BEGIN_LICENSE:LGPL$
10
** Commercial Usage
11
** Licensees holding valid Qt Commercial licenses may use this file in
12
** accordance with the Qt Commercial License Agreement provided with the
13
** Software or, alternatively, in accordance with the terms contained in
14
** a written agreement between you and Nokia.
15
**
16
** GNU Lesser General Public License Usage
17
** Alternatively, this file may be used under the terms of the GNU Lesser
18
** General Public License version 2.1 as published by the Free Software
19
** Foundation and appearing in the file LICENSE.LGPL included in the
20
** packaging of this file.  Please review the following information to
21
** ensure the GNU Lesser General Public License version 2.1 requirements
22
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23
**
24
** In addition, as a special exception, Nokia gives you certain additional
25
** rights.  These rights are described in the Nokia Qt LGPL Exception
26
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27
**
28
** GNU General Public License Usage
29
** Alternatively, this file may be used under the terms of the GNU
30
** General Public License version 3.0 as published by the Free Software
31
** Foundation and appearing in the file LICENSE.GPL included in the
32
** packaging of this file.  Please review the following information to
33
** ensure the GNU General Public License version 3.0 requirements will be
34
** met: http://www.gnu.org/copyleft/gpl.html.
35
**
36
** If you have questions regarding the use of this file, please contact
37
** Nokia at qt-info@nokia.com.
38
** $QT_END_LICENSE$
39
**
40
****************************************************************************/
41
42
/*
43
 
44
45
    A delegate that allows the user to change integer values from the model
46
 
47
*/
48
49
#include <QtGui>
50
 
51
#include "delegate.h"
52
 
53
54
 
55
 
56
    : QItemDelegate(parent)
57
{
58
}
59
//! [0]
60
61
void SpinBoxDelegate::setInctance(QString newInctance){
62
 
126 pingvin 63
}
64
65
void SpinBoxDelegate::getItems(){
66
 
67
    QSqlQuery q;
68
    QString query_str;
69
    bool ok;
70
71
    if (SpinBoxDelegate::inctance.isEmpty())
72
 
73
        items.clear();
74
        return;
75
    }
76
77
    query_str = tr("select * from `");
78
 
79
    query_str.append( tr("`"));
80
81
    q.prepare(query_str);
82
 
83
84
 
85
 
86
87
 
88
 
89
 
90
 
91
                            QString error_str;
92
                            error_str =  tr("       ");
93
                            error_str.append(inctance);
94
                            QMessageBox::critical( //     .
95
                                                                            this,                      //  .
96
                                                                            QObject::tr("Database Error"),   // .
97
                                                                            q.lastError().text());          //  .
98
                                                                        //    tr("       "));    //  .
99
100
                            */
101
 
102
                            return;
103
                        }
104
105
106
 
107
 
108
    while(q.next()){
129 pingvin 109
126 pingvin 110
                  QString ID;
111
 
112
                  ID = q.value(0).toString(); //  ID
113
                  Name = q.value(1).toString(); //  Name
114
                  items.insert(ID, Name);
115
                }
116
117
118
 
119
 
120
121
122
 
123
 
123 pingvin 124
    const QStyleOptionViewItem &/* option */,
125
    const QModelIndex &/* index */) const
126
{
127
    //QSpinBox *editor = new QSpinBox(parent);
128
    //editor->setMinimum(0);
129
    //editor->setMaximum(100);
130
    QStringList ID_list;
131
    QStringList Name_list;
126 pingvin 132
133
  // getItems();
134
 
135
136
 
137
 
138
 
139
 
140
 
141
142
    QComboBox *editor = new QComboBox(parent);
143
 
123 pingvin 144
/*
126 pingvin 145
 
146
    editor->addItem("1");
123 pingvin 147
    editor->addItem("2");
148
    editor->addItem("3");
149
    editor->addItem("4");
150
    editor->addItem("5");
151
    editor->addItem("6");
152
    editor->addItem("7");
153
    editor->addItem("8");
154
    editor->addItem("9");
155
*/
156
126 pingvin 157
//  editor->addItem("0");
123 pingvin 158
 
126 pingvin 159
    editor->addItems(Name_list);
160
 
161
    return editor;
179 pingvin 162
}
123 pingvin 163
//! [1]
164
165
//! [2]
166
 
167
                                    const QModelIndex &index) const
168
{
169
   // int value = index.model()->data(index, Qt::EditRole).toInt();
170
171
 //   QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
172
 
173
QString value = index.model()->data(index, Qt::EditRole).toString();
174
175
QComboBox *comboBox = static_cast<QComboBox*>(editor);
136 pingvin 176
 
123 pingvin 177
QStringList ID_list;
126 pingvin 178
 
179
int curr_index;
180
181
ID_list = items.keys();
182
 
183
184
curr_index = ID_list.indexOf(value);
185
 
186
comboBox->setCurrentIndex(curr_index);
136 pingvin 187
/****************************************************
126 pingvin 188
if (value == "0") comboBox->setCurrentIndex(0);
189
if (value == "1") comboBox->setCurrentIndex(1);
123 pingvin 190
if (value == "2") comboBox->setCurrentIndex(2);
191
if (value == "3") comboBox->setCurrentIndex(3);
192
if (value == "4") comboBox->setCurrentIndex(4);
193
if (value == "5") comboBox->setCurrentIndex(5);
194
if (value == "6") comboBox->setCurrentIndex(6);
195
if (value == "7") comboBox->setCurrentIndex(7);
196
if (value == "8") comboBox->setCurrentIndex(8);
197
if (value == "9") comboBox->setCurrentIndex(9);
198
******************************************************/
199
comboBox->setEditable(false);
126 pingvin 200
179 pingvin 201
123 pingvin 202
 
203
 
204
}
205
 
206
207
//! [3]
208
 
209
                                   const QModelIndex &index) const
210
{
211
  //  QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
212
  //  spinBox->interpretText();
213
  //  int value = spinBox->value();
214
215
  //  model->setData(index, value, Qt::EditRole);
216
 
217
    QStringList Name_list;
126 pingvin 218
219
    QComboBox *comboBox = static_cast<QComboBox*>(editor);
123 pingvin 220
 
221
    currIndex = comboBox->currentIndex();
222
    if (currIndex==-1) return;
223
  //  QString value = comboBox->itemText(currIndex);
136 pingvin 224
126 pingvin 225
    ID_list = items.keys();
226
 
227
228
    QString value = ID_list.at(currIndex);
229
 
230
}
123 pingvin 231
//! [3]
232
233
//! [4]
234
 
235
    const QStyleOptionViewItem &option, const QModelIndex &/* index */) const
236
{
237
    editor->setGeometry(option.rect);
238
}
239
240
219 pingvin 241
 
242
 
243
 
244
 
245
 
246
 
247
 
248
 
249
 
250
 
251
 
252
    : QItemDelegate(parent)
253
{
254
}
255
//! [0]
256
257
void FilterSpinBoxDelegate::setClassID(QString newClassID){
258
 
259
}
260
261
void FilterSpinBoxDelegate::getItems(){
262
 
263
    QSqlQuery q;
264
    QString query_str;
265
    bool ok;
266
267
    if (FilterSpinBoxDelegate::class_id.isEmpty())
268
 
269
        items.clear();
270
        return;
271
    }
272
273
    query_str = tr("select * from `DescriptionOfClasses` where `ClassIdentifer` = '");
274
 
275
    query_str.append( tr("'"));
276
277
    q.prepare(query_str);
278
 
279
280
 
281
 
282
283
 
284
 
285
 
286
 
287
                            QString error_str;
288
                            error_str =  tr("       ");
289
                            error_str.append(inctance);
290
                            QMessageBox::critical( //     .
291
                                                                            this,                      //  .
292
                                                                            QObject::tr("Database Error"),   // .
293
                                                                            q.lastError().text());          //  .
294
                                                                        //    tr("       "));    //  .
295
296
                            */
297
 
298
                            return;
299
                        }
300
301
302
 
303
 
304
    while(q.next()){
305
306
                  QString ID;
307
 
308
                  ID = q.value(0).toString(); //  ID
309
                  Name = q.value(1).toString(); //  Name
310
                  items.insert(ID, Name);
311
                }
312
313
314
 
315
 
316
317
318
 
319
 
320
    const QStyleOptionViewItem &/* option */,
321
    const QModelIndex &/* index */) const
322
{
323
    //QSpinBox *editor = new QSpinBox(parent);
324
    //editor->setMinimum(0);
325
    //editor->setMaximum(100);
326
    QStringList ID_list;
327
    QStringList Name_list;
328
329
  // getItems();
330
 
331
332
 
333
 
334
 
335
 
336
 
337
338
    QComboBox *editor = new QComboBox(parent);
339
 
340
/*
341
 
342
    editor->addItem("1");
343
    editor->addItem("2");
344
    editor->addItem("3");
345
    editor->addItem("4");
346
    editor->addItem("5");
347
    editor->addItem("6");
348
    editor->addItem("7");
349
    editor->addItem("8");
350
    editor->addItem("9");
351
*/
352
353
//  editor->addItem("0");
354
 
355
    editor->addItems(Name_list);
356
 
357
    return editor;
358
}
359
//! [1]
360
361
//! [2]
362
 
363
                                    const QModelIndex &index) const
364
{
365
   // int value = index.model()->data(index, Qt::EditRole).toInt();
366
367
 //   QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
368
 
369
QString value = index.model()->data(index, Qt::EditRole).toString();
370
371
QComboBox *comboBox = static_cast<QComboBox*>(editor);
372
 
373
QStringList ID_list;
374
 
375
int curr_index;
376
377
ID_list = items.keys();
378
 
379
380
curr_index = ID_list.indexOf(value);
381
 
382
comboBox->setCurrentIndex(curr_index);
383
/****************************************************
384
if (value == "0") comboBox->setCurrentIndex(0);
385
if (value == "1") comboBox->setCurrentIndex(1);
386
if (value == "2") comboBox->setCurrentIndex(2);
387
if (value == "3") comboBox->setCurrentIndex(3);
388
if (value == "4") comboBox->setCurrentIndex(4);
389
if (value == "5") comboBox->setCurrentIndex(5);
390
if (value == "6") comboBox->setCurrentIndex(6);
391
if (value == "7") comboBox->setCurrentIndex(7);
392
if (value == "8") comboBox->setCurrentIndex(8);
393
if (value == "9") comboBox->setCurrentIndex(9);
394
******************************************************/
395
comboBox->setEditable(false);
396
397
398
 
399
 
400
}
401
 
402
403
//! [3]
404
 
405
                                   const QModelIndex &index) const
406
{
407
  //  QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
408
  //  spinBox->interpretText();
409
  //  int value = spinBox->value();
410
411
  //  model->setData(index, value, Qt::EditRole);
412
 
413
    QStringList Name_list;
414
415
    QComboBox *comboBox = static_cast<QComboBox*>(editor);
416
 
417
    currIndex = comboBox->currentIndex();
418
    if (currIndex==-1) return;
419
  //  QString value = comboBox->itemText(currIndex);
420
421
    ID_list = items.keys();
422
 
423
424
 //   QString value = ID_list.at(currIndex);
425
 
426
    model->setData(index, value, Qt::EditRole);
427
}
428
//! [3]
429
430
//! [4]
431
 
123 pingvin 432
    const QStyleOptionViewItem &option, const QModelIndex &/* index */) const
219 pingvin 433
{
434
    editor->setGeometry(option.rect);
435
}
436
437
438
 
439
 
440
 
441
 
442
 
443
 
444
 
445
 
446
 
447
 
448
    : QItemDelegate(parent)
449
{
450
}
451
//! [0]
452
453
void FilterConditionDelegate::setClassID(QString newClassID){
454
 
455
}
456
457
458
 
459
 
460
 
461
    const QStyleOptionViewItem &/* option */,
462
    const QModelIndex &/* index */) const
463
{
464
    QStringList Name_list;
465
466
    Name_list = items;
467
 
468
    QComboBox *editor = new QComboBox(parent);
469
 
470
/*
471
 
472
    editor->addItem("1");
473
    editor->addItem("2");
474
    editor->addItem("3");
475
    editor->addItem("4");
476
    editor->addItem("5");
477
    editor->addItem("6");
478
    editor->addItem("7");
479
    editor->addItem("8");
480
    editor->addItem("9");
481
*/
482
483
//  editor->addItem("0");
484
 
485
    editor->addItems(Name_list);
486
 
487
    return editor;
488
}
489
//! [1]
490
491
//! [2]
492
 
493
                                    const QModelIndex &index) const
494
{
495
   // int value = index.model()->data(index, Qt::EditRole).toInt();
496
497
 //   QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
498
 
499
QString value = index.model()->data(index, Qt::EditRole).toString();
500
501
QComboBox *comboBox = static_cast<QComboBox*>(editor);
502
 
503
//QStringList ID_list;
504
 
505
int curr_index;
506
507
//ID_list = items.keys();
508
 
509
510
curr_index = items.indexOf(value);
511
 
512
comboBox->setCurrentIndex(curr_index);
513
/****************************************************
514
if (value == "0") comboBox->setCurrentIndex(0);
515
if (value == "1") comboBox->setCurrentIndex(1);
516
if (value == "2") comboBox->setCurrentIndex(2);
517
if (value == "3") comboBox->setCurrentIndex(3);
518
if (value == "4") comboBox->setCurrentIndex(4);
519
if (value == "5") comboBox->setCurrentIndex(5);
520
if (value == "6") comboBox->setCurrentIndex(6);
521
if (value == "7") comboBox->setCurrentIndex(7);
522
if (value == "8") comboBox->setCurrentIndex(8);
523
if (value == "9") comboBox->setCurrentIndex(9);
524
******************************************************/
525
comboBox->setEditable(false);
526
527
528
 
529
 
530
}
531
 
532
533
//! [3]
534
 
535
                                   const QModelIndex &index) const
536
{
537
  //  QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
538
  //  spinBox->interpretText();
539
  //  int value = spinBox->value();
540
541
  //  model->setData(index, value, Qt::EditRole);
542
 
543
    QStringList Name_list;
544
545
    QComboBox *comboBox = static_cast<QComboBox*>(editor);
546
 
547
    currIndex = comboBox->currentIndex();
548
    if (currIndex==-1) return;
549
  //  QString value = comboBox->itemText(currIndex);
550
551
    // ID_list = items.keys();
552
 
553
554
 //   QString value = ID_list.at(currIndex);
555
 
556
    model->setData(index, value, Qt::EditRole);
557
}
558
//! [3]
559
560
//! [4]
561
 
562
    const QStyleOptionViewItem &option, const QModelIndex &/* index */) const
563
{
564
    editor->setGeometry(option.rect);
565
}
566
567
568
 
569
 
570
 
571
 
572
 
573
 
574
 
575
 
576
 
577
 
578
                       bool calpopup,
123 pingvin 579
                       QObject *parent)
580
               : QItemDelegate(parent),
581
                 m_calpopup(calpopup) {
582
   }
583
584
   QWidget *MyDEDelegate::createEditor(
585
 
586
               const QStyleOptionViewItem& /* option */,
587
               const QModelIndex& /* index */) const {
588
       QDateEdit *editor = new QDateEdit(parent);
589
       editor->setCalendarPopup(m_calpopup);
590
       editor->installEventFilter(const_cast<MyDEDelegate*>(this));
591
       return editor;
592
   }
593
594
   void MyDEDelegate::setEditorData(
595
 
596
                   const QModelIndex &index) const {
597
       QDate value = index.model()->data(
598
               index, Qt::EditRole).toDate();
599
       QDateEdit *de = static_cast<QDateEdit*>(editor);
600
       de->setDate(value);
601
   }
602
603
   void MyDEDelegate::setModelData(
604
 
605
               QAbstractItemModel *model,
606
               const QModelIndex& index) const {
607
       QDateEdit *de = static_cast<QDateEdit*>(editor);
608
       de->interpretText();
609
       QDate value = de->date();
610
       model->setData(index, value);
611
   }
612
613
   void MyDEDelegate::updateEditorGeometry(
614
 
615
               const QStyleOptionViewItem &option,
616
               const QModelIndex& /* index */) const {
617
618
169 pingvin 619
 
620
 
621
 
123 pingvin 622
623
138 pingvin 624
 
625
 
626
 
627
 
628
 
629
   }
630
631
   void CPictureDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
632
 
633
           m_pxPicture.fill( QColor(Qt::white) );
634
635
           const QAbstractItemModel * model = index.model();
636
 
637
638
           if ( !sFileName.isEmpty() )
639
 
640
           else {
641
               //QItemDelegate::paint(painter, option, index);
642
           return;
643
           }
644
645
           QPalette::ColorGroup cg = (option.state & QStyle::State_Enabled) ?
646
 
647
                                                             QPalette::Disabled;
648
649
            if (option.state & QStyle::State_Selected)
650
 
651
652
           int nX = option.rect.x() + ( ( option.rect.width() - m_pxPicture.rect().width() ) / 2 );
653
 
654
           painter->drawPixmap( nX, nY, m_pxPicture );
655
656
657
 
658
 
659
           /*
660
 
661
           painter->setPen(option.palette.color(QPalette::Mid));
662
           painter->drawLine(option.rect.bottomLeft(), option.rect.bottomRight());
663
           painter->drawLine(option.rect.topRight(), option.rect.bottomRight());
664
           painter->setPen(pen);
665
   */
666
   }
667
668
158 pingvin 669
 
670
 
671
 
672
 
673
   {
674
       int datetime = index.model()->data(index, Qt::DisplayRole).toInt();
675
676
       QString indexvalue = "";
677
 
678
       if (datetime > 0)
679
 
680
           QDateTime dateTime2 = QDateTime();
681
           dateTime2.setTime_t(datetime);
682
           indexvalue = dateTime2.toString(this->timeformat);
683
       }
684
       else
685
       {
686
           indexvalue = tr("Date not set");
687
       }
688
689
       Q_ASSERT(index.isValid());
690
 
691
       QStyleOptionViewItemV3 opt = setOptions(index, option);
692
 
693
       const QStyleOptionViewItemV2 *v2 = qstyleoption_cast<const QStyleOptionViewItemV2 *>(&option);
694
 
695
                       : QStyleOptionViewItemV2::ViewItemFeatures(QStyleOptionViewItemV2::None);
696
       const QStyleOptionViewItemV3 *v3 = qstyleoption_cast<const QStyleOptionViewItemV3 *>(&option);
697
       opt.locale = v3 ? v3->locale : QLocale();
698
       opt.widget = v3 ? v3->widget : 0;
699
700
       // prepare
701
 
702
703
       painter->setClipRect(opt.rect);
704
 
705
       // get the data and the rectangles
706
 
707
708
       QPixmap pixmap;
709
 
710
       value = index.data(Qt::DecorationRole);
711
712
       QString text;
713
 
714
       value = index.data(Qt::DisplayRole);
715
       if (value.isValid()) {
716
           text = indexvalue;
717
           displayRect = textRectangle(painter, option.rect, opt.font, text);
718
       }
719
720
       QRect checkRect;
721
 
722
       value = index.data(Qt::CheckStateRole);
723
       if (value.isValid()) {
724
           checkState = static_cast<Qt::CheckState>(value.toInt());
725
           checkRect = check(opt, opt.rect, value);
726
       }
727
728
       // do the layout
729
 
730
       // draw the item
731
732
       drawBackground(painter, opt, index);
733
 
734
       drawDecoration(painter, opt, decorationRect, pixmap);
735
       drawDisplay(painter, opt, displayRect, text);
736
       drawFocus(painter, opt, displayRect);
737
738
       // done
739
 
740
   }
741
742
180 pingvin 743
 
744
 
745
 
746
 
747
 
748
 
749
   }
750
751
752
 
753
 
754
 
755
 
756
 
757
       const QModelIndex & /* index */) const
758
   {
759
760
       IconForm *editor = new IconForm(parent);
761
 
762
       return editor;
763
 
764
   }
765
 
766
767
 
768
 
769
 
770
 
771
   {
772
773
774
 
775
 
776
       QVariant currentImage = model->data(index,0);
777
       QByteArray bytes = currentImage.toByteArray();
778
       if (currentImage.isValid()) {
779
            m_pxPicture.loadFromData(bytes);
780
       }
781
       else {
782
           //QItemDelegate::paint(painter, option, index);
783
784
785
 
786
 
787
       icnFrm->setPixmap(m_pxPicture);
788
     //  tblView->setRowHeight(index.row(), icnFrm->geometry().height());
789
   }
790
791
792
 
793
 
794
 
795
 
796
               QAbstractItemModel *model,
797
               const QModelIndex& index) const {
798
       IconForm *icnFrm = static_cast<IconForm*>(editor);
799
       if (!(icnFrm->dataIsChanged())) return;
800
801
       m_pxPicture = icnFrm->pixmap();
802
 
803
          QByteArray bytes;
804
          QBuffer buffer(&bytes);
805
          buffer.open(QIODevice::WriteOnly);
806
          currentImage.save(&buffer, "PNG");
807
808
809
 
810
 
811
 
812
 
813
     //    int widht = m_pxPicture.width();
814
 
815
     //    tblView->setRowHeight(index.row(), heigh + 10);
816
         // model->submitAll();
817
818
819
 
820
 
821
 
822
 
823
824
825
 
826
 
827
 
828
               const QStyleOptionViewItem &option,
829
               const QModelIndex& /* index */) const {
830
831
832
 
833
 
834
835
        editor->setGeometry(option.rect);
836
 
837
838
839
 
840
 
841
 
842
 
843
844
845
 
846
 
847
          const QAbstractItemModel * model = index.model();
848
 
849
850
          QVariant currentImage = model->data(index,0);
851
 
852
853
 
854
 
855
     //       image.loadFromData(bytes);
856
857
858
 
859
 
860
861
           }
862
 
863
               //QItemDelegate::paint(painter, option, index);
864
           return;
865
           }
866
867
868
 
869
 
870
 
871
 
872
 
873
           if ( !sFileName.isEmpty() )
874
 
875
           else {
876
               //QItemDelegate::paint(painter, option, index);
877
           return;
878
           }
879
*/
880
881
882
 
883
 
205 pingvin 884
 
885
 
886
 
180 pingvin 887
                                                             QPalette::Disabled;
888
889
            if (option.state & QStyle::State_Selected)
890
 
891
892
 
893
 
894
895
 
205 pingvin 896
 
897
 
180 pingvin 898
   //        painter->setRenderHint(QPainter::Antialiasing);
899
           painter->drawPixmap( nX, nY, m_pxPicture );
205 pingvin 900
180 pingvin 901
       //    drawFocus(painter, option, option.rect.adjusted(0, 0, -1, -1)); // since we draw the grid ourselves
902
 
903
           /*
904
 
905
           painter->setPen(option.palette.color(QPalette::Mid));
906
           painter->drawLine(option.rect.bottomLeft(), option.rect.bottomRight());
907
           painter->drawLine(option.rect.topRight(), option.rect.bottomRight());
908
           painter->setPen(pen);
909
   */
910
}
911
912
913
 
914
 
915
   }
916
917
201 pingvin 918
 
919
 
920
 
921
 
922
 
923
 
924
 
925
 
926
   }
927
928
929
 
930
 
931
 
932
 
933
 
934
       const QModelIndex & /* index */) const
935
   {
936
937
       FileForm *editor = new FileForm(parent);
938
 
939
       return editor;
940
 
941
   }
942
 
943
944
 
945
 
946
 
947
 
948
   {
949
950
951
 
952
 
953
       QVariant currentData = model->data(index,Qt::EditRole);
954
202 pingvin 955
      // QVariant currentData = QSqlTableModel::data(index, 0);
956
 
957
       if (currentData.isValid()) flFrm->setData(bytes);
201 pingvin 958
       else return;
959
960
   }
961
 
962
963
 
964
 
965
 
966
 
967
               QAbstractItemModel *model,
968
               const QModelIndex& index) const {
969
       FileForm *flFrm = static_cast<FileForm*>(editor);
970
       if (!(flFrm->dataIsChanged())) return;
971
972
       m_Data = flFrm->data();
973
 
974
                                   model->setData(index, QVariant (m_Data), Qt::EditRole);
975
976
                              }
977
 
978
           QVariant val_null;
979
           model->setData(index, val_null, Qt::EditRole);
980
981
            }
982
 
983
984
 
985
 
986
 
987
988
 
989
 
990
 
991
               const QStyleOptionViewItem &option,
992
               const QModelIndex& /* index */) const {
993
994
995
 
996
 
997
998
        editor->setGeometry(option.rect);
999
 
1000