Хранилища Subversion OpenInventory

Редакция

Редакция 219 | Редакция 225 | К новейшей редакции | Содержимое файла | Сравнить с предыдущей | Последнее изменение | Открыть журнал | 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
 
224 pingvin 578
{
579
}
580
//! [0]
581
582
void FilterValueDelegate::setClassID(QString newClassID){
583
 
584
}
585
586
587
 
588
 
589
 
590
    const QStyleOptionViewItem &/* option */,
591
    const QModelIndex &/* index */) const
592
{
593
    QStringList Name_list;
594
595
    Name_list = items;
596
 
597
    QComboBox *editor = new QComboBox(parent);
598
 
599
/*
600
 
601
    editor->addItem("1");
602
    editor->addItem("2");
603
    editor->addItem("3");
604
    editor->addItem("4");
605
    editor->addItem("5");
606
    editor->addItem("6");
607
    editor->addItem("7");
608
    editor->addItem("8");
609
    editor->addItem("9");
610
*/
611
612
//  editor->addItem("0");
613
 
614
// // //    editor->addItems(Name_list);
615
 
616
    return editor;
617
}
618
//! [1]
619
620
//! [2]
621
 
622
                                    const QModelIndex &index) const
623
{
624
   // int value = index.model()->data(index, Qt::EditRole).toInt();
625
626
 //   QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
627
 
628
629
630
 
631
 
632
633
 
634
 
635
QComboBox *comboBox = static_cast<QComboBox*>(editor);
636
637
//QStringList ID_list;
638
 
639
int curr_index;
640
641
//ID_list = items.keys();
642
 
643
644
curr_index = items.indexOf(value);
645
 
646
comboBox->setCurrentIndex(curr_index);
647
/****************************************************
648
if (value == "0") comboBox->setCurrentIndex(0);
649
if (value == "1") comboBox->setCurrentIndex(1);
650
if (value == "2") comboBox->setCurrentIndex(2);
651
if (value == "3") comboBox->setCurrentIndex(3);
652
if (value == "4") comboBox->setCurrentIndex(4);
653
if (value == "5") comboBox->setCurrentIndex(5);
654
if (value == "6") comboBox->setCurrentIndex(6);
655
if (value == "7") comboBox->setCurrentIndex(7);
656
if (value == "8") comboBox->setCurrentIndex(8);
657
if (value == "9") comboBox->setCurrentIndex(9);
658
******************************************************/
659
comboBox->setEditable(false);
660
661
662
 
663
 
664
}
665
 
666
667
//! [3]
668
 
669
                                   const QModelIndex &index) const
670
{
671
  //  QSpinBox *spinBox = static_cast<QSpinBox*>(editor);
672
  //  spinBox->interpretText();
673
  //  int value = spinBox->value();
674
675
  //  model->setData(index, value, Qt::EditRole);
676
 
677
    QStringList Name_list;
678
679
    QComboBox *comboBox = static_cast<QComboBox*>(editor);
680
 
681
    currIndex = comboBox->currentIndex();
682
    if (currIndex==-1) return;
683
  //  QString value = comboBox->itemText(currIndex);
684
685
    // ID_list = items.keys();
686
 
687
688
 //   QString value = ID_list.at(currIndex);
689
 
690
    model->setData(index, value, Qt::EditRole);
691
}
692
//! [3]
693
694
//! [4]
695
 
219 pingvin 696
    const QStyleOptionViewItem &option, const QModelIndex &/* index */) const
224 pingvin 697
{
698
    editor->setGeometry(option.rect);
699
}
700
701
702
 
703
 
704
 
705
 
706
 
707
 
708
 
709
 
710
 
711
 
712
 
713
 
714
 
715
 
716
 
717
                       bool calpopup,
123 pingvin 718
                       QObject *parent)
719
               : QItemDelegate(parent),
720
                 m_calpopup(calpopup) {
721
   }
722
723
   QWidget *MyDEDelegate::createEditor(
724
 
725
               const QStyleOptionViewItem& /* option */,
726
               const QModelIndex& /* index */) const {
727
       QDateEdit *editor = new QDateEdit(parent);
728
       editor->setCalendarPopup(m_calpopup);
729
       editor->installEventFilter(const_cast<MyDEDelegate*>(this));
730
       return editor;
731
   }
732
733
   void MyDEDelegate::setEditorData(
734
 
735
                   const QModelIndex &index) const {
736
       QDate value = index.model()->data(
737
               index, Qt::EditRole).toDate();
738
       QDateEdit *de = static_cast<QDateEdit*>(editor);
739
       de->setDate(value);
740
   }
