blob: d0718dc2866aea87e847c141968f67610989596f (
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
|
//===========================================
// 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_compton.h"
#include "ui_page_compton.h"
#include "getPage.h"
//==========
// PUBLIC
//==========
page_compton::page_compton(QWidget *parent) : PageWidget(parent), ui(new Ui::page_compton()){
ui->setupUi(this);
connect(ui->text_file, SIGNAL(textChanged()), this, SLOT(settingChanged()) );
updateIcons();
}
page_compton::~page_compton(){
}
//================
// PUBLIC SLOTS
//================
void page_compton::SaveSettings(){
emit HasPendingChanges(false);
QString set = QString(getenv("XDG_CONFIG_HOME"))+"/lumina-desktop/compton.conf";
LUtils::writeFile(set, ui->text_file->toPlainText().split("\n") );
}
void page_compton::LoadSettings(int){
emit HasPendingChanges(false);
emit ChangePageTitle( tr("Compositor Settings") );
QString set = QString(getenv("XDG_CONFIG_HOME"))+"/lumina-desktop/compton.conf";
ui->text_file->setPlainText( LUtils::readFile(set).join("\n") );
}
void page_compton::updateIcons(){
}
//=================
// PRIVATE
//=================
//=================
// PRIVATE SLOTS
//=================
|