Хранилища Subversion OpenInventory

Редакция

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