You are not logged in.

vdboor

Beginner

  • "vdboor" started this thread

Posts: 30

Location: The Netherlands

Occupation: Software developer

  • Send private message

1

Friday, September 24th 2004, 2:15pm

Make the taskbar entry flash.

As of KDE 3.2, the titlebar flashes for new windows, but I was wondering, is there any way I can make the title button flash again manually from my KDE Application?

Thanks in advice.
Working on KMess, a MSN Messenger client for Linux/KDE.

anda_skoa

Professional

Posts: 1,273

Location: Graz, Austria

Occupation: Software Developer

  • Send private message

2

Friday, September 24th 2004, 6:38pm

Qt/KDE Developer
Debian User

vdboor

Beginner

  • "vdboor" started this thread

Posts: 30

Location: The Netherlands

Occupation: Software developer

  • Send private message

3

Saturday, October 2nd 2004, 12:58pm

Thanks a lot for your pointer :) I believe I can code that part in my application now.

However, I do have one question: how can I make sure the application still can compile with preview KDE versions? I haven't been able to find something about that in the docs.

Thanks in advice.
Working on KMess, a MSN Messenger client for Linux/KDE.

anda_skoa

Professional

Posts: 1,273

Location: Graz, Austria

Occupation: Software Developer

  • Send private message

4

Saturday, October 2nd 2004, 2:51pm

Include kdeversion.h and guard the call to demandAttention like this

Source code

1
2
3
#if KDE_IS_VERSION(3, 2, 0)
// call demandAttention
#end


Cheers,
_
Qt/KDE Developer
Debian User