With a windows error dialog I can use CTRL-C to copy the window text.
I would like to allow users to do the same thing with the message dialogs I am using in my GTK app.
Is there a way to allow a GTK MessageDialog class to handle the copy command?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
What I ended up doing was to add a message handler to the dialog to trap the Keyboard up command.
When that was triggered I checked for the CTRL-C combo and put the text onto the clipboard there.