mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 06:06:10 -04:00
added help strings to posted, channels, forums
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7525 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
49cc42ae7d
commit
0fb8ff8829
9 changed files with 162 additions and 130 deletions
|
@ -38,6 +38,22 @@ GxsChannelDialog::~GxsChannelDialog()
|
|||
{
|
||||
}
|
||||
|
||||
QString GxsChannelDialog::getHelpString() const
|
||||
{
|
||||
QString hlp_str = tr("<h1><img width=\"32\" src=\":/images/64px_help.png\"> Channels</h1> \
|
||||
<p>Channels allow you to post data (e.g. movies, music) that will spread in the network</p> \
|
||||
<p>You can see the channels your friends are subscribed to, and you automatically forward subscribed channels to \
|
||||
your friends. This promotes good channels in the network.</p>\
|
||||
<p>Only the channel's creator can post on that channel. Other peers \
|
||||
in the network can only read from it, unless the channel is private. You can however share \
|
||||
the posting rights or the reading rights with friend Retroshare nodes.</p>\
|
||||
<p>Channels can be made anonymous, or attached to a Retroshare identity so that readers can contact you if needed.\
|
||||
Enable \"Allow Comments\" if you want to let users comment on your posts.</p>\
|
||||
") ;
|
||||
|
||||
return hlp_str ;
|
||||
}
|
||||
|
||||
UserNotify *GxsChannelDialog::getUserNotify(QObject *parent)
|
||||
{
|
||||
return new GxsChannelUserNotify(rsGxsChannels, parent);
|
||||
|
|
|
@ -45,6 +45,7 @@ public:
|
|||
protected:
|
||||
virtual RetroShareLink::enumType getLinkType() { return RetroShareLink::TYPE_CHANNEL; }
|
||||
virtual GroupFrameSettings::Type groupFrameSettingsType() { return GroupFrameSettings::Channel; }
|
||||
virtual QString getHelpString() const ;
|
||||
|
||||
private slots:
|
||||
void toggleAutoDownload();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue