aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/pages/page_sample.cpp
blob: 6e9edb34ba250ec9bd4bd1eb3e8dea3cb159a68e (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
//===========================================
//  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_sample.h"
#include "ui_page_sample.h"

//==========
//    PUBLIC
//==========
page_sample::page_sample(QWidget *parent) : PageWidget(parent), ui(new Ui::page_sample()){
  ui->setupUi(this);

 updateIcons();
}

page_sample::~page_sample(){

}

//================
//    PUBLIC SLOTS
//================
void page_sample::SaveSettings(){

  emit HasPendingChanges(false);
}

void page_sample::LoadSettings(int){
  emit HasPendingChanges(false);
  emit ChangePageTitle( tr("Desktop Settings") );

}

void page_sample::updateIcons(){

}

//=================
//         PRIVATE 
//=================

//=================
//    PRIVATE SLOTS
//=================
bgstack15