TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #381 · 23 окт.

Установить свойства виджета в PySide можно не только через соответствующие методы и конструктор класса. Можно их изменять с помощью метода setProperty по имени. btn = QPushButton("Click Me") btn.setProperty("flat", True) Это аналогично вызову btn.setFlat(True) Если указать несуществующее свойство, то оно просто создается btn.setProperty("btnType", "super") Получить его значение можно методом .property(name) btn_type = btn.property("btnType") Когда это может быть полезно? ▫️Можно просто хранить какие то данные в виджете и потом их доставать обратно widget = QWidget() widget.setProperty('my_data', 123) print(widget.property('my_data')) ▫️ Назначая эти свойства разным виджетам можно потом отличить виджеты во время итераци по ним. Например, найти все кнопки со свойством my_data="superbtn". Но ведь вместо кастомного свойства можно использовать objectName, будет тот же результат. Да, но y ObjectName есть ограничение - только строки. ▫️ Если нам потребуется не просто поиск а, например, сортировка по числу, то свойства позволяют нам это сделать. Поддерживается любой тип данных widget.setProperty('my_data', {'Key': 'value'}) widget.setProperty('order', 1) all_widgets.sort(key=w: w.property('order')) Но ведь Python позволяет всё вышеперечисленное сделать простым созданием атрибута у объекта widget.order = 1 widget.my_data = 123 Да, но я думаю что не надо объяснять почему не стоит так делать. К тому же, если у виджета нет свойства то метод .property(name) вернет None, а отсутствующий атрибут выбросит исключение. ▫️ Действительно полезное применение кастомным свойствам - контроль стилей. Здесь атрибутами не обойтись, нужны именно свойства. Дело в том, что в селекторах стилей можно указывать конкретные свойства виджетов на которые следует назначать стиль. Просто запустите этот код from PySide2.QtWidgets import * if __name__ == "__main__": app = QApplication([]) widget = QWidget(minimumWidth=300) layout = QVBoxLayout(widget) btn1 = QPushButton("Action 1") btn2 = QPushButton("Action 2") btn3 = QPushButton("Action 3", flat=True) layout.addWidget(btn1) layout.addWidget(btn2) layout.addWidget(btn3) # добавим кастомное свойство одной кнопке btn1.setProperty("btnType", "super") # добавляем стили widget.setStyleSheet( """ QPushButton[btnType="super"] { background-color: yellow; color: red; } QPushButton[flat="true"] { color: yellow; } """ ) widget.show() app.exec_() С помощью селектора мы избирательно назначили стили на конкретные кнопки. Как получить список всех кастомный свойств? Функция получения списка кастомных свойств отличается от получения дефолтных. def print_widget_dyn_properties(widget): for prop_name in widget.dynamicPropertyNames(): property_name = prop_name.data().decode() property_value = widget.property(property_name) print(f"{property_name}: {property_value}") #tricks#qt

Hashtags

Резултати

Пронајдени 1 слични објави

Пребарај: #txprimary

当前筛选 #txprimary清除筛选
DavidNinoRodriguez

@ninoscorner · Post #19472 · 17.03.2026 г., 02:30

“Doc” Pete Chambers posted: BREAKING - NATIONAL SECURITY ISSUE*** 66,146 GOP ballots DELETED during TX early voting. 87,336 voters appeared, disappeared, reappeared in state records. The Cornyn-Paxton margin is only 26K. Someone inside the system is picking our nominees. Don’t certify. Audit no, this is too big not to notice. Complacency will end our Constitutional Republic! WHAT HAPPENED? Your vote disappeared. During early voting, thousands of Texas ballots vanished from official state records—then reappeared—then vanished again. In BOTH parties. The data proves someone inside the system is manipulating who wins. We need answers before November. THE PROBLEM IN SIMPLE NUMBERS: REPUBLICAN PRIMARY: •87,336 voters appeared, disappeared, then reappeared in state records •66,146 ballots completely deleted from final count •35,772 extra ballots added to people who already voted •Only 26,000 votes separate Cornyn and Paxton—but 66,000 ballots disappeared DEMOCRAT PRIMARY: •37,039 voters appeared, disappeared, then reappeared •10,558 ballots completely deleted from final count •35,169 extra ballots added to people who already voted •144,000 votes separate Senate candidates—but 10,000+ ballots vanished Why This Matters: •These numbers are bigger than the margins in major races •This affects who appears on your November ballot •Both parties were hit—this isn’t partisan, it’s corruption THREE SIMPLE RULES THEY BROKE: Rule #1: Numbers Should Never Go Backwards •What should happen: Vote totals only go UP as more people vote •What actually happened: On February 17, the vote count went DOWN seven different times •Translation: Ballots were deleted in real-time during voting Rule #2: One Person, One Ballot •What should happen: Your Voter ID gets one ballot recorded •What actually happened: 1,549 Republican voters and 54 Democrat voters had MULTIPLE ballots counted •Translation: The system is stacking extra votes on real people Rule #3: Your Ballot Stays Counted •What should happen: Once you vote, your ballot stays in the record •What actually happened: 66,146 Republican and 10,558 Democrat voter records completely vanished by the end •Translation: Real votes were erased This isn’t a theory. This is downloaded government data from the Secretary of State’s website. Every day during early voting, researchers saved a copy of who voted. When they compared those snapshots, the numbers moved BACKWARDS. That’s mathematically impossible unless someone is inside the system changing records in real-time.” Supporting fact: The Texas Secretary of State changed the data file format multiple times during early voting and made access intermittent—exactly when researchers were watching. Whoever controls our elections controls TRILLIONS in state and federal budgets. This is a national security emergency. Foreign adversaries, cartels, corporate interests—anyone with the resources to breach our systems can now pick our leaders. President Trump, AG Bondi, and DNI Gabbard need to treat this like the cyber-attack it is and lock it down BEFORE November. #TXPrimary#ElectionIntegrity Thank you @Unite4Freedom for your in-depth dive into this National Security issue.