Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3321964
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:07:34+00:00 2026-05-17T23:07:34+00:00

I’ve just had my first course in programming at the university and for the

  • 0

I’ve just had my first course in programming at the university and for the following three months I have no additional programming classes so I’ve decided to do a small project during this “break”.

What I’m trying to do is a edit-program for a smaller Wiki I used to work on. It’s suppose to make it easier for the users to use things like templates, and also have a wizard to help the user make basic pages. I talked to some older students and they recommended pyqt for the GUI of the software.

Now to the problem, and I feel like this is a really dirty hack:
My solution right now is to use the built in copy and paste commands, the problem is that right now if I just click the button for bold, without marking text, I get:
”’text currently in clipboard”’ and I just want it to add ”’ ”’.

Here’s the (important) code in question, I obviously call addBold when the button/hotkey is pushed.

self.textEdit = QtGui.QTextEdit()
def.addBold(self):
   self.textEdit.copy()
   self.textEdit.insertPlainText("\'\'\'")
   self.textEdit.paste()
   self.textEdit.insertPlainText("\'\'\'")

What I’d rather have is code that looks something like:

x=markedText
if not x:
  self.textEdit.insertPlainText("\'\'\' \'\'\'")
else:
  self.textEdit.insertPlainText("\'\'\'"+x+"\'\'\'")
  x = None

So does anyone know how I can assign the marked text to x? Or is there yet another solution that is better?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T23:07:35+00:00Added an answer on May 17, 2026 at 11:07 pm
    from PyQt4.QtGui import *
    from PyQt4.QtCore import SIGNAL
    
    class Widget(QWidget): 
        def __init__(self, parent=None): 
            QWidget.__init__(self) 
    
            self.textedit = QTextEdit()
            self.clip = QApplication.clipboard()
            self.button = QPushButton("Bold")         
            self.connect(self.button, SIGNAL("clicked()"), self.addBold)
    
            layout = QVBoxLayout()
            layout.addWidget(self.textedit) 
            layout.addWidget(self.button)
            self.setLayout(layout)
    
        def addBold(self):
            self.clip.clear()
            self.textedit.copy()
            currentText = self.clip.text()
            self.textedit.insertPlainText("'''%s'''" % currentText)
    
    app = QApplication([])
    widget = Widget() 
    widget.show() 
    app.exec_()
    

    Sadly I could not find a way without manipulating the clipboard. Hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have just tried to save a simple *.rtf file with some websites and
I have a JSP page retrieving data and when single or double quotes are
link Im having trouble converting the html entites into html characters, (&# 8217;) i
this is what i have right now Drawing an RSS feed into the php,
I've got a string that has curly quotes in it. I'd like to replace
I want use html5's new tag to play a wav file (currently only supported
For some reason, after submitting a string like this Jack’s Spindle from a text
I'm looking for suggestions for debugging... If you view this site in Firefox or
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.