Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
54 views

Does anyone know how to remove this white space? This is my current stylesheet: QTableView { background-color: #EEEEEE; } QTableView::item { background-color: transparent; } QHeaderView::...
Shadow_Guo's user avatar
1 vote
0 answers
45 views

I've been hobby writing a little budget tool for myself over the last few months, and have finally gotten some ok functionality. Decided to polish it a bit and make it act more like a GUI app. Running ...
zoagold's user avatar
  • 21
1 vote
0 answers
129 views

Summary I am generating an EXE for a Python project using Pyinstaller. I am using Powershell on Windows 11 and a Python 3.11 in a Poetry virtual environment. I keep encountering the following error ...
AGA's user avatar
  • 80
0 votes
0 answers
79 views

I am making an editor using Python and PyQt6. I have the same code that works for Windows, but when I run the code on Arch Linux, I get this error when importing QWebEngine: from PyQt6....
Scxve Ve's user avatar
1 vote
0 answers
58 views

I'm creating pyqt6 app where I can replace normal fonts/text with svg fonts(.svg files like a.svg, b.svg etc). My issue is with word-wrap. In normal mode(svg mode is disabled) QTextEdit correctly ...
Tom's user avatar
  • 75
1 vote
0 answers
53 views

I have this Ruler class Right now the scale looks like the below image. I want the ticks to have their roots towards the view instead of having them outwards. The base of the scale should be inside. I ...
Tom's user avatar
  • 75
0 votes
0 answers
63 views

I am trying to create a UI that resembles OpenAI's, where code and markdown snippets follow each other and markdown and the code are parsed/syntax highlighted accordingly. I've been using PyQt6 and my ...
P0sitive's user avatar
0 votes
0 answers
44 views

I have a PyQt6 Application in which I have multiple QTextEdits, which contain text that sometimes overflow the visible range of the lines. Using the combination of Shift+Mouse-Wheel, my goal was to ...
Pascal Vallaster's user avatar
0 votes
0 answers
46 views

I have a large gui app based on matplotlib which is horribly slow (on windows) so I am trying to re-host it on pyqtgraph (which seems to be much faster). I am facing the following problem: I need to ...
sds's user avatar
  • 60.5k
0 votes
0 answers
38 views

I disabled the window frame and made my own window frame, but it also removed all window animations when maximizing/minimizing or closing etc. How to enable them back without enabling the default ...
REMIZERexe's user avatar
1 vote
1 answer
170 views

As such I (questioner) am no longer looking for an answer but I am not sure on what grounds to recommend closing. It could possibly be helpful to someone. Here's an example of what I mean (based on ...
mike rodent's user avatar
  • 16.1k
0 votes
1 answer
125 views

I was able to install pyqt6, but installing pyqt6-tools fails with a MemoryError. One thing to note, memory usage for Python spikes up to 3GB. Here is the output of running pip install pyqt6-tools: ...
Cigaryno's user avatar
0 votes
1 answer
58 views

General overview I try to set just a minimal taskbar (like Polybar or i3bar, or any task bar you know). The constraint are the folowing ones: It should have a dedicate space to avoid overlaping with ...
fauve's user avatar
  • 321
0 votes
0 answers
76 views

I'm working on a project that uses PyQt6 , but when I try to import it into my program, it throws and ImportError and says that it has 'incompatible architecture'. The full error message is: ...
while true read's user avatar
3 votes
1 answer
93 views

I have two python programs running in the same virtual environment using PyQt6.5 on MacOS Sonoma 14.5 and python 3.11. Both execute just fine. One uses the updated enums for PyQt6 for QMessageBox as ...
steelheadjw's user avatar
1 vote
0 answers
62 views

I'm trying to draw a long cursor in Qt. I already have a function to edit many lines of a QPlainTextEdit at the same time (<-> alt edition in Notepad++), and my current goal is to display the ...
Clem's user avatar
  • 21
0 votes
0 answers
46 views

I have a simple QTableWidget with a unique relevant column (the other one still empty for the moment). And I try to permute two rows. I’ve made this method to my table: def permuteRows(self, row1=...
fauve's user avatar
  • 321
2 votes
1 answer
112 views

For my application I created a Window class, I minimized my code as much as possible so that there would be nothing unrelated. The code is below: import sys from PyQt6.QtWidgets import (QApplication, ...
polya's user avatar
  • 23
0 votes
1 answer
76 views

I have a vispy scene embedded in a pyqt frame on a pyqt app to display some plots. Now, i need a keypressevent on the whole app for some unrelated thing (a home-made implementation of vim command mode)...
Ghost's user avatar
  • 1,594
0 votes
0 answers
54 views

I'm looking for ways to animate the scale of a QDialog to create a smooth animated popup. Qt widgets don't have a scale property that you can animate, so I tried using a QGraphicsView() and wrapped a ...
Edward's user avatar
  • 49
0 votes
1 answer
53 views

I am trying to render a Plotter object created by Seaborn.object.Bar() on Qwidget from PyQt6. plot = ( so.Plot(result, x = 'XXX', y = 'XXX') .add(so.Bar(color='lightblue')) ....
Lukas's user avatar
  • 13
1 vote
1 answer
87 views

I have a QMessageBox.question object that I use to confirm that the user wants to close the program. I also have a custom one that I use for showing errors. For whatever reason, since using PyQt6 they ...
nottelling's user avatar
0 votes
1 answer
64 views

I am building a web browser with PyQt6 and its WebEngine framework, and would like to make a password manager that enters usernames and passwords directly into websites in the WebEnginePage being ...
while true read's user avatar
0 votes
0 answers
59 views

I'm currently extending a program with a tab view. For this i need a button to add tabs, which i would like to have directly next to tabs, like in a web browser. I can't just add it as an extra tab, ...
ole's user avatar
  • 11
0 votes
0 answers
40 views

Problem I am trying to create a custom widget which can perform it's own cleanup tasks before it is fully destroyed, but triggered by the application closing. I want to do this because my QWidget ...
Trever's user avatar
  • 23

1
2 3 4 5
20