~mhall119/ubuntu-app-reviews/qtranscribe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/********************************************************************************
** Form generated from reading UI file 'footPedalWindow.ui'
**
** Created: Mon Jun 25 18:50:04 2012
**      by: Qt User Interface Compiler version 4.8.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/

#ifndef UI_FOOTPEDALWINDOW_H
#define UI_FOOTPEDALWINDOW_H

#include <QtCore/QVariant>
#include <QtGui/QAction>
#include <QtGui/QApplication>
#include <QtGui/QButtonGroup>
#include <QtGui/QHBoxLayout>
#include <QtGui/QHeaderView>
#include <QtGui/QLabel>
#include <QtGui/QListView>
#include <QtGui/QMainWindow>
#include <QtGui/QPushButton>
#include <QtGui/QSpacerItem>
#include <QtGui/QTableView>
#include <QtGui/QVBoxLayout>
#include <QtGui/QWidget>

QT_BEGIN_NAMESPACE

class Ui_footPedalWindow
{
public:
    QWidget *centralwidget;
    QVBoxLayout *verticalLayout;
    QLabel *label;
    QListView *deviceList;
    QSpacerItem *verticalSpacer;
    QLabel *label_2;
    QLabel *label_3;
    QTableView *mappingTable;
    QHBoxLayout *horizontalLayout;
    QSpacerItem *horizontalSpacer;
    QPushButton *cancelButton;
    QPushButton *OkayButton;

    void setupUi(QMainWindow *footPedalWindow)
    {
        if (footPedalWindow->objectName().isEmpty())
            footPedalWindow->setObjectName(QString::fromUtf8("footPedalWindow"));
        footPedalWindow->resize(400, 600);
        centralwidget = new QWidget(footPedalWindow);
        centralwidget->setObjectName(QString::fromUtf8("centralwidget"));
        verticalLayout = new QVBoxLayout(centralwidget);
        verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
        label = new QLabel(centralwidget);
        label->setObjectName(QString::fromUtf8("label"));
        label->setAlignment(Qt::AlignCenter);

        verticalLayout->addWidget(label);

        deviceList = new QListView(centralwidget);
        deviceList->setObjectName(QString::fromUtf8("deviceList"));
        QSizePolicy sizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
        sizePolicy.setHorizontalStretch(0);
        sizePolicy.setVerticalStretch(0);
        sizePolicy.setHeightForWidth(deviceList->sizePolicy().hasHeightForWidth());
        deviceList->setSizePolicy(sizePolicy);
        deviceList->setMaximumSize(QSize(16777215, 125));
        deviceList->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);

        verticalLayout->addWidget(deviceList);

        verticalSpacer = new QSpacerItem(32, 32, QSizePolicy::Minimum, QSizePolicy::Fixed);

        verticalLayout->addItem(verticalSpacer);

        label_2 = new QLabel(centralwidget);
        label_2->setObjectName(QString::fromUtf8("label_2"));
        label_2->setAlignment(Qt::AlignCenter);

        verticalLayout->addWidget(label_2);

        label_3 = new QLabel(centralwidget);
        label_3->setObjectName(QString::fromUtf8("label_3"));
        QFont font;
        font.setItalic(true);
        label_3->setFont(font);
        label_3->setWordWrap(true);

        verticalLayout->addWidget(label_3);

        mappingTable = new QTableView(centralwidget);
        mappingTable->setObjectName(QString::fromUtf8("mappingTable"));
        sizePolicy.setHeightForWidth(mappingTable->sizePolicy().hasHeightForWidth());
        mappingTable->setSizePolicy(sizePolicy);
        mappingTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
        mappingTable->setSelectionMode(QAbstractItemView::SingleSelection);
        mappingTable->setSelectionBehavior(QAbstractItemView::SelectRows);

        verticalLayout->addWidget(mappingTable);

        horizontalLayout = new QHBoxLayout();
        horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
        horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);

        horizontalLayout->addItem(horizontalSpacer);

        cancelButton = new QPushButton(centralwidget);
        cancelButton->setObjectName(QString::fromUtf8("cancelButton"));

        horizontalLayout->addWidget(cancelButton);

        OkayButton = new QPushButton(centralwidget);
        OkayButton->setObjectName(QString::fromUtf8("OkayButton"));

        horizontalLayout->addWidget(OkayButton);


        verticalLayout->addLayout(horizontalLayout);

        footPedalWindow->setCentralWidget(centralwidget);

        retranslateUi(footPedalWindow);

        QMetaObject::connectSlotsByName(footPedalWindow);
    } // setupUi

    void retranslateUi(QMainWindow *footPedalWindow)
    {
        footPedalWindow->setWindowTitle(QApplication::translate("footPedalWindow", "Configure Foot Pedal", 0, QApplication::UnicodeUTF8));
        label->setText(QApplication::translate("footPedalWindow", "Found Devices", 0, QApplication::UnicodeUTF8));
        label_2->setText(QApplication::translate("footPedalWindow", "Pedal Mappings", 0, QApplication::UnicodeUTF8));
        label_3->setText(QApplication::translate("footPedalWindow", "Double click on a row to change the effect of pressing down that pedal.", 0, QApplication::UnicodeUTF8));
        cancelButton->setText(QApplication::translate("footPedalWindow", "Cancel", 0, QApplication::UnicodeUTF8));
        OkayButton->setText(QApplication::translate("footPedalWindow", "OK", 0, QApplication::UnicodeUTF8));
    } // retranslateUi

};

namespace Ui {
    class footPedalWindow: public Ui_footPedalWindow {};
} // namespace Ui

QT_END_NAMESPACE

#endif // UI_FOOTPEDALWINDOW_H