mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Enabled to display the Notes text on the Post Item
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7011 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
c869fd863d
commit
ff8e30db55
@ -103,12 +103,12 @@ void PostedItem::setContent(const RsPostedPost &post)
|
||||
scoreLabel->setText(score);
|
||||
|
||||
// FIX THIS UP LATER.
|
||||
//notes->setPlainText(QString::fromUtf8(post.mNotes.c_str()));
|
||||
notes->setText(QString::fromUtf8(post.mNotes.c_str()));
|
||||
// differences between Feed or Top of Comment.
|
||||
if (mParent)
|
||||
{
|
||||
// feed.
|
||||
//frame_notes->hide();
|
||||
frame_notes->hide();
|
||||
//frame_comment->show();
|
||||
commentButton->show();
|
||||
|
||||
@ -127,7 +127,14 @@ void PostedItem::setContent(const RsPostedPost &post)
|
||||
else
|
||||
{
|
||||
// no feed.
|
||||
//frame_notes->show();
|
||||
if(notes->text().isEmpty())
|
||||
{
|
||||
frame_notes->hide();
|
||||
}
|
||||
else
|
||||
{
|
||||
frame_notes->show();
|
||||
}
|
||||
//frame_comment->hide();
|
||||
commentButton->hide();
|
||||
}
|
||||
|
@ -7,7 +7,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>667</width>
|
||||
<height>119</height>
|
||||
<height>156</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="font">
|
||||
@ -34,10 +34,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">QFrame#frame{border: 2px solid #CCCCCC;
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #EEEEEE, stop: 1 #CCCCCC);
|
||||
border-radius: 10px}</string>
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
@ -48,6 +45,9 @@ border-radius: 10px}</string>
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
<item row="0" column="0" rowspan="2">
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<property name="spacing">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QToolButton" name="voteUpButton">
|
||||
<property name="minimumSize">
|
||||
@ -280,6 +280,34 @@ border-radius: 10px}</string>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QFrame" name="frame_notes">
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="gridLayout_2">
|
||||
<property name="margin">
|
||||
<number>1</number>
|
||||
</property>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="notes">
|
||||
<property name="styleSheet">
|
||||
<string notr="true"/>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
|
@ -540,6 +540,7 @@ MessageWidget QFrame#decryptFrame {
|
||||
background: #CCFFCC;
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #CCFFCC, stop:1 #AAFFAA);
|
||||
}
|
||||
|
||||
/* Posted Links */
|
||||
|
||||
PostedCreatePostDialog QLabel#info_label {
|
||||
@ -548,3 +549,14 @@ PostedCreatePostDialog QLabel#info_label {
|
||||
background: #FFFFD7;
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2);
|
||||
}
|
||||
|
||||
PostedItem QFrame#frame {
|
||||
border: 2px solid #CCCCCC;
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #EEEEEE, stop: 1 #CCCCCC);
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
PostedItem QLabel#notes {
|
||||
border: 2px solid #CCCCCC;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user