00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef UI_SOCIALIMESETTINGS_H
00011 #define UI_SOCIALIMESETTINGS_H
00012
00013 #include <QtCore/QVariant>
00014 #include <QtGui/QAction>
00015 #include <QtGui/QApplication>
00016 #include <QtGui/QButtonGroup>
00017 #include <QtGui/QFormLayout>
00018 #include <QtGui/QHeaderView>
00019 #include <QtGui/QLabel>
00020 #include <QtGui/QLineEdit>
00021 #include <QtGui/QTabWidget>
00022 #include <QtGui/QVBoxLayout>
00023 #include <QtGui/QWidget>
00024
00025 QT_BEGIN_NAMESPACE
00026
00027 class Ui_SocialIMESettings
00028 {
00029 public:
00030 QVBoxLayout *verticalLayout;
00031 QTabWidget *tabWidget;
00032 QWidget *tab;
00033 QFormLayout *formLayout;
00034 QLabel *label;
00035 QLineEdit *user;
00036
00037 void setupUi(QWidget *SocialIMESettings)
00038 {
00039 if (SocialIMESettings->objectName().isEmpty())
00040 SocialIMESettings->setObjectName(QString::fromUtf8("SocialIMESettings"));
00041 SocialIMESettings->resize(400, 300);
00042 verticalLayout = new QVBoxLayout(SocialIMESettings);
00043 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
00044 tabWidget = new QTabWidget(SocialIMESettings);
00045 tabWidget->setObjectName(QString::fromUtf8("tabWidget"));
00046 tab = new QWidget();
00047 tab->setObjectName(QString::fromUtf8("tab"));
00048 formLayout = new QFormLayout(tab);
00049 formLayout->setObjectName(QString::fromUtf8("formLayout"));
00050 label = new QLabel(tab);
00051 label->setObjectName(QString::fromUtf8("label"));
00052
00053 formLayout->setWidget(0, QFormLayout::LabelRole, label);
00054
00055 user = new QLineEdit(tab);
00056 user->setObjectName(QString::fromUtf8("user"));
00057
00058 formLayout->setWidget(0, QFormLayout::FieldRole, user);
00059
00060 tabWidget->addTab(tab, QString());
00061
00062 verticalLayout->addWidget(tabWidget);
00063
00064 #ifndef QT_NO_SHORTCUT
00065 label->setBuddy(user);
00066 #endif // QT_NO_SHORTCUT
00067
00068 retranslateUi(SocialIMESettings);
00069
00070 tabWidget->setCurrentIndex(0);
00071
00072
00073 QMetaObject::connectSlotsByName(SocialIMESettings);
00074 }
00075
00076 void retranslateUi(QWidget *SocialIMESettings)
00077 {
00078 label->setText(QApplication::translate("SocialIMESettings", "&User:", 0, QApplication::UnicodeUTF8));
00079 tabWidget->setTabText(tabWidget->indexOf(tab), QApplication::translate("SocialIMESettings", "&Social IME", 0, QApplication::UnicodeUTF8));
00080 Q_UNUSED(SocialIMESettings);
00081 }
00082
00083 };
00084
00085 namespace Ui {
00086 class SocialIMESettings: public Ui_SocialIMESettings {};
00087 }
00088
00089 QT_END_NAMESPACE
00090
00091 #endif // UI_SOCIALIMESETTINGS_H