Changeset 10 in tspsg-svn
- Timestamp:
- Oct 19, 2007, 3:41:00 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/settingsdialog.cpp
r9 r10 36 36 setWindowFlags(windowFlags() ^ Qt::WindowContextHelpButtonHint); 37 37 layout()->setSizeConstraint(layout()->SetFixedSize); 38 // Setting initial text of dialog hint label to own status tip text 38 // Setting initial text of dialog hint label to own status tip 39 // text. 39 40 labelHint->setText(labelHint->statusTip()); 41 // HACK: Do not resize label hint (and dialog) when text changes 42 // from one-line to two-line and vice versa. Any better solution? 43 labelHint->setMaximumHeight(labelHint->height()); 44 labelHint->setMinimumHeight(labelHint->height()); 40 45 } 41 46 … … 44 49 // Checking for StatusTip event and if tip text is not empty string 45 50 // setting it as text of the dialog hint label. Otherwise, setting 46 // dialog hint label text to own status tip text 51 // dialog hint label text to own status tip text. 47 52 if (ev->type() == QEvent::StatusTip) { 48 53 QString tip = static_cast<QStatusTipEvent *>(ev)->tip(); -
trunk/ui/settingsdialog.ui
r7 r10 6 6 <x>0</x> 7 7 <y>0</y> 8 <width>4 40</width>9 <height>17 6</height>8 <width>436</width> 9 <height>172</height> 10 10 </rect> 11 11 </property> … … 303 303 </property> 304 304 <property name="statusTip" > 305 <string> Открывать окно в том же положении и с теми же размерами, с какими оно было закрыто</string>305 <string>Восстанавливать состояние и размеры окна после перезапуска программы</string> 306 306 </property> 307 307 <property name="text" > … … 381 381 </sizepolicy> 382 382 </property> 383 <property name="minimumSize" >384 <size>385 <width>235</width>386 <height>30</height>387 </size>388 </property>389 383 <property name="statusTip" > 390 <string>Наведите указателем мыши на требуемый элемент диалога, чтоб получить подсказку</string> 384 <string>Наведите указатель мыши на элемент диалога, чтоб получить подсказку</string> 385 </property> 386 <property name="text" > 387 <string/> 391 388 </property> 392 389 <property name="textFormat" > … … 394 391 </property> 395 392 <property name="alignment" > 396 <set>Qt::AlignJustify|Qt::Align VCenter</set>393 <set>Qt::AlignJustify|Qt::AlignTop</set> 397 394 </property> 398 395 <property name="wordWrap" >
Note: See TracChangeset
for help on using the changeset viewer.