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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include "LDesktopPluginSpace.h"
#include "LSession.h"
#include "desktop-plugins/NewDP.h"
#include <LuminaXDG.h>
#include <QDesktopWidget>
#define DEBUG 0
// ===================
// PUBLIC
// ===================
LDesktopPluginSpace::LDesktopPluginSpace(QWidget *parent) : QWidget(parent){
this->setObjectName("LuminaDesktopPluginSpace");
this->setStyleSheet("QWidget#LuminaDesktopPluginSpace{ border: none; background: transparent; }");
this->setAcceptDrops(true);
this->setContextMenuPolicy(Qt::NoContextMenu);
this->setMouseTracking(true);
TopToBottom = true;
plugsettings = LSession::handle()->DesktopPluginSettings();
}
LDesktopPluginSpace::~LDesktopPluginSpace(){
}
void LDesktopPluginSpace::LoadItems(QStringList plugs, QStringList files){
if(DEBUG){ qDebug() << "Loading Desktop Items:" << plugs << files; }
bool changes = false;
if(plugs != plugins){ plugins = plugs; changes = true; }
if(files != deskitems){ deskitems = files; changes = true; }
if(changes){ QTimer::singleShot(0,this, SLOT(reloadPlugins())); }
}
void LDesktopPluginSpace::SetIconSize(int size){
if(DEBUG){ qDebug() << "Set Desktop Icon Size:" << size; }
QSize newsize = calculateItemSize(size);
itemSize = newsize; //save this for all the later icons which are generated (grid size)
UpdateGeom();
//Now re-set the item icon size
QTimer::singleShot(0,this, SLOT(reloadPlugins()) );
}
void LDesktopPluginSpace::cleanup(){
//Perform any final cleanup actions here
for(int i=0; i<ITEMS.length(); i++){
delete ITEMS.takeAt(i);
i--;
}
plugins.clear();
deskitems.clear();
}
// ===================
// PUBLIC SLOTS
// ===================
void LDesktopPluginSpace::UpdateGeom(){
if(DEBUG){ qDebug() << "Update Desktop Geom:"; }
//Currently no special checks - might need to add validation of all current plugin geometries in the future
}
// ===================
// PRIVATE
// ===================
QSize LDesktopPluginSpace::calculateItemSize(int icosize){
//Note: This returns the size in numbers of cells (width = columnspan, height = rowspan)
QSize sz;
sz.setWidth(1.8*icosize);
sz.setWidth( RoundUp(sz.width()/GRIDSIZE)); //always round up to cell numbers
sz.setHeight(icosize+ 2.3*this->fontMetrics().height() );
sz.setHeight( RoundUp(sz.height()/GRIDSIZE)); //always round up to cell number
return sz;
}
void LDesktopPluginSpace::addDesktopItem(QString filepath){
addDesktopPlugin("applauncher::"+filepath+"---dlink"+QString::number(LSession::handle()->desktop()->screenNumber(this)) );
}
void LDesktopPluginSpace::addDesktopPlugin(QString plugID){
//This is used for generic plugins (QWidget-based)
if(DEBUG){ qDebug() << "Adding Desktop Plugin:" << plugID; }
LDPlugin *plug = NewDP::createPlugin(plugID, this);
plug->setWhatsThis(plugID);
//Now get the geometry for the plugin
QRect geom = plug->loadPluginGeometry(); //in grid coords
if(geom.isNull()){
//No previous location - need to calculate initial geom
QSize sz = plug->sizeHint();
if(plugID.startsWith("applauncher::") ){ sz = itemSize*GRIDSIZE; }
geom.setWidth( RoundUp(sz.width()/GRIDSIZE) );
geom.setHeight( RoundUp(sz.height()/GRIDSIZE) );
geom.moveTo( findOpenSpot(geom.width(), geom.height()) );
}else if(!ValidGeometry(plugID, gridToGeom(geom)) ){
//Find a new location for the plugin (saved location is invalid)
QPoint pt = findOpenSpot(geom.width(), geom.height(), geom.y()-2, geom.x()-2); //try to get it within the same general area
geom.moveTo(pt);
}
if(geom.x() < 0 || geom.y() < 0){
qDebug() << "No available space for desktop plugin:" << plugID << " - IGNORING";
delete plug;
}else{
if(DEBUG){ qDebug() << " - New Plugin Geometry (grid):" << geom; }
//Now place the item in the proper spot/size
plug->setGeometry( gridToGeom(geom) );
plug->show();
if(DEBUG){ qDebug() << " - New Plugin Geometry (px):" << plug->geometry(); }
ITEMS << plug;
connect(plug, SIGNAL(StartMoving(QString)), this, SLOT(StartItemMove(QString)) );
connect(plug, SIGNAL(StartResizing(QString)), this, SLOT(StartItemResize(QString)) );
connect(plug, SIGNAL(RemovePlugin(QString)), this, SLOT(RemoveItem(QString)) );
}
}
QPoint LDesktopPluginSpace::findOpenSpot(int gridwidth, int gridheight, int startRow, int startCol){
//Note about the return QPoint: x() is the column number, y() is the row number
QPoint pt(0,0);
int row = startRow; int col = startCol;
if(row<0){ row = 0; } //just in case - since this can be recursively called
if(col<0){ col = 0; } //just in case - since this can be recursively called
bool found = false;
int rowCount, colCount;
rowCount = RoundUp(this->height()/GRIDSIZE);
colCount = RoundUp(this->width()/GRIDSIZE);
QRect geom(0, 0, gridwidth*GRIDSIZE, gridheight*GRIDSIZE); //origin point will be adjusted in a moment
if(DEBUG){ qDebug() << "Search for plugin space:" << rowCount << colCount << gridheight << gridwidth << this->size(); }
if(TopToBottom){
//Arrange Top->Bottom
while(col<(colCount-gridwidth) && !found){
while(row<(rowCount-gridheight) && !found){
bool ok = true;
geom.moveTo(col*GRIDSIZE, row*GRIDSIZE);
//qDebug() << " - Check Geom:" << geom << col << row;
//Check all the existing items to ensure no overlap
for(int i=0; i<ITEMS.length() && ok; i++){
if(geom.intersects(ITEMS[i]->geometry())){
//Collision - move the next searchable row/column index
ok = false;
row = posToGrid(ITEMS[i]->geometry().bottomLeft()).y(); //use bottom edge for next search
}
}
if(ok){ pt = QPoint(col,row); found = true; } //found an open spot
row++;
}
if(!found){ col++; row=0; } //go to the next column
}
}else{
//Arrange Left->Right
while(row<(rowCount-gridheight) && !found){
while(col<(colCount-gridwidth) && !found){
bool ok = true;
geom.moveTo(col*GRIDSIZE, row*GRIDSIZE);
//Check all the existing items to ensure no overlap
for(int i=0; i<ITEMS.length() && ok; i++){
if(geom.intersects(ITEMS[i]->geometry())){
//Collision - move the next searchable row/column index
ok = false;
col = posToGrid(ITEMS[i]->geometry().topRight()).x(); // Fill according to row/column
}
}
if(ok){ pt = QPoint(col,row); found = true; } //found an open spot
else{ col++; }
}
if(!found){ row++; col=0;} //go to the next row
}
}
if(!found){
//Decrease the size of the item by 1x1 grid points and try again
if(gridwidth>2 && gridheight>2){
pt = findOpenSpot(gridwidth-1, gridheight-1, 0, 0);
}else{
pt.setX(-1); pt.setY(-1); //invalid
qDebug() << "Could not find an open spot for a desktop plugin:" << gridwidth << gridheight << startRow << startCol;
}
}
return pt;
}
// ===================
// PRIVATE SLOTS
// ===================
void LDesktopPluginSpace::reloadPlugins(){
//Remove any plugins as necessary
QStringList plugs = plugins;
QStringList items = deskitems;
for(int i=0; i<ITEMS.length(); i++){
if(plugs.contains(ITEMS[i]->whatsThis())){ plugs.removeAll(ITEMS[i]->whatsThis()); }
else if(ITEMS[i]->whatsThis().contains("---dlink") && items.contains(ITEMS[i]->whatsThis().section("---",0,0).section("::",1,50)) ){
//Account for the variation in the Plugin ID for desktop files
items.removeAll(ITEMS[i]->whatsThis().section("---",0,0).section("::",1,50));
}else{ ITEMS[i]->removeSettings(true); delete ITEMS.takeAt(i); i--; } //this is considered a permanent removal (cleans settings)
}
//Now create any new items
//First load the plugins (almost always have fixed locations)
for(int i=0; i<plugs.length(); i++){
addDesktopPlugin(plugs[i]);
}
//Now load the desktop shortcuts (fill in the gaps as needed)
for(int i=0; i<items.length(); i++){
addDesktopItem(items[i]);
}
}
|