Added blinking of the chat icon for private chat window and chat lobby.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5722 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2012-10-25 18:06:33 +00:00
parent 179618edbf
commit 7272b7e768
8 changed files with 103 additions and 23 deletions

View file

@ -130,6 +130,8 @@ signals:
void running();
/** Signals that the application needs to shutdown now. */
void shutdown();
/** Global blink timer */
void blink(bool on);
protected:
#if defined(Q_OS_WIN)
@ -142,7 +144,7 @@ private slots:
* will emit the running() signal to indicate that the application's event
* loop is running. */
void onEventLoopStarted();
void blinkTimer();
private:
/** Catches debugging messages from Qt and sends them to
@ -162,7 +164,7 @@ private:
static bool useConfigDir;
static QString configDir;
bool mBlink;
};
#endif