Subversion Repositories svn1-original

Rev

Rev 225 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 225 Rev 227
Line 25... Line 25...
25
 
25
 
26
    QVBoxLayout *verticalLayout;
26
    QVBoxLayout *verticalLayout;
27
    verticalLayout = new QVBoxLayout(this);
27
    verticalLayout = new QVBoxLayout(this);
28
    verticalLayout->setContentsMargins(0, 0, 0, 0);
28
    verticalLayout->setContentsMargins(0, 0, 0, 0);
29
 
29
 
-
 
30
    QVBoxLayout *verticalLayout2;
-
 
31
    verticalLayout2 = new QVBoxLayout(this);
-
 
32
    verticalLayout2->setContentsMargins(5, 5, 5, 5);
-
 
33
 
30
    QHBoxLayout *horizontalLayout;
34
    QHBoxLayout *horizontalLayout;
31
    horizontalLayout = new QHBoxLayout();
35
    horizontalLayout = new QHBoxLayout();
32
 
36
 
33
    groupBox = new QGroupBox(this);
37
    groupBox = new QGroupBox(this);
34
    groupBox->setTitle("Data");
38
    groupBox->setTitle("Data");
35
    //groupBox->setGeometry(QRect(10, 0, 531, 451));
39
    //groupBox->setGeometry(QRect(10, 0, 531, 451));
36
     verticalLayout->addWidget(groupBox);
40
     verticalLayout->addWidget(groupBox);
-
 
41
     //verticalLayout->addLayout(verticalLayout2);
-
 
42
     groupBox->setLayout(verticalLayout2);
37
 
43
 
38
     tableWidget = new QTableWidget(groupBox);
44
     tableWidget = new QTableWidget(groupBox);
39
     tableWidget->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
45
     tableWidget->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
40
     tableWidget->setGeometry(QRect(15, 21, 501, 421));
46
     tableWidget->setGeometry(QRect(15, 21, 501, 421));
41
     tableWidget->setCornerButtonEnabled(false);
47
     tableWidget->setCornerButtonEnabled(false);
42
     tableWidget->verticalHeader()->setVisible(false);
48
     tableWidget->verticalHeader()->setVisible(false);
43
     tableWidget->verticalHeader()->setDefaultSectionSize(20);
49
     tableWidget->verticalHeader()->setDefaultSectionSize(20);
44
     tableWidget->verticalHeader()->setHighlightSections(true);
50
     tableWidget->verticalHeader()->setHighlightSections(true);
-
 
51
     verticalLayout2->addWidget(tableWidget);
45
 
52
 
46
    fileName = new QLineEdit(this);
53
    fileName = new QLineEdit(this);
47
    fileName->setObjectName(QString::fromUtf8("fileName"));
54
    fileName->setObjectName(QString::fromUtf8("fileName"));
48
    fileName->setGeometry(QRect(20, 470, 331, 20));
55
    fileName->setGeometry(QRect(20, 470, 331, 20));
49
    fileName->setReadOnly(true);
56
    fileName->setReadOnly(true);