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
|
//===========================================
// Lumina Desktop Source Code
// Copyright (c) 2016, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
#include "page_defaultapps.h"
#include "ui_page_defaultapps.h"
#include "getPage.h"
#include "../AppDialog.h"
//==========
// PUBLIC
//==========
page_defaultapps::page_defaultapps(QWidget *parent) : PageWidget(parent), ui(new Ui::page_defaultapps()){
ui->setupUi(this);
connect(ui->tool_default_filemanager, SIGNAL(clicked()), this, SLOT(changeDefaultFileManager()) );
connect(ui->tool_default_terminal, SIGNAL(clicked()), this, SLOT(changeDefaultTerminal()) );
connect(ui->tool_default_webbrowser, SIGNAL(clicked()), this, SLOT(changeDefaultBrowser()) );
connect(ui->tool_default_email, SIGNAL(clicked()), this, SLOT(changeDefaultEmail()) );
connect(ui->tool_defaults_clear, SIGNAL(clicked()), this, SLOT(cleardefaultitem()) );
connect(ui->tool_defaults_set, SIGNAL(clicked()), this, SLOT(setdefaultitem()) );
connect(ui->tool_defaults_setbin, SIGNAL(clicked()), this, SLOT(setdefaultbinary()) );
connect(ui->tree_defaults, SIGNAL(itemSelectionChanged()), this, SLOT(checkdefaulticons()) );
updateIcons();
ui->tabWidget_apps->setCurrentWidget(ui->tab_auto);
}
page_defaultapps::~page_defaultapps(){
}
//================
// PUBLIC SLOTS
//================
void page_defaultapps::SaveSettings(){
}
void page_defaultapps::LoadSettings(int){
emit HasPendingChanges(false);
emit ChangePageTitle( tr("Default Applications") );
//First load the lumina-open specific defaults
// - Default File Manager
defaultFileManager = LXDG::findDefaultAppForMime("inode/directory");
if(defaultFileManager.isEmpty()){ defaultFileManager = "lumina-fm"; }
updateDefaultButton(ui->tool_default_filemanager, defaultFileManager);
// - Default Terminal
defaultTerminal = LXDG::findDefaultAppForMime("application/terminal"); //sessionsettings->value("default-terminal", "xterm").toString();
updateDefaultButton(ui->tool_default_terminal, defaultTerminal);
// - Default Web Browser
defaultBrowser = LXDG::findDefaultAppForMime("x-scheme-handler/http"); //appsettings->value("default/webbrowser", "").toString();
updateDefaultButton(ui->tool_default_webbrowser, defaultBrowser);
// - Default Email Client
defaultEmail = LXDG::findDefaultAppForMime("application/email"); //appsettings->value("default/email", "").toString();
updateDefaultButton(ui->tool_default_email, defaultEmail);
//Now load the XDG mime defaults
ui->tree_defaults->clear();
QStringList defMimeList = LXDG::listFileMimeDefaults();
//qDebug() << "Mime List:\n" << defMimeList.join("\n");
defMimeList.sort(); //sort by group/mime
//Now fill the tree by group/mime
QTreeWidgetItem *group = nullptr;
QString ccat;
for(int i=0; i<defMimeList.length(); i++){
//Get the info from this entry
QString mime = defMimeList[i].section("::::",0,0);
QString cat = mime.section("/",0,0);
QString extlist = defMimeList[i].section("::::",1,1);
QString def = defMimeList[i].section("::::",2,2);
QString comment = defMimeList[i].section("::::",3,50);
//Now check if this is a new category
if(group == nullptr || ccat!=cat){
//New group
group = new QTreeWidgetItem(0);
group->setText(0, cat); //add translations for known/common groups later
ui->tree_defaults->addTopLevelItem(group);
ccat = cat;
}
//Now create the entry
QTreeWidgetItem *it = new QTreeWidgetItem();
it->setWhatsThis(0,mime); // full mimetype
it->setText(0, QString(tr("%1 (%2)")).arg(mime.section("/",-1), extlist) );
it->setText(2,comment);
it->setToolTip(0, comment); it->setToolTip(1,comment);
//Now load the default (if there is one)
it->setWhatsThis(1,def); //save for later
it->setData(1, Qt::UserRole, def);
if(def.endsWith(".desktop")){
XDGDesktop file(def);
if(file.type == XDGDesktop::BAD){
//Might be a binary - just print out the raw "path"
it->setText(1, def.section("/",-1));
it->setIcon(1, LXDG::findIcon("application-x-executable","") );
}else{
it->setText(1, file.name);
it->setIcon(1, LXDG::findIcon(file.icon,"") );
}
}else if(!def.isEmpty()){
//Binary/Other default
it->setText(1, def.section("/",-1));
it->setIcon(1, LXDG::findIcon("application-x-executable","") );
}
group->addChild(it);
}
ui->tree_defaults->sortItems(0,Qt::AscendingOrder);
checkdefaulticons();
}
void page_defaultapps::updateIcons(){
ui->tool_defaults_clear->setIcon( LXDG::findIcon("edit-clear","") );
ui->tool_defaults_set->setIcon( LXDG::findIcon("system-run","") );
ui->tool_defaults_setbin->setIcon( LXDG::findIcon("application-x-executable","") );
ui->tabWidget_apps->setTabIcon( ui->tabWidget_apps->indexOf(ui->tab_auto), LXDG::findIcon("system-run", "") );
ui->tabWidget_apps->setTabIcon( ui->tabWidget_apps->indexOf(ui->tab_defaults), LXDG::findIcon("preferences-desktop-filetype-association", "") );
}
//=================
// PRIVATE
//=================
QString page_defaultapps::getSysApp(bool allowreset, QString defaultPath){
AppDialog dlg(this, defaultPath);
dlg.allowReset(allowreset);
dlg.exec();
if(dlg.appreset && allowreset){
return "reset";
}else{
return dlg.appselected;
}
}
void page_defaultapps::updateDefaultButton(QToolButton *button, QString app){
if( !QFile::exists(app) && !LUtils::isValidBinary(app) ){ qDebug() << "Invalid Settings:" << app; app.clear(); } //invalid settings
if(app.endsWith(".desktop")){
XDGDesktop file(app);
if(file.type == XDGDesktop::BAD){
//Might be a binary - just print out the raw "path"
button->setText(app.section("/",-1));
button->setIcon( LXDG::findIcon("application-x-executable","") );
}else{
button->setText(file.name);
button->setIcon(LXDG::findIcon(file.icon,"") );
}
}else if(app.isEmpty()){
button->setText(tr("Click to Set"));
button->setIcon( LXDG::findIcon("system-help","") );
}else{
//Might be a binary - just print out the raw "path"
button->setText(app.section("/",-1));
button->setIcon( LXDG::findIcon("application-x-executable","") );
}
}
//=================
// PRIVATE SLOTS
//=================
void page_defaultapps::changeDefaultBrowser(){
//Prompt for the new app
QString app = getSysApp(true, defaultBrowser);
if(app.isEmpty()){ return; }//nothing selected
if(app=="reset"){ app.clear(); }
//save the new app setting and adjust the button appearance
defaultBrowser = app;
LXDG::setDefaultAppForMime("x-scheme-handler/http", app.section("/",-1));
LXDG::setDefaultAppForMime("x-scheme-handler/https", app.section("/",-1));
updateDefaultButton(ui->tool_default_webbrowser, app);
}
void page_defaultapps::changeDefaultEmail(){
//Prompt for the new app
QString app = getSysApp(true, defaultEmail);
if(app.isEmpty()){ return; }//nothing selected
if(app=="reset"){ app.clear(); }
//save the new app setting and adjust the button appearance
defaultEmail = app;
LXDG::setDefaultAppForMime("application/email",app.section("/",-1));
updateDefaultButton(ui->tool_default_email, app);
}
void page_defaultapps::changeDefaultFileManager(){
//Prompt for the new app
QString app = getSysApp(true, defaultFileManager);
if(app.isEmpty()){ return; }//nothing selected
if(app=="reset"){ app = "lumina-fm"; }
//save the new app setting and adjust the button appearance
defaultFileManager = app;
LXDG::setDefaultAppForMime("inode/directory", app.section("/",-1));
updateDefaultButton(ui->tool_default_filemanager, app);
}
void page_defaultapps::changeDefaultTerminal(){
//Prompt for the new app
QString app = getSysApp(true, defaultTerminal);
if(app.isEmpty()){ return; }//nothing selected
if(app=="reset"){ app = "xterm"; }
//save the new app setting and adjust the button appearance
defaultTerminal = app;
LXDG::setDefaultAppForMime("application/terminal", app.section("/",-1) );
updateDefaultButton(ui->tool_default_terminal, app);
}
void page_defaultapps::cleardefaultitem(){
QTreeWidgetItem *it = ui->tree_defaults->currentItem();
if(it==0){ return; } //no item selected
QList<QTreeWidgetItem*> list;
for(int i=0; i<it->childCount(); i++){
list << it->child(i);
}
if(list.isEmpty()){ list << it; } //just do the current item
//Now clear the items
for(int i=0; i<list.length(); i++){
//Clear it in the back end
LXDG::setDefaultAppForMime(list[i]->whatsThis(0), "");
//Now clear it in the UI
list[i]->setWhatsThis(1,""); //clear the app path
list[i]->setIcon(1,QIcon()); //clear the icon
list[i]->setText(1,""); //clear the name
}
}
void page_defaultapps::setdefaultitem(){
QTreeWidgetItem *it = ui->tree_defaults->currentItem();
QString path;
if(it==0){ return; } //no item selected
QList<QTreeWidgetItem*> list;
for(int i=0; i<it->childCount(); i++){
list << it->child(i);
}
if(list.isEmpty()){
//just do the current item
list << it;
path = it->data(1, Qt::UserRole).toString();
}
//Prompt for which application to use
QString app = getSysApp(false, path); //no "reset" option
if(app.isEmpty()){ return; }//nothing selected
//Now set the items
for(int i=0; i<list.length(); i++){
//Set it in the back end
LXDG::setDefaultAppForMime(list[i]->whatsThis(0), app.section("/",-1));
//Set it in the UI
XDGDesktop desk(app);
list[i]->setWhatsThis(1,app); //app path
list[i]->setIcon(1,LXDG::findIcon(desk.icon,"")); //reset the icon
list[i]->setText(1,desk.name); //reset the name
list[i]->setData(1, Qt::UserRole, app);
}
}
void page_defaultapps::setdefaultbinary(){
QTreeWidgetItem *it = ui->tree_defaults->currentItem();
if(it==0){ return; } //no item selected
QList<QTreeWidgetItem*> list;
for(int i=0; i<it->childCount(); i++){
list << it->child(i);
}
if(list.isEmpty()){ list << it; } //just do the current item
//Prompt for which binary to use
QFileDialog dlg(this);
//dlg.setFilter(QDir::Executable | QDir::Files); //Does not work! Filters executable files as well as breaks browsing capabilities
dlg.setFileMode(QFileDialog::ExistingFile);
dlg.setDirectory( LOS::AppPrefix()+"bin" );
dlg.setWindowTitle(tr("Select Binary"));
if( !dlg.exec() || dlg.selectedFiles().isEmpty() ){
return; //cancelled
}
QString path = dlg.selectedFiles().first();
//Make sure it is executable
if( !QFileInfo(path).isExecutable()){
QMessageBox::warning(this, tr("Invalid Binary"), tr("The selected binary is not executable!"));
return;
}
//Now set the items
for(int i=0; i<list.length(); i++){
//Set it in the back end
LXDG::setDefaultAppForMime(list[i]->whatsThis(0), path);
//Set it in the UI
list[i]->setWhatsThis(1,path); //app path
list[i]->setIcon(1,LXDG::findIcon("application-x-executable","")); //clear the icon
list[i]->setText(1,path.section("/",-1)); //clear the name
}
}
void page_defaultapps::checkdefaulticons(){
QTreeWidgetItem *it = ui->tree_defaults->currentItem();
ui->tool_defaults_set->setEnabled(it!=0);
ui->tool_defaults_clear->setEnabled(it!=0);
ui->tool_defaults_setbin->setEnabled(it!=0);
}
|