kde-workspace/ksystraycmd/ksystraycmd.h
2014-11-13 19:30:51 +02:00

87 lines
2 KiB
C++

// -*- c++ -*-
#ifndef KSYSTRAYCMD_H
#define KSYSTRAYCMD_H
#include <KSystemTrayIcon>
class KProcess;
class KMenu;
/**
* Provides a system tray icon for a normal window.
*
* @author Richard Moore, rich@kde.org
*/
class KSysTrayCmd : public KSystemTrayIcon
{
Q_OBJECT
public:
KSysTrayCmd();
~KSysTrayCmd();
void setWindow( WId w ) { win = w; }
void setCommand( const QString &cmd ) { command = cmd; }
void setPattern( const QString &regexp ) { window = regexp; }
void setStartOnShow( bool enable ) { lazyStart = enable; isVisible = !enable; }
void setNoQuit( bool enable ) { noquit = enable; }
void setQuitOnHide( bool enable ) { quitOnHide = enable; }
void setOnTop( bool enable ) { onTop = enable; }
void setOwnIcon( bool enable ) { ownIcon = enable; }
void setDefaultTip( const QString &tip ) { tooltip = tip; }
bool hasTargetWindow() const { return (win != 0); }
bool hasRunningClient() const { return (client != 0); }
const QString &errorMsg() const { return errStr; }
bool start();
static WId findRealWindow( WId w, int depth = 0 );
public Q_SLOTS:
void refresh();
void showWindow();
void hideWindow();
void toggleWindow() { if ( isVisible ) hideWindow(); else showWindow(); }
void setTargetWindow( WId w );
void execContextMenu( const QPoint &pos );
void quit();
void quitClient();
protected Q_SLOTS:
void clientExited();
void windowAdded(WId w);
void windowChanged(WId w);
void mousePressEvent(QSystemTrayIcon::ActivationReason reason);
protected:
bool startClient();
void checkExistingWindows();
private:
QString command;
QString window;
QString tooltip;
bool isVisible;
bool lazyStart;
bool noquit;
bool quitOnHide;
bool onTop; ///< tells if window must stay on top or not
bool ownIcon; ///< tells if the ksystraycmd icon must be used in systray
bool waitingForWindow;
KMenu * menu;
WId win;
KProcess *client;
QString errStr;
/** Memorized 'top' position of the window*/
int top;
/** Memorized 'left' position of the window*/
int left;
};
#endif // KSYSTRAYCMD_H