RE: copy text the to the clipboard

2003-04-03 Thread Murray . Cumming
It depends on the widget. For simple text, gtk_editable_copy_clipboard() might be what you need. Or there's something similar for GtkTextView. For custom data you'll need to understand the concepts. Here are some C++ examples: http://www.gtkmm.org/gtkmm2/docs/tutorial/html/ch16.html Murray Cummi

RE: copy text the to the clipboard

2003-04-04 Thread Owen Taylor
On Fri, 2003-04-04 at 02:34, [EMAIL PROTECTED] wrote: > It depends on the widget. For simple text, gtk_editable_copy_clipboard() > might be what you need. Or there's something similar for GtkTextView. > > For custom data you'll need to understand the concepts. Here are some C++ > examples: > http