Stylized the widgets

preferencesAboutTextFull
shibakaneki 13 years ago
parent 883d22be7b
commit 0aab9a9957
  1. 1
      resources/style.qss
  2. 9
      src/gui/UBTeacherBarWidget.cpp

@ -1,7 +1,6 @@
QWidget#DockPaletteWidgetBox, QWidget#DockPaletteWidgetBox,
QWidget#documentNavigator, QWidget#documentNavigator,
QWidget#UBLibPathViewer, QWidget#UBLibPathViewer,
QWidget#UBTeacherStudentAction,
QWidget#UBLibNavigatorWidget, QWidget#UBLibNavigatorWidget,
QWidget#UBLibItemProperties, QWidget#UBLibItemProperties,
QWidget#UBDownloadWidget, QWidget#UBDownloadWidget,

@ -309,6 +309,8 @@ UBTeacherStudentAction::UBTeacherStudentAction(QWidget *parent, const char *name
mpComboLayout = new QVBoxLayout(); mpComboLayout = new QVBoxLayout();
mpCombo = new QComboBox(this); mpCombo = new QComboBox(this);
mpCombo->setObjectName("DockPaletteWidgetComboBox");
mpCombo->setMinimumWidth(80);
mpCombo->addItem(tr("Teacher")); mpCombo->addItem(tr("Teacher"));
mpCombo->addItem(tr("Student")); mpCombo->addItem(tr("Student"));
mpComboLayout->addWidget(mpCombo, 0); mpComboLayout->addWidget(mpCombo, 0);
@ -317,6 +319,9 @@ UBTeacherStudentAction::UBTeacherStudentAction(QWidget *parent, const char *name
mpLayout->addLayout(mpComboLayout, 0); mpLayout->addLayout(mpComboLayout, 0);
mpText = new QTextEdit(this); mpText = new QTextEdit(this);
mpText->setObjectName("DockPaletteWidgetBox");
mpText->setStyleSheet("background:white;");
mpLayout->addWidget(mpText, 1); mpLayout->addWidget(mpText, 1);
} }
@ -449,11 +454,15 @@ UBUrlWidget::UBUrlWidget(QWidget *parent, const char *name):QWidget(parent)
, mpUrl(NULL) , mpUrl(NULL)
{ {
setObjectName(name); setObjectName(name);
setAttribute(Qt::WA_StyledBackground, true);
setStyleSheet(UBApplication::globalStyleSheet());
mpLayout = new QHBoxLayout(this); mpLayout = new QHBoxLayout(this);
setLayout(mpLayout); setLayout(mpLayout);
mpUrlLabel = new QLabel(tr("Url"), this); mpUrlLabel = new QLabel(tr("Url"), this);
mpLayout->addWidget(mpUrlLabel, 0); mpLayout->addWidget(mpUrlLabel, 0);
mpUrl = new QLineEdit(this); mpUrl = new QLineEdit(this);
mpUrl->setObjectName("DockPaletteWidgetLineEdit");
mpLayout->addWidget(mpUrl, 1); mpLayout->addWidget(mpUrl, 1);
} }

Loading…
Cancel
Save