741
742
   void MyDEDelegate::setModelData(
743
 
744
               QAbstractItemModel *model,
745
               const QModelIndex& index) const {
746
       QDateEdit *de = static_cast<QDateEdit*>(editor);
747
       de->interpretText();
748
       QDate value = de->date();
749
       model->setData(index, value);
750
   }
751
752
   void MyDEDelegate::updateEditorGeometry(
753
 
754
               const QStyleOptionViewItem &option,
755
               const QModelIndex& /* index */) const {
756
757
169 pingvin 758
 
759
 
760
 
123 pingvin 761
762
138 pingvin 763
 
764
 
765
 
766
 
767
 
768
   }
769
770
   void CPictureDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const
771
 
772
           m_pxPicture.fill( QColor(Qt::white) );
773
774
           const QAbstractItemModel * model = index.model();
775
 
776
777
           if ( !sFileName.isEmpty() )
778
 
779
           else {
780
               //QItemDelegate::paint(painter, option, index);
781
           return;
782
           }
783
784
           QPalette::ColorGroup cg = (option.state & QStyle::State_Enabled) ?
785
 
786
                                                             QPalette::Disabled;
787
788
            if (option.state & QStyle::State_Selected)
789
 
790
791
           int nX = option.rect.x() + ( ( option.rect.width() - m_pxPicture.rect().width() ) / 2 );
792
 
793
           painter->drawPixmap( nX, nY, m_pxPicture );
794
795
796
 
797
 
798
           /*
799
 
800
           painter->setPen(option.palette.color(QPalette::Mid));
801
           painter->drawLine(option.rect.bottomLeft(), option.rect.bottomRight());
802
           painter->drawLine(option.rect.topRight(), option.rect.bottomRight());
803
           painter->setPen(pen);
804
   */
805
   }
806
807
158 pingvin 808
 
809
 
810
 
811
 
812
   {
813
       int datetime = index.model()->data(index, Qt::DisplayRole).toInt();
814
815
       QString indexvalue = "";
816
 
817
       if (datetime > 0)
818
 
819
           QDateTime dateTime2 = QDateTime();
820
           dateTime2.setTime_t(datetime);
821
           indexvalue = dateTime2.toString(this->timeformat);
822
       }
823
       else
824
       {
825
           indexvalue = tr("Date not set");
826
       }
827
828
       Q_ASSERT(index.isValid());
829
 
830
       QStyleOptionViewItemV3 opt = setOptions(index, option);
831
 
832
       const QStyleOptionViewItemV2 *v2 = qstyleoption_cast<const QStyleOptionViewItemV2 *>(&option);
833
 
834
                       : QStyleOptionViewItemV2::ViewItemFeatures(QStyleOptionViewItemV2::None);
835
       const QStyleOptionViewItemV3 *v3 = qstyleoption_cast<const QStyleOptionViewItemV3 *>(&option);
836
       opt.locale = v3 ? v3->locale : QLocale();
837
       opt.widget = v3 ? v3->widget : 0;
838
839
       // prepare
840
 
841
842
       painter->setClipRect(opt.rect);
843
 
844
       // get the data and the rectangles
845
 
846
847
       QPixmap pixmap;
848
 
849
       value = index.data(Qt::DecorationRole);
850
851
       QString text;
852
 
853
       value = index.data(Qt::DisplayRole);
854
       if (value.isValid()) {
855
           text = indexvalue;
856
           displayRect = textRectangle(painter, option.rect, opt.font, text);
857
       }
858
859
       QRect checkRect;
860
 
861
       value = index.data(Qt::CheckStateRole);
862
       if (value.isValid()) {
863
           checkState = static_cast<Qt::CheckState>(value.toInt());
864
           checkRect = check(opt, opt.rect, value);
865
       }
866
867
       // do the layout
868
 
869
       // draw the item
870
871
       drawBackground(painter, opt, index);
872
 
873
       drawDecoration(painter, opt, decorationRect, pixmap);
874
       drawDisplay(painter, opt, displayRect, text);
875
       drawFocus(painter, opt, displayRect);
876
877
       // done
878
 
879
   }
880
881
180 pingvin 882
 
883
 
884
 
885
 
886
 
887
 
888
   }
889
890
891
 
892
 
893
 
894
 
895
 
896
       const QModelIndex & /* index */) const
897
   {
898
899
       IconForm *editor = new IconForm(parent);
900
 
901
       return editor;
902
 
903
   }
904
 
905
906
 
907
 
908
 
909
 
