mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-23 22:01:05 -05:00
Added icons for create & post to pulse
* Added icons for create & post to pulse * Changed Subscribe strings to Follow/Unfollow * Added Label for Follow list
This commit is contained in:
parent
27f2a191c8
commit
519fb01536
@ -1,15 +1,5 @@
|
||||
<RCC>
|
||||
<qresource prefix="/" >
|
||||
<file>images/kuickshow.png</file>
|
||||
<file>images/kview_24.png</file>
|
||||
<file>images/kview_64.png</file>
|
||||
<file>images/album_64.png</file>
|
||||
<file>images/album_subscribe.png</file>
|
||||
<file>images/album_unsubscribe.png</file>
|
||||
<file>images/album_create_64.png</file>
|
||||
<file>images/album_default_128.png</file>
|
||||
<file>images/my_album_48.png</file>
|
||||
<file>images/subscribed_album_48.png</file>
|
||||
<file>images/friends_album_48.png</file>
|
||||
<file>images/compose.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
@ -40,6 +40,13 @@
|
||||
<property name="text">
|
||||
<string>Create Account</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/icons/png/add.png</normaloff>:/icons/png/add.png</iconset>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextBesideIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@ -47,6 +54,13 @@
|
||||
<property name="text">
|
||||
<string>Post Pulse</string>
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="TheWire_images.qrc">
|
||||
<normaloff>:/images/compose.png</normaloff>:/images/compose.png</iconset>
|
||||
</property>
|
||||
<property name="toolButtonStyle">
|
||||
<enum>Qt::ToolButtonTextBesideIcon</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@ -143,7 +157,7 @@
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Subscribed</string>
|
||||
<string>Following</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
@ -153,6 +167,20 @@
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="followLabel">
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>10</pointsize>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Who to Follow</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QScrollArea" name="scrollArea_2">
|
||||
<property name="widgetResizable">
|
||||
@ -163,8 +191,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>231</width>
|
||||
<height>435</height>
|
||||
<width>228</width>
|
||||
<height>421</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
||||
@ -291,8 +319,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>429</width>
|
||||
<height>435</height>
|
||||
<width>431</width>
|
||||
<height>443</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
@ -339,6 +367,7 @@
|
||||
</widget>
|
||||
<resources>
|
||||
<include location="TheWire_images.qrc"/>
|
||||
<include location="../icons.qrc"/>
|
||||
</resources>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
@ -64,13 +64,13 @@ void WireGroupItem::setGroupSet()
|
||||
}
|
||||
else if (mGroup.mMeta.mSubscribeFlags & GXS_SERV::GROUP_SUBSCRIBE_SUBSCRIBED)
|
||||
{
|
||||
toolButton_type->setText("Subcribed");
|
||||
toolButton_subscribe->setText("Unsubcribe");
|
||||
toolButton_type->setText("Following");
|
||||
toolButton_subscribe->setText("Unfollow");
|
||||
}
|
||||
else
|
||||
{
|
||||
toolButton_type->setText("Other");
|
||||
toolButton_subscribe->setText("Subcribe");
|
||||
toolButton_subscribe->setText("Follow");
|
||||
}
|
||||
}
|
||||
|
||||
|
BIN
retroshare-gui/src/gui/TheWire/images/compose.png
Normal file
BIN
retroshare-gui/src/gui/TheWire/images/compose.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
@ -1240,7 +1240,8 @@ gxsthewire {
|
||||
gui/TheWire/WireGroupItem.cpp \
|
||||
gui/TheWire/WireGroupDialog.cpp \
|
||||
gui/TheWire/PulseAddDialog.cpp \
|
||||
|
||||
|
||||
RESOURCES += gui/TheWire/TheWire_images.qrc
|
||||
}
|
||||
|
||||
identities {
|
||||
|
Loading…
Reference in New Issue
Block a user