Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In order to indicate activity, some applications (e.g. Pidgin) highlight their entry in GNOME's Window List panel widget (e.g. via bold font or flashing color). This indication is reset automatically when the window is activated.

I have a terminal application for which I would like to achieve the same thing (preferably via Perl, but Python would work too) - but I have no idea where to start. I imagine I'd first have to find the terminal window (based on window title) and then trigger some kind of GTK action.

Any help would be greatly appreciated!

share|improve this question

2 Answers

up vote 1 down vote accepted

In a GTK application, use gtk_window_set_urgency_hint(). If you have a terminal application, you can't really do that - with libwnck you can get information about other application's windows, but as far as I know you can't get a GtkWindow pointer to another application's window.

May I suggest using the terminal beep? Of course this isn't a sure way to attract the user's attention, but some terminals are able to flash the title bar instead of beeping, or such things.

share|improve this answer
Thanks - I've tested set_urgency_hint with a minimal PyGTK sample, and it's exactly what I asked for (though you have to manually un-set this flag on focus, which is to be expected). I'll ask around whether there's any way to get GNOME Terminal's GtkWindow pointer. As for using the terminal bell, that might work if/when this feature is implemented. – AnC Feb 6 '11 at 7:14
1  
Turns out modifying another process's GTK window is possible after all, using wnck's window_foreign_new. – AnC Feb 9 '11 at 20:17

I'm not really into GTK programming, but as far as i know you want to set an "URGENT"-Flag for the Window which should be highlighted. Maybe this will get you any further. :)

share|improve this answer
Thanks; I've added some details to ptomato's response below. – AnC Feb 6 '11 at 7:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.