~ubuntu-branches/ubuntu/wily/tora/wily-proposed

« back to all changes in this revision

Viewing changes to src/ui_totoolsettingui.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Meskes
  • Date: 2009-09-11 12:37:52 UTC
  • mfrom: (1.2.8 upstream) (3.3.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090911123752-qhu322xlclo2hpqu
Tags: 2.1.0-1
* New upstream version, the rebuild closes: #540046.
* Bumped Standards-Version to 3.8.3, no changes needed.
* New project homepage.
* Removed no longer needed 01_missing_includes.dpatch.
* Removed no longer used dh_desktop call.
* Added README.source file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/********************************************************************************
2
 
** Form generated from reading ui file 'totoolsettingui.ui'
3
 
**
4
 
** Created: Mon Nov 3 14:34:34 2008
5
 
**      by: Qt User Interface Compiler version 4.4.0
6
 
**
7
 
** WARNING! All changes made in this file will be lost when recompiling ui file!
8
 
********************************************************************************/
9
 
 
10
 
#ifndef UI_TOTOOLSETTINGUI_H
11
 
#define UI_TOTOOLSETTINGUI_H
12
 
 
13
 
#include <QtCore/QVariant>
14
 
#include <QtGui/QAction>
15
 
#include <QtGui/QApplication>
16
 
#include <QtGui/QButtonGroup>
17
 
#include <QtGui/QComboBox>
18
 
#include <QtGui/QGridLayout>
19
 
#include <QtGui/QLabel>
20
 
#include <QtGui/QWidget>
21
 
#include "totreewidget.h"
22
 
 
23
 
QT_BEGIN_NAMESPACE
24
 
 
25
 
class Ui_toToolSettingUI
26
 
{
27
 
public:
28
 
    QGridLayout *gridLayout;
29
 
    toTreeWidget *Enabled;
30
 
    QComboBox *DefaultTool;
31
 
    QLabel *TextLabel2;
32
 
    QLabel *TextLabel1;
33
 
    QLabel *TextLabel3;
34
 
 
35
 
    void setupUi(QWidget *toToolSettingUI)
36
 
    {
37
 
    if (toToolSettingUI->objectName().isEmpty())
38
 
        toToolSettingUI->setObjectName(QString::fromUtf8("toToolSettingUI"));
39
 
    toToolSettingUI->resize(592, 480);
40
 
    gridLayout = new QGridLayout(toToolSettingUI);
41
 
    gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
42
 
    gridLayout->setHorizontalSpacing(6);
43
 
    gridLayout->setVerticalSpacing(6);
44
 
    gridLayout->setContentsMargins(0, 0, 0, 0);
45
 
    Enabled = new toTreeWidget(toToolSettingUI);
46
 
    Enabled->setObjectName(QString::fromUtf8("Enabled"));
47
 
    Enabled->setSelectionMode(QAbstractItemView::MultiSelection);
48
 
    Enabled->setAllColumnsShowFocus(true);
49
 
 
50
 
    gridLayout->addWidget(Enabled, 2, 0, 1, 1);
51
 
 
52
 
    DefaultTool = new QComboBox(toToolSettingUI);
53
 
    DefaultTool->setObjectName(QString::fromUtf8("DefaultTool"));
54
 
 
55
 
    gridLayout->addWidget(DefaultTool, 4, 0, 1, 1);
56
 
 
57
 
    TextLabel2 = new QLabel(toToolSettingUI);
58
 
    TextLabel2->setObjectName(QString::fromUtf8("TextLabel2"));
59
 
    TextLabel2->setWordWrap(false);
60
 
 
61
 
    gridLayout->addWidget(TextLabel2, 3, 0, 1, 1);
62
 
 
63
 
    TextLabel1 = new QLabel(toToolSettingUI);
64
 
    TextLabel1->setObjectName(QString::fromUtf8("TextLabel1"));
65
 
    TextLabel1->setWordWrap(false);
66
 
 
67
 
    gridLayout->addWidget(TextLabel1, 1, 0, 1, 1);
68
 
 
69
 
    TextLabel3 = new QLabel(toToolSettingUI);
70
 
    TextLabel3->setObjectName(QString::fromUtf8("TextLabel3"));
71
 
    QFont font;
72
 
    font.setBold(true);
73
 
    font.setWeight(75);
74
 
    TextLabel3->setFont(font);
75
 
    TextLabel3->setAlignment(Qt::AlignCenter);
76
 
    TextLabel3->setWordWrap(false);
77
 
 
78
 
    gridLayout->addWidget(TextLabel3, 0, 0, 1, 1);
79
 
 
80
 
    TextLabel2->setBuddy(DefaultTool);
81
 
    TextLabel1->setBuddy(Enabled);
82
 
    QWidget::setTabOrder(Enabled, DefaultTool);
83
 
 
84
 
    retranslateUi(toToolSettingUI);
85
 
    QObject::connect(Enabled, SIGNAL(selectionChanged()), toToolSettingUI, SLOT(changeEnable()));
86
 
 
87
 
    QMetaObject::connectSlotsByName(toToolSettingUI);
88
 
    } // setupUi
89
 
 
90
 
    void retranslateUi(QWidget *toToolSettingUI)
91
 
    {
92
 
    toToolSettingUI->setWindowTitle(QApplication::translate("toToolSettingUI", "Form1", 0, QApplication::UnicodeUTF8));
93
 
    Enabled->headerItem()->setText(0, QApplication::translate("toToolSettingUI", "Tool", 0, QApplication::UnicodeUTF8));
94
 
 
95
 
#ifndef QT_NO_TOOLTIP
96
 
    TextLabel2->setToolTip(QApplication::translate("toToolSettingUI", "Select the default tool to pop up when opening a new connection.", 0, QApplication::UnicodeUTF8));
97
 
#endif // QT_NO_TOOLTIP
98
 
 
99
 
    TextLabel2->setText(QApplication::translate("toToolSettingUI", "&Default tool", 0, QApplication::UnicodeUTF8));
100
 
 
101
 
#ifndef QT_NO_TOOLTIP
102
 
    TextLabel1->setToolTip(QApplication::translate("toToolSettingUI", "Select which tools should show up in the menu and toolbar.", 0, QApplication::UnicodeUTF8));
103
 
#endif // QT_NO_TOOLTIP
104
 
 
105
 
    TextLabel1->setText(QApplication::translate("toToolSettingUI", "&Enabled tools", 0, QApplication::UnicodeUTF8));
106
 
    TextLabel3->setText(QApplication::translate("toToolSettingUI", "You must restart for any of these changes to have effect.", 0, QApplication::UnicodeUTF8));
107
 
    Q_UNUSED(toToolSettingUI);
108
 
    } // retranslateUi
109
 
 
110
 
};
111
 
 
112
 
namespace Ui {
113
 
    class toToolSettingUI: public Ui_toToolSettingUI {};
114
 
} // namespace Ui
115
 
 
116
 
QT_END_NAMESPACE
117
 
 
118
 
#endif // UI_TOTOOLSETTINGUI_H