From da2a24089061c8dd04f718ec5a5294b4a85276db Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 8 Jul 2014 08:21:31 -0500 Subject: Avoid excessively long startup time due to oversized tray icon creation when icon widget has not yet been shown --- kteatime/toplevel.cpp | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) (limited to 'kteatime/toplevel.cpp') diff --git a/kteatime/toplevel.cpp b/kteatime/toplevel.cpp index 6b43fa4..1980eb3 100644 --- a/kteatime/toplevel.cpp +++ b/kteatime/toplevel.cpp @@ -171,10 +171,10 @@ TopLevel::TopLevel() : KSystemTray() action = config->readEntry("Action"); useTrayVis = config->readBoolEntry("UseTrayVis", true); - mugPixmap = loadSizedIcon("mug", width()); - teaNotReadyPixmap = loadSizedIcon("tea_not_ready", width()); - teaAnim1Pixmap = loadSizedIcon("tea_anim1", width()); - teaAnim2Pixmap = loadSizedIcon("tea_anim2", width()); + mugPixmap = loadIcon("mug"); + teaNotReadyPixmap = loadIcon("tea_not_ready"); + teaAnim1Pixmap = loadIcon("tea_anim1"); + teaAnim2Pixmap = loadIcon("tea_anim2"); confdlg = 0L; anondlg = 0L; @@ -201,8 +201,8 @@ TopLevel::~TopLevel() // FIXME: must delete more (like all the TQWidgets in config-window)? } -void TopLevel::resizeEvent ( TQResizeEvent * ) -{ +void TopLevel::resizeTrayIcon () { + // Honor Free Desktop specifications that allow for arbitrary system tray icon sizes mugPixmap = loadSizedIcon("mug", width()); teaNotReadyPixmap = loadSizedIcon("tea_not_ready", width()); teaAnim1Pixmap = loadSizedIcon("tea_anim1", width()); @@ -210,6 +210,18 @@ void TopLevel::resizeEvent ( TQResizeEvent * ) repaint(); } +void TopLevel::resizeEvent ( TQResizeEvent * ) +{ + // Honor Free Desktop specifications that allow for arbitrary system tray icon sizes + resizeTrayIcon(); +} + +void TopLevel::showEvent ( TQShowEvent * ) +{ + // Honor Free Desktop specifications that allow for arbitrary system tray icon sizes + resizeTrayIcon(); +} + /** Handle mousePressEvent */ void TopLevel::mousePressEvent(TQMouseEvent *event) { -- cgit v1.2.1