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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
|
//===========================================
// Lumina-DE source code
// Copyright (c) 2015, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include <QtConcurrent/QtConcurrentRun>
#include "MainUI.h"
#include "ui_MainUI.h"
#include <QVideoFrame>
#include <QFileDialog>
#include <QMessageBox>
#include <LUtils.h>
#include <LuminaOS.h>
MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){
ui->setupUi(this); //load the designer form
canwrite = false;
terminate_thread = false;
INFO = new LFileInfo();
UpdateIcons(); //Set all the icons in the dialog
SetupConnections();
//Disable buttons that are not working yet
//ui->actionOpen_File->setVisible(false);
//ui->actionOpen_Directory->setVisible(false);
//ui->menuSave_As->setEnabled(false);
}
MainUI::~MainUI(){
terminate_thread = true;
this->close();
}
//=============
// PUBLIC
//=============
void MainUI::LoadFile(QString path, QString type){
//Do the first file information tab
qDebug() << "Load File:" << path << type;
INFO = new LFileInfo(path);
//First load the general file information
if(!INFO->filePath().isEmpty()){
SyncFileInfo();
}else{
SetupNewFile();
}
}
void MainUI::UpdateIcons(){
}
//==============
// PRIVATE
//==============
void MainUI::ReloadAppIcon(){
//qDebug() << "Reload App Icon:";
ui->label_xdg_icon->setPixmap( LXDG::findIcon(ui->line_xdg_icon->text(),"").pixmap(64,64) );
//qDebug() << "Check Desktop File entry";
if(INFO->iconfile()!=ui->line_xdg_icon->text()){
xdgvaluechanged();
}
//qDebug() << "Done with app icon";
}
void MainUI::stopDirSize(){
if(sizeThread.isRunning()){
terminate_thread = true;
sizeThread.waitForFinished();
QApplication::processEvents(); //throw away any last signals waiting to be processed
}
terminate_thread = false;
}
void MainUI::GetDirSize(const QString dirname) const {
const quint16 update_frequency = 2000; //For reducing the number of folder_size_changed calls
quint64 filesize = 0;
quint64 file_number = 0;
quint64 dir_number = 1;
QDir folder(dirname);
QFileInfoList file_list;
QString dir_name;
QList<QString> head;
folder.setFilter(QDir::Hidden|QDir::AllEntries|QDir::NoDotAndDotDot);
file_list = folder.entryInfoList();
for(int i=0; i<file_list.size(); ++i) {
if(terminate_thread)
break;
if(file_list[i].isDir() && !file_list[i].isSymLink()) {
++dir_number;
head.prepend(file_list[i].absoluteFilePath());
}
else
++file_number;
if(!file_list[i].isSymLink())
filesize += file_list[i].size();
}
while(!head.isEmpty()) {
if(terminate_thread)
break;
dir_name = head.takeFirst();
if(!folder.cd(dir_name)) {
qDebug() << "The folder " << dir_name << " doesn't exist";
continue;
}
file_list = folder.entryInfoList();
for(int i=0; i<file_list.size(); ++i) {
if(file_list[i].isDir() && !file_list[i].isSymLink()) {
++dir_number;
head.prepend(file_list[i].absoluteFilePath());
}
else
++file_number;
if(!file_list[i].isSymLink())
filesize += file_list[i].size();
if(i%update_frequency == 0)
emit folder_size_changed(filesize, file_number, dir_number, false);
}
}
emit folder_size_changed(filesize, file_number, dir_number, true);
}
void MainUI::SyncFileInfo(){
qDebug() << "Sync File Info";
stopDirSize();
if(INFO->filePath().isEmpty()){ return; }
if(INFO->exists()){ canwrite = INFO->isWritable(); }
else{
//See if the containing directory can be written
QFileInfo chk(INFO->absolutePath());
canwrite = (chk.isDir() && chk.isWritable());
}
ui->label_file_name->setText( INFO->fileName() );
ui->label_file_mimetype->setText( INFO->mimetype() );
if(!INFO->isDir()){ ui->label_file_size->setText( LUtils::BytesToDisplaySize( INFO->size() ) ); }
else {
ui->label_file_size->setText(tr("---Calculating---"));
sizeThread = QtConcurrent::run(this, &MainUI::GetDirSize, INFO->absoluteFilePath());
}
ui->label_file_owner->setText(INFO->owner());
ui->label_file_group->setText(INFO->group());
ui->label_file_created->setText( INFO->birthTime().toString(Qt::SystemLocaleLongDate) );
ui->label_file_modified->setText( INFO->lastModified().toString(Qt::SystemLocaleLongDate) );
//Get the file permissions
QString perms;
if(INFO->isReadable() && INFO->isWritable()){ perms = tr("Read/Write"); }
else if(INFO->isReadable()){ perms = tr("Read Only"); }
else if(INFO->isWritable()){ perms = tr("Write Only"); }
else{ perms = tr("No Access"); }
ui->label_file_perms->setText(perms);
//Now the special "type" for the file
QString ftype;
if(INFO->suffix().toLower()=="desktop"){ ftype = tr("XDG Shortcut"); }
else if(INFO->isDir()){ ftype = tr("Directory"); }
else if(INFO->isExecutable()){ ftype = tr("Binary"); }
else{ ftype = INFO->suffix().toUpper(); }
if(INFO->isHidden()){ ftype = QString(tr("Hidden %1")).arg(ftype); }
ui->label_file_type->setText(ftype);
//Now load the icon for the file
if(INFO->isImage()){
QPixmap pix(INFO->absoluteFilePath());
ui->label_file_icon->setPixmap(pix.scaledToHeight(64));
ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" );
}else if(INFO->isVideo()){
ui->label_file_icon->hide();
LVideoLabel *mediaLabel = new LVideoLabel(INFO->absoluteFilePath(), true, ui->tab_file);
mediaLabel->setFixedSize(64,64);
ui->formLayout->replaceWidget(ui->label_file_icon, mediaLabel);
}else{
ui->label_file_icon->setPixmap( LXDG::findIcon( INFO->iconfile(), "unknown").pixmap(QSize(64,64)) );
}
//qDebug() << "Check XDG Info:"
//qDebug() << INFO->isDesktopFile() << type;
syncXdgStruct(INFO->XDG());
//Make sure the right tabs are available
if(ui->tabWidget->indexOf(ui->tab_file)<0){
//qDebug() << "Add File Info Tab";
ui->tabWidget->insertTab(0, ui->tab_file, tr("File Information"));
}
if(!INFO->isDesktopFile()){
if(ui->tabWidget->indexOf(ui->tab_deskedit)>=0){
ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_deskedit) );
}
}else if(ui->tabWidget->indexOf(ui->tab_deskedit)<0){
ui->tabWidget->addTab( ui->tab_deskedit, tr("XDG Shortcut") );
}
ui->tabWidget->setCurrentIndex(ui->tabWidget->indexOf(ui->tab_file) );
SyncZfsInfo();
}
void MainUI::SyncZfsInfo(){
bool showtab = false;
if(INFO->zfsPool().isEmpty()){
//Not on a ZFS pool - hide the tab if it is available
showtab = false;
}else{
qDebug() << "Is a ZFS Dataset:" << INFO->isZfsDataset();
ui->label_zfs_pool->setText(INFO->zfsPool());
if(INFO->isZfsDataset()){
ui->tree_zfs_props->clear();
QJsonObject props = INFO->zfsProperties();
QStringList keys = props.keys();
for(int i=0; i<keys.length(); i++){
ui->tree_zfs_props->addTopLevelItem( new QTreeWidgetItem(QStringList() << keys[i] << props.value(keys[i]).toObject().value("value").toString() << props.value(keys[i]).toObject().value("source").toString() ) );
ui->tree_zfs_props->resizeColumnToContents(0);
ui->tree_zfs_props->resizeColumnToContents(1);
}
ui->tree_zfs_props->setVisible(!keys.isEmpty());
showtab = !keys.isEmpty();
}else{
ui->tree_zfs_props->setVisible(false);
}
QStringList snaps = INFO->zfsSnapshots();
ui->tree_zfs_snaps->clear();
for(int i=0; i<snaps.length(); i++){
QFileInfo finfo(snaps[i].section("::::",1,-1));
ui->tree_zfs_snaps->addTopLevelItem( new QTreeWidgetItem(QStringList() << snaps[i].section("::::",0,0) << finfo.birthTime().toString(Qt::SystemLocaleShortDate) << finfo.lastModified().toString(Qt::SystemLocaleShortDate) ) );
ui->tree_zfs_snaps->resizeColumnToContents(0);
}
ui->tree_zfs_snaps->setVisible(!snaps.isEmpty());
showtab = showtab || !snaps.isEmpty();
}
if(showtab){
//Make sure the tab is visible
if(ui->tabWidget->indexOf(ui->tab_zfs)<0){
ui->tabWidget->addTab( ui->tab_zfs, tr("Advanced") );
}
}else{
//hide the tab if it is visible right now
if(ui->tabWidget->indexOf(ui->tab_zfs)>=0){
ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_zfs) );
}
}
}
void MainUI::SetupNewFile(){
//qDebug() << "Setup New File";
if(!INFO->filePath().isEmpty()){
INFO = new LFileInfo();
}
stopDirSize();
canwrite = true; //can always write a new file
syncXdgStruct(INFO->XDG());
//Make sure the right tabs are enabled
if(ui->tabWidget->indexOf(ui->tab_file)>=0){
ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_file) );
}
if(ui->tabWidget->indexOf(ui->tab_deskedit)<0){
//qDebug() << "Adding the deskedit tab";
ui->tabWidget->addTab(ui->tab_deskedit, tr("XDG Shortcut"));
}
//Not on a ZFS pool - hide the tab if it is available
if(ui->tabWidget->indexOf(ui->tab_zfs)>=0){
ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_zfs) );
}
ui->tabWidget->setCurrentIndex(ui->tabWidget->indexOf(ui->tab_deskedit) );
}
void MainUI::syncXdgStruct(XDGDesktop *XDG){
bool cleanup = false;
if(XDG==0){ XDG = new XDGDesktop(); cleanup = true;} //make sure nothing crashes
if(XDG->type == XDGDesktop::APP){
ui->line_xdg_command->setText(XDG->exec);
ui->line_xdg_wdir->setText(XDG->path);
ui->check_xdg_useTerminal->setChecked( XDG->useTerminal );
ui->check_xdg_startupNotify->setChecked( XDG->startupNotify );
}else if(XDG->type==XDGDesktop::LINK){
//Hide the options that are unavailable for links
//Command line (exec)
ui->line_xdg_command->setVisible(false);
ui->tool_xdg_getCommand->setVisible(false);
ui->lblCommand->setVisible(false);
//Options
ui->lblOptions->setVisible(false);
ui->check_xdg_useTerminal->setVisible(false);
ui->check_xdg_startupNotify->setVisible(false);
//Now load the variables for this type of shortcut
ui->lblWorkingDir->setText(tr("URL:"));
ui->line_xdg_wdir->setText( XDG->url );
ui->tool_xdg_getDir->setVisible(false); //the dir selection button
}
ui->line_xdg_name->setText(XDG->name);
ui->line_xdg_comment->setText(XDG->comment);
ui->line_xdg_icon->setText( XDG->icon );
ReloadAppIcon();
ui->actionSave_Shortcut->setVisible(true);
ui->actionSave_Shortcut->setEnabled(false);
if(cleanup){ delete XDG; }
checkXDGValidity();
}
bool MainUI::saveFile(QString path){
//qDebug() << "Request save file:" << path;
XDGDesktop *XDG = INFO->XDG();
if(XDG==0){ XDG = new XDGDesktop(); }
if(XDG->type == XDGDesktop::BAD){ XDG->type = XDGDesktop::APP; }
//Update the file path in the data structure
XDG->filePath = path;
//Now change the structure
XDG->name = ui->line_xdg_name->text();
XDG->genericName = ui->line_xdg_name->text().toLower();
XDG->comment = ui->line_xdg_comment->text();
XDG->icon = ui->line_xdg_icon->text();
//Now do the type-specific fields
if(XDG->type == XDGDesktop::APP){
XDG->exec = ui->line_xdg_command->text();
XDG->tryexec = ui->line_xdg_command->text().section(" ",0,0); //use the first word/binary for the existance check
XDG->path = ui->line_xdg_wdir->text(); //working dir/path
XDG->useTerminal = ui->check_xdg_useTerminal->isChecked();
XDG->startupNotify = ui->check_xdg_startupNotify->isChecked();
}else if(XDG->type==XDGDesktop::LINK){
XDG->url = ui->line_xdg_wdir->text(); //we re-used this field
}
//Clear any info which this utility does not support at the moment
XDG->actionList.clear();
XDG->actions.clear();
//Now save the structure to file
//qDebug() << "Saving File:" << XDG->filePath;
return XDG->saveDesktopFile(true); //Try to merge the file/structure as necessary
}
QString MainUI::findOpenDirFile(bool isdir){
static QList<QUrl> urls;
if(urls.isEmpty()){
urls << QUrl::fromLocalFile("/");
QStringList dirs = QString(getenv("XDG_DATA_DIRS")).split(":");
for(int i=0; i<dirs.length(); i++){
if(QFile::exists(dirs[i]+"/applications")){ urls << QUrl::fromLocalFile(dirs[i]+"/applications"); }
}
//Now do the home-directory folders
urls << QUrl::fromLocalFile(QDir::homePath());
QString localapps = QString(getenv("XDG_DATA_HOME"))+"/applications";
if(QFile::exists(localapps)){ urls << QUrl::fromLocalFile(localapps); }
}
static QString lastdir = QDir::homePath();
QFileDialog dlg(this);
dlg.setAcceptMode(QFileDialog::AcceptOpen);
dlg.setFileMode( isdir ? QFileDialog::Directory : QFileDialog::ExistingFiles );
dlg.setOptions(QFileDialog::ReadOnly | QFileDialog::HideNameFilterDetails);
dlg.setViewMode(QFileDialog::Detail);
dlg.setSidebarUrls( urls );
dlg.setDirectory(lastdir);
if(!dlg.exec() ){ return ""; } //cancelled
if(dlg.selectedFiles().isEmpty()){ return ""; }
QString path = dlg.selectedFiles().first();
//Update the last used directory
if(isdir){ lastdir = path; } //save this for next time
else{ lastdir = path.section("/",0,-2); }
//return the path
return path;
}
// Initialization procedures
void MainUI::SetupConnections(){
connect(ui->actionQuit, SIGNAL(triggered()), this, SLOT(closeApplication()) );
connect(ui->actionSave_Shortcut, SIGNAL(triggered()), this, SLOT(save_clicked()) );
connect(ui->actionLocal_Shortcut, SIGNAL(triggered()), this, SLOT(save_as_local_clicked()) );
connect(ui->actionRegister_Shortcut, SIGNAL(triggered()), this, SLOT(save_as_register_clicked()) );
connect(ui->actionNew_Shortcut, SIGNAL(triggered()), this, SLOT(SetupNewFile()) );
connect(ui->actionOpen_File, SIGNAL(triggered()), this, SLOT(open_file_clicked()) );
connect(ui->actionOpen_Directory, SIGNAL(triggered()), this, SLOT(open_dir_clicked()) );
connect(ui->line_xdg_command, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) );
connect(ui->line_xdg_comment, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) );
connect(ui->line_xdg_icon, SIGNAL(textChanged(QString)), this, SLOT(ReloadAppIcon()) );
connect(ui->tool_xdg_getCommand, SIGNAL(clicked()), this, SLOT(getXdgCommand()) );
connect(ui->line_xdg_name, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) );
connect(ui->line_xdg_wdir, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) );
connect(ui->check_xdg_useTerminal, SIGNAL(clicked()), this, SLOT(xdgvaluechanged()) );
connect(ui->check_xdg_startupNotify, SIGNAL(clicked()), this, SLOT(xdgvaluechanged()) );
connect(this, SIGNAL(folder_size_changed(quint64, quint64, quint64, bool)), this, SLOT(refresh_folder_size(quint64, quint64, quint64, bool)));
}
//UI Buttons
void MainUI::closeApplication(){
terminate_thread = true;
if(ui->actionSave_Shortcut->isEnabled()){
//Still have unsaved changes
//TO-DO - prompt for whether to save the changes
}
this->close();
}
void MainUI::save_clicked(){
//Save all the xdg values into the structure
QString filePath = INFO->filePath();
if( !filePath.isEmpty() && !INFO->isDesktopFile() ){ return; }
if(filePath.isEmpty() || !canwrite){
//Need to prompt for where to save the file and what to call it
QString appdir = QString(getenv("XDG_DATA_HOME"))+"/applications/";
if(!QFile::exists(appdir)){ QDir dir; dir.mkpath(appdir); }
filePath = QFileDialog::getSaveFileName(this, tr("Save Application File"), appdir, tr("XDG Shortcuts (*.desktop)") );
if(filePath.isEmpty()){ return; }
if(!filePath.endsWith(".desktop")){ filePath.append(".desktop"); }
}
//qDebug() << " -Try Saving File:" << filePath;
bool saved = saveFile(filePath);
//qDebug() << "File Saved:" << saved;
ui->actionSave_Shortcut->setEnabled( !saved );
if(saved){
//Re-load the file info
LoadFile(filePath);
}
}
void MainUI::save_as_local_clicked(){
QString filePath = QFileDialog::getSaveFileName(this, tr("Save Application File"), QDir::homePath(), tr("XDG Shortcuts (*.desktop)") );
if(filePath.isEmpty()){ return; }
if(!filePath.endsWith(".desktop")){ filePath.append(".desktop"); }
//qDebug() << " -Try Saving File:" << filePath;
bool saved = saveFile(filePath);
//qDebug() << "File Saved:" << saved;
ui->actionSave_Shortcut->setEnabled( !saved );
if(saved){
//Re-load the file info
LoadFile(filePath);
}
}
void MainUI::save_as_register_clicked(){
QString appdir = QString(getenv("XDG_DATA_HOME"))+"/applications/";
if(!QFile::exists(appdir)){ QDir dir; dir.mkpath(appdir); }
QString filePath = QFileDialog::getSaveFileName(this, tr("Save Application File"), appdir, tr("XDG Shortcuts (*.desktop)") );
if(filePath.isEmpty()){ return; }
if(!filePath.endsWith(".desktop")){ filePath.append(".desktop"); }
//qDebug() << " -Try Saving File:" << filePath;
bool saved = saveFile(filePath);
//qDebug() << "File Saved:" << saved;
ui->actionSave_Shortcut->setEnabled( !saved );
if(saved){
//Re-load the file info
LoadFile(filePath);
}
}
void MainUI::open_dir_clicked(){
QString path = findOpenDirFile(true); //directory only
if(path.isEmpty()){ return; }
LoadFile(path, "");
}
void MainUI::open_file_clicked(){
QString path = findOpenDirFile(false); //files only
if(path.isEmpty()){ return; }
LoadFile(path, "");
}
void MainUI::getXdgCommand(QString prev){
//Find a binary to run
QString dir = prev; //start with the previous attempt (if there was one)
if(dir.isEmpty()){ ui->line_xdg_command->text(); }//then try current selection
if(dir.isEmpty()){ dir = LOS::AppPrefix()+"bin"; } //then open the application binaries directory
QString file = QFileDialog::getOpenFileName(this, tr("Select a binary"), dir );
if(file.isEmpty()){ return; } //cancelled
if(!LUtils::isValidBinary(file)){
QMessageBox::warning(this, tr("Error"), tr("Invalid selection: Not a valid executable"));
getXdgCommand(file);
return;
}
ui->line_xdg_command->setText(file);
xdgvaluechanged();
}
void MainUI::on_tool_xdg_getDir_clicked(){
//Find a directory
QString dir = ui->line_xdg_wdir->text();
if(dir.isEmpty()){ dir = QDir::homePath(); }
dir = QFileDialog::getExistingDirectory(this, tr("Select a directory"), dir);
if(dir.isEmpty()){ return; } //cancelled
ui->line_xdg_wdir->setText(dir);
xdgvaluechanged();
}
void MainUI::on_push_xdg_getIcon_clicked(){
//Find an image file
QString dir = ui->push_xdg_getIcon->whatsThis(); //then try current selection
if(dir.isEmpty()){ dir = QDir::homePath(); }
//Get the known file extensions
QStringList ext = LUtils::imageExtensions();
for(int i=0; i<ext.length(); i++){ ext[i].prepend("*."); } //turn them into valid filters
QString file = QFileDialog::getOpenFileName(this, tr("Select an icon"), dir ,QString(tr("Images (%1);; All Files (*)")).arg(ext.join(" ")) );
if(file.isEmpty()){ return; } //cancelled
ui->line_xdg_icon->setText(file);
ReloadAppIcon();
xdgvaluechanged();
}
//XDG Value Changed
bool MainUI::checkXDGValidity(){
XDGDesktop tmp;
tmp.type = XDGDesktop::APP; //make this adjustable later (GUI radio buttons?)
tmp.name = ui->line_xdg_name->text();
tmp.genericName = ui->line_xdg_name->text().toLower();
tmp.comment = ui->line_xdg_comment->text();
tmp.icon = ui->line_xdg_icon->text();
//Now do the type-specific fields
if(tmp.type == XDGDesktop::APP){
tmp.exec = ui->line_xdg_command->text();
tmp.tryexec = ui->line_xdg_command->text().section(" ",0,0); //use the first word/binary for the existance check
tmp.path = ui->line_xdg_wdir->text(); //working dir/path
tmp.useTerminal = ui->check_xdg_useTerminal->isChecked();
tmp.startupNotify = ui->check_xdg_startupNotify->isChecked();
}else if(tmp.type==XDGDesktop::LINK){
tmp.url = ui->line_xdg_wdir->text(); //we re-used this field
}
bool valid = tmp.isValid();
ui->label_xdg_statusicon->setPixmap( LXDG::findIcon( valid ? "dialog-ok" : "dialog-cancel", "").pixmap(32,32) );
ui->label_xdg_status->setText( valid ? tr("Valid Settings") : tr("Invalid Settings") );
return tmp.isValid();
}
void MainUI::xdgvaluechanged(){
//qDebug() << "xdgvaluechanged";
if( INFO->isDesktopFile() || INFO->filePath().isEmpty() ){
bool valid = checkXDGValidity();
//Compare the current UI values to the file values
ui->menuSave_As->setEnabled(valid);
ui->actionSave_Shortcut->setEnabled(canwrite && valid); //assume changed at this point
}else{
ui->actionSave_Shortcut->setEnabled(false);
}
}
void MainUI::refresh_folder_size(quint64 size, quint64 files, quint64 folders, bool finished) {
if(finished)
ui->label_file_size->setText( LUtils::BytesToDisplaySize( size ) + " -- " + tr(" Folders: ") + QString::number(folders) + " / " + tr("Files: ") + QString::number(files) );
else
ui->label_file_size->setText( LUtils::BytesToDisplaySize( size ) + " -- " + tr(" Folders: ") + QString::number(folders) + " / " + tr("Files: ") + QString::number(files) + tr(" Calculating..." ));
}
|