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 8859975
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T15:10:42+00:00 2026-06-14T15:10:42+00:00

In my JTextPane, when i select the text and right click; It gives the

  • 0

In my JTextPane, when i select the text and right click; It gives the option to copy text. Below is the code:

public LogPane() {
    super();
    JPopupMenu pop = new JPopupMenu();
    final LogPane l = this;
    JMenuItem copy = new JMenuItem("Copy      CTRL+C");
    copy.addActionListener(new ActionListener() {

        @Override
        public void actionPerformed(ActionEvent e) {
            selected = l.getSelectedText();
            if(selected==null)
                return;
            StringSelection clipString = new StringSelection(selected);
            clipbd.setContents(clipString,clipString);
        }

    }); 
    pop.add(copy);
    copy.setEnabled(true);
}

So on right click, it gives the option to copy text. But what I want is that, when no text is selected and the user right clicks- Copy option should not be shown. How should the change be incorporated?

  • 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-06-14T15:10:43+00:00Added an answer on June 14, 2026 at 3:10 pm

    A PopupMenuListener should do the trick.

    public LogPane() {
        super();
        JPopupMenu pop = new JPopupMenu();
        final LogPane l = this;
        final JMenuItem copy = new JMenuItem("Copy      CTRL+C");
        copy.addActionListener(new ActionListener() {
    
            @Override
            public void actionPerformed(ActionEvent e) {
                selected = l.getSelectedText();
                if(selected==null)
                    return;
                StringSelection clipString = new StringSelection(selected);
                clipbd.setContents(clipString,clipString);
            }
    
        }); 
        pop.add(copy);
        pop.addPopupMenuListener(new PopupMenuListener() {
            public void popupMenuCanceled(PopupMenuEvent e) {}
            public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {}
            public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
                copy.setEnabled(l.getSelectedText() != null);
            }
        });
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

A JTextPane lets you embed JComponents and images . When you select a section
I would like to highlight(select) multiple occurrences of a string in JTextPane . I
I want to implement Find mechanism (like text editors or word) in my JTextPane.
I have a JTextPane and I have some text within that JTextPane. However, because
I have a JTextPane that contains a predefined text block. I have a separate
I am implementing a JTextPane-based text editor. Currently, when I have a piece of
I currently have a JTextPane that will be displaying text coming in from different
I am trying to detect right clicks on hyperlinks in a JTextPane in my
I have a JTextPane , and I would like to output text in it
So, I have a JTextPane co_LoggerEdit = new JTextPane(); co_LoggerEdit.setContentType(text/html); I then store the

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.