norden.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Moin! Dies ist die Mastodon-Instanz für Nordlichter, Schnacker und alles dazwischen. Folge dem Leuchtturm.

Administered by:

Server stats:

3.5K
active users

#pyqt

1 post1 participant0 posts today
clonbg<p>Minimizar al tray un programa hecho en PyQt5 <a href="https://myblog.clonbg.es/minimizar-al-tray-un-programa-hecho-en-pyqt5/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">myblog.clonbg.es/minimizar-al-</span><span class="invisible">tray-un-programa-hecho-en-pyqt5/</span></a> <a href="https://masto.es/tags/Programaci%C3%B3n" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Programación</span></a> <a href="https://masto.es/tags/PyQT" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PyQT</span></a> <a href="https://masto.es/tags/Python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Python</span></a> <a href="https://clonbg.es" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="">clonbg.es</span><span class="invisible"></span></a></p>
TOV<p>I just added functionality to my color converter and color manager written in PyQt. Now I can save colors as lists and output as JSON files.</p><p><a href="https://fosstodon.org/tags/Linux" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Linux</span></a> <a href="https://fosstodon.org/tags/Python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Python</span></a> <a href="https://fosstodon.org/tags/PyQt" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PyQt</span></a> <a href="https://fosstodon.org/tags/color" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>color</span></a> <a href="https://fosstodon.org/tags/converter" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>converter</span></a> <a href="https://fosstodon.org/tags/RGB" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>RGB</span></a></p>
clonbg<p>Mi primer CRUD con Python <a href="https://myblog.clonbg.es/mi-primer-crud-con-python/" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">myblog.clonbg.es/mi-primer-cru</span><span class="invisible">d-con-python/</span></a> <a href="https://masto.es/tags/Programaci%C3%B3n" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Programación</span></a> <a href="https://masto.es/tags/Python" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>Python</span></a> <a href="https://masto.es/tags/PyQT" class="mention hashtag" rel="nofollow noopener noreferrer" target="_blank">#<span>PyQT</span></a> <a href="https://clonbg.es" rel="nofollow noopener noreferrer" translate="no" target="_blank"><span class="invisible">https://</span><span class="">clonbg.es</span><span class="invisible"></span></a></p>

I have been making progress with my color converter/creation application built with PyQt. I just added a 4 point gradient tool this morning. This application will allow you to create, convert and manage all your colors in one place.

#Linux#Python#PyQt

The #QScrollBar widget is a scroll bar that enables the user to access parts of a document that is larger than the widget used to display it.
doc.qt.io/qtforpython-5/PySide

The #QScrollArea widget is used to display the contents of a child widget within a frame. If the widget exceeds the size of the frame, the view can provide scroll bars so that the entire area of the child widget can be viewed.
doc.qt.io/qtforpython-5/PySide

#Python#QT#PyQt

PyQt pen has cap styles that define how the end points of the lines are drawn.

1. The SquareCap (default) style is a square line end that covers the end point and extends beyond it by half the line width.

2. The FlatCap style is a square line end that does not cover the end point of the line.

3. The RoundCap style is a rounded line end covering the end point.

doc.qt.io/qtforpython-5/PySide

#Python#PyQt#Pen