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?
|
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?
| |||
|
feedback
|
|
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. | |||
|
feedback
|
GtkMessageDialogby default, although you can turn it off. That this is not working for you seems to indicate that something else is wrong. You should not have to use the keyboard signal to do this. What platform are you on? How are you displaying the message dialog? – ptomato Jul 16 '10 at 9:42