1 //===========================================
2 //  Lumina Desktop Source Code
3 //  Copyright (c) 2016, Ken Moore
4 //  Available under the 3-clause BSD license
5 //  See the LICENSE file for full details
6 //===========================================
7 #include "page_sample.h"
8 #include "ui_page_sample.h"
9 
10 //==========
11 //    PUBLIC
12 //==========
page_sample(QWidget * parent)13 page_sample::page_sample(QWidget *parent) : PageWidget(parent), ui(new Ui::page_sample()){
14   ui->setupUi(this);
15 
16  updateIcons();
17 }
18 
~page_sample()19 page_sample::~page_sample(){
20 
21 }
22 
23 //================
24 //    PUBLIC SLOTS
25 //================
SaveSettings()26 void page_sample::SaveSettings(){
27 
28   emit HasPendingChanges(false);
29 }
30 
LoadSettings(int)31 void page_sample::LoadSettings(int){
32   emit HasPendingChanges(false);
33   emit ChangePageTitle( tr("Desktop Settings") );
34 
35 }
36 
updateIcons()37 void page_sample::updateIcons(){
38 
39 }
40 
41 //=================
42 //         PRIVATE
43 //=================
44 
45 //=================
46 //    PRIVATE SLOTS
47 //=================
48