202 {
203
207 lblLinksText << "<html>"
208 << "<head/>"
209 << "<body><table style=\"width:100%\" cellpadding=\"30\"><tr><td>"
210 << i18n("<p><span style=\" color:%1;\"><b>Using Krita</b></span></p>",color);
211
212#ifdef Q_OS_MACOS
213
215#endif
216
217 lblLinksText << i18n("<p><a href=\"https://krita.org/support-us/\"><span style=\" text-decoration: underline; color:%1;\">Support Krita's Development!</span></a></p>",color)
218 << i18n("<p><a href=\"https://krita.org/\"><span style=\" text-decoration: underline; color:%1;\">Krita Website</span></a></p>",color);
219#ifdef Q_OS_MACOS
220 }
221#endif
222 lblLinksText << i18n("<p><a href=\"https://docs.krita.org/en/user_manual/getting_started.html\"><span style=\" text-decoration: underline; color:%1;\">Getting Started</span></a></p>",color)
223 << i18n("<p><a href=\"https://docs.krita.org/\"><span style=\" text-decoration: underline; color:%1;\">Manual</span></a></p>",color)
224 << "</td><td>"
225 << i18n("<p><span style=\" color:%1;\"><b>Coding Krita</b></span></p>",color)
226 << i18n("<p><a href=\"https://krita-artists.org\"><span style=\" text-decoration: underline; color:%1;\">User Community</span></a></p>",color)
227 << i18n("<p><a href=\"https://invent.kde.org/graphics/krita\"><span style=\" text-decoration: underline; color:%1;\">Source Code</span></a></p>",color)
228 << i18n("<p><a href=\"https://api.kde.org/krita/html/classKrita.html\"><span style=\" text-decoration: underline; color:%1;\">Scripting API</span></a></p>",color)
229 << i18n("<p><a href=\"https://scripting.krita.org/lessons/introduction\"><span style=\" text-decoration: underline; color:%1;\">Scripting School</span></a></p>",color)
230 << "</td></tr></table></body>"
231 << "</html>";
232
233
234 lblLinks->setTextFormat(Qt::RichText);
235 lblLinks->setText(lblLinksText.join(""));
236
237 filesLayout->setContentsMargins(10,10,10,10);
238 actionControlsLayout->setContentsMargins(5,5,5,5);
239
240 } else {
241
242 filesLayout->setContentsMargins(0,0,0,0);
243 actionControlsLayout->setContentsMargins(0,0,0,0);
244 }
245
246 lblLinks->setVisible(
show);
247
249
253 }
254}
QString colorString() const