910
   {
911
912
913
 
914
 
915
       QVariant currentImage = model->data(index,0);
916
       QByteArray bytes = currentImage.toByteArray();
917
       if (currentImage.isValid()) {
918
            m_pxPicture.loadFromData(bytes);
919
       }
920
       else {
921
           //QItemDelegate::paint(painter, option, index);
922
923
924
 
925
 
926
       icnFrm->setPixmap(m_pxPicture);
927
     //  tblView->setRowHeight(index.row(), icnFrm->geometry().height());
928
   }
929
930
931
 
932
 
933
 
934
 
935
               QAbstractItemModel *model,
936
               const QModelIndex& index) const {
937
       IconForm *icnFrm = static_cast<IconForm*>(editor);
938
       if (!(icnFrm->dataIsChanged())) return;
939
940
       m_pxPicture = icnFrm->pixmap();
941
 
942
          QByteArray bytes;
943
          QBuffer buffer(&bytes);
944
          buffer.open(QIODevice::WriteOnly);
945
          currentImage.save(&buffer, "PNG");
946
947
948
 
949
 
950
 
951
 
952
     //    int widht = m_pxPicture.width();
953
 
954
     //    tblView->setRowHeight(index.row(), heigh + 10);
955
         // model->submitAll();
956
957
958
 
959
 
960
 
961
 
962
963
964
 
965
 
966
 
967
               const QStyleOptionViewItem &option,
968
               const QModelIndex& /* index */) const {
969
970
971
 
972
 
973
974
        editor->setGeometry(option.rect);
975
 
976
977
978
 
979
 
980
 
981
 
982
983
984
 
985
 
986
          const QAbstractItemModel * model = index.model();
987
 
988
989
          QVariant currentImage = model->data(index,0);
990
 
991
992
 
993
 
994
     //       image.loadFromData(bytes);
995
996
997
 
998
 
999
1000
           }
1001
 
1002
               //QItemDelegate::paint(painter, option, index);
1003
           return;
1004
           }
1005
1006
1007
 
1008
 
1009
 
1010
 
1011
 
1012
           if ( !sFileName.isEmpty() )
1013
 
1014
           else {
1015
               //QItemDelegate::paint(painter, option, index);
1016
           return;
1017
           }
1018
*/
1019
1020
1021
 
1022
 
205 pingvin 1023
 
1024
 
1025
 
180 pingvin 1026
                                                             QPalette::Disabled;
1027
1028
            if (option.state & QStyle::State_Selected)
1029
 
1030
1031
 
1032
 
1033
1034
 
205 pingvin 1035
 
1036
 
180 pingvin 1037
   //        painter->setRenderHint(QPainter::Antialiasing);
1038
           painter->drawPixmap( nX, nY, m_pxPicture );
205 pingvin 1039
180 pingvin 1040
       //    drawFocus(painter, option, option.rect.adjusted(0, 0, -1, -1)); // since we draw the grid ourselves
1041
 
1042
           /*
1043
 
1044
           painter->setPen(option.palette.color(QPalette::Mid));
1045
           painter->drawLine(option.rect.bottomLeft(), option.rect.bottomRight());
1046
           painter->drawLine(option.rect.topRight(), option.rect.bottomRight());
1047
           painter->setPen(pen);
1048
   */
1049
}
1050
1051
1052
 
1053
 
1054
   }
1055
1056
201 pingvin 1057
 
1058
 
1059
 
1060
 
1061
 
1062
 
1063
 
1064
 
1065
   }
1066
1067
1068
 
1069
 
1070
 
1071
 
1072
 
1073
       const QModelIndex & /* index */) const
1074
   {
1075
1076
       FileForm *editor = new FileForm(parent);
1077
 
1078
       return editor;
1079
 
1080
   }
1081
 
1082
1083
 
1084
 
1085
 
1086
 
1087
   {
1088
1089
1090
 
1091
 
1092
       QVariant currentData = model->data(index,Qt::EditRole);
1093
202 pingvin 1094
      // QVariant currentData = QSqlTableModel::data(index, 0);
1095
 
1096
       if (currentData.isValid()) flFrm->setData(bytes);
201 pingvin 1097
       else return;
1098
1099
   }
1100
 
1101
1102
 
1103
 
1104
 
1105
 
1106
               QAbstractItemModel *model,
1107
               const QModelIndex& index) const {
1108
       FileForm *flFrm = static_cast<FileForm*>(editor);
1109
       if (!(flFrm->dataIsChanged())) return;
1110
1111
       m_Data = flFrm->data();
1112
 
1113
                                   model->setData(index, QVariant (m_Data), Qt::EditRole);
1114
1115
                              }
1116
 
1117
           QVariant val_null;
1118
           model->setData(index, val_null, Qt::EditRole);
1119
1120
            }
1121
 
1122
1123
 
1124
 
1125
 
1126
1127
 
1128
 
1129
 
1130
               const QStyleOptionViewItem &option,
1131
               const QModelIndex& /* index */) const {
1132
1133
1134
 
1135
 
1136
1137
        editor->setGeometry(option.rect);
1138
 
1139