blob: 750ab508d16d2f7198c4f99e70359fdd858f5822 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2014, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#ifndef _LUMINA_DESKTOP_WINDOW_INFO_H
#define _LUMINA_DESKTOP_WINDOW_INFO_H
// Qt includes
#include <QString>
#include <QPixmap>
#include <QIcon>
#include <QPainter>
// libLumina includes
#include <LuminaX11.h>
#include <LuminaXDG.h>
// Local includes
#include "Globals.h" //For the STATES enumeration definition
class LWinInfo{
private:
WId window;
public:
LWinInfo(WId id = 0){
window = id;
}
~LWinInfo(){};
//The current window ID
WId windowID(){
return window;
}
//Information Retrieval
// Don't cache these results because they can change regularly
QString text(){
if(window==0){ return ""; }
QString nm = LX11::WindowVisibleIconName(window);
if(nm.isEmpty()){ nm = LX11::WindowIconName(window); }
if(nm.isEmpty()){ nm = LX11::WindowVisibleName(window); }
if(nm.isEmpty()){ nm = LX11::WindowName(window); }
return nm;
}
QIcon icon(bool &noicon){
if(window==0){ noicon = true; return QIcon();}
//qDebug() << "Check for Window Icon:" << window;
noicon = false;
QIcon ico = LX11::WindowIcon(window);
//Check for a null icon, and supply one if necessary
if(ico.isNull()){ ico = LXDG::findIcon( this->Class().toLower(),""); }
if(ico.isNull()){ ico = LXDG::findIcon("preferences-system-windows",""); noicon=true;}
return ico;
}
QString Class(){
return LX11::WindowClass(window);
}
Lumina::STATES status(){
if(window==0){ return Lumina::NOSHOW; }
LX11::WINDOWSTATE ws = LX11::GetWindowState(window);
Lumina::STATES state;
switch(ws){
case LX11::VISIBLE:
state = Lumina::VISIBLE; break;
case LX11::INVISIBLE:
state = Lumina::INVISIBLE; break;
case LX11::ACTIVE:
state = Lumina::ACTIVE; break;
case LX11::ATTENTION:
state = Lumina::NOTIFICATION; break;
default:
state = Lumina::NOSHOW;
}
//qDebug() << "Window State:" << ws << state;
return state;
}
};
#endif
|