This channel is a discovery! FInally someone who knows how to program professionally. You should turn all these videos in a udemy online course.
@codequestions11 ай бұрын
Appreciate it!
@mtmotoki29 ай бұрын
I just started learning PyQt, your video was very helpful.
@codequestions9 ай бұрын
Glad it was helpful!
@cornevanzyl588011 ай бұрын
From some that's used PyQT for about year, you've teached many things. I prefer implementing visual changes in the Qt designer rather than in the style sheet. Knowing both methods are a must and you're also doing it for time sake
@codequestions11 ай бұрын
Yes, I agree with you
@335haan511 ай бұрын
im crying, tysm finally a comprehensive tutorial
@codequestions11 ай бұрын
😂😂😂
@rinaaiko56198 ай бұрын
you saved my university project
@SmileMeAndWave Жыл бұрын
Thank you for sharing this. Awesome! Keep going!
@damahouxp Жыл бұрын
Super super cool; thanks for generosity!
@berkinylm10 ай бұрын
You are pure gold
@incremental_failure6 ай бұрын
Seems like Qt is pushed hard in universities now, lol. But a lot of good info here and you're very proficient with Designer.
@milan_0858 ай бұрын
Thank you so much for your efforts.👏👏🔥🔥
@nasurudeenr78499 ай бұрын
very nice more details. Rocking man....
@aliyananwar76336 ай бұрын
Your channel is awesome thanks for such great content
@codequestions6 ай бұрын
Glad you enjoy it!
@captainmustard111 ай бұрын
everything work well for me. Good Video. Thank you :D
@codequestions11 ай бұрын
Great to hear!
@_workenx_37649 ай бұрын
Amazing work! i have one question i'm trying to do this work but in C++ and its really hard any tips to traslate it better
@jotarojoestar13995 ай бұрын
hello, is there a way for the frame that corresponds to the option in the sidebar not to collapse when the sidebar is fully opened?
@edmonddeng35772 жыл бұрын
Awesome work!
@Raybow-vq8mj Жыл бұрын
really helpful, thank you very much❤
@codequestions Жыл бұрын
Glad it was helpful!
@IEEE78 ай бұрын
freaking legend
@taominh Жыл бұрын
please make more tutorial videos like this. about set signal/slot for function
@codequestions Жыл бұрын
Sure. Since I have time, I will do more videos
@taominh Жыл бұрын
@@codequestions❤️
@omer-halaby11 ай бұрын
Amazing work! Although can anyone help me with a problem I encountered while trying to use the code? I can't see the logos.
@codequestions11 ай бұрын
Make sure you have the QLabel for logo first.
@omer-halaby11 ай бұрын
@@codequestions Oh thank you but I think I solved it by now. I had to change the file paths used to get the icons. I changed it in the designer and saved and it wotked. Thanks anyways!
@untizioqualunque24665 ай бұрын
goated video
@emrahkaplan2228 Жыл бұрын
Thank you. Very good job.
@codequestions Жыл бұрын
Glad it was helpful!
@abloh1237 ай бұрын
You are GOAT
@alirics Жыл бұрын
Hi! Very nice video! I have one question: Why my icons are not changing colors after I clicked on them?
@codequestions Жыл бұрын
When you set the icon for button in designer, you need to set different icons for on and off
@kirubakaran98523 ай бұрын
My images are not shown in vscode except image others are working good
@_desouzaa_9 ай бұрын
👏👏👏👏👏👏👏👏
@ironF52 жыл бұрын
i am using the same code as shown in this video, and doing a bit of editting and calling label_5 (which is in page2 as per video) on page3 as well. logically speaking the label_5 should appear on both page2 and page 3 but label_5 appears on page3 only and page2 shows nothing. how to make it appear on both pages?
@codequestions2 жыл бұрын
The objectname should not be duplicate in one ui file
@ironF52 жыл бұрын
@@codequestions what to do if i want similar QObject on multiple QWidgets (for example textbox=QTextBox on 2 different QWidgets)? is their a way?
@codequestions2 жыл бұрын
@@ironF5 just use designer to create the ui
@ironF52 жыл бұрын
what is QAbstractItemModel in QComplete, i cannot quite comprehend it ! can u elaborate it!
@EsraaSalah-lg4mc Жыл бұрын
at 8:30 min, when you press the pushbutton how can you make the second menu (with details) replace the first one?
@codequestions Жыл бұрын
Set the Menu button checkable first, then set toggled signal and solt between menu button and menu frame
@juniorMr Жыл бұрын
Thanks a lot
@Sylarman16 ай бұрын
This is awesome. I'm having a really hard time though, trying to figure out, where the heck the mouse disappears to on section #17 on min 10:35 I know we want to create menu pages with QLabel, but what exactly are you doing here? Where are you pasting from? Please help. Thanks.
@codequestions6 ай бұрын
Just put some labels into each page for identiting pages
@muhammadprawirayuda3510 Жыл бұрын
sory brother, i would like to ask about this : ## functions for changing menu page def on_home_btn_1_toggled(self): self.ui.stackedWidget.setCurrentIndex(0) def on_home_btn_2_toggled(self): self.ui.stackedWidget.setCurrentIndex(0) my question is , where the signal of this slot (on_home_btn_toggled) ? thanks
@codequestions Жыл бұрын
Use on to connect signal(toggled) and slot(home_btn_2). "home_btn_1" and "home_btn_2" are object name
@muhammadprawirayuda3510 Жыл бұрын
@@codequestions this one >> self.home_btn_1.toggled['bool'].connect(self.home_btn_2.setChecked) ?? sory im still dont get it:( can you make it clearly, thanks
@codequestions Жыл бұрын
@@muhammadprawirayuda3510 this code is automatic generated when use pyuic5 convert ui file to python file. and I think this is from the signal and slot setting in designer.
@ironF52 жыл бұрын
how to add margins on QTextEdit .... so that itshows margins on all sides as it shows on microsoft-word and google-docs?
@codequestions2 жыл бұрын
do you the width of text to border? if that, you can use (padding: 10px) to set the margins
@ironF52 жыл бұрын
@@codequestions will try and update
@ironF52 жыл бұрын
my completer code works on the main QTextEdit but when i add mdi functionality, it works on the first window and doesnot work on new mdi's !
@codequestions2 жыл бұрын
do you mean mdiArea?
@ironF52 жыл бұрын
@@codequestions yes
@ironF52 жыл бұрын
@@codequestions yes mdi area
@ironF52 жыл бұрын
how to zoomin zoomout using QSlideBar(horizontal) on QTextEdit?
@@codequestions can u also write code for set_font_size_of_QTextEdit function, i have spin box for font sizes in my app. but i cannot understand how the app is going to understand which slider way does the font increases and vice versa...
@huynhduyphuong7787 Жыл бұрын
how can you change the pages without call any signal clicked.connect in __init__ of mainWindow I see you just define some function such as on_home_btn_1_toggled,... and don't need call self.ui.home_btn_1.clicked.connect(self.on_home_btn_1_toggled()) in your __init__?? Is there any linked I haven't understand here?? Thank you so much
@codequestions Жыл бұрын
This is from C++. when you create C++ programs with qt, the function is automatically created in *.h file.
@huynhduyphuong7787 Жыл бұрын
@@codequestionsit means that on'_button_name_'toggle is built in function and it id automatically called when the butoon toggle and we don't need do anything else, right?
@huynhduyphuong7787 Жыл бұрын
can you give me the link talk about those functions, I don'f find any document whoch mention about them
@codequestions Жыл бұрын
@@huynhduyphuong7787 can we chat with discord? Then I can send you the screenshot of the book I learn it from. This is a Chinese book,but I think we can translate to English
@huynhduyphuong7787 Жыл бұрын
@@codequestions yeah of course, can you give me link your discord
@ironF52 жыл бұрын
my QCompleter code works, with QLineEdit and QTextEdit as well. now i have another query normally QCompleter code words when a list of words is provided, and QCompleter matches a word from that list and provide suggestions what to do if i have dictionary, key value pair in case of keyvalue pair, i want the QCompleter code to search on Key item and suggest the value item. please make a video on it if possible.!
@codequestions2 жыл бұрын
kzbin.info/www/bejne/bnPXlnaVjKyhiNU
@codequestions2 жыл бұрын
Do you watch this video? I think it may help you
@codequestions2 жыл бұрын
@@ironF5 this is a smaple example for the function that you want def InitCompleter(self): self.data = { "word": "defination", "word1": "defination of word1", "word2": "defination of word2", "word3": "defination of word3", } completer = QCompleter(self.data.keys()) self.lineEdit = self.ui.lineEdit self.lineEdit.setCompleter(completer) def on_lineEdit_textChanged(self, text): defination = self.data.get(text) if defination: self.ui.label.setText(defination)
@ironF52 жыл бұрын
@@codequestions hello, the minimum working code is pasted below that works at my end. when i press 'w' it suggests all words starting from 'w'(like a normal QCompleter), whereas i want the content of the corresponding second column (QCompleter working should be on the first column but the suggestions should be from second column) code start after this line _____________________________ import sys from PyQt5.QtWidgets import ( QApplication, QCompleter, QLineEdit, QVBoxLayout, QWidget ) data = { "word": "defination", "word1": "synonym of word1", "word2": "example of word2", "word3": "working of word3", } class mywin(QWidget): # doesnot work with QMainWindow def __init__(self): super(mywin,self).__init__() self.initUI() def initUI(self): vbox=QVBoxLayout() self.setWindowTitle('Ayyaz application') self.setGeometry(200,200,400,200) self.l=QLineEdit() completer=QCompleter(data.keys()) self.l.setCompleter(completer) vbox.addWidget(self.l) self.setLayout(vbox) def mymain(): app = QApplication(sys.argv) win=mywin() win.show() sys.exit(app.exec_()) if __name__=='__main__': mymain() ________________ code ends before this line
@codequestions2 жыл бұрын
@@ironF5 whats the purpose of your app? if you just want search the value by the key. I think it’s no matter where the result shows. If you want to show result in the lineEdit, change the label to LineEdit. But if you want to show the value as suggestions list by input key word. I don’t know how to do it. I don’t think it works.
@ashwinkumar52239 ай бұрын
What's the name of this editor you used here
@codequestions9 ай бұрын
capcut
@andresx341919 күн бұрын
I cant do pyrcc5 i am using pyqt6
@ironF52 жыл бұрын
how to change theme of your application at run time? how to add multiple themese and chagne at run time?
@codequestions2 жыл бұрын
for this question, you need create different theme file first. then you can use the method in the last video to change themes.
@tuongnguyenvan7951 Жыл бұрын
how to insert icon? What tool do you use? 12:00
@codequestions Жыл бұрын
What do you mean inserting icon? I just use qt designer.
@quennyborromeo4653 Жыл бұрын
Hi. why does my icon doesn't show up?
@codequestions Жыл бұрын
When you create the ui file or after convert it into py file?
@ucphanai4286 Жыл бұрын
My icon doesn't show up when I conver ui -> py
@codequestions Жыл бұрын
If you are using a resource file, there may be an issue with importing. If you are only using images for the icons, it could be a path issue.
@ucphanai4286 Жыл бұрын
@@codequestions I just use your resource file, but still cannot show the icons ;-;
@codequestions Жыл бұрын
Please watch this video starting at 12:13 #19 - Create main PY file for starting app@@ucphanai4286
@codequestions Жыл бұрын
@@ucphanai4286 11:43 #18 - Convert the UI file to PY file
@ironF52 жыл бұрын
can we do speelchecking on QTextEdit as it shows red underline in misspelled words on microsoft-word and google-docs? can u make video on that?
@codequestions2 жыл бұрын
for spellchecking, the the basic theory if check all the input words to a words list. so you need a word list. use textChanged signal to connect check function. you can follow this article first:nethumlamahewage.medium.com/integrating-spellchecking-into-a-qtextedit-widget-in-pyqt5-with-enchant-f025f4097e5c
@ironF52 жыл бұрын
@@codequestions i have successfully integrated this spellcheck module in my application, and it is working at my end with my QTextEdit applicaiton with full functionality, it shows red line on misspelled words and give suggestions as well .... thank you
@codequestions2 жыл бұрын
@@ironF5 Congratulations!
@ironF52 жыл бұрын
@@codequestions thank you.. is there any library that gives synonyms and antonyms like this spell check? preferably offline (like this spellcheck example)??
@ironF52 жыл бұрын
@@codequestions can u also tell me how can i add more dictionaries (currently only english language works) for other languages and make it work aswell !! 1). how to add more dictionaries and 2). how to make it work in QTextEdit!
@simbapfaira1340 Жыл бұрын
This is beautiful🥵🥵
@codequestions Жыл бұрын
Thanks
@tuongnguyenvan7951 Жыл бұрын
How do you do this step? 10:35
@codequestions Жыл бұрын
just add QStackedWidget into QWidget, then add QLabel into each page
@RPXGAMING01 Жыл бұрын
can you please help me with this i used the same code in the video but cant pass 14:00 Error: Traceback (most recent call last): File "C:\OneDrive\Documents\main.py", line 20, in window = MainWindow() ^^^^^^^^^^^^ File "C:\OneDrive\Documents\main.py", line 12, in __init__ self.ui.setupUi(self) File "C:\OneDrive\Documents\main.py", line 16, in setupUi MainWindow.setMinimumSize(QtCore.QSize(0, 40)) TypeError: arguments did not match any overloaded call: setMinimumSize(self, minw: int, minh: int): argument 1 has unexpected type 'QSize' setMinimumSize(self, s: QSize): argument 1 has unexpected type 'QSize'
@codequestions Жыл бұрын
It’s hard to debug without code.
@RPXGAMING01 Жыл бұрын
is there anyway to contact you to help me solve it
@codequestions Жыл бұрын
@@RPXGAMING01 you can find a discord link in the top of my channel page